From matt at photon.com Tue Nov 1 07:00:34 2005 From: matt at photon.com (Matt Wilbur) Date: Tue Nov 1 07:00:55 2005 Subject: misc/88301: unable to rsh to 5.4-STABLE system (10/14/05) with args Message-ID: <200511011500.jA1F0XSV098798@freefall.freebsd.org> The following reply was made to PR kern/88301; it has been noted by GNATS. From: Matt Wilbur To: Brooks Davis Cc: Subject: Re: misc/88301: unable to rsh to 5.4-STABLE system (10/14/05) with args Date: Tue, 01 Nov 2005 06:56:15 -0800 > 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. --B_3213672976_3008756 Content-type: text/plain; charset="ISO-8859-1" Content-transfer-encoding: quoted-printable Ok .. Very wacky :) The clients has a hostname of =B3hostname=B2, the server has a hostname of =B3hostname.domain.com=B2 (the opposite of the case you described).. Yet.. Your patch fixed it! Thank you very much.. matt On 10/31/05 2:30 PM, "Brooks Davis" wrote: > "rsh " and "rsh " actually use different > protocols. Are you sure you have both rshd and rlogind enabled on the > upgraded system? Also, I fixed a bug in libutil recently that had > similar symptoms. If the client host has a name like a.b.c and the > server is b.c, the patch at this URL may fix it: >=20 > http://www.freebsd.org/cgi/cvsweb.cgi/src/lib/libutil/trimdomain.c.diff?r= 1=3D1.5 > =3D1.6=20 > 5&r2=3D1.6>=20 >=20 > -- Brooks >=20 --B_3213672976_3008756 Content-type: text/html; charset="ISO-8859-1" Content-transfer-encoding: quoted-printable Re: misc/88301: unable to rsh to 5.4-STABLE system (10/14/05) with a= rgs Ok ..= Very wacky :)

The clients has a hostname of “hostname”, the server has a host= name of “hostname.domain.com” (the opposite of the case you desc= ribed).. Yet..

Your patch fixed it!

Thank you very much..
matt

On 10/31/05 2:30 PM, "Brooks Davis" <brooks@one-eyed-alien.net= > wrote:

"rsh <host>" and "rsh <host>= <command>" actually use different
protocols.  Are you sure you have both rshd and rlogind enabled on the=
upgraded system?  Also, I fixed a bug in libutil recently that had
similar symptoms.  If the client host has a name like a.b.c and the server is b.c, the patch at this URL may fix it:

http://www.freebsd.org/cgi/cvsweb.cgi/src/lib/libutil/trim= domain.c.diff?r1=3D1.5=3D1.6 <http://www.freebsd.org/= cgi/cvsweb.cgi/src/lib/libutil/trimdomain.c.diff?r1=3D1.5&r2=3D1.6> <= BR>
-- Brooks


--B_3213672976_3008756-- From mats.palmgren at bredband.net Tue Nov 1 07:40:45 2005 From: mats.palmgren at bredband.net (Mats Palmgren) Date: Tue Nov 1 07:43:26 2005 Subject: misc/88336: setkey -D fails to report all SAs Message-ID: <200511011537.jA1FbV6o023879@www.freebsd.org> >Number: 88336 >Category: misc >Synopsis: setkey -D fails to report all SAs >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 Nov 01 15:40:17 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Mats Palmgren >Release: RELENG_5 >Organization: >Environment: >Description: The socket buffer size for pfkey only allows for 342 SAs to be dumped by "setkey -D". (In our application we have the need for in the order of 10k) >How-To-Repeat: Use 'setkey' command to push 10000 SAs into the kernel. Run 'setkey -D'. ACTUAL RESULT Only 342 of the SAs is reported to userland, then an error message: # setkey -D | grep esp | wc -l recv: Resource temporarily unavailable 342 EXPECTED RESULT # setkey -D | grep esp | wc -l 10000 >Fix: This is our workaround for now, probably not the best solution. Could you at least add the u_quad_t cast since it triggers this warning when increasing SB_MAX: uipc_socket2.c:69: warning: integer overflow in expression The added cast corresponds to uipc_socket2.c:490: sb_max_adj = (u_quad_t)sb_max * MCLBYTES / (MSIZE + MCLBYTES); Index: lib/libipsec/pfkey.c =================================================================== RCS file: /cvs/src/lib/libipsec/pfkey.c,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 pfkey.c --- lib/libipsec/pfkey.c 12 May 2004 20:54:18 -0000 1.1.1.1 +++ lib/libipsec/pfkey.c 31 Oct 2005 19:15:03 -0000 @@ -1582,6 +1582,15 @@ int so; const int bufsiz = 128 * 1024; /*is 128K enough?*/ +#ifdef FIX + const int r_bufsiz = 8 * 1024 * 1024; +#endif if ((so = socket(PF_KEY, SOCK_RAW, PF_KEY_V2)) < 0) { __ipsec_set_strerror(strerror(errno)); return -1; @@ -1592,7 +1601,11 @@ * Don't really care even if it fails. */ (void)setsockopt(so, SOL_SOCKET, SO_SNDBUF, &bufsiz, sizeof(bufsiz)); +#ifdef FIX + (void)setsockopt(so, SOL_SOCKET, SO_RCVBUF, &r_bufsiz, sizeof(r_bufsiz)); +#else (void)setsockopt(so, SOL_SOCKET, SO_RCVBUF, &bufsiz, sizeof(bufsiz)); +#endif __ipsec_errcode = EIPSEC_NO_ERROR; return so; Index: sys/kern/uipc_socket2.c =================================================================== RCS file: /cvs/src/sys/kern/uipc_socket2.c,v retrieving revision 1.1.1.7 diff -u -r1.1.1.7 uipc_socket2.c --- sys/kern/uipc_socket2.c 13 Jun 2005 14:54:31 -0000 1.1.1.7 +++ sys/kern/uipc_socket2.c 31 Oct 2005 16:39:25 -0000 @@ -66,7 +66,7 @@ u_long sb_max = SB_MAX; static u_long sb_max_adj = - SB_MAX * MCLBYTES / (MSIZE + MCLBYTES); /* adjusted sb_max */ + (u_quad_t)SB_MAX * MCLBYTES / (MSIZE + MCLBYTES); /* adjusted sb_max */ static u_long sb_efficiency = 8; /* parameter for sbreserve() */ Index: sys/sys/socketvar.h =================================================================== RCS file: /cvs/src/sys/sys/socketvar.h,v retrieving revision 1.1.1.5 diff -u -r1.1.1.5 socketvar.h --- sys/sys/socketvar.h 21 Apr 2005 00:19:11 -0000 1.1.1.5 +++ sys/sys/socketvar.h 31 Oct 2005 17:46:30 -0000 @@ -115,7 +115,11 @@ /* * Constants for sb_flags field of struct sockbuf. */ +#ifdef FIX +#define SB_MAX (((8*1024*1024)/MCLBYTES)*(MSIZE+MCLBYTES)) +#else #define SB_MAX (256*1024) /* default for max chars in sockbuf */ +#endif /* * Constants for sb_flags field of struct sockbuf. */ >Release-Note: >Audit-Trail: >Unformatted: From msoulier at digitaltorque.ca Tue Nov 1 09:40:15 2005 From: msoulier at digitaltorque.ca (Michael P. Soulier) Date: Tue Nov 1 09:40:41 2005 Subject: misc/88355: df reports negative drive space Message-ID: <200511011731.jA1HVTH2070034@www.freebsd.org> >Number: 88355 >Category: misc >Synopsis: df reports negative drive space >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 Nov 01 17:40:13 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Michael P. Soulier >Release: 5.4 >Organization: >Environment: FreeBSD kanga.digitaltorque.ca 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Sun May 8 10:21:06 UTC 2005 root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: I have a 200Gig Maxtor drive. It is partitioned in several pieces, but the bulk of the space is mounted at /usr. Oddly, df reports negative space on the / partition. msoulier@kanga$ df Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/ad0s1a 253678 249376 -15992 107% / devfs 1 1 0 100% /dev /dev/ad0s1e 253678 16 233368 0% /tmp /dev/ad0s1f 191645218 10722808 165590794 6% /usr /dev/ad0s1d 253678 23066 210318 10% /var msoulier@kanga$ df -h Filesystem Size Used Avail Capacity Mounted on /dev/ad0s1a 248M 244M -16M 107% / devfs 1.0K 1.0K 0B 100% /dev /dev/ad0s1e 248M 16K 228M 0% /tmp /dev/ad0s1f 183G 10G 158G 6% /usr /dev/ad0s1d 248M 23M 205M 10% /var Any reason why this would happen? >How-To-Repeat: In my case, install Maxtor 200Gig drive with FreeBSD 5.4, and run df. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From neon at NE6.NET Tue Nov 1 10:10:14 2005 From: neon at NE6.NET (Gregory Timofiejew) Date: Tue Nov 1 10:10:26 2005 Subject: kern/88362: carp with pfsync causing system crash, dump debug attached Message-ID: <200511011806.jA1I6Wik004651@www.freebsd.org> >Number: 88362 >Category: kern >Synopsis: carp with pfsync causing system crash, dump debug attached >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 01 18:10:13 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Gregory Timofiejew >Release: FreeBSD 5-STABLE i386 >Organization: >Environment: FreeBSD MasterFW 5.4-RELEASE-p8 FreeBSD 5.4-RELEASE-p8 #1: Mon Oct 31 18:32:33 EST 2005 neon@MasterFW:/usr/obj/usr/src/sys/DEBUG i386 >Description: Since I have configured firewall failover with pfsync and carp, both master and backup firewall crash. Non periodic system crashes. From few times a day to once per few days, either backup or master. Fatal trap 12: page fault while in kernel mode cpuid = 1; apic id = 00 fault virtual address = 0x34 fault code = supervisor read, page not present instruction pointer = 0x8:0xc0437e94 stack pointer = 0x10:0xe4e24b20 frame pointer = 0x10:0xe4e24b28 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 = 44 (sqi1: net) [thread pid 44 tid 100042 ] Stopped at pf_state_tree_id_RB_REMOVE_COLOR+0x20: cmpl $0x1,0x34(%edx) db> where Tracing pid 44 tid 100042 ] pf_state_tree_id_RB_REMOVE_COLOR(c0781d24,c29cb100,0) at pf_state_tree_id_RB_REMOVE_COLOR+0x20 pf_state_tree_id_RB_REMOVE(c0781d24,c2a74a00,c24bd8c4,c2a74a00) at pf_state_tree_id_RB_REMOVE+0x10a pf_purge_expired_states(e4e24b98,6,6,c27be770,20a0a0a) at pf_purge_expired_states+0xad pfsync_input(c2963700,14,f0000e0,0,0) at pfsync_input+0xa68 ip_input(c2963700) at ip_input+0x4f9 netisr_processqueue(c0793078) at netisr_processqueue+0xa3 swi_net(0) at swi_net+0xf2 ithread_loop(c229ac80,e4e24d48) at ithread_loop+0x159 fork_exit(c051bfb0,c229ac80,e4e24d48) at fork_exit+0x75 fork_trampoline() at fork trampoline+0x8 --- trap 0x1, eip = 0, esp = 0xe4e24d7c, ebp = 0 --- db> Nov 1 13:00:53 MasterFW syslogd: restart Nov 1 13:00:53 MasterFW syslogd: kernel boot file is /boot/kernel/kernel Nov 1 13:00:53 MasterFW kernel: Copyright (c) 1992-2005 The FreeBSD Project. Nov 1 13:00:53 MasterFW kernel: Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 Nov 1 13:00:53 MasterFW kernel: The Regents of the University of California. All rights reserved. Nov 1 13:00:53 MasterFW kernel: FreeBSD 5.4-RELEASE-p8 #1: Mon Oct 31 18:32:33 EST 2005 Nov 1 13:00:53 MasterFW kernel: neon@MasterFW:/usr/obj/usr/src/sys/DEBUG Nov 1 13:00:53 MasterFW kernel: Timecounter "i8254" frequency 1193182 Hz quality 0 Nov 1 13:00:53 MasterFW kernel: CPU: Intel(R) Pentium(R) III CPU family 1266MHz (1258.22-MHz 686-class CPU) Nov 1 13:00:53 MasterFW kernel: Origin = "GenuineIntel" Id = 0x6b1 Stepping = 1 Nov 1 13:00:53 MasterFW kernel: Features=0x383fbff Nov 1 13:00:53 MasterFW kernel: real memory = 1073655808 (1023 MB) Nov 1 13:00:53 MasterFW kernel: avail memory = 1041092608 (992 MB) Nov 1 13:00:53 MasterFW kernel: ACPI APIC Table: Nov 1 13:00:53 MasterFW kernel: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs Nov 1 13:00:53 MasterFW kernel: cpu0 (BSP): APIC ID: 3 Nov 1 13:00:53 MasterFW kernel: cpu1 (AP): APIC ID: 0 Nov 1 13:00:53 MasterFW kernel: ioapic1 irqs 16-31 on motherboard Nov 1 13:00:53 MasterFW kernel: ioapic0 irqs 0-15 on motherboard Nov 1 13:00:53 MasterFW kernel: npx0: on motherboard Nov 1 13:00:53 MasterFW kernel: npx0: INT 16 interface Nov 1 13:00:53 MasterFW kernel: acpi0: on motherboard Nov 1 13:00:53 MasterFW kernel: acpi0: Overriding SCI Interrupt from IRQ 11 to IRQ 31 Nov 1 13:00:53 MasterFW kernel: acpi0: Power Button (fixed) Nov 1 13:00:53 MasterFW kernel: acpi0: reservation of 430, 8 (4) failed Nov 1 13:00:53 MasterFW kernel: Timecounter "ACPI-safe" frequency 3579545 Hz quality 1000 Nov 1 13:00:53 MasterFW kernel: acpi_timer0: <24-bit timer at 3.579545MHz> port 0x4e8-0x4eb on acpi0 Nov 1 13:00:53 MasterFW kernel: cpu0: on acpi0 Nov 1 13:00:53 MasterFW kernel: cpu1: on acpi0 Nov 1 13:00:53 MasterFW kernel: pcib0: on acpi0 Nov 1 13:00:53 MasterFW kernel: pci0: on pcib0 Nov 1 13:00:53 MasterFW kernel: pci0: at device 6.0 (no driver attached) Nov 1 13:00:53 MasterFW kernel: isab0: port 0x440-0x44f at device 15.0 on pci0 Nov 1 13:00:53 MasterFW kernel: isa0: on isab0 Nov 1 13:00:53 MasterFW kernel: atapci0: port 0x840-0x84f,0x376,0x170-0x177,0x3f6,0x1f0 -0x1f7 at device 15.1 on pci0 Nov 1 13:00:53 MasterFW kernel: ata0: channel #0 on atapci0 Nov 1 13:00:53 MasterFW kernel: ata1: channel #1 on atapci0 Nov 1 13:00:53 MasterFW kernel: pci0: at device 15.2 (no driver attached) Nov 1 13:00:53 MasterFW kernel: pcib1: on acpi0 Nov 1 13:00:53 MasterFW kernel: pci1: on pcib1 Nov 1 13:00:53 MasterFW kernel: fxp0: port 0x2000-0x203f mem 0xeffc0000-0xeffdffff,0xeffff000- 0xefffffff irq 18 at device 2.0 on pci1 Nov 1 13:00:53 MasterFW kernel: miibus0: on fxp0 Nov 1 13:00:53 MasterFW kernel: inphy0: on miibus0 Nov 1 13:00:53 MasterFW kernel: inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto Nov 1 13:00:53 MasterFW kernel: fxp0: Ethernet address: 00:03:47:af:48:fc Nov 1 13:00:53 MasterFW kernel: xl0: <3Com 3c980C Fast Etherlink XL> port 0x2080-0x20ff mem 0xefffec00-0xefffec7f irq 20 at d evice 3.0 on pci1 Nov 1 13:00:53 MasterFW kernel: miibus1: on xl0 Nov 1 13:00:53 MasterFW kernel: xlphy0: <3c905C 10/100 internal PHY> on miibus1 Nov 1 13:00:53 MasterFW kernel: xlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto Nov 1 13:00:53 MasterFW kernel: xl0: Ethernet address: 00:01:03:e0:c8:02 Nov 1 13:00:53 MasterFW kernel: fxp1: port 0x2040-0x207f mem 0xeffa0000-0xeffbffff,0xefffd000- 0xefffdfff irq 28 at device 7.0 on pci1 Nov 1 13:00:53 MasterFW kernel: miibus2: on fxp1 Nov 1 13:00:53 MasterFW kernel: inphy1: on miibus2 Nov 1 13:00:53 MasterFW kernel: inphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto Nov 1 13:00:53 MasterFW kernel: fxp1: Ethernet address: 00:02:55:47:6e:db Nov 1 13:00:53 MasterFW kernel: pcib2: on acpi0 Nov 1 13:00:53 MasterFW kernel: pci2: on pcib2 Nov 1 13:00:53 MasterFW kernel: ips0: mem 0xecffe000-0xecffffff irq 22 at device 4.0 on pci2 Nov 1 13:00:53 MasterFW kernel: atkbdc0: port 0x64,0x60 irq 1 on acpi0 Nov 1 13:00:53 MasterFW kernel: atkbd0: irq 1 on atkbdc0 Nov 1 13:00:53 MasterFW kernel: kbd0 at atkbd0 Nov 1 13:00:53 MasterFW kernel: psm0: irq 12 on atkbdc0 Nov 1 13:00:53 MasterFW kernel: psm0: model IntelliMouse, device ID 3 Nov 1 13:00:53 MasterFW kernel: fdc0: port 0x3f2-0x3f7 irq 6 drq 2 on acpi0 Nov 1 13:00:53 MasterFW kernel: fdc0: does not respond Nov 1 13:00:53 MasterFW kernel: device_attach: fdc0 attach returned 6 Nov 1 13:00:53 MasterFW kernel: sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 Nov 1 13:00:53 MasterFW kernel: sio0: type 16550A Nov 1 13:00:53 MasterFW kernel: sio1: <16550A-compatible COM port> port 0x2f8-0x2ff irq 3 on acpi0 Nov 1 13:00:53 MasterFW kernel: sio1: type 16550A Nov 1 13:00:53 MasterFW kernel: fdc0: port 0x3f2-0x3f7 irq 6 drq 2 on acpi0 Nov 1 13:00:53 MasterFW kernel: fdc0: cannot allocate I/O port (6 ports) Nov 1 13:00:53 MasterFW kernel: device_attach: fdc0 attach returned 6 Nov 1 13:00:53 MasterFW kernel: orm0: at iomem 0xcc800-0xcdfff,0xcb000-0xcc7ff,0xc0000-0xcafff on isa0 Nov 1 13:00:53 MasterFW kernel: pmtimer0 on isa0 Nov 1 13:00:53 MasterFW kernel: ppc0: parallel port not found. Nov 1 13:00:53 MasterFW kernel: sc0: at flags 0x100 on isa0 Nov 1 13:00:53 MasterFW kernel: sc0: VGA <16 virtual consoles, flags=0x300> Nov 1 13:00:53 MasterFW kernel: vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Nov 1 13:00:53 MasterFW kernel: Timecounters tick every 10.000 msec Nov 1 13:00:53 MasterFW kernel: acd0: CDROM at ata0-master PIO4 Nov 1 13:00:53 MasterFW kernel: ips0: adapter type: ServeRAID 4L (morpheus lite) Nov 1 13:00:53 MasterFW kernel: ips0: logical drives: 1 Nov 1 13:00:53 MasterFW kernel: ips0: Logical Drive 0: RAID1 sectors: 26658816, state OK Nov 1 13:00:53 MasterFW kernel: ipsd0: on ips0 Nov 1 13:00:53 MasterFW kernel: ipsd0: Logical Drive (13017MB) Nov 1 13:00:53 MasterFW kernel: SMP: AP CPU #1 Launched! Nov 1 13:00:53 MasterFW kernel: Mounting root from ufs:/dev/ipsd0s1a Nov 1 13:00:53 MasterFW kernel: WARNING: / was not properly dismounted Nov 1 13:00:53 MasterFW kernel: Pre-seeding PRNG: Nov 1 13:00:53 MasterFW kernel: kickstart Nov 1 13:00:53 MasterFW kernel: . Nov 1 13:00:53 MasterFW kernel: Loading configuration files. Nov 1 13:00:53 MasterFW kernel: Entropy harvesting: Nov 1 13:00:53 MasterFW kernel: interrupts Nov 1 13:00:53 MasterFW kernel: ethernet Nov 1 13:00:53 MasterFW kernel: point_to_point Nov 1 13:00:53 MasterFW kernel: kickstart Nov 1 13:00:53 MasterFW kernel: . Nov 1 13:00:53 MasterFW kernel: kernel dumps on /dev/ipsd0s1b Nov 1 13:00:53 MasterFW kernel: swapon: adding /dev/ipsd0s1b as swap device Nov 1 13:00:53 MasterFW kernel: Starting file system checks: Nov 1 13:00:53 MasterFW kernel: /dev/ipsd0s1a: 1394 files, 27448 used, 226367 free (671 frags, 28212 blocks, 0.3% fragmentati on) Nov 1 13:00:53 MasterFW kernel: /dev/ipsd0s1e: DEFER FOR BACKGROUND CHECKING Nov 1 13:00:53 MasterFW kernel: /dev/ipsd0s1f: DEFER FOR BACKGROUND CHECKING Nov 1 13:00:53 MasterFW kernel: /dev/ipsd0s1d: DEFER FOR BACKGROUND CHECKING Nov 1 13:00:53 MasterFW kernel: WARNING: /tmp was not properly dismounted Nov 1 13:00:53 MasterFW kernel: WARNING: /usr was not properly dismounted Nov 1 13:00:53 MasterFW kernel: WARNING: /var was not properly dismounted Nov 1 13:00:53 MasterFW kernel: security.bsd.see_other_uids: Nov 1 13:00:53 MasterFW kernel: 1 Nov 1 13:00:53 MasterFW kernel: -> Nov 1 13:00:53 MasterFW kernel: 0 Nov 1 13:00:53 MasterFW kernel: Nov 1 13:00:53 MasterFW kernel: net.inet.carp.preempt: Nov 1 13:00:53 MasterFW kernel: 0 Nov 1 13:00:53 MasterFW kernel: -> Nov 1 13:00:53 MasterFW kernel: 1 Nov 1 13:00:53 MasterFW kernel: Nov 1 13:00:53 MasterFW kernel: net.inet.ip.forwarding: Nov 1 13:00:53 MasterFW kernel: 0 Nov 1 13:00:53 MasterFW kernel: -> Nov 1 13:00:53 MasterFW kernel: 1 Nov 1 13:00:53 MasterFW kernel: Nov 1 13:00:53 MasterFW kernel: Setting hostname: MasterFW. Nov 1 13:00:53 MasterFW kernel: lo0: flags=8049 mtu 16384 Nov 1 13:00:53 MasterFW kernel: inet 127.0.0.1 netmask 0xff000000 Nov 1 13:00:53 MasterFW kernel: inet6 ::1 prefixlen 128 Nov 1 13:00:53 MasterFW kernel: inet6 fe80::1%lo0 prefixlen 64 scopeid 0x4 Nov 1 13:00:53 MasterFW kernel: fxp0: flags=8943 mtu 1500 Nov 1 13:00:53 MasterFW kernel: options=b Nov 1 13:00:53 MasterFW kernel: inet [] netmask 0xfffffff0 broadcast [] Nov 1 13:00:53 MasterFW kernel: inet6 fe80::203:47ff:feaf:48fc%fxp0 prefixlen 64 tentative scopeid 0x1 Nov 1 13:00:53 MasterFW kernel: ether 00:03:47:af:48:fc Nov 1 13:00:53 MasterFW kernel: media: Ethernet autoselect (100baseTX ) Nov 1 13:00:53 MasterFW kernel: status: active Nov 1 13:00:53 MasterFW kernel: fxp1: flags=8943 mtu 1500 Nov 1 13:00:53 MasterFW kernel: options=b Nov 1 13:00:53 MasterFW kernel: inet [] netmask 0xffffff00 broadcast [] Nov 1 13:00:53 MasterFW kernel: inet6 fe80::202:55ff:fe47:6edb%fxp1 prefixlen 64 tentative scopeid 0x3 Nov 1 13:00:53 MasterFW kernel: ether 00:02:55:47:6e:db Nov 1 13:00:53 MasterFW kernel: media: Ethernet autoselect (100baseTX ) Nov 1 13:00:53 MasterFW kernel: status: active Nov 1 13:00:53 MasterFW kernel: xl0: flags=8843 mtu 1500 Nov 1 13:00:53 MasterFW kernel: options=9 Nov 1 13:00:53 MasterFW kernel: inet [] netmask 0xffffff00 broadcast [] Nov 1 13:00:53 MasterFW kernel: inet6 fe80::201:3ff:fee0:c802%xl0 prefixlen 64 tentative scopeid 0x2 Nov 1 13:00:53 MasterFW kernel: ether 00:01:03:e0:c8:02 Nov 1 13:00:53 MasterFW kernel: media: Ethernet autoselect (100baseTX ) Nov 1 13:00:53 MasterFW kernel: status: active Nov 1 13:00:53 MasterFW kernel: carp0: flags=41 mtu 1500 Nov 1 13:00:53 MasterFW kernel: inet [] netmask 0xffffff00 Nov 1 13:00:53 MasterFW kernel: carp: BACKUP vhid 1 advbase 1 advskew 128 Nov 1 13:00:53 MasterFW kernel: carp1: flags=41 mtu 1500 Nov 1 13:00:53 MasterFW kernel: inet [] netmask 0xfffffff0 Nov 1 13:00:53 MasterFW kernel: inet [] netmask 0xfffffff0 Nov 1 13:00:53 MasterFW kernel: inet [] netmask 0xfffffff0 Nov 1 13:00:53 MasterFW kernel: carp: BACKUP vhid 2 advbase 1 advskew 128 Nov 1 13:00:53 MasterFW kernel: pfsync0: flags=41 mtu 1348 Nov 1 13:00:53 MasterFW kernel: pfsync: syncif: xl0 maxupd: 128 Nov 1 13:00:53 MasterFW kernel: carp0: flags=41 mtu 1500 Nov 1 13:00:53 MasterFW kernel: inet [] netmask 0xffffff00 Nov 1 13:00:53 MasterFW kernel: carp: BACKUP vhid 1 advbase 1 advskew 128 Nov 1 13:00:53 MasterFW kernel: carp1: flags=41 mtu 1500 Nov 1 13:00:53 MasterFW kernel: inet [] netmask 0xfffffff0 Nov 1 13:00:53 MasterFW kernel: inet [] netmask 0xfffffff0 Nov 1 13:00:53 MasterFW kernel: inet [] netmask 0xfffffff0 Nov 1 13:00:53 MasterFW kernel: carp: BACKUP vhid 2 advbase 1 advskew 128 Nov 1 13:00:53 MasterFW kernel: add net default: gateway [] Nov 1 13:00:53 MasterFW kernel: Additional routing options: Nov 1 13:00:53 MasterFW kernel: . Nov 1 13:00:53 MasterFW kernel: Starting devd. Nov 1 13:00:53 MasterFW kernel: Mounting NFS file systems: Nov 1 13:00:53 MasterFW kernel: . Nov 1 13:00:53 MasterFW kernel: Starting syslogd. Nov 1 13:00:53 MasterFW kernel: Checking for core dump on /dev/ipsd0s1b ... Nov 1 13:00:53 MasterFW kernel: savecore: no dumps found Nov 1 13:00:53 MasterFW savecore: no dumps found Nov 1 13:00:53 MasterFW kernel: ELF ldconfig path: /lib /usr/lib /usr/lib/compat /usr/local/lib Nov 1 13:00:53 MasterFW kernel: a.out ldconfig path: /usr/lib/aout /usr/lib/compat/aout Nov 1 13:00:53 MasterFW kernel: Enabling pf. Nov 1 13:00:53 MasterFW kernel: No ALTQ support in kernel Nov 1 13:00:53 MasterFW kernel: ALTQ related functions disabled Nov 1 13:00:53 MasterFW kernel: No ALTQ support in kernel Nov 1 13:00:53 MasterFW kernel: ALTQ related functions disabled Nov 1 13:00:53 MasterFW kernel: No ALTQ support in kernel Nov 1 13:00:53 MasterFW kernel: ALTQ related functions disabled Nov 1 13:00:53 MasterFW kernel: pf enabled Nov 1 13:00:54 MasterFW kernel: Starting local daemons: Nov 1 13:00:54 MasterFW kernel: . Nov 1 13:00:54 MasterFW kernel: Updating motd Nov 1 13:00:54 MasterFW kernel: . Nov 1 13:00:54 MasterFW kernel: Starting ntpd. Nov 1 13:00:54 MasterFW ntpd[408]: ntpd 4.2.0-a Tue Sep 6 18:08:13 EDT 2005 (1) Nov 1 13:00:54 MasterFW ntpd[408]: precision = 12.571 usec Nov 1 13:00:54 MasterFW kernel: Configuring syscons: Nov 1 13:00:54 MasterFW kernel: blanktime Nov 1 13:00:54 MasterFW ntpd[408]: kernel time sync status 2040 Nov 1 13:00:54 MasterFW kernel: . Nov 1 13:00:54 MasterFW kernel: Starting sshd. Nov 1 13:00:54 MasterFW ntpd[408]: frequency initialized 53.080 PPM from /var/db/ntpd.drift Nov 1 13:00:54 MasterFW ntpd[408]: frequency initialized 53.080 PPM from /var/db/ntpd.drift Nov 1 13:00:55 MasterFW sshd[423]: Server listening on :: port 22. Nov 1 13:00:55 MasterFW kernel: Initial i386 initialization: Nov 1 13:00:55 MasterFW kernel: . Nov 1 13:00:55 MasterFW sshd[423]: Server listening on 0.0.0.0 port 22. Nov 1 13:00:55 MasterFW kernel: Additional ABI support: Nov 1 13:00:55 MasterFW kernel: . Nov 1 13:00:55 MasterFW kernel: Starting cron. Nov 1 13:00:55 MasterFW kernel: Local package initialization: Nov 1 13:00:56 MasterFW kernel: postfix/postfix-script: starting the Postfix mail system Nov 1 13:00:56 MasterFW postfix/postfix-script: starting the Postfix mail system Nov 1 13:00:56 MasterFW kernel: Starting pound. Nov 1 13:00:56 MasterFW postfix/master[489]: daemon started -- version 2.2.5, configuration /usr/local/etc/postfix Nov 1 13:00:56 MasterFW kernel: Starting svscan. Nov 1 13:00:56 MasterFW kernel: . Nov 1 13:00:56 MasterFW kernel: Additional TCP options: Nov 1 13:00:56 MasterFW kernel: log_in_vain=1 Nov 1 13:00:56 MasterFW kernel: . Nov 1 13:00:57 MasterFW kernel: Starting inetd. Nov 1 13:00:57 MasterFW kernel: Starting background file system checks in 60 seconds. Nov 1 13:00:57 MasterFW kernel: Nov 1 13:00:57 MasterFW kernel: Tue Nov 1 13:00:57 EST 2005 Nov 1 13:01:07 MasterFW login: login on ttyv0 as root Nov 1 13:01:07 MasterFW login: ROOT LOGIN (root) ON ttyv0 Nov 1 13:01:07 MasterFW kernel: Nov 1 13:01:07 MasterFW login: ROOT LOGIN (root) ON ttyv0 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From davidt at yadt.co.uk Tue Nov 1 11:00:32 2005 From: davidt at yadt.co.uk (David Taylor) Date: Tue Nov 1 11:00:53 2005 Subject: misc/88355: df reports negative drive space Message-ID: <200511011900.jA1J0V22037002@freefall.freebsd.org> The following reply was made to PR misc/88355; it has been noted by GNATS. From: David Taylor To: "Michael P. Soulier" Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/88355: df reports negative drive space Date: Tue, 1 Nov 2005 18:51:24 +0000 On Tue, 01 Nov 2005, Michael P. Soulier wrote: > > msoulier@kanga$ df -h > Filesystem Size Used Avail Capacity Mounted on > /dev/ad0s1a 248M 244M -16M 107% / > devfs 1.0K 1.0K 0B 100% /dev > /dev/ad0s1e 248M 16K 228M 0% /tmp > /dev/ad0s1f 183G 10G 158G 6% /usr > /dev/ad0s1d 248M 23M 205M 10% /var > > Any reason why this would happen? See the -m option to newfs(8). Some space (default 8%) is reserved for use by root only, and is not shown as free space. -- David Taylor From brooks at FreeBSD.org Tue Nov 1 11:28:45 2005 From: brooks at FreeBSD.org (Brooks Davis) Date: Tue Nov 1 11:29:00 2005 Subject: kern/88301: [libutil] unable to rsh to 5.4-STABLE system (10/14/05) with args Message-ID: <200511011928.jA1JSiHt042612@freefall.freebsd.org> Synopsis: [libutil] unable to rsh to 5.4-STABLE system (10/14/05) with args State-Changed-From-To: open->patched State-Changed-By: brooks State-Changed-When: Tue Nov 1 19:26:56 GMT 2005 State-Changed-Why: I apparently fixed this in src/lib/libutil/trimdomain.c rev 1.6. Responsible-Changed-From-To: freebsd-bugs->brooks Responsible-Changed-By: brooks Responsible-Changed-When: Tue Nov 1 19:26:56 GMT 2005 Responsible-Changed-Why: I apparently fixed this in src/lib/libutil/trimdomain.c rev 1.6. http://www.freebsd.org/cgi/query-pr.cgi?pr=88301 From brooks at FreeBSD.org Tue Nov 1 11:32:52 2005 From: brooks at FreeBSD.org (Brooks Davis) Date: Tue Nov 1 11:33:04 2005 Subject: misc/88355: df reports negative drive space Message-ID: <200511011932.jA1JWpIX043869@freefall.freebsd.org> Synopsis: df reports negative drive space State-Changed-From-To: open->closed State-Changed-By: brooks State-Changed-When: Tue Nov 1 19:30:34 GMT 2005 State-Changed-Why: This is expected UFS behavior, not a bug. http://www.freebsd.org/cgi/query-pr.cgi?pr=88355 From linimon at FreeBSD.org Tue Nov 1 11:45:48 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Tue Nov 1 11:46:00 2005 Subject: bin/88365: [patch] rm(1): "/bin/rm -P" cannot remove files not writeable by user while "/bin/rm" can Message-ID: <200511011945.jA1JjmT1044745@freefall.freebsd.org> Old Synopsis: "/bin/rm -P" cannot remove files not writeable by user while New Synopsis: [patch] rm(1): "/bin/rm -P" cannot remove files not writeable by user while "/bin/rm" can Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Nov 1 19:43:33 GMT 2005 Responsible-Changed-Why: Rescue this PR from the 'pending' category. To submitter: whatever submission mechanism you are using to send PRs is not working out very well. Please try an alternate. http://www.freebsd.org/cgi/query-pr.cgi?pr=88365 From linimon at FreeBSD.org Tue Nov 1 12:30:21 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Tue Nov 1 12:30:33 2005 Subject: kern/88362: [pf] [panic] carp with pfsync causing system crash, dump debug attached Message-ID: <200511012030.jA1KUKq5052524@freefall.freebsd.org> Old Synopsis: carp with pfsync causing system crash, dump debug attached New Synopsis: [pf] [panic] carp with pfsync causing system crash, dump debug attached Responsible-Changed-From-To: freebsd-bugs->freebsd-pf Responsible-Changed-By: linimon Responsible-Changed-When: Tue Nov 1 20:29:03 GMT 2005 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=88362 From tate at baumrucker.org Tue Nov 1 12:40:25 2005 From: tate at baumrucker.org (C. Tate Baumrucker) Date: Tue Nov 1 12:40:45 2005 Subject: bin/66095: template_user is broken in pam_radius Message-ID: <200511012040.jA1KeP4F054073@freefall.freebsd.org> The following reply was made to PR bin/66095; it has been noted by GNATS. From: "C. Tate Baumrucker" To: bug-followup@FreeBSD.org, danm@prime.gushi.org Cc: Subject: Re: bin/66095: template_user is broken in pam_radius Date: Tue, 01 Nov 2005 15:36:45 -0500 Any hope for a patch re: template_user and pam_radius? Running 6.0-RC1 and template_user doesn't seem to work. Any workaround? Thanks, Tate From gabor.kovesdan at t-hosting.hu Tue Nov 1 13:00:35 2005 From: gabor.kovesdan at t-hosting.hu (=?ISO-8859-1?Q?K=F6vesd=E1n_G=E1bor?=) Date: Tue Nov 1 13:00:47 2005 Subject: kern/84020: Couldn't load graphical screensaver modules Message-ID: <200511012100.jA1L0ZUg055418@freefall.freebsd.org> The following reply was made to PR kern/84020; it has been noted by GNATS. From: =?ISO-8859-1?Q?K=F6vesd=E1n_G=E1bor?= To: bug-followup@FreeBSD.org, gabor.kovesdan@t-hosting.hu Cc: Subject: Re: kern/84020: Couldn't load graphical screensaver modules Date: Tue, 01 Nov 2005 21:55:17 +0100 It seems to be not hardware-specific. I get the same error with an ancient S3 PCI video card. From danm at prime.gushi.org Tue Nov 1 13:50:22 2005 From: danm at prime.gushi.org (Dan Mahoney, System Admin) Date: Tue Nov 1 13:50:41 2005 Subject: bin/66095: template_user is broken in pam_radius Message-ID: <200511012150.jA1LoLCi063945@freefall.freebsd.org> The following reply was made to PR bin/66095; it has been noted by GNATS. From: "Dan Mahoney, System Admin" To: "C. Tate Baumrucker" Cc: bug-followup@FreeBSD.org Subject: Re: bin/66095: template_user is broken in pam_radius Date: Tue, 1 Nov 2005 16:43:20 -0500 (EST) Tue, 1 Nov 2005 16:43:20 -0500 (EST)n Tue, 1 Nov 2005, C. Tate Baumrucker wrote: I wouldn't hold your breath. Personally, this little bug shot to hell any hope of using radius for central auth on all our systems (because radius is a great common denominator, even windows can speak it!) At the very least, the notation about the function should be removed. I'd fix it, but I do not speak C and have no IDEA where to even go about trying to run a truss on something as crucial as PAM. -Dan -- "Happy, Sad, Happy, Sad, Happy, Sad, Happy, Intruiged! I've never been so in touch with my emotions!" -AndrAIa as Hexadecimal, Reboot Episode 3.2.3 --------Dan Mahoney-------- Techie, Sysadmin, WebGeek Gushi on efnet/undernet IRC ICQ: 13735144 AIM: LarpGM Site: http://www.gushi.org --------------------------- From laszlof at vonostingroup.com Tue Nov 1 19:20:19 2005 From: laszlof at vonostingroup.com (Frank Laszlo) Date: Tue Nov 1 19:20:32 2005 Subject: conf/88383: [PATCH]: etc/rc.d/ldconfig:does not properly handle ld{-elf}.so.conf Message-ID: >Number: 88383 >Category: conf >Synopsis: [PATCH]: etc/rc.d/ldconfig:does not properly handle ld{-elf}.so.conf >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Nov 02 03:20:18 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Frank Laszlo >Release: FreeBSD 5.4-STABLE i386 >Organization: >Environment: System: FreeBSD ritamari.vonostingroup.com 5.4-STABLE FreeBSD 5.4-STABLE #0: Thu Jun 9 22:20:56 EDT 2005 laszlof@ritamari.vonostingroup.com:/usr/obj/usr/src/sys/RITAMARI i386 >Description: etc/rc.d/ldconfig currently is supposed to add files from rc.conf defined by ldconfig_paths as well as paths *within* /etc/ld.so.conf and /etc/ld-elf.so.conf respectively. This is not the case, as the code processes /etc/ld{-elf}.so.conf as a path to be passed to ldconfig. The attached patch will fix this segment of code. >How-To-Repeat: Add a library path to /etc/ld.so.conf or /etc/ld-elf.so.conf and rerun /etc/rc.d/ldconfig. >Fix: --- rc.d-ldconfig.diff begins here --- --- etc/rc.d/ldconfig.orig Tue Nov 1 21:57:47 2005 +++ etc/rc.d/ldconfig Tue Nov 1 22:04:39 2005 @@ -22,11 +22,18 @@ checkyesno ldconfig_insecure && _ins="-i" if [ -x "${ldconfig_command}" ]; then _LDC="/lib /usr/lib" - for i in ${ldconfig_paths} /etc/ld-elf.so.conf; do + for i in ${ldconfig_paths}; do if [ -r "${i}" ]; then _LDC="${_LDC} ${i}" fi done + if [ -r /etc/ld-elf.so.conf ]; then + for i in `cat /etc/ld-elf.so.conf`; do + if [ -r "${i}" ]; then + _LDC="${_LDC} ${i}" + fi + done + fi echo 'ELF ldconfig path:' ${_LDC} ${ldconfig} -elf ${_ins} ${_LDC} @@ -36,11 +43,18 @@ # Default the a.out ldconfig path. : ${ldconfig_paths_aout=${ldconfig_paths}} _LDC=/usr/lib/aout - for i in ${ldconfig_paths_aout} /etc/ld.so.conf; do + for i in ${ldconfig_paths_aout}; do if [ -r "${i}" ]; then _LDC="${_LDC} ${i}" fi done + if [ -r /etc/ld.so.conf ]; then + for i in `cat /etc/ld.so.conf`; do + if [ -r "${i}" ]; then + _LDC="${_LDC} ${i}" + fi + done + fi echo 'a.out ldconfig path:' ${_LDC} ${ldconfig} -aout ${_ins} ${_LDC} ;; --- rc.d-ldconfig.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From maxim at macomnet.ru Wed Nov 2 02:40:19 2005 From: maxim at macomnet.ru (Maxim Konovalov) Date: Wed Nov 2 02:40:31 2005 Subject: kern/67919: Why nobody take serious to fix this bug? Message-ID: <200511021040.jA2AeHbx077998@freefall.freebsd.org> The following reply was made to PR kern/67919; it has been noted by GNATS. From: Maxim Konovalov To: Uwe Doering Cc: Igor Sysoev , "Cai, Quanqing" , freebsd-current@freebsd.org, bug-followup@freebsd.org, Edwin Groothuis Subject: Re: kern/67919: Why nobody take serious to fix this bug? Date: Wed, 2 Nov 2005 13:34:31 +0300 (MSK) On Mon, 31 Oct 2005, 16:08+0100, Uwe Doering wrote: > Maxim Konovalov wrote: > > [...] > > > > > >I was told the patch is incorrect. It works in certain cases but > > > >incorrect in general. > > > > > >Why is it incorrect ? I'm using it for year. > > > > Because you can't just throw away any chunk of data (e.g. it could be > > a meta-data) without a risk to damage a filesystem. > > I wonder, could it really be meta-data? I was under the impression > that meta-data is a filesystem property and is therefore dealt with > in the filesystem code, through i/o buffers. Isn't the VM pager > responsible for handling object contents (files etc.), only? If so, > it would be unfortunate to throw away pages of data but it certainly > wouldn't damage the filesystem. I'm under different (perhaps incorrect) impression. For the record: ps@ just committed to HEAD a rate limit part of your patch with a slightly different implementation. -- Maxim Konovalov From gabor.kovesdan at t-hosting.hu Wed Nov 2 07:00:32 2005 From: gabor.kovesdan at t-hosting.hu (=?ISO-8859-1?Q?K=F6vesd=E1n_G=E1bor?=) Date: Wed Nov 2 07:00:44 2005 Subject: kern/83943: [panic] FreeBSD 6.0-BETA1 with nve Message-ID: <200511021500.jA2F0VPa010192@freefall.freebsd.org> The following reply was made to PR kern/83943; it has been noted by GNATS. From: =?ISO-8859-1?Q?K=F6vesd=E1n_G=E1bor?= To: bug-followup@FreeBSD.org, gabor.kovesdan@t-hosting.hu Cc: Subject: Re: kern/83943: [panic] FreeBSD 6.0-BETA1 with nve Date: Wed, 02 Nov 2005 15:54:54 +0100 I haven't experienced any crashes or timeouts in RC1 yet. It seems to be solved now, but I will post a feedback soon after a more intensive testing. Gabor Kovesdan From xi at borderworlds.dk Wed Nov 2 10:30:25 2005 From: xi at borderworlds.dk (Christian Laursen) Date: Wed Nov 2 10:31:34 2005 Subject: bin/88404: ggatec and ggated links to library in /usr/lib Message-ID: <20051102182826.9841811B1C@andorian.borderworlds.dk> >Number: 88404 >Category: bin >Synopsis: ggatec and ggated links to library in /usr/lib >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Nov 02 18:30:23 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Christian Laursen >Release: FreeBSD 6.0-RELEASE i386 >Organization: The Border Worlds >Environment: System: FreeBSD andorian.borderworlds.dk 6.0-RELEASE FreeBSD 6.0-RELEASE #16: Wed Nov 2 12:55:44 CET 2005 root@andorian.borderworlds.dk:/usr/obj/usr/src/sys/ANDORIAN i386 >Description: /sbin/ggatec and /sbin/ggated both link to /usr/lib/libpthread.so.2. The result is that ggatec and ggated do not work when in single user mode with only / mounted. $ ldd /sbin/ggatec /sbin/ggatec: libgeom.so.3 => /lib/libgeom.so.3 (0x28077000) libsbuf.so.3 => /lib/libsbuf.so.3 (0x2807b000) libbsdxml.so.2 => /lib/libbsdxml.so.2 (0x2807e000) libutil.so.5 => /lib/libutil.so.5 (0x2809b000) libpthread.so.2 => /usr/lib/libpthread.so.2 (0x280a7000) libc.so.6 => /lib/libc.so.6 (0x280cc000) >How-To-Repeat: Run ggatec or ggated without /usr mounted. >Fix: libpthread.so.2 should probably be moved to /lib. >Release-Note: >Audit-Trail: >Unformatted: From thib at mi.is Wed Nov 2 16:31:35 2005 From: thib at mi.is (Thordur I. Bjornsson) Date: Wed Nov 2 16:54:59 2005 Subject: Reopening a closed PR... bin/63160 Message-ID: <20051103003132.64eca4f7.thib@mi.is> I'm not sure how you reopen a PR or if you are supposed to send a new PR Here goes, I'm not able to chown a dir/file what-have-you with the user nobody e.g [thib@caulfield ~]$ chown nobody foo chown: nobody: Invalid argument [thib@caulfield ~]$ fgrep nobody /etc/passwd nobody:*:65534:65534:Unprivileged user:/nonexistent:/usr/sbin/nologin I rebuild chown with CFLAGS= -g and verified that this is the same proplem as bin/63160 (gdb) step 261 val = strtoul(name, &ep, 10); (gdb) step 262 if (errno) (gdb) step 263 err(1, "%s", name); (gdb) step chown: nobody: Invalid argument Program exited with code 01. This is happening on: FreeBSD caulfield.bitcode.eu.org 6.0-RC1 FreeBSD 6.0-RC1 #0: Sun Oct 9 20:32:57 UTC 2005 root@x64.samsco.home:/usr/obj/usr/src/sys/GENERIC i386 dmesg is attached. Please CC me for I'm not on the list. -- Thordur I. Humppa! -------------- next part -------------- A non-text attachment was scrubbed... Name: dmesg Type: application/octet-stream Size: 6509 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-bugs/attachments/20051103/827d7572/dmesg.obj From brooks at FreeBSD.org Wed Nov 2 16:34:58 2005 From: brooks at FreeBSD.org (Brooks Davis) Date: Wed Nov 2 16:55:34 2005 Subject: kern/79148: DHClient / Ethernet Card not communicating with a LinkSys Router Message-ID: <200511030034.jA30Yv0K005446@freefall.freebsd.org> Synopsis: DHClient / Ethernet Card not communicating with a LinkSys Router State-Changed-From-To: open->feedback State-Changed-By: brooks State-Changed-When: Thu Nov 3 00:32:09 GMT 2005 State-Changed-Why: Can you verify that this problem exists on a more recent version of FreeBSD? There have been changes to the dc drive since 5.3. http://www.freebsd.org/cgi/query-pr.cgi?pr=79148 From brooks at FreeBSD.org Wed Nov 2 16:53:40 2005 From: brooks at FreeBSD.org (Brooks Davis) Date: Wed Nov 2 17:00:23 2005 Subject: bin/70355: [patch] dhclient-script is chatty with RENEW messages Message-ID: <200511030053.jA30rdRA006119@freefall.freebsd.org> Synopsis: [patch] dhclient-script is chatty with RENEW messages State-Changed-From-To: open->closed State-Changed-By: brooks State-Changed-When: Thu Nov 3 00:50:47 GMT 2005 State-Changed-Why: This isn't an issue in the script in 6.x and it appears fixed in 5.x. Realisticly, we're not likely to fix this in 4.x at this late date given that it's mostly cosmetic. Thanks for the submittion though. -- Brooks http://www.freebsd.org/cgi/query-pr.cgi?pr=70355 From jimmiejaz at gmail.com Wed Nov 2 18:30:15 2005 From: jimmiejaz at gmail.com (Jimmie James) Date: Wed Nov 2 19:23:20 2005 Subject: misc/88426: Typo in man (8) mount_ntfs Message-ID: <200511030224.jA32Oa5R054880@www.freebsd.org> >Number: 88426 >Category: misc >Synopsis: Typo in man (8) mount_ntfs >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Thu Nov 03 02:30:12 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Jimmie James >Release: FreeBSD 6.0-RC1 >Organization: Toronto 2600 >Environment: FreeBSD fortytwo.zapto.org 6.0-RC1 FreeBSD 6.0-RC1 #0: Fri Oct 21 20:25:22 EDT 2005 root@fortytwo.zapto.org:/usr/obj/usr/src/sys/FORTYTWO i386 >Description: Small typo in man (8) mount_ntfs and must not contain any sparces (uninitialized areas); compressed assumed to be 'spaces' >How-To-Repeat: Read the man page, under Warnings. >Fix: --- mount.orig Wed Nov 2 21:12:41 2005 +++ mount_ntfs.8 Wed Nov 2 21:11:03 2005 @@ -137,7 +137,7 @@ .Sh WRITING There is limited writing ability. Limitations: file must be nonresident -and must not contain any sparces (uninitialized areas); compressed +and must not contain any spaces (uninitialized areas); compressed files are also not supported. The file name must not contain multibyte characters. .Sh SEE ALSO >Release-Note: >Audit-Trail: >Unformatted: From delphij at gmail.com Wed Nov 2 20:00:31 2005 From: delphij at gmail.com (Xin LI) Date: Wed Nov 2 20:33:50 2005 Subject: misc/88426: Typo in man (8) mount_ntfs Message-ID: <200511030400.jA340UqG033990@freefall.freebsd.org> The following reply was made to PR misc/88426; it has been noted by GNATS. From: Xin LI To: Jimmie James Cc: freebsd-gnats-submit@freebsd.org Subject: Re: misc/88426: Typo in man (8) mount_ntfs Date: Thu, 3 Nov 2005 11:57:03 +0800 T24gMTEvMy8wNSwgSmltbWllIEphbWVzIDxqaW1taWVqYXpAZ21haWwuY29tPiB3cm90ZToKPiAg VGhlcmUgaXMgbGltaXRlZCB3cml0aW5nIGFiaWxpdHkuCj4gIExpbWl0YXRpb25zOiBmaWxlIG11 c3QgYmUgbm9ucmVzaWRlbnQKPiAtYW5kIG11c3Qgbm90IGNvbnRhaW4gYW55IHNwYXJjZXMgKHVu aW5pdGlhbGl6ZWQgYXJlYXMpOyBjb21wcmVzc2VkCj4gK2FuZCBtdXN0IG5vdCBjb250YWluIGFu eSBzcGFjZXMgKHVuaW5pdGlhbGl6ZWQgYXJlYXMpOyBjb21wcmVzc2VkCgpJIGd1ZXNzIHRoYXQg dGhlIGF1dGhvciBtZWFudCAic3BhcnNlIiBhbmQgbm90ICJzcGFjZSI/Cg== From maxim at macomnet.ru Thu Nov 3 01:20:19 2005 From: maxim at macomnet.ru (Maxim Konovalov) Date: Thu Nov 3 01:22:07 2005 Subject: misc/88426: Typo in man (8) mount_ntfs Message-ID: <200511030920.jA39KIax085176@freefall.freebsd.org> The following reply was made to PR misc/88426; it has been noted by GNATS. From: Maxim Konovalov To: Jimmie James Cc: bug-followup@freebsd.org Subject: Re: misc/88426: Typo in man (8) mount_ntfs Date: Thu, 3 Nov 2005 12:10:04 +0300 (MSK) [...] > >Fix: > --- mount.orig Wed Nov 2 21:12:41 2005 > +++ mount_ntfs.8 Wed Nov 2 21:11:03 2005 > @@ -137,7 +137,7 @@ > .Sh WRITING > There is limited writing ability. > Limitations: file must be nonresident > -and must not contain any sparces (uninitialized areas); compressed > +and must not contain any spaces (uninitialized areas); compressed > files are also not supported. > The file name must not contain multibyte characters. > .Sh SEE ALSO It speaks about NTFS sparce files: http://ntfs.com/ntfs-sparse.htm On fig. 5-4 uninitialized areas are called "spars". That means the correct fix will be s/sparces/spars/. -- Maxim Konovalov From 2 at FreeBSD.org Thu Nov 3 04:50:26 2005 From: 2 at FreeBSD.org (3) Date: Thu Nov 3 04:50:38 2005 Subject: misc/88449: 5 Message-ID: <200511031245.jA3CjXsb093482@www.freebsd.org> >Number: 88449 >Category: misc >Synopsis: 5 >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 Nov 03 12:50:18 GMT 2005 >Closed-Date: >Last-Modified: >Originator: 3 >Release: 4.11 >Organization: 4 >Environment: >Description: >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From maxim at FreeBSD.org Thu Nov 3 04:55:21 2005 From: maxim at FreeBSD.org (Maxim Konovalov) Date: Thu Nov 3 04:55:32 2005 Subject: misc/88449: 5 Message-ID: <200511031255.jA3CtKW2016127@freefall.freebsd.org> Synopsis: 5 State-Changed-From-To: open->closed State-Changed-By: maxim State-Changed-When: Thu Nov 3 12:55:01 GMT 2005 State-Changed-Why: Not a PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=88449 From olli at lurza.secnetix.de Thu Nov 3 06:16:59 2005 From: olli at lurza.secnetix.de (Oliver Fromme) Date: Thu Nov 3 06:17:11 2005 Subject: Reopening a closed PR... bin/63160 In-Reply-To: <20051103003132.64eca4f7.thib@mi.is> Message-ID: <200511031416.jA3EGqgp006367@lurza.secnetix.de> Thordur I. Bjornsson wrote: > I'm not sure how you reopen a PR or if you are supposed to send a new PR You can open a new PR, or ask someone (preferably the person who closed it) to re-open it -- _if_ you have a convincing reason to do so. > Here goes, > I'm not able to chown a dir/file what-have-you with the user nobody > e.g > [thib@caulfield ~]$ chown nobody foo > chown: nobody: Invalid argument That happens when the user doesn't exist. chown(8) first tries to resolve the user via getpwnam(3). That _should_ succeed for user "nobody". But if it fails, chown tries to convert it as a numerical UID via strtoul(3), which fails with EINVAL if no conversion could be done (i.e. if it's not a valid number). This is clearly documented in the strtoul(8) manpage. Arguably, the chown(8) manpage should contain a note that the "invalid argument" error message indicates that the user (or group) does not exist. Or, preferably, chown should be fixed to print a more helpful error message in that case. You might consider opening a new PR on this. > [thib@caulfield ~]$ fgrep nobody /etc/passwd > nobody:*:65534:65534:Unprivileged user:/nonexistent:/usr/sbin/nologin Note that /etc/passwd is irrelevant. Do you have a valid "nobody" user in master.passwd, _and_ are your pwd.db and spwd.db files up to date? To be sure, use this command: # pwd_mkdb -p /etc/master.passwd With the option "-C" pwd_mkdb will check the syntax of the master.passwd file. See the manual page for details. Also note that other authentication mechanisms can come into play here, e.g. when you're using NIS etc. I also wonder what other programs do when you try to use nobody. For example, what's the output from the command "ps -U nobody" (upper-case -U) on your machine? Best regards Oliver -- Oliver Fromme, secnetix GmbH & Co. KG, Marktplatz 29, 85567 Grafing Dienstleistungen mit Schwerpunkt FreeBSD: http://www.secnetix.de/bsd Any opinions expressed in this message may be personal to the author and may not necessarily reflect the opinions of secnetix in any way. "To this day, many C programmers believe that 'strong typing' just means pounding extra hard on the keyboard." -- Peter van der Linden From thib at mi.is Thu Nov 3 06:46:55 2005 From: thib at mi.is (Thordur I. Bjornsson) Date: Thu Nov 3 06:47:06 2005 Subject: Reopening a closed PR... bin/63160 In-Reply-To: <200511031416.jA3EGqgp006367@lurza.secnetix.de> References: <20051103003132.64eca4f7.thib@mi.is> <200511031416.jA3EGqgp006367@lurza.secnetix.de> Message-ID: <20051103144653.1b12ca85.thib@mi.is> On Thu, 3 Nov 2005 15:16:52 +0100 (CET) Sorry for the noise. The proplem whent-away (TM) when I rebuild the password database. ( # pwd_mkdb -p /etc/master.passwd ) However I do find it strange on an install from the 6.0-RC1 ISO that the passwdb is out-of-sync (?). I had not done *any* configuration on the box expect network (via ifconfig + nameserver in resolve.conf), installed cvsup (via pkg_add )... So I did find it a bit strange... Anyways... Thanks for the responses and ones again, sorry for the noise. -- Thordur I. Humppa! From linimon at FreeBSD.org Thu Nov 3 06:47:16 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Thu Nov 3 06:47:40 2005 Subject: kern/88450: SYN+ACK reports strange size of window Message-ID: <200511031447.jA3ElF9W034187@freefall.freebsd.org> Synopsis: SYN+ACK reports strange size of window Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Thu Nov 3 14:45:54 GMT 2005 Responsible-Changed-Why: This is definitely not a 'ports' problem, although I don't know exactly how to categorize it in this case ... http://www.freebsd.org/cgi/query-pr.cgi?pr=88450 From bde at zeta.org.au Thu Nov 3 07:15:15 2005 From: bde at zeta.org.au (Bruce Evans) Date: Thu Nov 3 07:15:37 2005 Subject: Reopening a closed PR... bin/63160 In-Reply-To: <20051103003132.64eca4f7.thib@mi.is> References: <20051103003132.64eca4f7.thib@mi.is> Message-ID: <20051104011617.Y4484@epsplex.bde.org> On Thu, 3 Nov 2005, Thordur I. Bjornsson wrote: > I'm not sure how you reopen a PR or if you are supposed to send a new PR I think only committers can reopen a PR, so it is easier for non-committers to send a new one. > Here goes, > I'm not able to chown a dir/file what-have-you with the user nobody > e.g > [thib@caulfield ~]$ chown nobody foo > chown: nobody: Invalid argument > > [thib@caulfield ~]$ fgrep nobody /etc/passwd > nobody:*:65534:65534:Unprivileged user:/nonexistent:/usr/sbin/nologin > > I rebuild chown with CFLAGS= -g and verified that this is the same > proplem as bin/63160 > > (gdb) step > 261 val = strtoul(name, &ep, 10); > (gdb) step > 262 if (errno) > (gdb) step > 263 err(1, "%s", name); > (gdb) step > chown: nobody: Invalid argument This has very little to do with chown(1) or strtoul(3). Their error handling is just slightly broken. chown(1) only gets here when it thinks `name' is a numeric id. The main problem occurs earlier when getpwnam() fails to find "norbody". From an old (?) version of chown.c: % void % a_uid(const char *s) % { % struct passwd *pw; % % if (*s == '\0') /* Argument was "[:.]gid". */ % return; % uid = ((pw = getpwnam(s)) != NULL) ? pw->pw_uid : id(s, "user"); % } This and a_gid() are the only places that call id(). Normally getpwnam() succeeds and id() is not used. % uid_t % id(const char *name, const char *type) % { % uid_t val; % char *ep; % % /* % * XXX % * We know that uid_t's and gid_t's are unsigned longs. % */ % errno = 0; % val = strtoul(name, &ep, 10); This strtoul() on "nobody" is certain to fail, but the error handling is not quite right and has been broken. % if (errno) % err(1, "%s", name); % if (*ep != '\0') % errx(1, "%s: illegal %s name", name, type); % return (val); % } strtoul() was changed to set errno to EINVAL if no conversion could be performed. This is a POSIX extension that is incompatible with C90 and C99. It breaks old code like the above. The above now fails to print the intended error message ("chown": nobody: illegal user name" here) in all cases where `name' doesn't start with a number. The only possible nonzero errno from strtoul used to be ERANGE, so the above only failed to print the intended error message when `name' does start with a number but that number is too large to fit in an unsigned long. The above should print the type ("user" or "group") in both error messages and should say something more useful than "illegal" (e.g., "nobody: no such user", "1234: no such user", "1234foo: invalid numeric user id", "-2: invalid numeric user id" (note that strtoul() won't set ERANGE for this), and "5000000000: user id too large"). Other bugs in id(): - wrong comment. We don't know that uid_t's and gid_t's are unsigned longs. They used to be in 4.4BSD-Lite1 and FreeBSD-2.0, but this assumed that all arches are vax. This was fixed in 4.4BSD-Lite2 (earlier in NetBSD). They are now uint32_t in FreeBSD, and several arches have 64-bit u_longs. - wrong error handling associated with the wrong comment. strtoul() sets errno to ERANGE if `name' is a too-large number. We carefully check for this, and then blindly truncate the value (if it is larger than u_long) by implicitly assigning it to a uid_t on return. I checked my changes to mknod(2) for how to use strtoul(), and found id() and its bugs duplicated there. These days strotoumax() should almost always be used for parsing numbers. Bruce From arved at FreeBSD.org Thu Nov 3 07:30:21 2005 From: arved at FreeBSD.org (Tilman Linneweh) Date: Thu Nov 3 07:30:44 2005 Subject: kern/88450: SYN+ACK reports strange size of window Message-ID: <200511031530.jA3FULuV043671@freefall.freebsd.org> Synopsis: SYN+ACK reports strange size of window Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: arved Responsible-Changed-When: Thu Nov 3 15:29:18 GMT 2005 Responsible-Changed-Why: Over to -net for review http://www.freebsd.org/cgi/query-pr.cgi?pr=88450 From keramida at ceid.upatras.gr Thu Nov 3 08:20:21 2005 From: keramida at ceid.upatras.gr (Giorgos Keramidas) Date: Thu Nov 3 08:20:33 2005 Subject: misc/88426: Typo in man (8) mount_ntfs Message-ID: <200511031620.jA3GKK8p051218@freefall.freebsd.org> The following reply was made to PR misc/88426; it has been noted by GNATS. From: Giorgos Keramidas To: Maxim Konovalov Cc: bug-followup@freebsd.org Subject: Re: misc/88426: Typo in man (8) mount_ntfs Date: Thu, 3 Nov 2005 18:13:33 +0200 On 2005-11-03 09:20, Maxim Konovalov wrote: >> --- mount.orig Wed Nov 2 21:12:41 2005 >> +++ mount_ntfs.8 Wed Nov 2 21:11:03 2005 >> @@ -137,7 +137,7 @@ >> .Sh WRITING >> There is limited writing ability. >> Limitations: file must be nonresident >> -and must not contain any sparces (uninitialized areas); compressed >> +and must not contain any spaces (uninitialized areas); compressed >> files are also not supported. >> The file name must not contain multibyte characters. >> .Sh SEE ALSO > > It speaks about NTFS sparce files: http://ntfs.com/ntfs-sparse.htm > > On fig. 5-4 uninitialized areas are called "spars". That means the > correct fix will be s/sparces/spars/. That would be wrong too. I don't think "spars", the plural of "spar" is what we need here. From dnelson at allantgroup.com Thu Nov 3 09:20:13 2005 From: dnelson at allantgroup.com (Dan Nelson) Date: Thu Nov 3 09:20:26 2005 Subject: bin/88460: Import /usr/bin/getent from NetBSD Message-ID: <200511031718.jA3HIWm8035745@dan.emsphone.com> >Number: 88460 >Category: bin >Synopsis: Import /usr/bin/getent from NetBSD >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Nov 03 17:20:12 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Dan Nelson >Release: FreeBSD 5.4-STABLE i386 >Organization: The Allant Group >Environment: System: FreeBSD dan.emsphone.com 5.4-STABLE FreeBSD 5.4-STABLE #415: Wed Oct 26 12:24:22 CDT 2005 zsh@dan.emsphone.com:/usr/src/sys/i386/compile/DANSMP i386 >Description: I miss the getent command, which is available in a lot of other OSes. This is NetBSD's version, which builds cleanly with only some include changes. >How-To-Repeat: >Fix: Included are the diffs from NetBSD's sources, plus a shar of the resulting files. diff -bup getent-netbsd/Makefile getent-dan/Makefile --- getent-netbsd/Makefile Sun Nov 28 23:02:52 2004 +++ getent-dan/Makefile Thu Nov 3 11:06:00 2005 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2004/11/29 05:02:52 lukem Exp $ +# $FreeBSD$ WARNS= 3 PROG= getent diff -bup getent-netbsd/getent.1 getent-dan/getent.1 --- getent-netbsd/getent.1 Sun Sep 11 18:16:15 2005 +++ getent-dan/getent.1 Thu Nov 3 11:05:26 2005 @@ -34,6 +34,8 @@ .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. .\" +.\" $FreeBSD$ +.\" .Dd August 24, 2005 .Dt GETENT 1 .Os @@ -118,7 +120,9 @@ or 3 if there is no support for enumerat A .Nm command appeared in -.Nx 3.0 . +.Nx 3.0 , +and was imported into +.Fx 7.0 . It was based on the command of the same name in .Tn Solaris and diff -bup getent-netbsd/getent.c getent-dan/getent.c --- getent-netbsd/getent.c Wed Aug 24 09:31:02 2005 +++ getent-dan/getent.c Thu Nov 3 11:02:00 2005 @@ -37,11 +37,16 @@ */ #include +#if 0 #ifndef lint __RCSID("$NetBSD: getent.c,v 1.7 2005/08/24 14:31:02 ginsbach Exp $"); #endif /* not lint */ +#endif + +__FBSDID("$FreeBSD$"); #include +#include #include #include @@ -60,7 +65,7 @@ __RCSID("$NetBSD: getent.c,v 1.7 2005/08 #include #include -#include +#include #include /* for INET6_ADDRSTRLEN */ # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # Makefile # getent.1 # getent.c # echo x - Makefile sed 's/^X//' >Makefile << 'END-of-Makefile' X# $FreeBSD$ X XWARNS= 3 XPROG= getent X X.include END-of-Makefile echo x - getent.1 sed 's/^X//' >getent.1 << 'END-of-getent.1' X.\" $NetBSD: getent.1,v 1.13 2005/09/11 23:16:15 wiz Exp $ X.\" X.\" Copyright (c) 2004 The NetBSD Foundation, Inc. X.\" All rights reserved. X.\" X.\" This code is derived from software contributed to The NetBSD Foundation X.\" by Luke Mewburn. X.\" X.\" Redistribution and use in source and binary forms, with or without X.\" modification, are permitted provided that the following conditions X.\" are met: X.\" 1. Redistributions of source code must retain the above copyright X.\" notice, this list of conditions and the following disclaimer. X.\" 2. Redistributions in binary form must reproduce the above copyright X.\" notice, this list of conditions and the following disclaimer in the X.\" documentation and/or other materials provided with the distribution. X.\" 3. All advertising materials mentioning features or use of this software X.\" must display the following acknowledgement: X.\" This product includes software developed by the NetBSD X.\" Foundation, Inc. and its contributors. X.\" 4. Neither the name of The NetBSD Foundation nor the names of its X.\" contributors may be used to endorse or promote products derived X.\" from this software without specific prior written permission. X.\" X.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS X.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED X.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR X.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS X.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR X.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF X.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS X.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN X.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) X.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE X.\" POSSIBILITY OF SUCH DAMAGE. X.\" X.\" $FreeBSD$ X.\" X.Dd August 24, 2005 X.Dt GETENT 1 X.Os X.Sh NAME X.Nm getent X.Nd get entries from administrative database X.Sh SYNOPSIS X.Nm X.Ar database X.Op Ar key ... X.Sh DESCRIPTION XThe X.Nm Xprogram retrieves and displays entries from the administrative Xdatabase specified by X.Ar database , Xusing the lookup order specified in X.Xr nsswitch.conf 5 . XThe display format for a given X.Ar database Xis as per the X.Dq traditional Xfile format for that database. X.Pp X.Ar database Xmay be one of: X.Bl -column "netgroup" -offset indent -compact X.Sy Database Ta Sy Display format X.It ethers Ta address name X.It group Ta group:passwd:gid:[member[,member]...] X.It hosts Ta address name [alias ...] X.It networks Ta name network [alias ...] X.It passwd Ta user:passwd:uid:gid:gecos:home_dir:shell X.It protocols Ta name protocol [alias ...] X.It rpc Ta name number [alias ...] X.It services Ta name port/protocol [alias ...] X.It shells Ta /path/to/shell X.El X.Pp XIf one or more X.Ar key Xarguments are provided, they will be looked up in X.Ar database Xusing the appropriate function. XFor example, X.Sy passwd Xsupports a numeric UID or user name; X.Sy hosts Xsupports an IPv4 address, IPv6 address, or host name; Xand X.Sy services Xsupports a service name, service name/protocol name, numeric port, or Xnumeric port/protocol name. X.Pp XIf no X.Ar key Xis provided and X.Ar database Xsupports enumeration, all entries for X.Ar database Xwill be retrieved using the appropriate enumeration function and printed. X.Sh DIAGNOSTICS X.Nm Xexits 0 on success, X1 if there was an error in the command syntax, X2 if one of the specified key names was not found in X.Ar database , Xor 3 if there is no support for enumeration on X.Ar database . X.Sh SEE ALSO X.Xr ethers 5 , X.Xr group 5 , X.Xr hosts 5 , X.Xr networks 5 , X.Xr nsswitch.conf 5 , X.Xr passwd 5 , X.Xr protocols 5 , X.Xr rpc 5 , X.Xr services 5 , X.Xr shells 5 X.Sh HISTORY XA X.Nm Xcommand appeared in X.Nx 3.0 , Xand was imported into X.Fx 7.0 . XIt was based on the command of the same name in X.Tn Solaris Xand X.Tn Linux . END-of-getent.1 echo x - getent.c sed 's/^X//' >getent.c << 'END-of-getent.c' X/* $NetBSD: getent.c,v 1.7 2005/08/24 14:31:02 ginsbach Exp $ */ X X/*- X * Copyright (c) 2004 The NetBSD Foundation, Inc. X * All rights reserved. X * X * This code is derived from software contributed to The NetBSD Foundation X * by Luke Mewburn. X * X * Redistribution and use in source and binary forms, with or without X * modification, are permitted provided that the following conditions X * are met: X * 1. Redistributions of source code must retain the above copyright X * notice, this list of conditions and the following disclaimer. X * 2. Redistributions in binary form must reproduce the above copyright X * notice, this list of conditions and the following disclaimer in the X * documentation and/or other materials provided with the distribution. X * 3. All advertising materials mentioning features or use of this software X * must display the following acknowledgement: X * This product includes software developed by the NetBSD X * Foundation, Inc. and its contributors. X * 4. Neither the name of The NetBSD Foundation nor the names of its X * contributors may be used to endorse or promote products derived X * from this software without specific prior written permission. X * X * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS X * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED X * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR X * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS X * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR X * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF X * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS X * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN X * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) X * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE X * POSSIBILITY OF SUCH DAMAGE. X */ X X#include X#if 0 X#ifndef lint X__RCSID("$NetBSD: getent.c,v 1.7 2005/08/24 14:31:02 ginsbach Exp $"); X#endif /* not lint */ X#endif X X__FBSDID("$FreeBSD$"); X X#include X#include X X#include X#include X#include X#include X#include X#include X#include X#include X#include X#include X#include X#include X X#include X#include X X#include X#include X X#include /* for INET6_ADDRSTRLEN */ X X#include X Xstatic int usage(void); Xstatic int parsenum(const char *, unsigned long *); Xstatic int ethers(int, char *[]); Xstatic int group(int, char *[]); Xstatic int hosts(int, char *[]); Xstatic int networks(int, char *[]); Xstatic int passwd(int, char *[]); Xstatic int protocols(int, char *[]); Xstatic int rpc(int, char *[]); Xstatic int services(int, char *[]); Xstatic int shells(int, char *[]); X Xenum { X RV_OK = 0, X RV_USAGE = 1, X RV_NOTFOUND = 2, X RV_NOENUM = 3, X}; X Xstatic struct getentdb { X const char *name; X int (*callback)(int, char *[]); X} databases[] = { X { "ethers", ethers, }, X { "group", group, }, X { "hosts", hosts, }, X { "networks", networks, }, X { "passwd", passwd, }, X { "protocols", protocols, }, X { "rpc", rpc, }, X { "services", services, }, X { "shells", shells, }, X X { NULL, NULL, }, X}; X X Xint Xmain(int argc, char *argv[]) X{ X struct getentdb *curdb; X X setprogname(argv[0]); X X if (argc < 2) X usage(); X for (curdb = databases; curdb->name != NULL; curdb++) { X if (strcmp(curdb->name, argv[1]) == 0) { X exit(curdb->callback(argc, argv)); X break; X } X } X fprintf(stderr, "Unknown database: %s\n", argv[1]); X usage(); X /* NOTREACHED */ X return RV_USAGE; X} X Xstatic int Xusage(void) X{ X struct getentdb *curdb; X X fprintf(stderr, "Usage: %s database [key ...]\n", X getprogname()); X fprintf(stderr, " database may be one of:\n\t"); X for (curdb = databases; curdb->name != NULL; curdb++) { X fprintf(stderr, " %s", curdb->name); X } X fprintf(stderr, "\n"); X exit(RV_USAGE); X /* NOTREACHED */ X} X Xstatic int Xparsenum(const char *word, unsigned long *result) X{ X unsigned long num; X char *ep; X X assert(word != NULL); X assert(result != NULL); X X if (!isdigit((unsigned char)word[0])) X return 0; X errno = 0; X num = strtoul(word, &ep, 10); X if (num == ULONG_MAX && errno == ERANGE) X return 0; X if (*ep != '\0') X return 0; X *result = num; X return 1; X} X X/* X * printfmtstrings -- X * vprintf(format, ...), X * then the aliases (beginning with prefix, separated by sep), X * then a newline X */ Xstatic void Xprintfmtstrings(char *strings[], const char *prefix, const char *sep, X const char *fmt, ...) X{ X va_list ap; X const char *curpref; X int i; X X va_start(ap, fmt); X vprintf(fmt, ap); X X curpref = prefix; X for (i = 0; strings[i] != NULL; i++) { X printf("%s%s", curpref, strings[i]); X curpref = sep; X } X printf("\n"); X} X X X /* X * ethers X */ X Xstatic int Xethers(int argc, char *argv[]) X{ X char hostname[MAXHOSTNAMELEN + 1], *hp; X struct ether_addr ea, *eap; X int i, rv; X X assert(argc > 1); X assert(argv != NULL); X X#define ETHERSPRINT printf("%-17s %s\n", ether_ntoa(eap), hp) X X rv = RV_OK; X if (argc == 2) { X fprintf(stderr, "Enumeration not supported on ethers\n"); X rv = RV_NOENUM; X } else { X for (i = 2; i < argc; i++) { X if ((eap = ether_aton(argv[i])) == NULL) { X eap = &ea; X hp = argv[i]; X if (ether_hostton(hp, eap) != 0) { X rv = RV_NOTFOUND; X break; X } X } else { X hp = hostname; X if (ether_ntohost(hp, eap) != 0) { X rv = RV_NOTFOUND; X break; X } X } X ETHERSPRINT; X } X } X return rv; X} X X /* X * group X */ X Xstatic int Xgroup(int argc, char *argv[]) X{ X struct group *gr; X unsigned long id; X int i, rv; X X assert(argc > 1); X assert(argv != NULL); X X#define GROUPPRINT printfmtstrings(gr->gr_mem, ":", ",", "%s:%s:%u", \ X gr->gr_name, gr->gr_passwd, gr->gr_gid) X X setgroupent(1); X rv = RV_OK; X if (argc == 2) { X while ((gr = getgrent()) != NULL) X GROUPPRINT; X } else { X for (i = 2; i < argc; i++) { X if (parsenum(argv[i], &id)) X gr = getgrgid((gid_t)id); X else X gr = getgrnam(argv[i]); X if (gr != NULL) X GROUPPRINT; X else { X rv = RV_NOTFOUND; X break; X } X } X } X endgrent(); X return rv; X} X X X /* X * hosts X */ X Xstatic void Xhostsprint(const struct hostent *he) X{ X char buf[INET6_ADDRSTRLEN]; X X assert(he != NULL); X if (inet_ntop(he->h_addrtype, he->h_addr, buf, sizeof(buf)) == NULL) X strlcpy(buf, "# unknown", sizeof(buf)); X printfmtstrings(he->h_aliases, " ", " ", "%-16s %s", buf, he->h_name); X} X Xstatic int Xhosts(int argc, char *argv[]) X{ X struct hostent *he; X char addr[IN6ADDRSZ]; X int i, rv; X X assert(argc > 1); X assert(argv != NULL); X X sethostent(1); X rv = RV_OK; X if (argc == 2) { X while ((he = gethostent()) != NULL) X hostsprint(he); X } else { X for (i = 2; i < argc; i++) { X if (inet_pton(AF_INET6, argv[i], (void *)addr) > 0) X he = gethostbyaddr(addr, IN6ADDRSZ, AF_INET6); X else if (inet_pton(AF_INET, argv[i], (void *)addr) > 0) X he = gethostbyaddr(addr, INADDRSZ, AF_INET); X else X he = gethostbyname(argv[i]); X if (he != NULL) X hostsprint(he); X else { X rv = RV_NOTFOUND; X break; X } X } X } X endhostent(); X return rv; X} X X X /* X * networks X */ X Xstatic void Xnetworksprint(const struct netent *ne) X{ X char buf[INET6_ADDRSTRLEN]; X struct in_addr ianet; X X assert(ne != NULL); X ianet = inet_makeaddr(ne->n_net, 0); X if (inet_ntop(ne->n_addrtype, &ianet, buf, sizeof(buf)) == NULL) X strlcpy(buf, "# unknown", sizeof(buf)); X printfmtstrings(ne->n_aliases, " ", " ", "%-16s %s", ne->n_name, buf); X} X Xstatic int Xnetworks(int argc, char *argv[]) X{ X struct netent *ne; X in_addr_t net; X int i, rv; X X assert(argc > 1); X assert(argv != NULL); X X setnetent(1); X rv = RV_OK; X if (argc == 2) { X while ((ne = getnetent()) != NULL) X networksprint(ne); X } else { X for (i = 2; i < argc; i++) { X net = inet_network(argv[i]); X if (net != INADDR_NONE) X ne = getnetbyaddr(net, AF_INET); X else X ne = getnetbyname(argv[i]); X if (ne != NULL) X networksprint(ne); X else { X rv = RV_NOTFOUND; X break; X } X } X } X endnetent(); X return rv; X} X X X /* X * passwd X */ X Xstatic int Xpasswd(int argc, char *argv[]) X{ X struct passwd *pw; X unsigned long id; X int i, rv; X X assert(argc > 1); X assert(argv != NULL); X X#define PASSWDPRINT printf("%s:%s:%u:%u:%s:%s:%s\n", \ X pw->pw_name, pw->pw_passwd, pw->pw_uid, \ X pw->pw_gid, pw->pw_gecos, pw->pw_dir, pw->pw_shell) X X setpassent(1); X rv = RV_OK; X if (argc == 2) { X while ((pw = getpwent()) != NULL) X PASSWDPRINT; X } else { X for (i = 2; i < argc; i++) { X if (parsenum(argv[i], &id)) X pw = getpwuid((uid_t)id); X else X pw = getpwnam(argv[i]); X if (pw != NULL) X PASSWDPRINT; X else { X rv = RV_NOTFOUND; X break; X } X } X } X endpwent(); X return rv; X} X X X /* X * protocols X */ X Xstatic int Xprotocols(int argc, char *argv[]) X{ X struct protoent *pe; X unsigned long id; X int i, rv; X X assert(argc > 1); X assert(argv != NULL); X X#define PROTOCOLSPRINT printfmtstrings(pe->p_aliases, " ", " ", \ X "%-16s %5d", pe->p_name, pe->p_proto) X X setprotoent(1); X rv = RV_OK; X if (argc == 2) { X while ((pe = getprotoent()) != NULL) X PROTOCOLSPRINT; X } else { X for (i = 2; i < argc; i++) { X if (parsenum(argv[i], &id)) X pe = getprotobynumber((int)id); X else X pe = getprotobyname(argv[i]); X if (pe != NULL) X PROTOCOLSPRINT; X else { X rv = RV_NOTFOUND; X break; X } X } X } X endprotoent(); X return rv; X} X X /* X * rpc X */ X Xstatic int Xrpc(int argc, char *argv[]) X{ X struct rpcent *re; X unsigned long id; X int i, rv; X X assert(argc > 1); X assert(argv != NULL); X X#define RPCPRINT printfmtstrings(re->r_aliases, " ", " ", \ X "%-16s %6d", \ X re->r_name, re->r_number) X X setrpcent(1); X rv = RV_OK; X if (argc == 2) { X while ((re = getrpcent()) != NULL) X RPCPRINT; X } else { X for (i = 2; i < argc; i++) { X if (parsenum(argv[i], &id)) X re = getrpcbynumber((int)id); X else X re = getrpcbyname(argv[i]); X if (re != NULL) X RPCPRINT; X else { X rv = RV_NOTFOUND; X break; X } X } X } X endrpcent(); X return rv; X} X X /* X * services X */ X Xstatic int Xservices(int argc, char *argv[]) X{ X struct servent *se; X unsigned long id; X char *proto; X int i, rv; X X assert(argc > 1); X assert(argv != NULL); X X#define SERVICESPRINT printfmtstrings(se->s_aliases, " ", " ", \ X "%-16s %5d/%s", \ X se->s_name, ntohs(se->s_port), se->s_proto) X X setservent(1); X rv = RV_OK; X if (argc == 2) { X while ((se = getservent()) != NULL) X SERVICESPRINT; X } else { X for (i = 2; i < argc; i++) { X proto = strchr(argv[i], '/'); X if (proto != NULL) X *proto++ = '\0'; X if (parsenum(argv[i], &id)) X se = getservbyport((int)id, proto); X else X se = getservbyname(argv[i], proto); X if (se != NULL) X SERVICESPRINT; X else { X rv = RV_NOTFOUND; X break; X } X } X } X endservent(); X return rv; X} X X X /* X * shells X */ X Xstatic int Xshells(int argc, char *argv[]) X{ X const char *sh; X int i, rv; X X assert(argc > 1); X assert(argv != NULL); X X#define SHELLSPRINT printf("%s\n", sh) X X setusershell(); X rv = RV_OK; X if (argc == 2) { X while ((sh = getusershell()) != NULL) X SHELLSPRINT; X } else { X for (i = 2; i < argc; i++) { X setusershell(); X while ((sh = getusershell()) != NULL) { X if (strcmp(sh, argv[i]) == 0) { X SHELLSPRINT; X break; X } X } X if (sh == NULL) { X rv = RV_NOTFOUND; X break; X } X } X } X endusershell(); X return rv; X} END-of-getent.c exit >Release-Note: >Audit-Trail: >Unformatted: From trasz at pin.if.uz.zgora.pl Thu Nov 3 10:20:16 2005 From: trasz at pin.if.uz.zgora.pl (trasz <) Date: Thu Nov 3 10:20:39 2005 Subject: misc/88463: 'devfs rule add' before 'devfs ruleset' kills devfs. Message-ID: <200511031815.jA3IFXrX066138@www.freebsd.org> >Number: 88463 >Category: misc >Synopsis: 'devfs rule add' before 'devfs ruleset' kills devfs. >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 Nov 03 18:20:14 GMT 2005 >Closed-Date: >Last-Modified: >Originator: trasz >Release: 6.0-rc1 >Organization: >Environment: FreeBSD traszkan.ds7 6.0-RC1 FreeBSD 6.0-RC1 #0: Sat Oct 29 21:42:46 CEST 2005 trasz@traszkan.ds7:/usr/obj/usr/src/sys/TRASHCAN i386 >Description: doing 'devfs rule add ' before 'devfs ruleset ' makes all the dev-related processes - and some ordinary ones like ps(1) - sleep endlessly on 'devfs rule lock'. clean reboot of the system is impossible after that. note that this occurs only if you don't have any ruleset enabled - that is, no 'devfs_system_ruleset=something' in /etc/rc.conf. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From stacey at vickiandstacey.com Thu Nov 3 11:21:04 2005 From: stacey at vickiandstacey.com (Stacey Roberts) Date: Thu Nov 3 11:21:16 2005 Subject: kern/88303: buildkernel fails with "undefined reference to `sbc_lock'" for ES1978 Maestro-2E Audiodrive on HP XE2 notebook In-Reply-To: <200511010010.jA10AFXg066639@freefall.freebsd.org> References: <200511010003.jA103HuG041632@www.freebsd.org> <200511010010.jA10AFXg066639@freefall.freebsd.org> Message-ID: <20051103192044.GQ739@crom.vickiandstacey.com> Hi FreeBSD-gnats-submit! On Tue, 01 Nov 2005, FreeBSD-gnats-submit@freebsd.org wrote: > Thank you very much for your problem report. > It has the internal identification `kern/88303'. > The individual assigned to look at your > report is: freebsd-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=88303 > > >Category: kern > >Responsible: freebsd-bugs > >Synopsis: buildkernel fails with "undefined reference to `sbc_lock'" for ES1978 Maestro-2E Audiodrive on HP XE2 notebook > >Arrival-Date: Tue Nov 01 00:10:15 GMT 2005 Please close this fault, as I've managed to get the customized kernel to compile and install after adding "device snd_sbc" to the kernel. Regards, Stacey From stacey at vickiandstacey.com Thu Nov 3 11:30:19 2005 From: stacey at vickiandstacey.com (Stacey Roberts) Date: Thu Nov 3 11:31:08 2005 Subject: kern/88303: buildkernel fails with "undefined reference to `sbc_lock'" for ES1978 Maestro-2E Audiodrive on HP XE2 notebook Message-ID: <200511031930.jA3JUJni077545@freefall.freebsd.org> The following reply was made to PR kern/88303; it has been noted by GNATS. From: Stacey Roberts To: FreeBSD-gnats-submit@freebsd.org, freebsd-bugs@freebsd.org Cc: Subject: Re: kern/88303: buildkernel fails with "undefined reference to `sbc_lock'" for ES1978 Maestro-2E Audiodrive on HP XE2 notebook Date: Thu, 3 Nov 2005 19:20:44 +0000 Hi FreeBSD-gnats-submit! On Tue, 01 Nov 2005, FreeBSD-gnats-submit@freebsd.org wrote: > Thank you very much for your problem report. > It has the internal identification `kern/88303'. > The individual assigned to look at your > report is: freebsd-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=88303 > > >Category: kern > >Responsible: freebsd-bugs > >Synopsis: buildkernel fails with "undefined reference to `sbc_lock'" for ES1978 Maestro-2E Audiodrive on HP XE2 notebook > >Arrival-Date: Tue Nov 01 00:10:15 GMT 2005 Please close this fault, as I've managed to get the customized kernel to compile and install after adding "device snd_sbc" to the kernel. Regards, Stacey From jpeg at thilelli.net Thu Nov 3 11:30:25 2005 From: jpeg at thilelli.net (Julien Gabel) Date: Thu Nov 3 11:31:09 2005 Subject: bin/88460: Import /usr/bin/getent from NetBSD. Message-ID: <200511031930.jA3JUNjK077577@freefall.freebsd.org> The following reply was made to PR bin/88460; it has been noted by GNATS. From: "Julien Gabel" To: "Dan Nelson" Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/88460: Import /usr/bin/getent from NetBSD. Date: Thu, 3 Nov 2005 20:25:55 +0100 (CET) >>Number: 88460 >>Category: bin >>Synopsis: Import /usr/bin/getent from NetBSD >>Confidential: no >>Severity: non-critical >>Priority: low >>Responsible: freebsd-bugs >>State: open >>Quarter: >>Keywords: >>Date-Required: >>Class: change-request >>Submitter-Id: current-users >>Arrival-Date: Thu Nov 03 17:20:12 GMT 2005 >>Closed-Date: >>Last-Modified: >>Originator: Dan Nelson >>Release: FreeBSD 5.4-STABLE i386 >>Organization: > The Allant Group >>Environment: > System: FreeBSD dan.emsphone.com 5.4-STABLE FreeBSD 5.4-STABLE #415: Wed > Oct 26 12:24:22 CDT 2005 > zsh@dan.emsphone.com:/usr/src/sys/i386/compile/DANSMP i386 > >>Description: > > I miss the getent command, which is available in a lot of other OSes. > This is NetBSD's version, which builds cleanly with only some include > changes. Yes, i vote for this one! Since you provide a patch, i just want to say that if the `getent' command finally reach the FreeBSD tree, my old PR bin/79903 requesting this particular inclusion (but without a patch) may be closed too. FYI, the proposed modifications seems ok on both RELENG_6 and -CURRENT machines (tested in a local[1] environment). Thank you very much, Dan. -- -jpeg. [1] i.e. without a NIS or LDAP respositories. Can do the test tomorrow though, if someone is interested. From maxim at FreeBSD.org Thu Nov 3 11:39:36 2005 From: maxim at FreeBSD.org (Maxim Konovalov) Date: Thu Nov 3 11:40:02 2005 Subject: kern/88303: buildkernel fails with "undefined reference to `sbc_lock'" for ES1978 Maestro-2E Audiodrive on HP XE2 notebook Message-ID: <200511031939.jA3JdUpJ080956@freefall.freebsd.org> Synopsis: buildkernel fails with "undefined reference to `sbc_lock'" for ES1978 Maestro-2E Audiodrive on HP XE2 notebook State-Changed-From-To: open->closed State-Changed-By: maxim State-Changed-When: Thu Nov 3 19:38:59 GMT 2005 State-Changed-Why: Closed at the submitter's request. http://www.freebsd.org/cgi/query-pr.cgi?pr=88303 From maxim at FreeBSD.org Thu Nov 3 11:42:01 2005 From: maxim at FreeBSD.org (Maxim Konovalov) Date: Thu Nov 3 11:42:12 2005 Subject: bin/79903: Request to add a new tool: getent(1). Message-ID: <200511031941.jA3JfwmT081279@freefall.freebsd.org> Synopsis: Request to add a new tool: getent(1). State-Changed-From-To: open->closed State-Changed-By: maxim State-Changed-When: Thu Nov 3 19:40:50 GMT 2005 State-Changed-Why: Superseded by bin/88460. http://www.freebsd.org/cgi/query-pr.cgi?pr=79903 From dnelson at allantgroup.com Thu Nov 3 12:00:45 2005 From: dnelson at allantgroup.com (Dan Nelson) Date: Thu Nov 3 12:01:12 2005 Subject: bin/88460: Import /usr/bin/getent from NetBSD. Message-ID: <200511032000.jA3K0aOU082821@freefall.freebsd.org> The following reply was made to PR bin/88460; it has been noted by GNATS. From: Dan Nelson To: Julien Gabel Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/88460: Import /usr/bin/getent from NetBSD. Date: Thu, 3 Nov 2005 13:59:31 -0600 In the last episode (Nov 03), Julien Gabel said: > Yes, i vote for this one! Since you provide a patch, i just want to > say that if the `getent' command finally reach the FreeBSD tree, my > old PR bin/79903 requesting this particular inclusion (but without a > patch) may be closed too. FYI, the proposed modifications seems ok > on both RELENG_6 and -CURRENT machines (tested in a local[1] > environment). Thank you very much, Dan. I only verified that it works with both NIS and LDAP on 5.4 systems, but I would be surprised if there were any problems on other versions. It uses standard lookup functions. -- Dan Nelson dnelson@allantgroup.com From David.Boyd at insightbb.com Thu Nov 3 15:40:20 2005 From: David.Boyd at insightbb.com (David Boyd) Date: Thu Nov 3 15:40:34 2005 Subject: kern/88472: panic/reboot in 5.4-STABLE Message-ID: <200511032332.jA3NWLUr030840@www.freebsd.org> >Number: 88472 >Category: kern >Synopsis: panic/reboot in 5.4-STABLE >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Nov 03 23:40:13 GMT 2005 >Closed-Date: >Last-Modified: >Originator: David Boyd >Release: 5.4-STABLE >Organization: Appalachian Regional Healthcare >Environment: FreeBSD flash-147.support.arh.org 5.4-STABLE FreeBSD 5.4-STABLE #1: Mon Oct 24 10:27:43 EDT 2005 root@flash-147.support.arh.org:/usr/obj/var/cvsup/usr/src/sys/RADIOLOGY i386 >Description: GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-marcel-freebsd". Unread portion of the kernel message buffer: Fatal trap 12: page fault while in kernel mode fault virtual address = 0x1d25117d fault code = supervisor read, page not present instruction pointer = 0x8:0xc06d06f8 stack pointer = 0x10:0xcc7378bc frame pointer = 0x10:0xcc7378bc 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 = 501 (isakmpd) trap number = 12 panic: page fault Uptime: 1d16h48m36s Dumping 255 MB 16 32 48 64 80 96 112 128 144 160 176 192 208 224 240 #0 doadump () at pcpu.h:160 160 __asm __volatile("movl %%fs:0,%0" : "=r" (td)); (kgdb) bt #0 doadump () at pcpu.h:160 #1 0xc0616454 in boot (howto=260) at /var/cvsup/usr/src/sys/kern/kern_shutdown.c:412 #2 0xc06166e8 in panic (fmt=0xc07e0dce "%s") at /var/cvsup/usr/src/sys/kern/kern_shutdown.c:568 #3 0xc0795620 in trap_fatal (frame=0xcc73787c, eva=488968573) at /var/cvsup/usr/src/sys/i386/i386/trap.c:817 #4 0xc079538b in trap_pfault (frame=0xcc73787c, usermode=0, eva=488968573) at /var/cvsup/usr/src/sys/i386/i386/trap.c:735 #5 0xc0794fcd in trap (frame= {tf_fs = -1047658472, tf_es = -1049100272, tf_ds = -864878576, tf_edi = -1049804800, tf_esi = -864847264, tf_ebp = -864847684, tf_isp = -864847704, tf_ebx = 0, tf_edx = 16471, tf_ecx = -1049804600, tf_eax = 488968537, tf_trapno = 12, tf_err = 0, tf_eip = -1066596616, tf_cs = 8, tf_eflags = 66054, tf_esp = -864847664, tf_ss = -1066629994}) at /var/cvsup/usr/src/sys/i386/i386/trap.c:425 #6 0xc0784f1a in calltrap () at /var/cvsup/usr/src/sys/i386/i386/exception.s:140 #7 0xc18e0018 in ?? () #8 0xc1780010 in ?? () #9 0xcc730010 in ?? () #10 0xc16d4000 in ?? () #11 0xcc737a60 in ?? () #12 0xcc7378bc in ?? () #13 0xcc7378a8 in ?? () #14 0x00000000 in ?? () #15 0x00004057 in ?? () #16 0xc16d40c8 in ?? () #17 0x1d251159 in ?? () #18 0x0000000c in ?? () #19 0x00000000 in ?? () #20 0xc06d06f8 in keydb_newspid () at /var/cvsup/usr/src/sys/netkey/keydb.c:88 #21 0xc06c8496 in key_newsp (id=0) at /var/cvsup/usr/src/sys/netkey/key.c:1300 #22 0xc06c8594 in key_msg2sp (xpl0=0xc16d40c8, len=0, error=0xcc737920) at /var/cvsup/usr/src/sys/netkey/key.c:1351 #23 0xc06c9053 in key_spdadd (so=0xc1784288, m=0xc16d4000, mhp=0xcc737a60) at /var/cvsup/usr/src/sys/netkey/key.c:1856 #24 0xc06cf341 in key_parse (m=0xc16d4000, so=0xc1784288) at /var/cvsup/usr/src/sys/netkey/key.c:7134 #25 0xc06d0b03 in key_output (m=0xc16d4000) at /var/cvsup/usr/src/sys/netkey/keysock.c:131 #26 0xc068a308 in raw_usend (so=0x0, flags=0, m=0x0, nam=0x0, control=0x0, td=0xc15f3600) at /var/cvsup/usr/src/sys/net/raw_usrreq.c:263 #27 0xc06d106b in key_send (so=0xc1784288, flags=0, m=0xc16d4000, nam=0x0, control=0x0, p=0xc15f3600) at /var/cvsup/usr/src/sys/netkey/keysock.c:442 #28 0xc064c363 in sosend (so=0xc1784288, addr=0x0, uio=0xc18c9700, top=0xc16d4000, control=0x0, flags=0, td=0xc15f3600) at /var/cvsup/usr/src/sys/kern/uipc_socket.c:835 #29 0xc063bb76 in soo_write (fp=0x0, uio=0xc18c9700, active_cred=0xc14fbd80, flags=0, td=0xc15f3600) at /var/cvsup/usr/src/sys/kern/sys_socket.c:118 #30 0xc0635e6b in dofilewrite (td=0xc15f3600, fd=5, fp=0xc1716330, auio=0xc18c9700, offset= ) at file.h:245 #31 0xc0635d0b in kern_writev (td=0xc15f3600, fd=5, auio=0xc18c9700) at /var/cvsup/usr/src/sys/kern/sys_generic.c:401 #32 0xc0635cb4 in writev (td=0xc15f3600, uap=0xcc737d04) at /var/cvsup/usr/src/sys/kern/sys_generic.c:387 #33 0xc079592b in syscall (frame= {tf_fs = 134742063, tf_es = 134742063, tf_ds = -1078001617, tf_edi = 134792896, tf_esi = -1077941472, tf_ebp = -1077941368, tf_isp = -864846492, tf_ebx = 5, tf_edx = 23, tf_ecx = 0, tf_eax = 121, tf_trapno = 0, tf_err = 2, tf_eip = 673149675, tf_cs = 31, tf_eflags = 662, tf_esp = -1077941508, tf_ss = 47}) at /var/cvsup/usr/src/sys/i386/i386/trap.c:1009 #34 0xc0784f6f in Xint0x80_syscall () at /var/cvsup/usr/src/sys/i386/i386/exception.s:201 #35 0x0808002f in ?? () #36 0x0808002f in ?? () #37 0xbfbf002f in ?? () #38 0x0808c6c0 in ?? () #39 0xbfbfeb20 in ?? () #40 0xbfbfeb88 in ?? () #41 0xcc737d64 in ?? () #42 0x00000005 in ?? () #43 0x00000017 in ?? () #44 0x00000000 in ?? () #45 0x00000079 in ?? () #46 0x00000000 in ?? () #47 0x00000002 in ?? () #48 0x281f72eb in ?? () #49 0x0000001f in ?? () #50 0x00000296 in ?? () #51 0xbfbfeafc in ?? () #52 0x0000002f in ?? () #53 0x0000001f in ?? () #54 0x00000296 in ?? () #55 0xbfbfee0c in ?? () #56 0x0000002f in ?? () #57 0x0f997000 in ?? () #58 0xc1701a98 in ?? () #59 0xc15f3600 in ?? () #60 0xcc737c9c in ?? () #61 0xcc737c84 in ?? () #62 0xc1506300 in ?? () #63 0xc0626087 in sched_switch (td=0xbfbfeb20, newtd=0x5, flags=) at /var/cvsup/usr/src/sys/kern/sched_4bsd.c:881 (kgdb) q dmesg -a output: _cmd: log level unchanged for class 8 143943.042312 Default log_debug_cmd: log level unchanged for class 9 143943.042341 Default log_debug_cmd: log level unchanged for class 10 Starting perlping. IPv4 ESP input: no key association found for spi 1198864675 PerlPing(v5.02.09a) domain: support.arh.org hostname: flash-147 destinations:192.168.147.253 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From rus.buoc at gmail.com Thu Nov 3 22:30:15 2005 From: rus.buoc at gmail.com (Vova) Date: Thu Nov 3 22:30:26 2005 Subject: misc/88480: pochemu v uvisor.c ne propisan palm PEG-TJ35 Message-ID: <200511040624.jA46OCUv093773@www.freebsd.org> >Number: 88480 >Category: misc >Synopsis: pochemu v uvisor.c ne propisan palm PEG-TJ35 >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Nov 04 06:30:13 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Vova >Release: 5.4-RELEASE >Organization: >Environment: FreeBSD rus.buoc 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Sat Oct 29 17:22:54 MSD 2005 root@rus.buoc:/usr/obj/usr/src/sys/PALM-TV i386 >Description: >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From domi at saargate.de Fri Nov 4 04:40:13 2005 From: domi at saargate.de (Dominik Brettnacher) Date: Fri Nov 4 04:40:26 2005 Subject: bin/88486: [patch] make periodic(8) quiet (configurable) when no output was generated Message-ID: <200511041054.jA4As2xu000876@debussy.saargate.de> >Number: 88486 >Category: bin >Synopsis: [patch] make periodic(8) quiet (configurable) when no output was generated >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: Fri Nov 04 12:40:12 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Dominik Brettnacher >Release: FreeBSD 5.4-RELEASE i386 >Organization: >Environment: System: FreeBSD debussy.saargate.de 5.4-RELEASE FreeBSD 5.4-RELEASE #4: Tue Aug 23 12:00:38 CEST 2005 domi@debussy.saargate.de:/usr/obj/usr/src/sys/DEBUSSY i386 >Description: By default, periodic(8) outputs a notification like "No output from the x files processed" if the scripts executed did not generate any output. While this is useful to know whether the scripts have been executed at all, notifications like these are too verbose in certain environments. The attached patch introduces a new option "_show_empty_output" to make this configurable. Setting it to YES (the default) results in the known behaviour. Setting it to NO means that no output (and thus no mail, if periodic output is sent out via mail) is generated. >How-To-Repeat: >Fix: --- /usr/sbin/periodic Thu Apr 3 10:55:30 2003 +++ periodic Mon Oct 31 17:13:39 2005 @@ -40,11 +40,11 @@ case "$output" in /*) pipe="cat >>$output";; "") pipe=cat;; - *) pipe="mail -s '$host ${arg##*/} run output' $output";; + *) pipe="mail -E -s '$host ${arg##*/} run output' $output";; esac - success=YES info=YES badconfig=NO # Defaults when ${run}_* aren't YES/NO - for var in success info badconfig + success=YES info=YES badconfig=NO empty_output=YES # Defaults when ${run}_* aren't YES/NO + for var in success info badconfig empty_output do case $(eval echo "\$${arg##*/}_show_$var") in [Yy][Ee][Ss]) eval $var=YES;; @@ -95,8 +95,11 @@ done if [ $empty = TRUE ] then - [ $processed = 1 ] && plural= || plural=s - echo "No output from the $processed file$plural processed" + if [ $empty_output = TRUE ] + then + [ $processed = 1 ] && plural= || plural=s + echo "No output from the $processed file$plural processed" + fi else echo "" echo "-- End of $arg output --" >Release-Note: >Audit-Trail: >Unformatted: From simon at comsys.ntu-kpi.kiev.ua Fri Nov 4 04:50:14 2005 From: simon at comsys.ntu-kpi.kiev.ua (Andrey Simonenko) Date: Fri Nov 4 04:51:43 2005 Subject: kern/88487: panic: softdep_setup_inomapdep: found inode on 5.4-STABLE Message-ID: <20051104124019.GA1405@pm513-1.comsys.ntu-kpi.kiev.ua> >Number: 88487 >Category: kern >Synopsis: panic: softdep_setup_inomapdep: found inode >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Nov 04 12:50:13 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Andrey Simonenko >Release: FreeBSD 5.4-STABLE i386 >Organization: >Environment: FreeBSD 5.4-STABLE i386 (installed one month ago), not loaded system, rebooted everyday in the morning, has several NFS exported file systems. >Description: Unread portion of the kernel message buffer: panic: softdep_setup_inomapdep: found inode Uptime: 4h24m34s Dumping 511 MB 16 32 48 64 80 96 112 128 144 160 176 192 208 224 240 256 272 288 304 320 336 352 368 384 400 416 432 448 464 480 496 #0 doadump () at pcpu.h:160 160 __asm __volatile("movl %%fs:0,%0" : "=r" (td)); (kgdb) bt #0 doadump () at pcpu.h:160 #1 0xc04cf850 in boot (howto=260) at /Src/FreeBSD-5/src/sys/kern/kern_shutdown.c:412 #2 0xc04cfae4 in panic (fmt=0xc067818f "softdep_setup_inomapdep: found inode") at /Src/FreeBSD-5/src/sys/kern/kern_shutdown.c:568 #3 0xc05c262f in softdep_setup_inomapdep (bp=0xcbc0dcb4, ip=0x0, newinum=755295) at /Src/FreeBSD-5/src/sys/ufs/ffs/ffs_softdep.c:1290 #4 0xc05b591e in ffs_nodealloccg (ip=0xc1f29a64, cg=32, ipref=Unhandled dwarf expression opcode 0x93 ) at /Src/FreeBSD-5/src/sys/ufs/ffs/ffs_alloc.c:1634 #5 0xc05b47a8 in ffs_hashalloc (ip=0xc1f29a64, cg=32, pref=754436, size=33152, allocator=0xc05b5630 ) at /Src/FreeBSD-5/src/sys/ufs/ffs/ffs_alloc.c:1178 #6 0xc05b3f63 in ffs_valloc (pvp=0xc228ca50, mode=33152, cred=0xc24dd000, vpp=0xd69b28ec) at /Src/FreeBSD-5/src/sys/ufs/ffs/ffs_alloc.c:880 #7 0xc05d9bc8 in ufs_makeinode (mode=33152, dvp=0xc228ca50, vpp=0xd69b2be8, cnp=0xd69b2bfc) at /Src/FreeBSD-5/src/sys/ufs/ufs/ufs_vnops.c:2394 #8 0xc05d636e in ufs_create (ap=0xd69b2a70) at /Src/FreeBSD-5/src/sys/ufs/ufs/ufs_vnops.c:197 #9 0xc05da1e3 in ufs_vnoperate (ap=0x0) at /Src/FreeBSD-5/src/sys/ufs/ufs/ufs_vnops.c:2827 #10 0xc052d5a0 in vn_open_cred (ndp=0xd69b2bd4, flagp=0xd69b2cd4, cmode=384, cred=0xc24dd000, fdidx=0) at vnode_if.h:118 #11 0xc052d42a in vn_open (ndp=0x0, flagp=0xd69b2cd4, cmode=384, fdidx=11) ---Type to continue, or q to quit--- at /Src/FreeBSD-5/src/sys/kern/vfs_vnops.c:91 #12 0xc05273c3 in kern_open (td=0xc1986c00, path=0x0, pathseg=UIO_USERSPACE, flags=1539, mode=384) at /Src/FreeBSD-5/src/sys/kern/vfs_syscalls.c:937 #13 0xc05272d8 in open (td=0xc1986c00, uap=0x0) at /Src/FreeBSD-5/src/sys/kern/vfs_syscalls.c:906 #14 0xc0632b73 in syscall (frame= {tf_fs = 47, tf_es = 47, tf_ds = 47, tf_edi = -1077940956, tf_esi = -1077940976, tf_ebp = 136391420, tf_isp = -694473372, tf_ebx = 4, tf_edx = 4, tf_ecx = 1, tf_eax = 5, tf_trapno = 22, tf_err = 2, tf_eip = 672775119, tf_cs = 31, tf_eflags = 530, tf_esp = 136391264, tf_ss = 47}) at /Src/FreeBSD-5/src/sys/i386/i386/trap.c:1009 #15 0xc0622b2f in Xint0x80_syscall () at /Src/FreeBSD-5/src/sys/i386/i386/exception.s:201 #16 0x0000002f in ?? () #17 0x0000002f in ?? () #18 0x0000002f in ?? () #19 0xbfbfed24 in ?? () #20 0xbfbfed10 in ?? () #21 0x08212afc in ?? () #22 0xd69b2d64 in ?? () #23 0x00000004 in ?? () #24 0x00000004 in ?? () #25 0x00000001 in ?? () ---Type to continue, or q to quit--- #26 0x00000005 in ?? () #27 0x00000016 in ?? () #28 0x00000002 in ?? () #29 0x2819bbcf in ?? () #30 0x0000001f in ?? () #31 0x00000212 in ?? () #32 0x08212a60 in ?? () #33 0x0000002f in ?? () #34 0x00000000 in ?? () #35 0x00000000 in ?? () #36 0x00000000 in ?? () #37 0x00000000 in ?? () #38 0x1965c000 in ?? () #39 0xc25de710 in ?? () #40 0xc1986c00 in ?? () #41 0xd69b2c9c in ?? () #42 0xd69b2c84 in ?? () #43 0xc1592a80 in ?? () #44 0xc04df483 in sched_switch (td=0xbfbfed10, newtd=0x4, flags=Cannot access memory at address 0x8212b0c ) at /Src/FreeBSD-5/src/sys/kern/sched_4bsd.c:881 Previous frame inner to this frame (corrupt stack?) >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From yar at comp.chem.msu.su Fri Nov 4 06:20:20 2005 From: yar at comp.chem.msu.su (Yar Tikhiy) Date: Fri Nov 4 06:20:31 2005 Subject: kern/88271: [pf] [patch] pf.ko from buildkernel can't log in -current Message-ID: <200511041420.jA4EKJ1D050691@freefall.freebsd.org> The following reply was made to PR kern/88271; it has been noted by GNATS. From: Yar Tikhiy To: bug-followup@FreeBSD.org, antoine.brodin@laposte.net Cc: Subject: Re: kern/88271: [pf] [patch] pf.ko from buildkernel can't log in -current Date: Fri, 4 Nov 2005 17:15:24 +0300 This problem should be fixed by making seperate modules for pf and pflog. The patch proposed just reverts to the old poor behavior of ignoring the real kernel option files in favor of the fake ones. -- Yar From ad at s-v-r.net Fri Nov 4 06:50:14 2005 From: ad at s-v-r.net (Andrew Degtiariov) Date: Fri Nov 4 06:50:26 2005 Subject: kern/88491: Panic when boot installation CD1 Message-ID: <200511041441.jA4EfvXC037445@www.freebsd.org> >Number: 88491 >Category: kern >Synopsis: Panic when boot installation CD1 >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Nov 04 14:50:12 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Andrew Degtiariov >Release: 6.0-BETA4 >Organization: S_V_R Ltd >Environment: >Description: While I'm trying to install FreeBSD 6.0-BETA4 to newly purchased Acer TravelMate 2355NLM I'm getting kernel panic during boot from installation CD: .. uhci1: port 0x1600-0x161f at device 29.1 on pci0 Fatal trap 12: page fault while in kernel mode cpuid = 0; apic id = 00 fault virtual address = 0xe7dc2 fault code = supervisor read, page not present instruction pointer = 0x20:0xc00e9cc5 stack pointer = 0x28:0xc10209ec frame pointer = 0x28:0xc10209ec code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 0 (swapper) [thread pid 0 tid 0 ] Stopped at 0xc00e9cc5: cmpb %cs:0x1(%esi),%bl db>trace Tracing pid 0 tid 0 td 0xc0921c00 kernbase(c00fe922,c00fe920,c07f8c65,a0b,e9) at 0xc00e9cc5 end(cb9d08c4,c4f6ec8b,81067540,ffffe5,e67f2400) at 0xc1020a44 db>show registers cs 0x20 ds 0x28 es 0xc0850028 fs 0xc0850008 ss 0x28 eax 0xf10f ecx 0xa0b edx 0x8 ebx 0xe9 esp 0xc10209ec ebp 0xc10209ec esi 0xe7dc1 edi 0xc00fe922 eip 0xc00e9cc5 efl 0x90202 dr0 0xf dr1 0xc dr2 0 dr3 0 dr4 0xffff0ff0 dr5 0x400 dr6 0xffff0ff0 dr7 0x400 0xc00e9cc5: cmpb %cs:0x1(%esi),%bl >How-To-Repeat: Nothing special. Only try to boot from FreeBSD 6.0-BETA4 CD1 >Fix: Don't know >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Fri Nov 4 07:20:28 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Fri Nov 4 07:20:41 2005 Subject: misc/88480: pochemu v uvisor.c ne propisan palm PEG-TJ35 Message-ID: <200511041520.jA4FKG3e059622@freefall.freebsd.org> Synopsis: pochemu v uvisor.c ne propisan palm PEG-TJ35 State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Fri Nov 4 15:19:02 GMT 2005 State-Changed-Why: There is not enough information here to be able to determine what problem, if any, is being reported. In addition, we are not generally able to handle PRs that are not in English. We apologize. http://www.freebsd.org/cgi/query-pr.cgi?pr=88480 From linimon at FreeBSD.org Fri Nov 4 07:52:14 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Fri Nov 4 07:52:26 2005 Subject: i386/88491: [panic] Panic when boot installation CD1 (Acer TravelMate 2355NLM) Message-ID: <200511041552.jA4FqBcV062462@freefall.freebsd.org> Synopsis: [panic] Panic when boot installation CD1 (Acer TravelMate 2355NLM) Responsible-Changed-From-To: freebsd-bugs->freebsd-i386 Responsible-Changed-By: linimon Responsible-Changed-When: Fri Nov 4 15:51:49 GMT 2005 Responsible-Changed-Why: This sounds as though it might be i386-specific. http://www.freebsd.org/cgi/query-pr.cgi?pr=88491 From jpeg at thilelli.net Fri Nov 4 09:00:37 2005 From: jpeg at thilelli.net (Julien Gabel) Date: Fri Nov 4 09:00:49 2005 Subject: bin/88460: Import /usr/bin/getent from NetBSD. Message-ID: <200511041700.jA4H0bZ0072364@freefall.freebsd.org> The following reply was made to PR bin/88460; it has been noted by GNATS. From: "Julien Gabel" To: "Dan Nelson" Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/88460: Import /usr/bin/getent from NetBSD. Date: Fri, 4 Nov 2005 17:59:31 +0100 (CET) > The following reply was made to PR bin/88460; it has been noted by GNATS. > > From: Dan Nelson > To: Julien Gabel > Cc: freebsd-gnats-submit@freebsd.org > Subject: Re: bin/88460: Import /usr/bin/getent from NetBSD. > Date: Thu, 3 Nov 2005 13:59:31 -0600 > In the last episode (Nov 03), Julien Gabel said: >> Yes, i vote for this one! Since you provide a patch, i just want to >> say that if the `getent' command finally reach the FreeBSD tree, my >> old PR bin/79903 requesting this particular inclusion (but without a > patch) may be closed too. FYI, the proposed modifications seems ok >> on both RELENG_6 and -CURRENT machines (tested in a local[1] >> environment). Thank you very much, Dan. > I only verified that it works with both NIS and LDAP on 5.4 systems, > but I would be surprised if there were any problems on other versions. > It uses standard lookup functions. Yes, works great on a RELENG_6 desktop using NIS and LDAP repositories. -- -jpeg. From loox at e-shell.net Fri Nov 4 11:20:21 2005 From: loox at e-shell.net (Axel Gonzalez) Date: Fri Nov 4 11:20:53 2005 Subject: kern/88496: iwi0: fatal error - have to reboot Message-ID: <200511041917.jA4JHpvW045875@www.freebsd.org> >Number: 88496 >Category: kern >Synopsis: iwi0: fatal error - have to reboot >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Nov 04 19:20:15 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Axel Gonzalez >Release: FreeBSD 6.0-RC1 >Organization: >Environment: FreeBSD moonshadow.e-shell.net 6.0-RC1 FreeBSD 6.0-RC1 #0: Sat Oct 22 03:45:31 CDT 2005 toor@moonshadow.e-shell.net:/usr/obj/usr/src/sys/LXTOSH i386 >Description: When normally using the card iwi, sometimes I get on dmesg: iwi0: fatal error Since its a critical error, the network card dies, and there is no way to bring it up. It only says: # /usr/local/etc/rc.d/iwi0 start iwi0: could not allocate firmware DMA memory iwi0: could not load main firmware And can't bring the card up again. Even unloading the kernel module fails: # kldunload if_iwi iwi0: detached # kldload if_iwi iwi0: mem 0xe0200000-0xe0200fff irq 22 at device 2.0 on pci2 iwi0: Ethernet address: 00:0e:00:00:00:00 (masked) iwi0: Please load firmware # /usr/local/etc/rc.d/iwi0 start iwi0: could not allocate firmware DMA memory iwi0: could not load main firmware ifconfig iwi0 down/up has no effect as well. The only solution seems to reboot. This problem seems to be more frecuent when the net is under load. Since it seems to be a common problem, and the card can get a fatal error any time, the driver should try to restart the card, and only print a warning that got a fatal error. Note: I had similar problems with 5.4, but ifconfig iwi0 down/up worked to get the card back up, and after several down/up's I got kernel panics (but I haven't got that far with 6.0). >How-To-Repeat: Use the wireless conn, for some time After the error try to bring the card back up >Fix: >Release-Note: >Audit-Trail: >Unformatted: From maxim at macomnet.ru Fri Nov 4 11:50:26 2005 From: maxim at macomnet.ru (Maxim Konovalov) Date: Fri Nov 4 11:50:43 2005 Subject: bin/86408: /usr/bin/ftp segmentation fault Message-ID: <200511041950.jA4JoQwo003279@freefall.freebsd.org> The following reply was made to PR bin/86408; it has been noted by GNATS. From: Maxim Konovalov To: Daniel Blankensteiner Cc: bug-followup@freebsd.org Subject: Re: bin/86408: /usr/bin/ftp segmentation fault Date: Fri, 4 Nov 2005 22:45:02 +0300 (MSK) Yep, this fixed in HEAD and RELENG_6 by latest lukemftp import. -- Maxim Konovalov From ceri at FreeBSD.org Fri Nov 4 11:55:45 2005 From: ceri at FreeBSD.org (Ceri Davies) Date: Fri Nov 4 11:55:57 2005 Subject: bin/79376: moused causes random mouse events with a PS/2 mouse on FreeBSD-4.11 Message-ID: <200511041955.jA4Jti8P003956@freefall.freebsd.org> Synopsis: moused causes random mouse events with a PS/2 mouse on FreeBSD-4.11 State-Changed-From-To: open->feedback State-Changed-By: ceri State-Changed-When: Fri Nov 4 19:53:44 GMT 2005 State-Changed-Why: Does this issue still exist in 5.x or 6.x? Bugs outstanding only in 4.x are unlikely to get fixed; developers are focussing mainly on 6.x releases. http://www.freebsd.org/cgi/query-pr.cgi?pr=79376 From ceri at FreeBSD.org Fri Nov 4 12:02:02 2005 From: ceri at FreeBSD.org (Ceri Davies) Date: Fri Nov 4 12:02:14 2005 Subject: kern/85329: [vinum] vinum dumpconfig destroys openmask and let FreeBSD 4.11 Stable crash Message-ID: <200511042001.jA4K1xxJ004927@freefall.freebsd.org> Synopsis: [vinum] vinum dumpconfig destroys openmask and let FreeBSD 4.11 Stable crash State-Changed-From-To: open->feedback State-Changed-By: ceri State-Changed-When: Fri Nov 4 20:00:07 GMT 2005 State-Changed-Why: If this bug only exists in vinum as it exists in 4.x and early 5.x then it basically isn't going to get fixed. Can it be reproduced under the gvinum currently in use? http://www.freebsd.org/cgi/query-pr.cgi?pr=85329 From linimon at FreeBSD.org Fri Nov 4 12:47:05 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Fri Nov 4 12:47:17 2005 Subject: bin/86408: /usr/bin/ftp segmentation fault Message-ID: <200511042047.jA4Kl4Kb013567@freefall.freebsd.org> Synopsis: /usr/bin/ftp segmentation fault State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Fri Nov 4 20:46:42 GMT 2005 State-Changed-Why: Submitter notes this is fixed in 6.0. http://www.freebsd.org/cgi/query-pr.cgi?pr=86408 From matteo at FreeBSD.org Fri Nov 4 13:05:53 2005 From: matteo at FreeBSD.org (Matteo Riondato) Date: Fri Nov 4 13:06:19 2005 Subject: conf/85558: initdiskless should not generate memory disks with soft-updates enabled Message-ID: <200511042105.jA4L5qPT019072@freefall.freebsd.org> Synopsis: initdiskless should not generate memory disks with soft-updates enabled Responsible-Changed-From-To: freebsd-bugs->brooks Responsible-Changed-By: matteo Responsible-Changed-When: Fri Nov 4 21:04:34 GMT 2005 Responsible-Changed-Why: Assign this PR to brooks@ since he seems to be the active committer in this field. BTW, to me, the patch looks correct http://www.freebsd.org/cgi/query-pr.cgi?pr=85558 From matteo at freebsd.org Fri Nov 4 13:20:18 2005 From: matteo at freebsd.org (Matteo Riondato) Date: Fri Nov 4 13:20:30 2005 Subject: conf/84221: Wrong permissions on /etc/opiekeys Message-ID: <200511042120.jA4LKIiK019698@freefall.freebsd.org> The following reply was made to PR conf/84221; it has been noted by GNATS. From: Matteo Riondato To: bug-followup@FreeBSD.org, rea@rea.mbslab.kiae.ru, ache@freebsd.org Cc: Subject: Re: conf/84221: Wrong permissions on /etc/opiekeys Date: Fri, 4 Nov 2005 22:12:01 +0100 This was never MFCed to any branch. :( Best Regards -- Matteo Riondato FreeBSD Volunteer (http://freebsd.org) G.U.F.I. Staff Member (http://www.gufi.org) FreeSBIE Developer (http://www.freesbie.org) From dodell at offmyserver.com Fri Nov 4 19:10:20 2005 From: dodell at offmyserver.com (Devon O'Dell) Date: Fri Nov 4 19:15:16 2005 Subject: kern/74309: xterm -C and rxvt -C do not grab /dev/console Message-ID: <200511050310.jA53AJHh070208@freefall.freebsd.org> The following reply was made to PR kern/74309; it has been noted by GNATS. From: "Devon O'Dell" To: bug-followup@FreeBSD.org, jpc@drum.msfc.nasa.gov Cc: Subject: Re: kern/74309: xterm -C and rxvt -C do not grab /dev/console Date: Fri, 4 Nov 2005 19:04:15 -0800 I've tried this in rio (from plan9port), Windowmaker, and enlightenment dr17 with Xterm and rxvt and do not experience this issue under amd64 nor i386 under FreeBSD 7-CURRENT. Is this still an issue? --Devon From dodell at offmyserver.com Fri Nov 4 19:50:16 2005 From: dodell at offmyserver.com (Devon O'Dell) Date: Fri Nov 4 19:50:28 2005 Subject: kern/74309: xterm -C and rxvt -C do not grab /dev/console Message-ID: <200511050350.jA53oFx6073490@freefall.freebsd.org> The following reply was made to PR kern/74309; it has been noted by GNATS. From: "Devon O'Dell" To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/74309: xterm -C and rxvt -C do not grab /dev/console Date: Fri, 4 Nov 2005 19:43:31 -0800 I've attempted reproducing this under FreeBSD 7-CURRENT amd64 and i386 with rxvt / xterm in rio, E dr17, and windowmaker and do not experience this problem. Is this still an issue? --Devon From Stavros at staff.esc.net.au Fri Nov 4 20:30:17 2005 From: Stavros at staff.esc.net.au (Stavros Patiniotis) Date: Fri Nov 4 20:30:28 2005 Subject: misc/88515: NTP not starting from RC when using /etc/ntp/ntp.conf Message-ID: <200511050425.jA54PvuP074227@www.freebsd.org> >Number: 88515 >Category: misc >Synopsis: NTP not starting from RC when using /etc/ntp/ntp.conf >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Nov 05 04:30:15 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Stavros Patiniotis >Release: 5.4 >Organization: EscapeNet >Environment: FreeBSD enter2.esc.net.au 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Sun May 8 10:21:06 UTC 2005 root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: When adding the following lines to /etc/rc.conf: ntpd_enable="YES" ntpd_flags="-gc /etc/ntp/ntp.conf" ntpd will fail to start becuase /etc/rc.d/ntpd on line 18 has the configuration file of: required_files="/etc/ntp.conf" hardcoded into the script. Hope that this helps. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From elmer.rivera at gmail.com Sat Nov 5 00:10:18 2005 From: elmer.rivera at gmail.com (Elmer Rivera) Date: Sat Nov 5 00:14:52 2005 Subject: misc/88517: kernel build error Message-ID: <200511050809.jA5890Z4090619@www.freebsd.org> >Number: 88517 >Category: misc >Synopsis: kernel build error >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Nov 05 08:10:17 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Elmer Rivera >Release: FreeBSD 6.0-RELEASE >Organization: HCG >Environment: GENERIC >Description: linking kernel.debug umass.o(.text+0x15af): In function `umass_cam_attach_sim': /usr/src/sys/dev/usb/umass.c:2193: undefined reference to `cam_simq_alloc' umass.o(.text+0x15e1):/usr/src/sys/dev/usb/umass.c:2197: undefined reference to `cam_sim_alloc' umass.o(.text+0x15f1):/usr/src/sys/dev/usb/umass.c:2205: undefined reference to `cam_simq_free' umass.o(.text+0x160a):/usr/src/sys/dev/usb/umass.c:2209: undefined reference to `xpt_bus_register' umass.o(.text+0x162f): In function `umass_cam_rescan_callback': /usr/src/sys/dev/usb/umass.c:2230: undefined reference to `xpt_free_path' umass.o(.text+0x1677): In function `umass_cam_rescan': /usr/src/sys/cam/cam_sim.h:106: undefined reference to `xpt_periph' umass.o(.text+0x1680):/usr/src/sys/cam/cam_sim.h:106: undefined reference to `xp t_create_path' umass.o(.text+0x16a3): In function `umass_cam_rescan': /usr/src/sys/dev/usb/umass.c:2256: undefined reference to `xpt_setup_ccb' umass.o(.text+0x16be):/usr/src/sys/dev/usb/umass.c:2260: undefined reference to `xpt_action' umass.o(.text+0x1760): In function `umass_cam_detach_sim': /usr/src/sys/cam/cam_sim.h:106: undefined reference to `xpt_bus_deregister' umass.o(.text+0x1776): In function `umass_cam_detach_sim': /usr/src/sys/dev/usb/umass.c:2300: undefined reference to `cam_sim_free' umass.o(.text+0x17b5): In function `umass_cam_action': /usr/src/sys/dev/usb/umass.c:2329: undefined reference to `xpt_done' umass.o(.text+0x1815):/usr/src/sys/dev/usb/umass.c:2355: undefined reference to `xpt_done' umass.o(.text+0x1833):/usr/src/sys/dev/usb/umass.c:2373: undefined reference to `xpt_done' umass.o(.text+0x18b8):/usr/src/sys/dev/usb/umass.c:2418: undefined reference to `xpt_done' umass.o(.text+0x1975):/usr/src/sys/dev/usb/umass.c:2471: undefined reference to `xpt_done' umass.o(.text+0x19ad):/usr/src/sys/dev/usb/umass.c:2482: more undefined referenc es to `xpt_done' follow umass.o(.text+0x1b56): In function `umass_cam_action': /usr/src/sys/dev/usb/umass.c:2582: undefined reference to `cam_calc_geometry' umass.o(.text+0x1b5c):/usr/src/sys/dev/usb/umass.c:2583: undefined reference to `xpt_done' umass.o(.text+0x1b6e):/usr/src/sys/dev/usb/umass.c:2594: undefined reference to `xpt_done' umass.o(.text+0x1b81):/usr/src/sys/dev/usb/umass.c:2606: undefined reference to `xpt_done' umass.o(.text+0x1bbb): In function `umass_cam_cb': /usr/src/sys/dev/usb/umass.c:2642: undefined reference to `xpt_done' umass.o(.text+0x1bf7):/usr/src/sys/dev/usb/umass.c:2651: undefined reference to `xpt_done' umass.o(.text+0x1ca9):/usr/src/sys/dev/usb/umass.c:2691: more undefined referenc es to `xpt_done' follow *** Error code 1 Stop in /usr/obj/usr/src/sys/ELMERPH. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. >How-To-Repeat: install new FreeBSD 6 Release copied GENERIC ELMERPH do a config make depend make buildkernel KERNCONF=ELMERPH && make installkernel KERNCONF=ELMERPH >Fix: >Release-Note: >Audit-Trail: >Unformatted: From huntting at glarp.com Sat Nov 5 00:30:16 2005 From: huntting at glarp.com (Brad Huntting) Date: Sat Nov 5 00:30:28 2005 Subject: kern/88518: cannot mount root rw at boot Message-ID: <200511050822.jA58MnDR096279@www.freebsd.org> >Number: 88518 >Category: kern >Synopsis: cannot mount root rw at boot >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Nov 05 08:30:14 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Brad Huntting >Release: 6.0-RELEASE >Organization: >Environment: ? >Description: The machine in question has problems booting the 6.0-RELEASE 'boot-only' CD. But it can boot diskless over the network. The procedure listed below works when installing 5.4-RELEASE, but not on 6.0-RELEASE. The problem is that the kernel is mounting the root partition readonly even when the root partition is an 'md' pseudo-device. A hack in 5.4's kern/vfs_mount.c causes mountroot to use RW when mounting an md device. This appears to be missing in 6.0. But what's more disturbing, is that the kernel flag (was it -w ?) for 'mount the root partition readwrite' appears to be missing in 5.4 and probably 6.0. This was a very usefull flag, did it change? Why was it removed? >How-To-Repeat: Copy the 'boot-only' cd to a tftp- and nfs-exported directory and setup dhcp.conf accordingly. For example: filename "/scratch/diskless/FreeBSD/6.0R/boot/pxeboot"; option root-path "pernicious.glarp.com:/scratch/diskless/FreeBSD/6.0R"; Assuming you have permissions set correctly in /etc/exports, and tftp enabled from /etc/inetd.conf, a machine which net-boot's should get thrown into the FreeBSD install procedure. >Fix: Either restore the -w flag (or make a kernel environment switch 'boot_readwrite'), or reinstitute the hack in vfs_mount.c that causes 'md' root filesystems to be mounted readwrite initially. >Release-Note: >Audit-Trail: >Unformatted: From matteo at FreeBSD.org Sat Nov 5 03:17:49 2005 From: matteo at FreeBSD.org (Matteo Riondato) Date: Sat Nov 5 03:18:45 2005 Subject: misc/85510: Make Release Failure Message-ID: <200511051117.jA5BHm6n042699@freefall.freebsd.org> Synopsis: Make Release Failure State-Changed-From-To: open->closed State-Changed-By: matteo State-Changed-When: Sat Nov 5 11:16:40 GMT 2005 State-Changed-Why: For this kind of problem, please use the mailing list freebsd-current@freebsd.org or hackers@freebsd.org. http://www.freebsd.org/cgi/query-pr.cgi?pr=85510 From matteo at FreeBSD.org Sat Nov 5 03:20:20 2005 From: matteo at FreeBSD.org (Matteo Riondato) Date: Sat Nov 5 03:20:47 2005 Subject: misc/83991: cannot buildworld for RELENG_6 on machine running 4.11 Message-ID: <200511051120.jA5BKHPV042851@freefall.freebsd.org> Synopsis: cannot buildworld for RELENG_6 on machine running 4.11 State-Changed-From-To: open->closed State-Changed-By: matteo State-Changed-When: Sat Nov 5 11:19:43 GMT 2005 State-Changed-Why: RElENG_6 builds are not supported from a RELENG_4 machine. http://www.freebsd.org/cgi/query-pr.cgi?pr=83991 From matteo at FreeBSD.org Sat Nov 5 03:22:50 2005 From: matteo at FreeBSD.org (Matteo Riondato) Date: Sat Nov 5 03:23:03 2005 Subject: misc/88517: kernel build error Message-ID: <200511051122.jA5BMoOg042993@freefall.freebsd.org> Synopsis: kernel build error State-Changed-From-To: open->closed State-Changed-By: matteo State-Changed-When: Sat Nov 5 11:22:10 GMT 2005 State-Changed-Why: please consider using the mailing list freebsd-current@freebsd.org or hackers@freebsd.org for this kind of problems http://www.freebsd.org/cgi/query-pr.cgi?pr=88517 From meka at softhome.net Sat Nov 5 06:50:26 2005 From: meka at softhome.net (meka) Date: Sat Nov 5 06:50:38 2005 Subject: misc/88524: openssl can not work with smtp.gmail.com Message-ID: <200511051443.jA5Eh1Ui023204@www.freebsd.org> >Number: 88524 >Category: misc >Synopsis: openssl can not work with smtp.gmail.com >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Nov 05 14:50:13 GMT 2005 >Closed-Date: >Last-Modified: >Originator: meka >Release: FreeBSD-5.4 >Organization: >Environment: FreeBSD atom 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Sun Jun 19 02:09:54 UTC 2005 root@atom:/usr/obj/usr/src/sys/ATOM i386 >Description: Can not run openssl s_client. >How-To-Repeat: openssl s_client -starttls smtp -connect smtp.gmail.com:25 >Fix: I've tried using Gentoo linux patches, but it didn't help. >Release-Note: >Audit-Trail: >Unformatted: From pjd at FreeBSD.org Sat Nov 5 12:40:20 2005 From: pjd at FreeBSD.org (Pawel Jakub Dawidek) Date: Sat Nov 5 12:40:31 2005 Subject: misc/88517: kernel build error Message-ID: <200511052040.jA5KeKQL019405@freefall.freebsd.org> The following reply was made to PR misc/88517; it has been noted by GNATS. From: Pawel Jakub Dawidek To: Elmer Rivera Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/88517: kernel build error Date: Sat, 5 Nov 2005 21:35:26 +0100 --sm4nu43k4a2Rpi4c Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Nov 05, 2005 at 08:09:00AM +0000, Elmer Rivera wrote: [...] That's a bug on your side. You should read umass(4) manual page, it will tell you which options has to be added to the kernel config. --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --sm4nu43k4a2Rpi4c Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDbReOForvXbEpPzQRAi64AJ9IkC6MsEO2SyCZ69mNMw0DbSZhIgCgr/Ti dkoEt9JY7VoX7seEZjRdLrY= =HXcZ -----END PGP SIGNATURE----- --sm4nu43k4a2Rpi4c-- From csjp at FreeBSD.org Sat Nov 5 15:43:53 2005 From: csjp at FreeBSD.org (Christian S.J. Peron) Date: Sat Nov 5 15:44:15 2005 Subject: bin/88203: [patch] fstat(1) does not show correct device numbers Message-ID: <200511052343.jA5NhqAb043820@freefall.freebsd.org> Synopsis: [patch] fstat(1) does not show correct device numbers Responsible-Changed-From-To: freebsd-bugs->csjp Responsible-Changed-By: csjp Responsible-Changed-When: Sat Nov 5 23:43:18 GMT 2005 Responsible-Changed-Why: I'll take ownership of this PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=88203 From jonc at chen.org.nz Sat Nov 5 16:50:15 2005 From: jonc at chen.org.nz (Jonathan Chen) Date: Sat Nov 5 16:50:27 2005 Subject: bin/88538: tcsh ls-F spacing incorrect. Message-ID: <20051106004931.277F65641F@chen.org.nz> >Number: 88538 >Category: bin >Synopsis: tcsh ls-F spacing incorrect. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 06 00:50:14 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Jonathan Chen >Release: FreeBSD 6.0-STABLE i386 >Organization: >Environment: System: FreeBSD osiris.chen.org.nz 6.0-STABLE FreeBSD 6.0-STABLE #0: Sat Nov 5 19:04:46 NZDT 2005 root@osiris.chen.org.nz:/usr/obj/usr/src/sys/GENERIC i386 >Description: 6-STABLE tcsh's internal ls-F spacing between file names is calculated incorrectly, resulting in non-pretty overflowing lines on 80-coloumn. This does not happen on 5-STABLE. >How-To-Repeat: [login on console] % tcsh % mkdir c % cd c % touch a2345678.90 b2345678.90 c2345678.90 % touch d2345678.90 e2345678.90 f2345678.90 % ls-F [output overflows on one line] % ls -F a2345678.90 c2345678.90 e2345678.90 b2345678.90 d2345678.90 f2345678.90 >Fix: >Release-Note: >Audit-Trail: >Unformatted: From vaidab at phenix.rootshell.be Sun Nov 6 01:20:22 2005 From: vaidab at phenix.rootshell.be (vaidab) Date: Sun Nov 6 02:04:01 2005 Subject: bin/88365 : [patch] rm(1): "/bin/rm -P" cannot remove files not writeable by user while "/bin/rm" can Message-ID: <200511060920.jA69KLEX032741@freefall.freebsd.org> The following reply was made to PR bin/88365; it has been noted by GNATS. From: vaidab To: bug-followup@FreeBSD.org Cc: vaida.bogdan@gmail.com Subject: Re: bin/88365 : [patch] rm(1): "/bin/rm -P" cannot remove files not writeable by user while "/bin/rm" can Date: Sun, 6 Nov 2005 10:14:07 +0100 (CET) I'm submitting the patch again. mx1.freebsd.org rejects me as I don't have a hostname and my send-pr are sent via email > Fix: --- /usr/src/bin/rm/rm.c.orig Thu Nov 3 21:19:47 2005 +++ /usr/src/bin/rm/rm.c Thu Nov 3 21:20:42 2005 @@ -393,6 +393,8 @@ } if (!S_ISREG(sbp->st_mode)) return (1); + if (lchmod(file, S_IWUSR) == -1) + goto err; if ((fd = open(file, O_WRONLY, 0)) == -1) goto err; if (fstatfs(fd, &fsb) == -1) @@ -450,7 +452,7 @@ * we will not be able to overwrite file contents and will * barf later. */ - if (!stdin_ok || S_ISLNK(sp->st_mode) || Pflag || + if (!stdin_ok || S_ISLNK(sp->st_mode) || (!access(name, W_OK) && !(sp->st_flags & (SF_APPEND|SF_IMMUTABLE)) && (!(sp->st_flags & (UF_APPEND|UF_IMMUTABLE)) || !uid))) From freebsd at rea.mbslab.kiae.ru Sun Nov 6 03:40:18 2005 From: freebsd at rea.mbslab.kiae.ru (Eygene A. Ryabinkin) Date: Sun Nov 6 04:32:58 2005 Subject: conf/84221: Wrong permissions on /etc/opiekeys Message-ID: <200511061140.jA6BeHFN050897@freefall.freebsd.org> The following reply was made to PR conf/84221; it has been noted by GNATS. From: "Eygene A. Ryabinkin" To: Matteo Riondato Cc: bug-followup@FreeBSD.org, ache@freebsd.org Subject: Re: conf/84221: Wrong permissions on /etc/opiekeys Date: Sun, 6 Nov 2005 14:31:41 +0300 > This was never MFCed to any branch. :( Can you MFC it? Or I should find some other people to do it? -- rea BOFH excuse #373: Suspicious pointer corrupted virtual machine From matteo at freebsd.org Sun Nov 6 03:50:19 2005 From: matteo at freebsd.org (Matteo Riondato) Date: Sun Nov 6 04:37:21 2005 Subject: conf/84221: Wrong permissions on /etc/opiekeys Message-ID: <200511061150.jA6BoIbW051238@freefall.freebsd.org> The following reply was made to PR conf/84221; it has been noted by GNATS. From: Matteo Riondato To: "Eygene A. Ryabinkin" Cc: bug-followup@FreeBSD.org, ache@freebsd.org Subject: Re: conf/84221: Wrong permissions on /etc/opiekeys Date: Sun, 6 Nov 2005 12:43:24 +0100 On Sun, Nov 06, 2005 at 02:31:41PM +0300, Eygene A. Ryabinkin wrote: > > This was never MFCed to any branch. :( > Can you MFC it? Or I should find some other people to do it? Sadly, I cannot. I hope ache@ can find the time to MFC it, since he committed the fix. -- Matteo Riondato FreeBSD Volunteer (http://freebsd.org) G.U.F.I. Staff Member (http://www.gufi.org) FreeSBIE Developer (http://www.freesbie.org) From freebsd at rea.mbslab.kiae.ru Sun Nov 6 05:40:22 2005 From: freebsd at rea.mbslab.kiae.ru (Eygene A. Ryabinkin) Date: Sun Nov 6 05:40:34 2005 Subject: conf/84221: Wrong permissions on /etc/opiekeys Message-ID: <200511061340.jA6DeLgL066747@freefall.freebsd.org> The following reply was made to PR conf/84221; it has been noted by GNATS. From: "Eygene A. Ryabinkin" To: Matteo Riondato Cc: "Eygene A. Ryabinkin" , bug-followup@FreeBSD.org, ache@freebsd.org Subject: Re: conf/84221: Wrong permissions on /etc/opiekeys Date: Sun, 6 Nov 2005 16:37:44 +0300 > Sadly, I cannot. I hope ache@ can find the time to MFC it, since he > committed the fix. No, ache@ told me that he commited it to the -CURRENT, but had no -RELEASE at hand, so I should bother someone else. ;) I have some known commiters, so will it be OK to ask them, or I need to ask some specific person(s)? -- rea BOFH excuse #337: the butane lighter causes the pincushioning From matteo at freebsd.org Sun Nov 6 06:20:09 2005 From: matteo at freebsd.org (Matteo Riondato) Date: Sun Nov 6 06:20:26 2005 Subject: conf/84221: Wrong permissions on /etc/opiekeys Message-ID: <200511061420.jA6EK943072940@freefall.freebsd.org> The following reply was made to PR conf/84221; it has been noted by GNATS. From: Matteo Riondato To: "Eygene A. Ryabinkin" Cc: bug-followup@FreeBSD.org, ache@freebsd.org Subject: Re: conf/84221: Wrong permissions on /etc/opiekeys Date: Sun, 6 Nov 2005 15:11:11 +0100 On Sun, Nov 06, 2005 at 04:37:44PM +0300, Eygene A. Ryabinkin wrote: > > Sadly, I cannot. I hope ache@ can find the time to MFC it, since he > > committed the fix. > No, ache@ told me that he commited it to the -CURRENT, but had no -RELEASE > at hand, so I should bother someone else. ;) I have some known commiters, > so will it be OK to ask them, or I need to ask some specific person(s)? Ask them. -- Matteo Riondato FreeBSD Volunteer (http://freebsd.org) G.U.F.I. Staff Member (http://www.gufi.org) FreeSBIE Developer (http://www.freesbie.org) From sokolhacker at mail.ru Sun Nov 6 07:30:16 2005 From: sokolhacker at mail.ru (Sokolov Alexey) Date: Sun Nov 6 07:30:28 2005 Subject: misc/88549: /usr/src/tools/tools/aac Message-ID: <200511061523.jA6FNRXl097798@www.freebsd.org> >Number: 88549 >Category: misc >Synopsis: /usr/src/tools/tools/aac >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 06 15:30:14 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Sokolov Alexey >Release: 6.0-STABLE >Organization: SokolSoft >Environment: [17:07]#uname -a FreeBSD 6.0-STABLE FreeBSD 6.0-STABLE #0: Sat Nov 5 10:44:30 UTC 2005 root@:/usr/obj/usr/src/sys/GENERIC i386 [17:07]#cat /usr/src/.ctm_status src-6 136 >Description: !compiling: /usr/src/tools/tools/aac >How-To-Repeat: [17:07]# cd /usr/src/tools/tools/aac [17:07]# make Warning: Object directory not changed from original /usr/src/tools/tools/aac cc -O2 -fno-strict-aliasing -pipe -c aac_checkq.c aac_checkq.c:31:36: /sys/dev/aac/aac_ioctl.h: No such file or directory aac_checkq.c: In function `main': aac_checkq.c:50: error: storage size of 'sr' isn't known aac_checkq.c:64: error: invalid application of `sizeof' to incomplete type `aac_statrequest' aac_checkq.c:66: error: `AACIO_STATS' undeclared (first use in this function) aac_checkq.c:66: error: (Each undeclared identifier is reported only once aac_checkq.c:66: error: for each function it appears in.) *** Error code 1 Stop in /usr/src/tools/tools/aac. >Fix: error in file: /usr/src/tools/tools/aac/aac_checkq.c:31: #include "/sys/dev/aac/aac_ioctl.h" fixed code: .. #include #include #include #include #include #include /* fixed */ >Release-Note: >Audit-Trail: >Unformatted: From maxim at FreeBSD.org Sun Nov 6 07:48:01 2005 From: maxim at FreeBSD.org (Maxim Konovalov) Date: Sun Nov 6 07:48:12 2005 Subject: misc/88549: build error in /usr/src/tools/tools/aac Message-ID: <200511061548.jA6Fm0Li083015@freefall.freebsd.org> Synopsis: build error in /usr/src/tools/tools/aac State-Changed-From-To: open->patched State-Changed-By: maxim State-Changed-When: Sun Nov 6 15:47:30 GMT 2005 State-Changed-Why: Fixed in HEAD. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=88549 From fernando at schapachnik.com.ar Sun Nov 6 09:30:17 2005 From: fernando at schapachnik.com.ar (Fernando Schapachnik) Date: Sun Nov 6 09:30:30 2005 Subject: kern/88555: panic: ffs_blkfree: freeing free frag on AMD 64 Message-ID: <200511061537.jA6FbXk6000896@funes.schapachnik.com.ar> >Number: 88555 >Category: kern >Synopsis: panic: ffs_blkfree: freeing free frag on AMD 64 >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 06 17:30:15 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Fernando Schapachnik >Release: FreeBSD 6.0-STABLE amd64 >Organization: >Environment: System: FreeBSD funes.schapachnik.com.ar 6.0-STABLE FreeBSD 6.0-STABLE #17: Sat Nov 5 12:35:42 ART 2005 root@funes.schapachnik.com.ar:/usr/obj/usr/src/sys/FUNES2 amd64 >Description: Machine rebooted, so backgroup fsck started. Working with vi on a file in /home. Then: Unread portion of the kernel message buffer: dev = ad4s1f, block = 5867096, fs = /home panic: ffs_blkfree: freeing free frag Dumping 991 MB (2 chunks) chunk 0: 1MB (159 pages) ... ok chunk 1: 991MB (253648 pages) 975 959 943 927 911 895 879 863 847 831 815 799 (CTRL-C to abort) 783 767 751 735 719 703 687 671 655 (CTRL-C to abort) 639 (CTRL-C to abort) 623 (CTRL-C to abort) (CTRL-C to abort) (CTRL-C to abort) 607 591 575 559 543 527 511 495 479 463 447 431 415 399 383 367 351 335 319 303 287 271 255 239 223 207 191 175 159 143 127 111 95 79 63 47 31 15 #0 doadump () at pcpu.h:172 172 pcpu.h: No such file or directory. in pcpu.h Backtrace: #0 doadump () at pcpu.h:172 #1 0x0000000000000004 in ?? () #2 0xffffffff803b3f37 in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:399 #3 0xffffffff803b45b6 in panic (fmt=0xffffff002cb714c0 "") at /usr/src/sys/kern/kern_shutdown.c:555 #4 0xffffffff805193ba in ffs_blkfree (ump=0xffffff002fb5d800, fs=0xffffff002fbce000, devvp=0x8938, bno=1, size=6144, inum=2512154624) at /usr/src/sys/ufs/ffs/ffs_alloc.c:1877 #5 0xffffffff8051c9fa in sysctl_ffs_fsck (oidp=0x3, arg1=0x0, arg2=0, req=0x0) at /usr/src/sys/ufs/ffs/ffs_alloc.c:2472 #6 0xffffffff803bd91e in sysctl_root (oidp=0x0, arg1=0xffffffffa6c32b0c, arg2=0, req=0xffffffffa6c32a30) at /usr/src/sys/kern/kern_sysctl.c:1248 #7 0xffffffff803bddb4 in userland_sysctl (td=0xffffff002cb714c0, name=0xffffffffa6c32b00, namelen=3, old=0x0, oldlenp=0x0, inkernel=0, new=0x512620, newlen=0, retval=0xffffffffa6c32af8, flags=0) at /usr/src/sys/kern/kern_sysctl.c:1347 #8 0xffffffff803bdf5b in __sysctl (td=0xffffff002cb714c0, uap=0xffffffffa6c32bc0) at /usr/src/sys/kern/kern_sysctl.c:1282 #9 0xffffffff8057fcd1 in syscall (frame= {tf_rdi = 5316308, tf_rsi = 3, tf_rdx = 0, tf_rcx = 0, tf_r8 = 5318176, tf_r9 = 32, tf_rax = 202, tf_rbx = 5867176, tf_rbp = 3, tf_r10 = 8, tf_r11 = 2, tf_r12 = 1, tf_r13 = 0, tf_r14 = 5867176, tf_r15 = 5867096, tf_trapno ---Type to continue, or q to quit--- = 12, tf_addr = 140737488297984, tf_flags = 0, tf_err = 2, tf_rip = 34366589788, tf_cs = 43, tf_rflags = 514, tf_rsp = 140737488283736, tf_ss = 35}) at /usr/src/sys/amd64/amd64/trap.c:787 #10 0xffffffff8056ec08 in Xfast_syscall () at /usr/src/sys/amd64/amd64/exception.S:270 #11 0x0000000800688b5c in ?? () Previous frame inner to this frame (corrupt stack?) dmesg Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 6.0-STABLE #17: Sat Nov 5 12:35:42 ART 2005 root@funes.schapachnik.com.ar:/usr/obj/usr/src/sys/FUNES2 Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: AMD Athlon(tm) 64 Processor 2800+ (1804.09-MHz K8-class CPU) Origin = "AuthenticAMD" Id = 0xf4a Stepping = 10 Features=0x78bfbff AMD Features=0xe0500800 real memory = 1039990784 (991 MB) avail memory = 992620544 (946 MB) ACPI APIC Table: ioapic0 irqs 0-23 on motherboard acpi0: on motherboard acpi0: Power Button (fixed) pci_link0: irq 0 on acpi0 pci_link1: irq 11 on acpi0 pci_link2: irq 10 on acpi0 pci_link3: irq 5 on acpi0 pci_link4: irq 5 on acpi0 pci_link5: irq 5 on acpi0 pci_link6: irq 3 on acpi0 pci_link7: irq 5 on acpi0 Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0 cpu0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at device 0.0 (no driver attached) isab0: at device 2.0 on pci0 isa0: on isab0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xffa0-0xffaf at device 2.5 on pci0 ata0: on atapci0 ata1: on atapci0 pcm0: port 0xd400-0xd4ff,0xd000-0xd07f irq 18 at device 2.7 on pci0 pcm0: [GIANT-LOCKED] pcm0: ohci0: mem 0xfebf4000-0xfebf4fff irq 20 at device 3.0 on pci0 ohci0: [GIANT-LOCKED] usb0: OHCI version 1.0, legacy support usb0: on ohci0 usb0: USB revision 1.0 uhub0: SiS OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 3 ports with 3 removable, self powered ohci1: mem 0xfebf5000-0xfebf5fff irq 21 at device 3.1 on pci0 ohci1: [GIANT-LOCKED] usb1: OHCI version 1.0, legacy support usb1: on ohci1 usb1: USB revision 1.0 uhub1: SiS OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 3 ports with 3 removable, self powered ohci2: mem 0xfebf6000-0xfebf6fff irq 22 at device 3.2 on pci0 ohci2: [GIANT-LOCKED] usb2: OHCI version 1.0, legacy support usb2: on ohci2 usb2: USB revision 1.0 uhub2: SiS OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub2: 2 ports with 2 removable, self powered ehci0: mem 0xfebf7000-0xfebf7fff irq 23 at device 3.3 on pci0 ehci0: [GIANT-LOCKED] usb3: EHCI version 1.0 usb3: companion controllers, 3 ports each: usb0 usb1 usb2 usb3: on ehci0 usb3: USB revision 2.0 uhub3: SiS EHCI root hub, class 9/0, rev 2.00/1.00, addr 1 uhub3: 8 ports with 8 removable, self powered pci0: at device 4.0 (no driver attached) atapci1: port 0xec00-0xec07,0xe800-0xe803,0xe400-0xe407,0xe000-0xe003,0xdc00-0xdc0f,0xd800-0xd87f irq 17 at device 5.0 on pci0 ata2: on atapci1 ata3: on atapci1 pcib2: at device 6.0 on pci0 pci2: on pcib2 pcib3: at device 7.0 on pci0 pci3: on pcib3 rl0: port 0xc800-0xc8ff mem 0xfebf3800-0xfebf38ff irq 17 at device 10.0 on pci0 miibus0: on rl0 rlphy0: on miibus0 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto rl0: Ethernet address: 00:50:bf:09:83:ea acpi_button0: on acpi0 atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: model IntelliMouse, device ID 3 sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A fdc0: port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on acpi0 fdc0: [FAST] fd0: <1440-KB 3.5" drive> on fdc0 drive 0 ppc0: port 0x378-0x37f irq 7 on acpi0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode ppbus0: on ppc0 plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 orm0: at iomem 0xc0000-0xc7fff,0xc8000-0xcffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Timecounter "TSC" frequency 1804093781 Hz quality 800 Timecounters tick every 1.000 msec acd0: CDRW at ata0-master UDMA33 ad2: DMA limited to UDMA33, controller found non-ATA66 cable ad2: 9641MB at ata1-master UDMA33 ad4: 76319MB at ata2-master SATA150 Trying to mount root from ufs:/dev/ad4s1a WARNING: / was not properly dismounted rl0: link state changed to UP >How-To-Repeat: See above. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From ch.ey at gmx.net Sun Nov 6 15:16:45 2005 From: ch.ey at gmx.net (Christian Eyrich) Date: Sun Nov 6 15:16:57 2005 Subject: Quirks not getting included in source Message-ID: <436E8F48.7090405@gmx.net> Hi, maybe there's a reason, maybe there's a good one and maybe it's written down somewhere but I can't find that place. But I'm quite upset since I've just learned I spent some hours today for having a problem, learning how it could be fixed, learn to compile the kernel and test the quirk that fixes the problem just to finally find out that there are already reports with quirks for my problem in GNATS. The following reports all contain the same quirk for the same device (available on the market with various names, including another one which my device is labeled with): http://www.freebsd.org/cgi/query-pr.cgi?pr=usb/81846 http://www.freebsd.org/cgi/query-pr.cgi?pr=usb/83942 http://www.freebsd.org/cgi/query-pr.cgi?pr=usb/84649 To cut a long story short, those PR might not be nicest and most professional but contain the minimum of necessary information. And still they're open for months now. I stumbled over a request on the net from another user who had the same problem but had been stuck for over a month now. And who knows how may users have given up without going so far? So what can be done do bring the patch in the repository? I fear filing another report with the same patch for the problem which still exists in 6.0 final will help. Christian From davidxu at freebsd.org Sun Nov 6 16:10:16 2005 From: davidxu at freebsd.org (David Xu) Date: Sun Nov 6 16:10:28 2005 Subject: kern/34017: The siginfo_t passed to the signal handling routine is not filled out for AIO Message-ID: <200511070010.jA70AGnO057171@freefall.freebsd.org> The following reply was made to PR kern/34017; it has been noted by GNATS. From: David Xu To: bug-followup@FreeBSD.org, kip@eventdriven.org Cc: Subject: Re: kern/34017: The siginfo_t passed to the signal handling routine is not filled out for AIO Date: Mon, 07 Nov 2005 08:05:56 +0800 The signal queue is now supported on FreeBSD-current, however we still don't support SIGEV_THREAD for aio, it is a bit diffcult with current aio interfaces for me to implement it. David Xu From withay at pobox.com Sun Nov 6 17:00:25 2005 From: withay at pobox.com (Bryan Blackburn) Date: Sun Nov 6 17:00:37 2005 Subject: kern/88576: Revision 1.31 to if_fe_pccard.c breaks NE200T functionality Message-ID: <200511070052.jA70qW8S097766@www.freebsd.org> >Number: 88576 >Category: kern >Synopsis: Revision 1.31 to if_fe_pccard.c breaks NE200T functionality >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 07 01:00:24 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Bryan Blackburn >Release: 7.0-CURRENT (2005-11-05) >Organization: >Environment: FreeBSD midnight 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Sat Nov 5 21:47:24 MST 2005 root@midnight:/usr/obj/usr/src/sys/GENERIC i386 >Description: Booted 7.0-CURRENT as of 2005-11-05 (GENERIC but with WITNESS and INVARIANT disabled), and the kernel reported my network card as "pccard0: (manufacturer=0x0004, product=0x0004, function_type=6) at function 0" The card has been working fine for some time otherwise, so after some looking I found the 1.31 revision of /src/sys/dev/fe/if_fe_pccard.c, backed out that change, and the new kernel sees the card properly (fe1 for the card is created fine, devd configures it without issue). >How-To-Repeat: Boot system with the 1.31 revision of /src/sys/dev/fe/if_fe_pccard.c compiled into the kernel with the NE200T plugged into PC card slot. >Fix: Back out 1.31 revision of /src/sys/dev/fe/if_fe_pccard.c, rebuild kernel, all is good. >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Sun Nov 6 20:48:03 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Sun Nov 6 20:48:15 2005 Subject: kern/88576: [fe] revision 1.31 to if_fe_pccard.c breaks NE200T functionality Message-ID: <200511070448.jA74m3Ts095902@freefall.freebsd.org> Synopsis: [fe] revision 1.31 to if_fe_pccard.c breaks NE200T functionality Responsible-Changed-From-To: freebsd-bugs->imp Responsible-Changed-By: linimon Responsible-Changed-When: Mon Nov 7 04:47:17 GMT 2005 Responsible-Changed-Why: imp did the commit in question, perhaps he can provide a clue here? http://www.freebsd.org/cgi/query-pr.cgi?pr=88576 From imp at bsdimp.com Sun Nov 6 21:03:14 2005 From: imp at bsdimp.com (M. Warner Losh) Date: Sun Nov 6 21:03:28 2005 Subject: kern/88576: [fe] revision 1.31 to if_fe_pccard.c breaks NE200T functionality In-Reply-To: <200511070448.jA74m3Ts095902@freefall.freebsd.org> References: <200511070448.jA74m3Ts095902@freefall.freebsd.org> Message-ID: <20051106.220316.27153655.imp@bsdimp.com> Bryan, Any chance you can narrow down which part of 1.31 breaks things? Warner From stanv at pochtamt.ru Mon Nov 7 00:40:17 2005 From: stanv at pochtamt.ru (Vasily) Date: Mon Nov 7 00:40:29 2005 Subject: misc/88585: Cannot mount floppy Message-ID: <200511070836.jA78aNgP052467@www.freebsd.org> >Number: 88585 >Category: misc >Synopsis: Cannot mount floppy >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 07 08:40:15 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Vasily >Release: FreeBSD 6.0-Beta5 >Organization: GCSI >Environment: FreeBSD 6.0-Beta5 /usr/obj/usr/src/sys/GENERIC i386 >Description: node_a syslogd: kernel boot file is /boot/kernel/kernel node_a kernel: Copyright (c) 1992-2005 The FreeBSD Project. node_a kernel: Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 node_a kernel: The Regents of the University of California. All rights reserved. node_a kernel: FreeBSD 6.0-BETA5 #1: Thu Oct 27 15:40:39 MSD 2005 node_a kernel: Vasily@node_a:/usr/src/sys/i386/compile/VVSKERNEL node_a kernel: Timecounter "i8254" frequency 1193182 Hz quality 0 node_a kernel: CPU: Intel(R) Xeon(TM) CPU 3.20GHz (3200.13-MHz 686-class CPU) node_a kernel: Origin = "GenuineIntel" Id = 0xf41 Stepping = 1 node_a kernel: Features=0xbfebfbff node_a kernel: Features2=0x641d> node_a kernel: AMD Features=0x20000000 node_a kernel: Hyperthreading: 2 logical CPUs node_a kernel: real memory = 2147430400 (2047 MB) node_a kernel: avail memory = 2096488448 (1999 MB) node_a kernel: ACPI APIC Table: node_a kernel: FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs node_a kernel: cpu0 (BSP): APIC ID: 0 node_a kernel: cpu1 (AP): APIC ID: 1 node_a kernel: cpu2 (AP): APIC ID: 6 node_a kernel: cpu3 (AP): APIC ID: 7 node_a kernel: ioapic0 irqs 0-23 on motherboard node_a kernel: ioapic1 irqs 24-47 on motherboard node_a kernel: ioapic2 irqs 48-71 on motherboard node_a kernel: npx0: [FAST] node_a kernel: npx0: on motherboard node_a kernel: npx0: INT 16 interface node_a kernel: acpi0: on motherboard node_a kernel: acpi0: Power Button (fixed) node_a kernel: pci_link0: irq 3 on acpi0 node_a kernel: pci_link1: irq 3 on acpi0 node_a kernel: pci_link2: irq 3 on acpi0 node_a kernel: pci_link3: irq 3 on acpi0 node_a kernel: pci_link4: irq 0 on acpi0 node_a kernel: pci_link5: irq 3 on acpi0 node_a kernel: pci_link6: irq 3 on acpi0 node_a kernel: pci_link7: irq 3 on acpi0 node_a kernel: Timecounter "ACPI-safe" frequency 3579545 Hz quality 1000 node_a kernel: acpi_timer0: <24-bit timer at 3.579545MHz> port 0x908-0x90b on acpi0 node_a kernel: cpu0: on acpi0 node_a kernel: cpu1: on acpi0 node_a kernel: cpu2: on acpi0 node_a kernel: cpu3: on acpi0 node_a kernel: pcib0: on acpi0 node_a kernel: pci0: on pcib0 node_a kernel: pcib1: at device 2.0 on pci0 node_a kernel: pci2: on pcib1 node_a kernel: pcib2: at device 0.0 on pci2 node_a kernel: pci3: on pcib2 node_a kernel: ciss0: port 0x4000-0x40ff mem 0xfdef0000-0xfdef1fff,0xfde80000-0xfdebffff irq 26 at device 1.0 on pci3 node_a kernel: ciss0: [GIANT-LOCKED] node_a kernel: mpt0: port 0x4400-0x44ff mem 0xfde60000-0xfde7ffff,0xfde40000-0xfde5ffff irq 31 at device 3.0 on pci3 node_a kernel: mpt0: [GIANT-LOCKED] node_a kernel: mpt0: MPI Version=1.2.14.0 node_a kernel: mpt0: Unhandled Event Notify Frame. Event 0xa. node_a kernel: mpt1: port 0x4800-0x48ff mem 0xfde20000-0xfde3ffff,0xfde00000-0xfde1ffff irq 27 at device 3.1 on pci3 node_a kernel: mpt1: [GIANT-LOCKED] node_a kernel: mpt1: MPI Version=1.2.14.0 node_a kernel: mpt1: Unhandled Event Notify Frame. Event 0xa. node_a kernel: pcib3: at device 0.2 on pci2 node_a kernel: pci7: on pcib3 node_a kernel: skc0: port 0x5000-0x50ff mem 0xfdff0000-0xfdff3fff irq 53 at device 2.0 on pci7 node_a kernel: skc0: Marvell Yukon Gigabit Ethernet rev. (0x1) node_a kernel: sk0: on skc0 node_a kernel: sk0: Ethernet address: 00:0f:38:6a:9c:6f node_a kernel: miibus0: on sk0 node_a kernel: e1000phy0: on miibus0 node_a kernel: e1000phy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX-FDX, auto node_a kernel: bge0: mem 0xfdfe0000-0xfdfeffff irq 49 at device 3.0 on pci7 node_a kernel: miibus1: on bge0 node_a kernel: brgphy0: on miibus1 node_a kernel: brgphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX, 1000baseTX-FDX, auto node_a kernel: bge0: Ethernet address: 00:11:85:bb:ff:7c node_a kernel: pcib4: at device 4.0 on pci0 node_a kernel: pci11: on pcib4 node_a kernel: pcib5: at device 5.0 on pci0 node_a kernel: pci14: on pcib5 node_a kernel: uhci0: port 0x2000-0x201f irq 16 at device 29.0 on pci0 node_a kernel: uhci0: [GIANT-LOCKED] node_a kernel: usb0: on uhci0 node_a kernel: usb0: USB revision 1.0 node_a kernel: uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 node_a kernel: uhub0: 2 ports with 2 removable, self powered node_a kernel: uhci1: port 0x2020-0x203f irq 19 at device 29.1 on pci0 node_a kernel: uhci1: [GIANT-LOCKED] node_a kernel: usb1: on uhci1 node_a kernel: usb1: USB revision 1.0 node_a kernel: uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 node_a kernel: uhub1: 2 ports with 2 removable, self powered node_a kernel: uhci2: port 0x2040-0x205f irq 18 at device 29.2 on pci0 node_a kernel: uhci2: [GIANT-LOCKED] node_a kernel: usb2: on uhci2 node_a kernel: usb2: USB revision 1.0 node_a kernel: uhub2: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 node_a kernel: uhub2: 2 ports with 2 removable, self powered node_a kernel: uhci3: port 0x2060-0x207f irq 16 at device 29.3 on pci0 node_a kernel: uhci3: [GIANT-LOCKED] node_a kernel: usb3: on uhci3 node_a kernel: usb3: USB revision 1.0 node_a kernel: uhub3: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 node_a kernel: uhub3: 2 ports with 2 removable, self powered node_a kernel: ehci0: mem 0xfbef0000-0xfbef03ff irq 23 at device 29.7 on pci0 node_a kernel: ehci0: [GIANT-LOCKED] node_a kernel: usb4: EHCI version 1.0 node_a kernel: usb4: companion controllers, 2 ports each: usb0 usb1 usb2 usb3 node_a kernel: usb4: on ehci0 node_a kernel: usb4: USB revision 2.0 node_a kernel: uhub4: Intel EHCI root hub, class 9/0, rev 2.00/1.00, addr 1 node_a kernel: uhub4: 8 ports with 8 removable, self powered node_a kernel: pcib6: at device 30.0 on pci0 node_a kernel: pci1: on pcib6 node_a kernel: pci1: at device 3.0 (no driver attached) node_a kernel: pci1: at device 4.0 (no driver attached) node_a kernel: pci1: at device 4.2 (no driver attached) node_a kernel: isab0: at device 31.0 on pci0 node_a kernel: isa0: on isab0 node_a kernel: atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0x500-0x50f at device 31.1 on pci0 node_a kernel: ata0: on atapci0 node_a kernel: ata1: on atapci0 node_a kernel: acpi_tz0: on acpi0 node_a kernel: atkbdc0: port 0x60,0x64 irq 1 on acpi0 node_a kernel: atkbd0: irq 1 on atkbdc0 node_a kernel: kbd0 at atkbd0 node_a kernel: atkbd0: [GIANT-LOCKED] node_a kernel: psm0: irq 12 on atkbdc0 node_a kernel: psm0: [GIANT-LOCKED] node_a kernel: psm0: model IntelliMouse Explorer, device ID 4 node_a kernel: ppc0: port 0x378-0x37f,0x778-0x77d irq 7 drq 0 on acpi0 node_a kernel: ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode node_a kernel: ppbus0: on ppc0 node_a kernel: plip0: on ppbus0 node_a kernel: lpt0: on ppbus0 node_a kernel: lpt0: Interrupt-driven port node_a kernel: ppi0: on ppbus0 node_a kernel: sio0: port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 node_a kernel: sio0: type 16550A node_a kernel: sio1: configured irq 3 not in bitmap of probed irqs 0 node_a kernel: sio1: port may not be enabled node_a kernel: fdc0: port 0x3f2-0x3f5 irq 6 drq 2 on acpi0 node_a kernel: fdc0: [FAST] node_a kernel: fd0: <1440-KB 3.5" drive> on fdc0 drive 0 node_a kernel: sio1: configured irq 3 not in bitmap of probed irqs 0 node_a kernel: sio1: port may not be enabled node_a kernel: pmtimer0 on isa0 node_a kernel: orm0: at iomem 0xc0000-0xc7fff,0xc8000-0xc87ff,0xc8800-0xcc7ff,0xee000-0xeffff on isa0 node_a kernel: sc0: at flags 0x100 on isa0 node_a kernel: sc0: VGA <16 virtual consoles, flags=0x300> node_a kernel: sio1: configured irq 3 not in bitmap of probed irqs 0 node_a kernel: sio1: port may not be enabled node_a kernel: vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 node_a kernel: Timecounters tick every 1.000 msec node_a kernel: Waiting 5 seconds for SCSI devices to settle node_a kernel: acd0: CDROM at ata0-master UDMA33 node_a kernel: acd1: DVDROM at ata0-slave UDMA33 node_a kernel: da0 at ciss0 bus 0 target 0 lun 0 node_a kernel: da0: Fixed Direct Access SCSI-0 device node_a kernel: da0: 135.168MB/s transfers node_a kernel: da0: 34727MB (71122560 512 byte sectors: 255H 32S/T 8716C) node_a kernel: da1 at ciss0 bus 0 target 1 lun 0 node_a kernel: da1: Fixed Direct Access SCSI-0 device node_a kernel: da1: 135.168MB/s transfers node_a kernel: da1: 277835MB (569006235 512 byte sectors: 255H 63S/T 35419C) node_a kernel: SMP: AP CPU #2 Launched! node_a kernel: SMP: AP CPU #1 Launched! node_a kernel: SMP: AP CPU #3 Launched! node_a kernel: Trying to mount root from ufs:/dev/da0s2a node_a root: /etc/rc: WARNING: Dump device does not exist. Savecore not run. node_a kernel: bge0: link state changed to UP node_a sm-mta[501]: My unqualified host name (node_a) unknown; sleeping for retry node_a login: ROOT LOGIN (root) ON ttyv0 node_a amd[406]: Unknown host: .directory node_a kernel: bge0: link state changed to UP node_a halt: halted by root node_a syslogd: exiting on signal 15 >How-To-Repeat: mount -t msdosfs /dev/fd0 /mnt/floppy mount_msdosfs: /dev/fd0: Read-only file system (I cannot view content floppy!? BIOS motherboard HP Proliant ML370 G4 set "read-write" on floppy drive. May be this MB use nonstandard hardware? but on Intel925X all good, and I can read and write floppy) umount /mnt/floppy umount: /mnt/floppy: not a file system root directory >Fix: >Release-Note: >Audit-Trail: >Unformatted: From koonat at gmail.com Mon Nov 7 01:40:17 2005 From: koonat at gmail.com (koonat meelar) Date: Mon Nov 7 01:40:30 2005 Subject: misc/88586: Your installer with FTP has a horrible retarded logic flaw Message-ID: <200511070935.jA79ZDuR082225@www.freebsd.org> >Number: 88586 >Category: misc >Synopsis: Your installer with FTP has a horrible retarded logic flaw >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Nov 07 09:40:16 GMT 2005 >Closed-Date: >Last-Modified: >Originator: koonat meelar >Release: 6.0 >Organization: >Environment: It's the installer. >Description: Installing from FTP. "Unable to get packages/INDEX file from slected media." And it of course explains that it may be because the FTP mirror doesn't have the packages. Now, why in the hell ftp1.freebsd.org doesn't have the Xorg binaries I need is a mystery to me too, but I figure you know what you're doing. The problem is that it doesn't give me any opportunity to CHANGE the ftp server, instead locking me in a loop of slow "unable to get..." dialogs. >How-To-Repeat: Install FreeBSD 6.0 via FTP, try getting the Xorg Xserv and others. >Fix: Seriously guys, this is pathetic and sad. Back to linux. >Release-Note: >Audit-Trail: >Unformatted: From bugmaster at freebsd.org Mon Nov 7 03:00:28 2005 From: bugmaster at freebsd.org (FreeBSD bugmaster) Date: Mon Nov 7 03:01:24 2005 Subject: open PR's (mis)filed to gnats-admin and in limbo Message-ID: <200511071100.jA7B0Ra0048676@freefall.freebsd.org> Current FreeBSD problem reports No matches to your query From bugmaster at freebsd.org Mon Nov 7 03:00:36 2005 From: bugmaster at freebsd.org (FreeBSD bugmaster) Date: Mon Nov 7 03:01:27 2005 Subject: Current problem reports Message-ID: <200511071100.jA7B0Shh048686@freefall.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 problem is understood and a solution is being sought. f - feedback Further work requires additional information from the originator or the community - possibly confirmation of the effectiveness of a proposed solution. p - patched A patch has been committed, but some issues (MFC and / or confirmation from originator) are still open. s - suspended The problem is not being worked on, due to lack of information or resources. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested -- or when fixing the problem is abandoned. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [2001/05/10] kern/27250 bp [unionfs] [patch] unionfs filesystem pani o [2002/06/08] kern/39043 [smbfs] Corrupted files on a FAT32 partit o [2002/08/16] kern/41723 [2TB] on 1TB fs, copying files to filesys o [2002/10/25] bin/44471 qa [sysinstall] 4.6 install writes MBR even o [2003/02/16] bin/48341 qa [sysinstall] sysinstall deletes mbr altho o [2003/03/23] kern/50201 [twe] 3ware RAID 5 resulting in data corr o [2003/06/28] kern/53874 emulation [linux] /usr/ports/emulators/linux_base i o [2003/11/10] kern/59103 Serious data corruption reading compact f o [2003/12/12] kern/60175 panic: 5.2-RC: disk errors cause panic in o [2003/12/17] kern/60313 data destruction: lseek() misalignment si o [2004/02/16] i386/62902 i386 Data Corruption on Dell PE 600SC (Server o [2004/04/28] i386/66039 i386 [panic] system panic with file system cor o [2004/05/04] bin/66261 fsck cannot recover filesystem corruption o [2004/05/11] kern/66553 scottl SEBSD kernel compilation errors o [2004/05/27] i386/67260 i386 [boot] stack overflow after boot menu whe o [2004/07/07] kern/68757 kan rapid file creation on snapshotted filesy o [2004/08/06] kern/70096 [msdosfs] [patch] full msdos file system o [2004/08/23] kern/70881 5.3 beta1 kernel.generic missing from /bo o [2004/09/05] i386/71395 i386 Data corrupted on Serverworks CG-SL chips o [2004/09/09] i386/71538 i386 [install] multi-homed install trashes exi o [2004/09/16] kern/71800 5.3-RELEASE crash (infinite IRQ list dump o [2004/10/21] kern/72979 unkillable process(es) stuck in `STOP' st o [2004/10/22] bin/73019 fsck_ufs: cannot alloc 607016868 bytes fo o [2004/10/27] amd64/73211 amd64 FAST_IPSEC broken on amd64 o [2004/10/30] kern/73313 simokawa Maxtor Onetouch drivers hang or corrupt d o [2004/11/19] kern/74137 FreeBSD 5.3 BTX loader stack overflows an o [2004/12/14] amd64/75043 le [vinum] [panic] booting from mirrored vin o [2004/12/20] alpha/75317 alpha ATA DMA broken on PCalpha o [2005/01/05] kern/75844 phk gbde causes disk write errors and subsequ o [2005/01/26] threads/76690threads fork hang in child for (-lc_r & -lthr) o [2005/02/07] kern/77234 [udf] [patch] corrupted data is read from o [2005/03/14] i386/78837 i386 Partition Table Corruption in 5.3 o [2005/05/11] threads/80887jeff [sched_ule] ULE with SMP broke libpthread o [2005/07/15] kern/83529 partition table corruption using wdc/wd d o [2005/07/24] i386/83974 sos [ata] FreeBSD-6.0-BETA1 blows up with PCI o [2005/08/02] kern/84498 [unionfs] [hang] file system hangs when j o [2005/08/09] amd64/84693 amd64 Keyboard not recognized during first step o [2005/08/10] usb/84750 usb 6-BETA2 reboot/shutdown with root_fs on e f [2005/08/26] kern/85329 [vinum] vinum dumpconfig destroys openmas p [2005/08/29] kern/85440 [trap] filling up / crashes the system o [2005/09/19] i386/86317 i386 Kernel launch results in poweroff [HP zv5 o [2005/10/01] kern/86775 system reboot without syncing o [2005/10/04] i386/86880 i386 [hang] 6.0 hangs or reboots whilst 5.4 is o [2005/10/06] kern/87010 pjd Reading kernel memory & pagefault under n o [2005/10/07] i386/87026 i386 [hang] Bootup hang on atkbdc on Compaq 18 f [2005/10/08] ports/87113 dinoex OpenSSL-0.9.8 crashes OpenSSH-portable-4. o [2005/10/10] kern/87191 scottl [aac] [patch] aac(4) panics immediately w f [2005/10/31] ports/88282 ports-bugs Ports Index Error f [2005/11/02] ports/88388 ports-bugs Drupal port overwrites config on upgrade o [2005/11/03] usb/88445 usb Computer reboots after printing CUPS test o [2005/11/05] i386/88523 i386 [hang] Hang on boot after pci_link1 o [2005/11/06] amd64/88568 amd64 the freebsd 6.0-RELEASE install cd does 52 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1997/04/02] bin/3170 vi freaks and dump core if user doesn't e s [1997/10/01] bin/4672 rdist does not do hard links right when t a [1998/05/06] bin/6536 peter pppd doesn't restore drainwait for tty p [1998/09/30] gnu/8099 obrien [patch] some bugs in cpio o [1998/11/25] kern/8861 mdodd under heavy (multi interface) traffic ep0 f [1998/11/25] bin/8865 dwmalone syslogd hangs with serial console o [1999/02/15] kern/10107 interlock situation with exec_map and a p o [1999/03/30] kern/10870 eivind Kernel panic when writing to write-protec o [1999/09/11] bin/13691 fenner tcpslice cannot extract over 2GB part of s [1999/09/16] conf/13775 multi-user boot may hang in NIS environme f [1999/09/30] ports/14048 des [patch] doscmd -r doesn't work a [1999/11/04] kern/14712 iedowse [nfs] root has access to NFS mounted dire s [1999/11/17] bin/14946 mjacob rmt - remote magtape protocol o [2000/01/12] kern/16090 mdodd No buffer space available o [2000/02/21] kern/16879 tanimura [snd_csa] csa sound drivers seem to be us o [2000/02/24] bin/16948 qa [sysinstall] sysinstall/disklabel: bad pa o [2000/03/11] kern/17310 [nis] [patch] NIS host name resolving may o [2000/03/17] kern/17422 bde 4.0-STABLE: top: nlist failed s [2000/03/22] conf/17540 [nfs] NIS host lookups cause NFS mounts t o [2000/04/06] kern/17819 [unionfs] Build ports on nfs & union moun s [2000/05/22] bin/18742 mike times.allow field parsed incorrectly p [2000/05/29] kern/18874 [2TB] 32bit NFS servers export wrong nega o [2000/06/13] i386/19245 obrien -fexpensive-optimizations buggy (even wit s [2000/06/20] bin/19405 markm telnetd sends DO AUTHENTICATION even if a s [2000/07/08] bin/19773 markm [PATCH] telnet infinite loop depending on o [2000/07/13] gnu/19882 obrien ld does not detect all undefined symbols! o [2000/07/18] kern/20016 threads pthreads: Cannot set scheduling timer/Can o [2000/07/25] bin/20172 byacc 1.9 fails to generate $default tran o [2000/07/29] bin/20282 qa [sysinstall] sysinstall does not recover s [2000/08/10] bin/20521 mjacob /etc/rmt several problems o [2000/08/10] kern/20523 bde [sio] [patch] support for PCI multiport c o [2000/08/16] bin/20633 fdisk doesn't handle LBA correctly o [2000/08/23] kern/20804 deadlocking when using vnode disk file an o [2000/08/26] kern/20861 threads libc_r does not honor socket timeouts o [2000/08/29] bin/20912 marcel gdb does not recognise old executables. o [2000/08/31] kern/20958 mdodd [ep] ep0 lockup with ifconfig showing OAC o [2000/09/07] bin/21089 vi silently corrupt open file on SIGINT w o [2000/09/20] kern/21406 [boot] bootinst or booteasy overwrites se o [2000/09/21] kern/21461 imp ISA PnP resource allocator problem o [2000/09/22] kern/21463 emulation Linux compatability mode should not allow o [2000/09/29] kern/21642 Compaq Netelligent 10/100 card (TI Thunde a [2000/10/07] kern/21808 [msdosfs] [patch] msdosfs incorrectly han o [2000/10/15] kern/21998 green [socket] [patch] ident only for outgoing o [2000/10/20] kern/22142 cjc securelevel does not affect mount o [2000/10/25] bin/22291 [nfs] getcwd() fails on recently-modified o [2000/10/30] kern/22417 gibbs advansys wide scsi driver does not suppor a [2000/11/14] bin/22846 bms Routed does not reflect preference of Int s [2000/11/18] i386/22944 tegge [vm] [patch] isa_dmainit fails on machine o [2000/11/20] gnu/22972 obrien Internal Compiler Error o [2000/11/25] bin/23098 qa [sysinstall] [patch] if installing on a s o [2000/12/14] kern/23535 imp 4.x kernels seem to no longer support Ada o [2001/01/04] kern/24074 mdodd Properties of token-ring protocol must be o [2001/01/05] kern/24085 syncing on shutdown leaves filesystem dir o [2001/01/07] docs/24125 wes connect(2) can yield EWOULDBLOCK/EAGAIN o [2001/01/12] bin/24271 dumpon should check its argument more o [2001/01/19] bin/24461 Being able to increase the YP timeout wit o [2001/01/20] threads/24472threads libc_r does not honor SO_SNDTIMEO/SO_RCVT o [2001/01/25] kern/24629 harti ng_socket failes to declare connected dat o [2001/01/25] threads/24632threads libc_r delicate deviation from libc in ha o [2001/01/25] kern/24641 threads pthread_rwlock_rdlock can deadlock s [2001/01/30] kern/24740 cy filesystem corruption CFP1080 CAM SCSI ca o [2001/02/10] kern/24982 stack gap usage o [2001/02/11] i386/24997 i386 [biosdisk] [patch] /boot/loader cannot ha o [2001/02/14] kern/25093 4.2-STABLE does not recognize PCNet-ISA+ o [2001/02/21] kern/25248 bde sys/user.h needs sys/param.h, but doesn't p [2001/03/03] kern/25511 rwatson ioctl(fd, FIONREAD, &c) on a FIFO (not PI o [2001/03/05] bin/25542 standards /bin/sh: null char in quoted string o [2001/03/13] i386/25781 i386 Statclocks cannot be disabled on ServerWo o [2001/03/16] bin/25851 qa [patch] security hole in anonymous FTP se o [2001/03/18] kern/25886 [libc] cgetset(3) doesn't get cleared whe o [2001/03/20] kern/25950 obrien [asr] Bad drives on asr look zero-length a [2001/03/22] kern/25986 andre Socket would hang at LAST_ACK forever. o [2001/03/24] kern/26048 obrien [asr] 4.3-RC: SMP and asr driver don't w a [2001/03/27] kern/26142 [nfs] Unlink fails on NFS mounted filesys o [2001/03/28] kern/26171 emulation [linux] not work Linux-emulator, but hi i o [2001/04/03] kern/26316 Booting FreeBSD on VMware2 with 2 or 3 et a [2001/04/05] gnu/26362 "cvs server" doesn't honour the global -- o [2001/04/10] kern/26486 [libc] [patch] setnetgrent hangs when net o [2001/04/25] bin/26842 dd dump with h flag takes a very long time a [2001/04/26] bin/26869 vi(1) crashes in viewing a file with long o [2001/04/27] bin/26897 qa [sysinstall] 4.3R sysinstall fails to cre o [2001/05/03] kern/27059 scsi [sym] SCSI subsystem hangs under heavy lo f [2001/05/11] kern/27275 kernel bug ? (negative sbsize) o [2001/05/20] kern/27474 Interactive use of user PPP and ipfilter o [2001/05/24] docs/27605 doc Cross-document references () a [2001/06/05] kern/27893 sos can't burn audio cds on LG CD-RW CED-8083 o [2001/06/05] conf/27896 Error in /etc/exports invalidates entire o [2001/06/17] bin/28223 su doesn't look at login.conf all the tim o [2001/06/26] bin/28424 mtree fails to report directory hierarchy o [2001/06/29] kern/28508 scsi problems with backup to Tandberg SLR40 st o [2001/07/06] kern/28768 The system doesn't get connects on one of o [2001/07/07] bin/28798 mikeh mail(1) with a pager (more) requires fg/C o [2001/07/09] kern/28840 gibbs Possible interrupt masking trouble in sys f [2001/07/23] kern/29170 ru ARP request fails after "bad gateway valu o [2001/07/27] bin/29253 natd forgets about udp connections o [2001/08/02] bin/29375 qa [sysinstall] disk editor gets confused by o [2001/08/03] kern/29421 Update a file with mmap will cause mtime/ f [2001/08/11] kern/29626 [modules] loading a module that is alread o [2001/08/13] kern/29686 kevent EV_ADD EVFILT_WRITE does the wrong o [2001/08/15] bin/29725 dwmalone [picobsd] [patch] fixed segmentation faul o [2001/08/17] bin/29808 ypserv dumps core in yp_find_db o [2001/08/20] bin/29903 ypbind loses connection to NIS master and o [2001/08/23] kern/29983 imp Problem with "TI PCI-1250 PCI-CardBus Bri o [2001/08/27] kern/30125 btx/bootloader dumps very often if serial f [2001/08/28] kern/30160 [panic] kernel panic when flash disk is r s [2001/08/29] i386/30206 mdodd [boot] PS/2 server 85 can't boot kern.flp o [2001/08/30] conf/30223 [examples] [patch] Using /usr/share/examp o [2001/09/04] bin/30310 top does not show CPU usage o [2001/09/06] conf/30399 Have Fortran use the CPUTYPE variable o [2001/09/10] kern/30482 calcru calls printf while holding a spin o [2001/09/17] kern/30630 fenner Failure to check for existence of interfa o [2001/09/21] kern/30712 fatal kernel trap during ufs_rename o [2001/09/26] bin/30837 qa [sysinstall] sysinstall doesn't set the s o [2001/09/27] i386/30860 i386 [hang] While install after "Mounting root o [2001/09/27] bin/30869 dump(8) does not dump all files of a file s [2001/09/29] i386/30921 i386 [kbd] ACER mechanic ps/2 keyboard don╢t w o [2001/10/01] kern/30948 ls'ing mounted brand new floppy locks up o [2001/10/01] kern/30958 rwatson QUOTA with 0 bytes in quota.user hangs up o [2001/10/01] kern/30971 peter [nfs] NFS client modification time resolu s [2001/10/04] kern/31047 Linux programs do not dump core in linux o [2001/10/07] kern/31102 wpaul [lge] lge + Pentium III data transmission o [2001/10/14] kern/31266 cjc System can be crashed with "ls -al /flopp o [2001/10/15] bin/31304 joe [patch] fix crunchgen to work with more c o [2001/10/18] bin/31363 qa [sysinstall] "partition editor" silently o [2001/10/30] conf/31631 "MAC address" can't be acquired properly. o [2001/11/04] kern/31746 failed connect(2) seems to cause problems o [2001/11/06] kern/31790 [nfs] problem with NFS and jail() o [2001/11/12] kern/31940 [nge] nge(4) gigabit adapter link reset a o [2001/11/14] i386/31979 i386 [kbd] Setup and boot locks Compaq Armada o [2001/11/19] kern/32098 [libc] semctl() does not propagate permis o [2001/11/20] ports/32121 x11 XFree86-4-Server: xf86cfg 4.1.0 writes ba o [2001/11/26] bin/32295 threads pthread dont dequeue signals o [2001/11/28] kern/32353 if kern.maxproc > 512 sybase ASE 11.9.2( o [2001/11/29] bin/32374 vi -r doesn't work, file contained unexpe o [2001/12/08] bin/32619 des libfetch does not use RFC 1738's definito o [2001/12/10] kern/32668 peter [nfs] NFS directory removal problems mani o [2001/12/11] bin/32686 wosch locate(1) dumps a core file with broken d o [2001/12/22] ports/33080 ume gkrellmvolume interferes with the ability a [2001/12/22] i386/33089 murray GENERIC bloat causes 'make world' to brea o [2001/12/24] kern/33138 [isa] [patch] pnp problem in 4.3, 4.4, 4. o [2001/12/30] kern/33344 davidxu memory leak in device resource config loa o [2001/12/31] bin/33370 qa [sysinstall] post-configuration issue o [2002/01/02] kern/33464 soft update inconsistencies after system s [2002/01/04] gnu/33551 cvs chokes on OpenBSD repositories o [2002/01/08] bin/33672 [patch] telnetd and mount_mfs signal hand o [2002/01/13] kern/33833 luigi Correct kernel config for 4.4-RELEASE is o [2002/01/16] kern/33940 [ufs] [patch] quotactl allows compromise o [2002/01/18] kern/34017 The siginfo_t passed to the signal handli o [2002/01/18] bin/34030 miibus.ko can be loaded into the kernel w s [2002/01/20] i386/34092 i386 [hang] reboot hangs the system (IBM PC Se o [2002/01/21] gnu/34128 sdiff "e" doesn't work with some editors o [2002/01/25] gnu/34246 joe CVS doesn't rebuild CVSROOT/options o [2002/01/25] bin/34270 man -k could be used to execute any comma o [2002/01/31] kern/34470 bde Modem gets sio1 interrupt-level buffer o o [2002/02/01] threads/34536threads accept() blocks other threads o [2002/02/03] kern/34568 [lpt] turning printer on and off hangs th o [2002/02/11] bin/34811 sh: "jobs" is not pipeable o [2002/02/11] kern/34842 [nis] [patch] VmWare port + NIS causes "b o [2002/02/18] i386/35078 i386 [i386] [patch] Uninitialized pointer dere o [2002/02/22] bin/35214 obrien dump program hangs while exiting o [2002/02/26] i386/35350 i386 [boot] Can't boot on ASUS TXP4 f [2002/02/26] kern/35351 multimedia [sound] emu10k1: no posibility to record o [2002/02/28] kern/35396 poll(2) doesn't set POLLERR for failed co o [2002/02/28] kern/35399 poll(2) botches revents on dropped socket o [2002/02/28] kern/35429 select(2)/poll(2)/kevent(2) can't/don't n o [2002/03/01] kern/35442 [sis] [patch] Problem transmitting runts o [2002/03/03] kern/35506 jon [libc] innetgr() doesn't match wildcard f o [2002/03/03] kern/35511 [sis] sis(4) multicast filtering doesn't f [2002/03/07] kern/35645 bms Layer 2 switching using default router of o [2002/03/08] kern/35669 [nfs] NFSROOT breaks without a gateway s [2002/03/08] docs/35678 doc docproj Makefiles for web are broken for o [2002/03/09] kern/35703 /proc/curproc/file returns unknown o [2002/03/14] gnu/35878 /usr/bin/strip resets ABI type to FreeBSD o [2002/03/15] bin/35925 qa [sysinstall] fixit floppy cannot be mount a [2002/03/16] bin/35985 qa [sysinstall] swap double mount o [2002/03/17] i386/36003 i386 [panic] Cyclades Cyclom YeP causes panics p [2002/03/18] kern/36038 bp [smbfs] sendfile(2) on smbfs fails, expos o [2002/03/19] misc/36086 trhodes Kerberos Problem/Handbook wrong/Followup a [2002/03/19] bin/36110 dmesg output corrupt if /dev/console is b o [2002/03/20] kern/36147 bogus irq 7 message being issued o [2002/03/21] docs/36168 doc -pthread/_THREAD_SAFE docs missing in gcc o [2002/03/22] kern/36219 [bpf] [patch] poll() behaves erratic on B o [2002/03/28] kern/36415 [bktr] [patch] driver incorrectly handles o [2002/03/29] kern/36504 [kernel] [patch] crash/panic vm_object_al o [2002/03/29] bin/36508 qa [sysinstall] installation floppy bug (4.5 o [2002/03/30] kern/36517 [sis] sis driver can't map ports/memory f o [2002/03/31] kern/36566 [smbfs] System reboot with dead smb mount o [2002/04/05] kern/36784 Can't fcntl(fd, F_SETFL, ...) on a pseudo s [2002/04/07] ports/36846 ports-bugs fxtv 1.03 freezes the system when $LANG=d o [2002/04/08] bin/36867 [patch] games/fortune: add FORTUNE_PATH e o [2002/04/08] bin/36911 qa [sysinstall] installation floppies miss a o [2002/04/09] gnu/36926 send-pr destroys PR if emacs interrupt ch o [2002/04/10] i386/36943 i386 [smp] [hang] reboot hangs on Tyan Thunder o [2002/04/14] kern/37057 Problem with rlimits on filesystem mounte o [2002/04/15] kern/37109 Kernel refuses to assign unused IP to tun o [2002/04/19] kern/37261 luigi kernel is not linking without "device eth o [2002/04/22] kern/37326 [bktr] smbus/bktr crash when omitting "de o [2002/04/22] bin/37343 portmap TCP binds strangeness o [2002/04/25] kern/37436 [hang] accept dead loop when out of file o [2002/04/25] kern/37441 davidxu [isa] [patch] ISA PNP parse problem o [2002/04/27] kern/37502 [nfs] NFS client ignores mtime.tv_usec fo o [2002/04/28] i386/37523 davidxu [i386] [patch] lock for bios16 call and v o [2002/04/30] kern/37589 imp Kernel panics upon resume from zzz on my o [2002/04/30] ports/37596 portmgr EMACS_PORT_NAME=xemacs21 forks make infin o [2002/05/02] kern/37675 le [vinum] Page fault when newfs'ing a vinum o [2002/05/03] bin/37710 qa [sysinstall] LAN interface in wrong state o [2002/05/13] ports/38018 java www/jakarta-tomcat4: make passing of JVM f [2002/05/13] ports/38020 java www/jakarta-tomcat4: stop tomcat via java o [2002/05/14] i386/38070 i386 [panic] 4.6-PRERELEASE panics on resume o o [2002/05/15] kern/38095 bp vlan not supported with fxp o [2002/05/24] i386/38484 i386 [hang] probe freeze while probing devices o [2002/05/24] kern/38495 bms soreceive fails to maintain invariant on o [2002/05/24] kern/38518 [boot] combination of pr-27087 and pr-369 s [2002/05/24] kern/38527 /dev/random does not obey O_NONBLOCK flag o [2002/05/25] kern/38549 threads the procces compiled whith pthread stoppe a [2002/05/25] kern/38554 bms changing interface ipaddress doesn't seem o [2002/05/26] bin/38582 qa [sysinstall] sysinstall sets newfs flag a a [2002/05/27] gnu/38594 kan Fortan program don't link post gcc-3.1 o [2002/05/27] bin/38609 qa [sysinstall] sysinstall should know the s o [2002/05/27] kern/38632 imp Loss of connection with wi cards f [2002/05/30] i386/38731 i386 Freebsd doesn't support ( pdc20276 / Raid o [2002/05/30] kern/38752 andre rn_walktree_from not halting at the right o [2002/06/03] kern/38872 [nfs] nfs code ignores possibility of MGE o [2002/06/05] bin/38918 edquota breaks silently when quota-marked o [2002/06/07] kern/38983 Kernel fails to access disk o [2002/06/12] kern/39185 core dump binary in single user mode o [2002/06/13] kern/39233 bms NonConforming IPsec implementation from F o [2002/06/13] kern/39252 [syscons] [patch] syscons doesn't support o [2002/06/15] kern/39329 [mount] '..' at mountpoint is subject to o [2002/06/15] kern/39331 dwmalone namei cache unreliable for __getcwd() o [2002/06/17] kern/39388 scsi ncr/sym drivers fail with 53c810 and more s [2002/06/19] i386/39536 i386 [loader] FreeBSD default bootloader does o [2002/06/25] bin/39849 /sbin/restore fails to overwrite files wi o [2002/06/26] bin/39896 netmask 0xffffff00 no longer works in /et o [2002/06/27] threads/39922threads [threads] [patch] Threaded applications e o [2002/06/27] kern/39928 imp [wi] wi0 timeouts and hangs the system wh a [2002/06/27] kern/39937 bms ipstealth issue a [2002/06/28] bin/39940 [patch] /usr/sbin/periodic sends thousand o [2002/06/29] kern/40001 le [vinum] vinum showing -2 drives after rem f [2002/06/30] i386/40044 i386 SMP kernel fails to boot on DELL 610 f [2002/07/02] kern/40122 multimedia [sound] Device pcm stopps booting Kernel o [2002/07/05] kern/40206 Can not assign alias to any POINTOPOINT i o [2002/07/05] bin/40215 wpaul [nis] NIS host search not terminate o [2002/07/05] i386/40219 i386 [apm] apm breaks removable media o [2002/07/06] bin/40260 qa [sysinstall] hang when detecting devices f [2002/07/06] kern/40274 [fxp] "fxp: device timeout" errors during o [2002/07/06] bin/40278 mktime returns -1 for certain dates/timez o [2002/07/07] bin/40282 /bin/kill has bad error checking for comm o [2002/07/10] kern/40394 [if_tap] if_tap(4) driver hard coded perm o [2002/07/12] bin/40471 des chpass(1) -a option broken in CURRENT o [2002/07/19] kern/40787 kernel panic if PCMCIA CD-drive with moun o [2002/07/19] usb/40792 usb signals lead to data loss on device ugen o [2002/07/22] kern/40895 scsi wierd kernel / device driver bug s [2002/07/30] kern/41138 [vr] vr0 locks up on one hub, OK on anoth o [2002/07/31] kern/41216 [nfs] Get "NFS append race" error o [2002/08/01] conf/41242 periodic scripts make unwarranted assumpt o [2002/08/03] bin/41297 mp {t,}csh backquote/braces expansion bug o [2002/08/04] kern/41331 threads Pthread library open sets O_NONBLOCK flag o [2002/08/07] kern/41402 [panic] kernel panics in pmap_insert_entr o [2002/08/07] bin/41410 /bin/sh bug on expanding $? in here-docum o [2002/08/13] kern/41632 luigi bridging when one interface has no carrie a [2002/08/14] bin/41647 bms ifconfig(8) doesn't accept lladdr along w o [2002/08/16] kern/41720 [nge] if_nge_load=YES make system not boo o [2002/08/17] kern/41740 le [vinum] page fault while rebuilding; inab o [2002/08/18] bin/41757 qa [sysinstall] sysinstall 4.6.x unstable s [2002/08/19] bin/41776 bms mrouted doesn't route multicast packets o [2002/08/19] conf/41777 /etc/periodic/daily/100.clean-disks remov o [2002/08/20] docs/41824 murray LANG is not documented in setlocale(3) o [2002/08/21] bin/41850 qa [sysinstall] sysinstall fails to create r o [2002/08/25] bin/42004 quota and rpc.statd are still IPv4 only, p [2002/08/26] kern/42030 bms panic when zebra works on detaching tun i o [2002/08/27] kern/42089 phk ntp_gettime returns time in wrong scale o [2002/08/27] bin/42093 ypbind hangs on NIC with the lowest scope o [2002/08/28] misc/42115 luigi [picobsd] [patch] fix build script for 4. f [2002/08/29] kern/42173 multimedia [sound] Sony VAIO FXA 53 (or FXA 679 in M o [2002/08/30] i386/42198 pjd Kernel panics or system hangs up with big s [2002/08/30] kern/42216 rwatson simultaneous multiple server network fail o [2002/09/04] bin/42407 ppp(8) IPV6CP fails o [2002/09/07] i386/42539 i386 [panic] Fatal Trap 12 resulting from Conn o [2002/09/09] kern/42578 [puc] [panic] using PCI serial cards (puc p [2002/09/09] kern/42580 robert kernel crash when starting ISC 3.2 X11 bi o [2002/09/10] kern/42621 imp Dell Inspiron 5000e hangs when using Orin o [2002/09/11] kern/42652 [smbfs] error deleting r/o (by windows) f o [2002/09/11] bin/42658 markm recompile /usr/src/libexec/telnetd and lo o [2002/09/13] gnu/42726 cvsadm cvs -R pserver & val-tags: story continue s [2002/09/13] bin/42750 fdisk(8) does not distinguish between FAT o [2002/09/14] kern/42769 [boot] Boot stalls if the system has a se o [2002/09/15] kern/42801 [hang] FreeBSD freezes when opening cuaa0 a [2002/09/18] kern/42937 bms panic when ARP cache uses up all mbufs o [2002/09/20] kern/42983 imp wi0 sporadically freezes the system for 1 o [2002/09/21] i386/43151 i386 [panic] Panic 20 seconds after resume o [2002/09/22] bin/43223 getnetby{name|addr} broken for DNS lookup o [2002/09/24] bin/43337 des fetch: -s fails if -4 or possibly other o a [2002/09/25] i386/43366 bms Cannot format media in USB floppy devices o [2002/09/29] kern/43491 microuptime () went backwards o [2002/09/30] bin/43501 getpwnam, getpwuid fail when linking agai o [2002/10/02] kern/43576 imp Problem with wi driver and Lucent Orinoco o [2002/10/02] bin/43592 mktime rejects dates at the start of dayl a [2002/10/03] kern/43605 luigi enabling polling in the kernel causes pag o [2002/10/03] kern/43625 imp [wi] wi(4) driver hangs after long data t o [2002/10/04] bin/43674 [patch] login(1): able to bypass expired o [2002/10/05] kern/43713 during install, mounting root from ufs:/d o [2002/10/08] conf/43837 wollman PKST (pakistan daylight time) changed fro o [2002/10/11] java/43924 glewis writing from JAVA to a pipe sometimes han o [2002/10/12] kern/43954 [nfs] nfs-blocked process can't return or a [2002/10/14] kern/44030 VNode/Swap troubles o [2002/10/16] i386/44130 i386 [apm] Enabled apm hangs up FreeBSD kernel o [2002/10/16] kern/44150 Diskless kernel may crash, depends on the o [2002/10/18] kern/44202 [rp] [patch] -stable rp driver does not w o [2002/10/18] kern/44218 Init dies during boot after upgrade from p [2002/10/21] kern/44336 [nfs] NFSv3 client broken - security prob o [2002/10/21] kern/44355 gnn After deletion of an IPv6 alias, the rout o [2002/10/23] kern/44417 luigi [bridge] [patch] ipfw layer2 rules are no s [2002/10/27] bin/44518 yar ftpd does not show OPIE OTP challenge o [2002/10/27] docs/44519 obrien ftpd.conf(5) contains references to ftpd( o [2002/10/28] gnu/44564 peter [PATCH] Aborted cvs session causes an end o [2002/10/28] kern/44578 [nis] getnetgrent fails to read NIS netgr o [2002/10/30] kern/44744 [vn] [patch] VN devices can hang system F o [2002/11/01] bin/44808 [PATCH] opiepasswd makes bad seed for exi o [2002/11/04] i386/44867 i386 [hang] Frequent hard hangs on ASUS P4T-E/ o [2002/11/07] kern/45023 emulation [linux] [patch] flexlm does not run with o [2002/11/09] gnu/45168 Buffer overflow in /usr/bin/dialog o [2002/11/13] bin/45272 dump/restore problem o [2002/11/15] docs/45303 remko Bug in PDF DocBook rendering o [2002/11/15] kern/45322 Panic on resume (zone: entry not free) o [2002/11/17] kern/45373 mckusick softupdate / fs damaged after loss of pow o [2002/11/18] kern/45403 imp Cannot install -CURRENT via pccard networ p [2002/11/19] bin/45478 stefanf /bin/sh coredump o [2002/11/20] i386/45525 imp Dell Inspiron 7000 does not recognize PC- o [2002/11/20] bin/45529 hexdump core-dumps with certain args [PAT o [2002/11/21] kern/45558 [msdosfs] mdconfig and msdosfs make fs wr o [2002/11/21] bin/45565 qa [sysinstall] write error, filesystem full o [2002/11/21] kern/45568 gibbs ahc(A19160) pci parity error p [2002/11/25] kern/45733 bms file descriptor flags and socket flags ou o [2002/11/27] i386/45773 i386 [bge] Softboot causes autoconf failure on o [2002/11/27] kern/45777 crashdump issue with too-small dumpdev o [2002/12/02] kern/45913 imp WaveLan driver problems with latest -CURR o [2002/12/04] bin/45990 dwmalone top dumps core if specific errors in pass o [2002/12/04] bin/45995 markm Telnet fails to properly handle SIGPIPE o o [2002/12/05] kern/46017 [smbfs] smb mounts break /etc/periodic/we o [2002/12/06] kern/46036 inaccurate timeouts in select(),nanosleep o [2002/12/10] usb/46176 usb [panic] umass causes kernel panic if devi o [2002/12/11] i386/46194 i386 [install] 5.0-RC1 kern floppy load fails o [2002/12/13] kern/46239 standards posix semaphore implementation errors o [2002/12/18] bin/46352 Open file descriptors and signal handling o [2002/12/19] i386/46371 usb USB controller cannot be initialized on I o [2002/12/23] i386/46484 i386 [bge] [panic] System panics upon configur p [2002/12/27] kern/46557 pjd ipfw pipe show fails with lots of queues a [2002/12/31] kern/46647 silby Failure to initialize MII on 3Com NIC res o [2003/01/01] bin/46670 qa [sysinstall] 5.0-RC2 install leaves CD dr o [2003/01/01] bin/46676 ru [PATCH] bsd.dep.mk restricts domain of ta o [2003/01/02] kern/46694 imp Getting DUP packets when in Promiscous mo o [2003/01/08] i386/46865 i386 [panic] kernel panic on SuperMicro 6012-8 o [2003/01/08] bin/46866 NIS-based getpwent() falsely returns NULL o [2003/01/17] i386/47167 i386 [panic] 5.0 RC 3 (and 2) has 1 second upt o [2003/01/20] i386/47236 i386 Console missing during bootup on Sony Pic o [2003/01/21] kern/47286 device probing not verbose when using boo o [2003/01/22] kern/47359 dd [snp] [panic] panic after kldunload snp o [2003/01/23] bin/47384 qa [sysinstall] sysinstall ignores intended o [2003/01/24] i386/47449 i386 [boot] Thinkpad 755CD floppy boot fails o [2003/01/29] kern/47628 trhodes [msdosfs] [patch] msdosfs file corruption o [2003/01/29] kern/47647 [crash] init died with signal 6 [4.7] s [2003/02/02] kern/47813 [gre] pseudo-device gre(4) doesn't appear o [2003/02/05] kern/47937 hw.ncpu and kern.smp.cpus duplicate same s [2003/02/05] kern/47939 [bktr] 5.0-Current freezes when bktr devi o [2003/02/05] kern/47951 [hang] rtld in ld.so will livelock in som o [2003/02/05] alpha/47952 alpha DEFPA causes machine check with V5.0-rele o [2003/02/07] kern/48033 [ffs] FFS superblock flags are being igno o [2003/02/07] kern/48062 mckusick mount -o snapshot doesn't work on +100GB o [2003/02/08] kern/48100 Fatal panic in vm_map_lookup_entry ... [S o [2003/02/09] kern/48117 SMP machine hang during boot related to i o [2003/02/11] kern/48166 panic: pmap_new_proc: u_map allocation fa o [2003/02/11] bin/48183 marcel [patch] gdb on a corefile from a threaded o [2003/02/14] bin/48271 bug with find's -delete option s [2003/02/14] kern/48279 [bktr] Brooktre878 may cause freeze o [2003/02/16] conf/48325 /etc/periodic/security/100.chksetuid does o [2003/02/17] kern/48393 mckusick [ufs] ufs2 snapshot code bugs p [2003/02/18] bin/48424 Integer overflow in cksum(1) and sum(1) f o [2003/02/18] kern/48425 Tape drive EOT handling problems in 4.7 o [2003/02/19] misc/48461 murray $EDITOR on the fixit CD is wrong. o [2003/02/26] i386/48691 i386 [panic] kernel panics on ASUS A7N266-VM M o [2003/02/27] bin/48730 sos burncd does not handle signals and causes o [2003/02/27] kern/48741 darrenr ipnat corrupts packets on gre interface w o [2003/02/27] i386/48752 i386 [hang] freeze when installing 5.0 Release o [2003/02/27] kern/48758 [modules] kldunload if_{nic} can cause ke o [2003/03/02] threads/48856threads Setting SIGCHLD to SIG_IGN still leaves z o [2003/03/03] bin/48865 Dumps made on FreeBSD 5.0-RELEASE are unr o [2003/03/03] conf/48881 [PATCH] The influence of /etc/start_ifnam o [2003/03/07] kern/48996 Fatal trap 12 with incoming traffic from o [2003/03/09] kern/49040 problem mounting root; ffs_mountroot can' o [2003/03/10] threads/49087threads Signals lost in programs linked with libc o [2003/04/03] kern/50574 mbr [dc] dc driver incorrectly detects ADMtek s [2003/04/11] kern/50827 [kernel] [patch] new feature: add sane re s [2003/04/12] kern/50856 [mfs] panic if mounting /tmp as mfs with f [2003/04/13] i386/50887 i386 MBR on kern.flp fails Compaq MBR validati p [2003/04/17] conf/51085 ache FreeBSD is missing ja_JP.eucJP locale. o [2003/04/18] www/51135 www Problems with the mailing-lists search in o [2003/04/20] bin/51171 /bin/sh has only 32-bit arithmetics that o [2003/04/21] standards/51209standards [libc] [patch] new feature: add a64l()/l6 o [2003/04/22] kern/51274 ipfw [ipfw] [patch] ipfw2 create dynamic rules f [2003/04/23] kern/51308 multimedia [sound] Creative SB32 doesn't work under o [2003/04/23] kern/51332 mjacob QUIRK: BNCHMARK DLT1 requires SA_QUIRK_1F f [2003/04/24] kern/51338 multimedia [sound] [hang] system hangs randomly beca f [2003/04/24] kern/51341 ipfw [ipfw] [patch] ipfw rule 'deny icmp from o [2003/04/24] kern/51352 panic: malloc(M_WAITOK) in interrupt cont o [2003/04/29] kern/51583 [nullfs] [patch] allow to work with devic o [2003/04/30] bin/51628 [nis] ypmatch doesn't match keys in legac o [2003/05/02] kern/51685 [hang] Unbounded inode allocation causes o [2003/05/04] kern/51742 [panic] ffs_vfree: freeing free inode o [2003/05/06] bin/51827 getaddrinfo() is broken with numeric serv o [2003/05/08] kern/51982 [sio] sio1: interrupt-level buffer overfl s [2003/05/11] ports/52079 ports-bugs vmware3 hangs when nmdm(4) is used as COM s [2003/05/12] kern/52110 green [unionfs] FS corruption when using unionf o [2003/05/12] i386/52128 i386 [install] Unable to floppy install on Tos o [2003/05/16] bin/52343 NIS login problem on the server o [2003/05/19] bin/52433 lines in /etc/group longer than 1024 char o [2003/05/19] kern/52445 [mfs] panic when mounting floppy on MFS f f [2003/05/22] i386/52556 remko [sk] Syskonnect SK9843SX, sk driver, MII f [2003/05/22] i386/52561 i386 5.1-BETA install fails on Dell PowerEdge o [2003/05/22] i386/52581 i386 [loader] boot loaders reading more than o o [2003/05/22] kern/52585 bms [netinet] [patch] Kernel panic with ipfw2 o [2003/05/24] kern/52638 scsi [panic] SCSI U320 on SMP server won't run o [2003/05/28] bin/52743 /etc/ppp/ppp.linkup instability issues s [2003/05/28] kern/52745 [unionfs] Fatal trap 12: page fault while o [2003/05/31] kern/52818 vm_fault() calls vput() on shared-locked f [2003/06/03] kern/52916 le [vinum] vinum causes panic after start/st p [2003/06/04] kern/52935 bms occasional panic in ip_input with IPSEC o [2003/06/04] kern/52936 [nfs] Huge writes to nfs exported FAT fil o [2003/06/04] kern/52943 [hang] reproducable system stuck just bre f [2003/06/06] i386/52975 remko CPUTYPE=k7 results in non-functional /boo o [2003/06/10] kern/53137 [panic] background fscking causing ffs_va o [2003/06/11] i386/53200 i386 [boot] 5.1-RC1 SMP kernel boot gags at "A o [2003/06/16] i386/53382 i386 Repetable panics in ffs_vget() on Prolian f [2003/06/18] kern/53433 heavy i/o on GBDE partition on SMP locks o [2003/06/18] bin/53434 pw disallow a password including space. o [2003/06/18] kern/53447 bde poll(2) semantics differ from susV3/POSIX a [2003/06/20] kern/53566 mbr [panic] IBM Eserver (245 || 345) + ServeR o [2003/06/22] bin/53606 roberto ntpdate seems to hang system o [2003/06/23] i386/53620 i386 [install] Kernel panics / reboots during o [2003/06/27] bin/53839 qa [sysinstall] disklabel editor fails on po f [2003/06/30] kern/53920 andre sluggish TCP connection o [2003/06/30] kern/53927 imp wi0: device timeout problem with PRISM 2. o [2003/06/30] kern/53940 imp Some WiFi devices cannot connect to hosta o [2003/07/02] i386/54033 i386 Disk lockup. o [2003/07/04] bin/54097 Non-local yppasswd -d broken in 5.1-CURRE o [2003/07/07] kern/54189 [dns] resolver should resolve hostnames w s [2003/07/08] kern/54211 rwatson Seeing other uid with kern.file sysctl. o [2003/07/10] kern/54309 silby TCP Packet of 64K-1 crashes FreeBSD4.8 o [2003/07/11] bin/54401 [patch] pppstats prints 0 for absolute va o [2003/07/12] standards/54410standards one-true-awk not POSIX compliant (no exte o [2003/07/13] bin/54446 pkg_delete doesn't honour symlinks, portu o [2003/07/14] java/54463 glewis Apparent bug in jdk13 s [2003/07/16] kern/54534 [unionfs] unionfs && mfs|md crashing mach s [2003/07/16] i386/54549 i386 [panic] panic on install on Dell 600sc f [2003/07/21] kern/54705 multimedia [sound] codec timeout during read of regi o [2003/07/22] i386/54756 acpi ACPI suspend/resume problem on CF-W2 lapt p [2003/07/28] ports/54970 trevor emulators/linux_base Port Makefile "dange o [2003/07/28] conf/54971 mtm /etc/rc.d/mountcritermote requires ldconf p [2003/07/29] kern/55018 andre [digi] [patch] Digiboard PC/Xem fails to o [2003/07/29] kern/55028 The broken FAT12 filesystem causes system o [2003/08/02] kern/55175 alfred LOR in select and poll f [2003/08/05] gnu/55278 Externs on implicit declarations o [2003/08/05] kern/55297 [vfs] [panic] kernel panic after running o [2003/08/07] bin/55346 /bin/sh eats memory and CPU infinitely o [2003/08/07] bin/55349 mbr Amd mixes up symlinks in it's virtual fil o [2003/08/08] bin/55366 le [vinum] [patch] vinum(8) makes /dev/vinum o [2003/08/08] kern/55379 [panic] kernel crashes randomly o [2003/08/10] bin/55448 dbm_nextkey() misbehaves after dbm_store( o [2003/08/11] bin/55457 marcel GDB gets confused debugging libc_r thread a [2003/08/13] kern/55542 andre [de] [patch] discard oversize frame (ethe o [2003/08/13] usb/55555 usb [ums] system freezes with access to /dev/ o [2003/08/13] i386/55561 i386 SMbus and I2C don't attach when loaded as o [2003/08/15] i386/55603 i386 unable to reboot when system runs from My o [2003/08/15] i386/55615 i386 machine freezes - goes on after key press o [2003/08/16] kern/55617 [smbfs] Accessing an nsmb-mounted drive v o [2003/08/17] i386/55661 acpi ACPI suspend/resume problem on ARMADA M70 o [2003/08/20] kern/55822 acpi No ACPI power off with SMP kernel o [2003/08/21] bin/55829 __stderrp not defined in libc.so.3 (compa a [2003/08/24] i386/55930 i386 partly configured serial port freezes sys o [2003/08/24] kern/55934 le [vinum] [workaround] kernel panics while o [2003/08/25] bin/55956 passwd chat script not backward compatibl o [2003/08/25] bin/55965 sshd: problems with HostBasedAuthenticati o [2003/08/25] kern/55975 thomas ATAPICAM- READ_6(0x08) fails for ATAPI ta o [2003/08/26] kern/56008 scottl ps shows L flag erroneously with certain o [2003/08/27] kern/56024 acpi ACPI suspend drains battery while in S3 o [2003/08/27] kern/56031 luigi [ipfw] ipfw hangs on every invocation o [2003/08/29] bin/56147 FreeBSD/NetBSD /bin/sh mishandles positio f [2003/08/31] kern/56233 bms IPsec tunnel (ESP) over IPv6: MTU computa o [2003/09/02] kern/56339 select() call (poll() too) hangs, yet cal a [2003/09/03] ports/56363 perky The graphics/py-opengl port is broken o [2003/09/03] i386/56372 acpi acpi don't work on TYAN tiger100 M/B a [2003/09/03] kern/56381 das [unionfs] panic: page fault in fifo_close s [2003/09/04] docs/56456 blackend Initial import of the ro_RO.ISO889-2 doc/ s [2003/09/04] kern/56461 [rpc] FreeBSD client rpc.lockd incompatib p [2003/09/05] bin/56500 roam rpc.lockd needs to use reserved ports o [2003/09/06] usb/56513 usb [ugen] [panic] panic in ugen w/ moused -p p [2003/09/08] bin/56606 [2TB] df cannot handle 2TB NFS volumes o [2003/09/14] kern/56873 qa [boot] system hangs on boot at Buslogic d o [2003/09/17] i386/56937 i386 panic: system panic during high network l o [2003/09/20] i386/57043 i386 [ar] [hang] ar driver with 2 port PCI car o [2003/09/22] usb/57085 sanpei [umass] umass0 problems, with Sony Vio/US a [2003/09/22] kern/57100 bms [bridge] disable hardware checksums when s [2003/09/24] kern/57174 sos [ata] 4.9-PRERELEASE panic: ata_dmasetup: o [2003/09/24] kern/57192 emulation [linux] [hang] linux-ibm-java1.4 freeze o [2003/09/24] kern/57195 [mfs] mount_mfs -i 512 => panic? o [2003/09/25] kern/57206 [panic] softdep_lock locks against itself o [2003/09/26] bin/57255 usb usbd and multi-function devices a [2003/09/29] kern/57344 bms KMEM exhaustion from cloned routes o [2003/09/29] kern/57350 [panic] using old monocrome printer port s [2003/09/30] kern/57398 scsi [mly] Current fails to install on mly(4) o [2003/10/01] kern/57453 [kue] [patch] if_kue hangs boot after war o [2003/10/01] bin/57456 Telnet encryption gets out of sync o [2003/10/01] bin/57466 dialog(1) does not read stdin, breaks sub a [2003/10/01] kern/57479 bms FreeBSD Not in compliance with RFC 1122, p [2003/10/01] i386/57480 i386 Removing very large files using rm doesn' p [2003/10/02] bin/57484 bms routed not ignoring cloned routes f [2003/10/02] kern/57487 multimedia [sound] [patch] Sound stops working on my o [2003/10/04] bin/57554 sh(1) incorrect handling of quoted parame o [2003/10/05] kern/57603 [bktr] bktr driver: freeze on SMP machine o [2003/10/06] kern/57631 jhb [agp] [patch] boot failing for ALi chipse o [2003/10/06] bin/57673 Odd/dangerous disklabel(8) behaviour on 5 o [2003/10/07] kern/57722 [kernel] [patch] uidinfo list corruption o [2003/10/08] kern/57760 bms IPsec policy on inbound trafic is not enf o [2003/10/09] kern/57790 cdparanoia triggers kernel panic o [2003/10/09] i386/57818 i386 4.9-RC panics when kernel is built with a o [2003/10/10] kern/57832 scottl softdep_deallocate_dependencies: dangling o [2003/10/10] bin/57833 gad [PATCH] bin/ps cannot change title for ke o [2003/10/13] kern/57961 le [vinum] kmem_malloc(65536): kmem_map too o [2003/10/14] kern/57985 rwatson [net] [patch] Missing splx in ether_outpu o [2003/10/16] i386/58139 i386 [panic] -CURRENT panics on Thinkpad A31p o [2003/10/17] kern/58154 mckusick Snapshots prevent disk sync on shutdown o [2003/10/17] kern/58169 panic: vnode_pager_getpages: unexpected m f [2003/10/22] kern/58391 le [vinum] Trap 12 with heavy disk load on i o [2003/10/23] i386/58458 i386 [ata] ATAPI-CDROM DMA Support on ALi Alad o [2003/10/24] conf/58504 /etc/periodic/daily/100.clean-disks trave o [2003/10/26] i386/58580 i386 After sysinstall, F2 fails; wrong device o [2003/10/26] kern/58581 [hang] System call gettimeofday hang 5.x o [2003/10/28] ports/58655 obrien A replacement patch is necessary for deve o [2003/10/29] bin/58687 deischen gethostbyname leaks kqueue file descripto o [2003/10/30] i386/58718 i386 need to remove battery before booting lap o [2003/10/31] kern/58752 le [vinum] vinum panics on create/resetconfi o [2003/10/31] kern/58787 peter [panic] pmap_enter: attemped pmap_enter o o [2003/11/02] i386/58826 i386 reboot on an IBM PC Server 315 merely hal o [2003/11/02] kern/58831 panic: vinvalbuf: flush failed o [2003/11/02] conf/58832 /etc/rc.d/ipsec starts not in time o [2003/11/03] kern/58870 bms [gif] [panic] page fault in kernel mode w f [2003/11/03] kern/58888 [xl] 4.9-RELEASE installation fails (xl c o [2003/11/04] kern/58930 [panic] Page fault when unplugging Alcate o [2003/11/05] kern/58941 rwatson acl under ufs2 doesn't handle disk corrup o [2003/11/05] bin/58951 [sysinstall] some problems with 4.9-RELEA o [2003/11/05] kern/58953 [puc] [patch] detect NetMOS-based six ser o [2003/11/09] bin/59095 kientzle tar(1) process hangs in endless loop o [2003/11/10] alpha/59116 alpha [ntfs] mount_ntfs of a Windows 2000-forma f [2003/11/11] kern/59172 bms Zebra interface route causes kernel panic o [2003/11/11] kern/59183 imp wi problems with wi_cmd o [2003/11/11] kern/59185 [panic] 4.9-RELEASE kernel panic (page fa o [2003/11/11] i386/59192 i386 ATA drive not spotted with SCSI drive o [2003/11/12] kern/59203 imp Panic with wi and newcard a [2003/11/12] kern/59211 [nwfs] System crashes when moving files f o [2003/11/13] i386/59248 i386 [panic] 4.9-RELEASE, ACPI Panic with Dell o [2003/11/13] i386/59251 i386 Failure of 4.8-RELEASE/4.9-RELEASE/5.1-RE o [2003/11/13] i386/59260 i386 [panic] Panic by integer divide fault in o [2003/11/15] kern/59296 Serial Line Noise Causes System Hang in L o [2003/11/15] kern/59303 le [vinum] vinum crashes kernel if concurren f [2003/11/22] kern/59594 [hang] I/O operations freeze system when s [2003/11/24] bin/59638 des passwd(1) does not use PAM to change the o [2003/11/24] kern/59652 cannot redirect kernel output to serial c a [2003/11/24] ports/59657 trevor emulators/linux_base-8 cpio for install w o [2003/11/25] i386/59683 i386 panic: signal 12 4.9-STABLE - frequent cr o [2003/11/26] i386/59701 i386 System hungup, after resume from suspend. o [2003/11/26] amd64/59714 amd64 device timeout and ad0: WARNING - WRITE_D o [2003/11/26] i386/59719 i386 [crash] 4.9 Crashes on SuperMicro with SM o [2003/11/27] kern/59728 mjacob Qlogic adapter DMA setup failure with PAE o [2003/11/28] bin/59777 ftpd(8)/FreeBSD 5: potential username enu o [2003/12/01] kern/59878 le [vinum] vinum panics 5.1 system s [2003/12/02] misc/59890 bugmeister send-pr database is spam harvested o [2003/12/02] i386/59895 i386 [hang] system hangs from disk IO errors [ o [2003/12/02] i386/59898 i386 [boot] pxe boot: BTX halted o [2003/12/03] kern/59912 bms mremap() implementation lacking o [2003/12/04] kern/59945 [nullfs] [patch] nullfs bug: reboot after o [2003/12/04] i386/59959 i386 machine can not reboot itself with Mylex o [2003/12/05] gnu/59971 peter assertion "strncmp (repository, current_p o [2003/12/08] i386/60050 i386 Toshiba/3Com 3CXM056-BNW: Open Causes Int s [2003/12/09] ports/60083 phantom Unsafe use of getaddrinfo in jvm 1.4.2-p5 o [2003/12/11] kern/60154 ipfw [ipfw] ipfw core (crash) o [2003/12/11] ports/60161 emulation Linux emulator (linux_base-8-8.0_3) doesn o [2003/12/14] i386/60226 i386 [ichsmb] [patch] ichsmb driver doesn't de o [2003/12/14] kern/60235 phk some /dev-entries missing for newly auto- o [2003/12/15] ports/60245 knu new lang/ruby16-shim-ruby18 bug in includ a [2003/12/15] kern/60247 le mutex problems in geom_io s [2003/12/15] usb/60276 usb [usb] Kernel panic when plugging in USB ( o [2003/12/17] i386/60328 i386 [panic] installing 5.1, 5.2RC and 5-CURRE o [2003/12/17] i386/60344 i386 [boot] Intel ICH5 SATA RAID boot problems o [2003/12/18] bin/60349 scottl [sysinstall] 5.2-RC1 cannot do NFS instal o [2003/12/19] bin/60385 vmstat/iostat/top all fail to report CPU o [2003/12/21] kern/60477 deischen [libc] [patch] need thread safe gethosten o [2003/12/21] bin/60478 deischen [libc] getaddrinfo not thread safe o [2003/12/23] kern/60526 Post-PAE stable SMP machine freezes o [2003/12/26] kern/60598 scsi wire down of scsi devices conflicts with o [2003/12/27] i386/60603 i386 dd causes error when copying cd from ATA o [2003/12/27] i386/60633 i386 [hang] SIS motherboard with the SIS 5591 o [2003/12/27] kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C81 o [2003/12/28] i386/60646 i386 [hang] VIA C3 system hangs on reboot o [2003/12/29] docs/60679 doc pthreads documentation does not describe o [2003/12/29] i386/60681 i386 wicontrol -L critical crash (sigbus) o [2003/12/29] kern/60685 Intel 82559 NICs don't work in 4.9 o [2003/12/29] i386/60690 i386 atapicd driver causes spontaneous uncondi p [2004/01/03] kern/60856 bms [netinet] [patch] panic: at tcp_output(), o [2004/01/04] i386/60887 i386 can't boot when fbsd exists with other op o [2004/01/08] i386/61063 i386 [ata] ata hangs in smp system o [2004/01/09] kern/61108 kensmith Port linux_base-8-8.0_3: bash ls -l cause o [2004/01/09] kern/61129 thomas atapicam / UDMA cdrom loop o [2004/01/10] bin/61152 qa [sysinstall] installer refuses to mount U s [2004/01/10] kern/61165 scsi [panic] kernel page fault after calling c o [2004/01/12] i386/61253 i386 [panic] page fault on installation freebs o [2004/01/13] i386/61303 i386 5.2-REL hangs during boot with 3-port pyr o [2004/01/13] i386/61326 i386 Reboot while booting from 5.2-RELEASE CD o [2004/01/14] i386/61342 i386 [hang] CD-based installation crashes [4.9 o [2004/01/14] bin/61355 login(1) does not restore terminal owners f [2004/01/14] kern/61358 phk boot freezes while ATA GEOM slice detecti o [2004/01/15] kern/61390 [hang] Machine freeze when creating gif i o [2004/01/16] kern/61404 andre RFC1323 timestamps with HZ > 1000 o [2004/01/17] bin/61498 obrien [patch] Please MFC flex patch for gcc 3.x o [2004/01/18] kern/61544 ip6fw breakage on (at least) sparc64 o [2004/01/19] bin/61587 qa [sysinstall] [patch] installation problem o [2004/01/20] docs/61605 doc Improve documentation for i386 disk geome o [2004/01/20] usb/61627 usb [usb] [patch] New USB printer not support o [2004/01/20] i386/61646 i386 [workaround] Strange irq20 weirdness caus o [2004/01/21] bin/61658 qa [sysinstall] 5.2R error "Add of package q o [2004/01/21] kern/61669 [twe] writing to 3ware escalade spends 90 f [2004/01/21] kern/61686 FreeBSD 5.2-RELEASE crashes when ACPI is f [2004/01/22] bin/61701 Segmentation fault on OPIE when sequence o [2004/01/22] i386/61709 i386 [panic] 5.2-REL i386 Crashes hard; panics o [2004/01/22] bin/61716 mckusick newfs: code and manpage are out of sync o [2004/01/22] kern/61733 imp panic: resource_list_release: resource en o [2004/01/22] kern/61746 [boot] system locks up on boot if both ap o [2004/01/23] kern/61774 [nis] nis security issue o [2004/01/24] bin/61811 qa [sysinstall] 5.2 release no resolv.conf c p [2004/01/24] i386/61852 alc i386 pmap SMP race condition can cause lo o [2004/01/25] bin/61890 qa [sysinstall] fdisk(8) uses incorrect calc o [2004/01/26] bin/61937 qa [sysinstall] cannot install 5.2-REL via s o [2004/01/26] alpha/61940 alpha Can't disklabel new disk from FreeBSD/alp a [2004/01/26] kern/61960 sos [ata] [patch] BigDrive support for PC-98 o [2004/01/26] i386/61970 i386 [panic] on boot, 5.1/5.2 (but not 5.0), S o [2004/01/27] alpha/61973 alpha Machine Check on boot-up of AlphaServer 2 o [2004/01/28] bin/62040 pkg_add(1) won't run because the ELF dyna o [2004/01/29] bin/62058 burncd doesn't work with Creative RW8438E o [2004/01/30] usb/62088 usb [usb] Logitech Cordless/Optical Mouse not o [2004/01/30] kern/62091 [hang] Random Lockups on Boot (Timecounte o [2004/02/01] ports/62213 trevor Cannot install any emulators/linux_base o [2004/02/01] kern/62216 perl syswrite not writing the buffer unde o [2004/02/01] ports/62217 knu dns/idnkit: runidn does nothing o [2004/02/01] kern/62228 le [vinum] Kernel improperly identifies part o [2004/02/02] bin/62255 peter 2003-12-18: Stable CVS Version 1.11.11 Re a [2004/02/02] kern/62278 iedowse [nfs] NFS server may not set eof flag whe o [2004/02/02] i386/62280 i386 [em] em0 broken after resume in 5.2-CURRE o [2004/02/02] kern/62284 panic: GENERIC panics on FreeBSD 5.X imme o [2004/02/03] amd64/62295 obrien ipsec failure on 5.2.1-RC amd64 o [2004/02/03] usb/62309 usb [ugen] [panic] panic: ugen(4) driver o [2004/02/05] bin/62367 qa [sysinstall] 5.2.1-RC installation proble o [2004/02/05] kern/62374 darrenr panic: free: multiple frees o [2004/02/05] bin/62375 qa [sysinstall] sysinstall core dump o [2004/02/06] conf/62417 luigi diskless op script failed p [2004/02/06] kern/62438 jhb [viapm] [patch] viapm patch for VT8235 o [2004/02/07] kern/62468 panic: system crashes when serial getty e o [2004/02/08] kern/62502 [modules] panic under double loading vinu f [2004/02/08] kern/62519 multimedia [sound] Intel ICH4 (82801DB) sound card d o [2004/02/09] i386/62565 i386 device.hints are not honored in 5.2.1-RC o [2004/02/10] kern/62658 [boot] loader/kernel answer to `boot -a' o [2004/02/12] amd64/62753 obrien [txp] [panic] txp(4) panics on amd4 o [2004/02/13] kern/62762 trhodes [msdosfs] Fsync for msdos fs does not syn o [2004/02/13] i386/62807 i386 4.9 SMP does not work with Compaq Smart o [2004/02/14] kern/62824 [panic] softdep_setup_inomapdep: found in o [2004/02/14] bin/62833 qa [sysinstall] can't install: integer divid o [2004/02/15] kern/62864 cognet Machine not reboot. o [2004/02/15] i386/62888 i386 ad4: WARNING - WRITE_DMA interrupt was se a [2004/02/16] kern/62906 peadar [agp] [patch] AGP misconfigures i845G chi o [2004/02/16] gnu/62937 Compilation of base src Perl with static o [2004/02/18] kern/63040 panic: kernel panic (sf_buff_alloc) o [2004/02/22] kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestr o [2004/02/24] i386/63305 i386 reading udf filesystem on dvd+rw leads to o [2004/02/25] kern/63343 [boot] manual root filesystem specificati o [2004/02/25] kern/63360 [panic] page fault in ath kernel module i o [2004/02/26] bin/63391 Burncd DAO fails on some CD recorders o [2004/02/27] i386/63430 i386 [ata] TIMEOUT - ATA READ o [2004/02/27] kern/63431 [rtc] motherboard going to suspend mode s o [2004/02/27] i386/63441 i386 [panic] fatal trap 12 in pmap.c [4.9 with o [2004/02/27] i386/63449 i386 [boot] FreeBSD 5.2 and 5.2.1 releases won o [2004/02/27] i386/63467 i386 [ata] Sil 3114: RAID not detected using S o [2004/02/28] bin/63489 top, finger segfault when using NIS group o [2004/02/29] bin/63535 getpwent segfaults when NIS groups used b o [2004/02/29] kern/63557 thomas ATAPICAM broken in 5.2-CURRENT (REQUEST_S o [2004/03/01] usb/63621 usb [usb] USB MemoryStick Reader stalls/crash o [2004/03/02] kern/63629 thomas mounting atapicam volume through cd0c cau p [2004/03/02] kern/63662 [nullfs] using read-only NULLFS leads to o [2004/03/03] ports/63670 perl lang/perl5.8: 'Unable to read from thread o [2004/03/03] i386/63678 i386 5.2.1 installation hangs on t30 o [2004/03/03] kern/63724 ipfw [ipfw] IPFW2 Queues dont t work o [2004/03/04] i386/63731 i386 [boot] PATA to SATA converter on Promise o [2004/03/06] i386/63828 i386 [hang] when installing Release 5.2.1 (i38 o [2004/03/06] www/63854 www PR-web page loses text o [2004/03/07] i386/63871 i386 [panic] kernel panic in swi8 after 1 hour o [2004/03/09] i386/63992 i386 [hang] XFree86 4.3 hangs on IBM ThinkPad o [2004/03/09] i386/64002 acpi acpi problem p [2004/03/11] kern/64091 peadar [nfs] nfs data corruption at end of file o [2004/03/12] i386/64158 i386 5.2.1-RELEASE CD won't boot on acer Trave p [2004/03/12] kern/64169 linux binaries dump core on exit o [2004/03/13] ports/64191 ume security/cyrus-sasl2 Makefile doesn't obe o [2004/03/13] kern/64196 [kernel] [patch] remove the arbitrary MAX s [2004/03/15] kern/64313 threads FreeBSD (OpenBSD) pthread implicit set/un o [2004/03/17] kern/64363 [panic] ffs_blkfree: freeing free block [ o [2004/03/18] kern/64406 panic: ffs_clusteralloc: map mismatch o [2004/03/19] bin/64445 peter "ypwhich -m" map enumeration is broken o [2004/03/19] i386/64450 i386 Lucent Technologies WaveLAN/IEEE (PCI) fr p [2004/03/22] kern/64573 alc mmap with PROT_NONE, but still could be r f [2004/03/22] kern/64594 glebius [rl] 5.2-CURRENT: driver 'rl' (RealTek 81 o [2004/03/25] i386/64680 i386 5.2.1 pci-cfgintr steals serial mouse irq o [2004/03/25] i386/64716 i386 [nis] mv crashes FreeBSD 5.2.1-p3 o [2004/03/25] bin/64720 tail will not ctrl c o [2004/03/25] i386/64727 i386 [boot] cannot find disk on asus p4s533mx o [2004/03/26] bin/64738 sendmail(8): SO_REUSEADDR doesn't seem to a [2004/03/27] kern/64816 peadar [nfs] mmap and/or ftruncate does not work o [2004/03/28] kern/64826 [panic] with IPv6 on 4-STABLE after FreeB o [2004/03/29] kern/64903 [modules] panic: multiple kldload of a mo o [2004/03/31] ports/64963 tobez Perl 5.8: make package deletes installed o [2004/03/31] bin/64990 /bin/sh unable to change directory but cu o [2004/04/02] java/65054 glewis Diablo 1.3.1 JVM runs out of file descrip o [2004/04/02] i386/65072 i386 hang on reboot not syncing drives on ibm o [2004/04/03] ports/65128 cy security/aide port fails with SIGBUS ever o [2004/04/03] i386/65137 i386 [boot] 5.2.1 Intall Boot from floppies pa f [2004/04/05] kern/65212 [hang] running startx hangs the system (a o [2004/04/05] bin/65223 fsck of 5.2 makes UFS1 inconsistent for 4 f [2004/04/07] kern/65282 [panic] Trap 12 kernel panic upon boot du o [2004/04/07] kern/65300 [udf] Can't use sendfile(2) to download f o [2004/04/11] kern/65428 [uscanner] [panic] uscanner(4)-related re o [2004/04/12] i386/65457 i386 BTX Halted when trying boot after success o [2004/04/14] i386/65523 i386 [loader] [patch] PXE loader malfunction i o [2004/04/14] bin/65546 qa [sysinstall] 4.10-BETA fails to install f o [2004/04/16] kern/65616 bms IPSEC can't detunnel GRE packets after re o [2004/04/16] gnu/65641 Use of llabs() in C++ fails as ambiguous o [2004/04/17] i386/65648 imp cardbus("TI1131") won't work on Dell Lati o [2004/04/19] bin/65774 qa [sysinstall] cannot run repair disk when o [2004/04/19] i386/65775 i386 [panic] Transmeta crusoe without longrun s [2004/04/20] kern/65817 [sk] [panic] kernel panic with GENERIC 5. o [2004/04/22] gnu/65869 cvs generates invalid cvs command lines o [2004/04/22] kern/65901 [smbfs] smbfs fails fsx write/truncate-do a [2004/04/23] ports/65906 phantom Compile of JDK-1.4 under FBSD-5.2.1 fails o [2004/04/23] kern/65920 [nwfs] Mounted Netware filesystem behaves o [2004/04/26] kern/66004 [ulpt] [panic] kernel panic on access to o [2004/04/27] kern/66025 panic: kernel panic in pagedaemon with vm o [2004/04/27] kern/66029 [crypto] [patch] MD5 alignment problem on o [2004/04/27] bin/66036 restore crashes (reproducable, core file s [2004/04/29] kern/66066 [unionfs] panic: ufs_direnter: compact2 o [2004/04/29] i386/66087 i386 [install] hang at PCI config [5.2.1] o [2004/04/30] bin/66103 macro HISADDR is not sticky in filters o [2004/05/01] i386/66133 i386 [boot] nvidia motherboard installer locks o [2004/05/01] java/66151 java JBuilderX (sun jvm 1.4.1 builtin) crashes o [2004/05/01] kern/66152 [unionfs] laying unionfs over another uni o [2004/05/02] kern/66162 phk gbde destroy error o [2004/05/04] bin/66242 endless loop in sh(1) o [2004/05/05] kern/66270 mckusick [hang] dump causes machine freeze o [2004/05/05] kern/66290 imp pccard initialization fails with "bad Vcc o [2004/05/06] i386/66306 i386 pnpbios_identify() queries for more devic o [2004/05/07] kern/66348 rik [cx] FR mode of cx (Cronyx Sigma) does no o [2004/05/07] i386/66350 qa [sysinstall] sysinstall creates a partiti o [2004/05/07] i386/66368 i386 [install] 4.9 install fails with MODE_SEN o [2004/05/11] bin/66523 atacontrol(8) allows to detach a channel o [2004/05/13] kern/66611 [nfs] Crashing NFS servers (with workarou a [2004/05/14] kern/66634 tackerman [em] hard lock with em driver o [2004/05/18] kern/66786 [nfs] panic: exporting msdosfs causes nfs o [2004/05/18] conf/66791 Old dev.db leads to the wrong program beh o [2004/05/18] kern/66829 [unionfs] mounting fdesc union on /dev pa o [2004/05/18] bin/66830 chsh/ypchsh do not change user informatio o [2004/05/19] kern/66848 imp cardbus power support breaks cardbus supp o [2004/05/19] kern/66876 [fdc] [patch] Cannot extract tar(1) multi o [2004/05/20] bin/66950 qa [sysinstall] upgrading to 4.10-RC3: packa o [2004/05/20] kern/66960 [fdc] [patch] filesystems not unmounted d o [2004/05/21] bin/66984 qa [2TB] [patch] teach sysinstall about larg o [2004/05/22] i386/67047 i386 [mpt] mpt driver does not recognize messa o [2004/05/22] i386/67050 imp CardBus (PCI ?) resource allocation probl o [2004/05/25] bin/67167 FreeBSDs ftpd has problems under -CURRENT o [2004/05/27] i386/67273 acpi [hang] system hangs with acpi and Xfree o [2004/05/28] kern/67301 panic: uftdi, RTS and system panic o [2004/05/29] kern/67326 [msdosfs] crash after attempt to mount wr o [2004/05/29] conf/67328 Usermode PPP hangs on boot when NIS confi o [2004/06/01] i386/67469 i386 src/lib/msun/i387/s_tan.S gives incorrect p [2004/06/03] kern/67546 [2TB] Coredumps > 2Gb do not work (on 64b o [2004/06/06] ports/67625 trevor Linux_base fails to install s [2004/06/06] alpha/67626 alpha X crashes an alpha machine, resulting reb o [2004/06/07] i386/67688 i386 5.2.1 initial floppy boot fails with Fata f [2004/06/09] kern/67769 Fxtv 1.03 cause the Desk top (KDE) to Fre o [2004/06/10] kern/67794 panic: ffs panic during high filesystem a o [2004/06/11] i386/67833 i386 [boot] 4.10 does not boot after enabling o [2004/06/14] kern/67919 imagemagicks convert image to movie conve a [2004/06/15] i386/67955 i386 [panic] -current on T40p kernel trap 12 i o [2004/06/16] bin/67995 [patch] morse(6) plays beeps 10 times fas p [2004/06/16] kern/68013 jeff tp->snd_wl1 & snd_wl2 are not updated in o [2004/06/17] bin/68047 [sysinstall] unattended install of FreeBS o [2004/06/18] kern/68076 [modules] Page fault when the sequence "k o [2004/06/19] i386/68103 i386 [panic] ASUS P4P8X mb at ffs/ffs_softdep. o [2004/06/20] kern/68131 emulation [linux] [hang] java/linux-ibm-jdk14: linu o [2004/06/20] i386/68149 i386 FreeBSD 4.10 installation blocking on ASU o [2004/06/24] ports/68260 markm [PATCH] Removal of -lcompat from freebsd- o [2004/06/24] i386/68277 i386 [kbd] Compact Evo N610c (Laptop): Using e o [2004/06/25] kern/68324 panic: Duplicate free of item 0xc3121908 o [2004/06/25] kern/68325 panic: _mtx_lock_sleep: recursed on non-r o [2004/06/26] kern/68351 [bge] bge0 watchdog timeout on 5.2.1 and o [2004/06/26] ports/68396 sumikawa Racoon racoon-20040617a Interoperability o [2004/06/27] i386/68411 i386 VMware Virtual Machine - Network Fails Du o [2004/06/28] i386/68438 i386 bootloader cannot read from icp vortex ar o [2004/06/28] kern/68442 [panic] acquiring duplicate lock of same o [2004/06/29] i386/68486 i386 logo screensaver kills compaq ML370 conso o [2004/07/01] kern/68546 [ata] system seems to hang during stress o [2004/07/01] i386/68554 i386 [hang] system freeze on Compaq Evo 600c [ o [2004/07/02] kern/68576 rwatson UFS2 snapshot files can be mounted read-w o [2004/07/06] bin/68727 marcel gdb coredumps after recent CURRENT upgrad o [2004/07/10] kern/68889 rwatson [panic] m_copym, length > size of mbuf ch o [2004/07/10] i386/68899 i386 Problems reading and writing DVD-RAM disc o [2004/07/13] kern/68978 [crash] firewire crashes with failing har o [2004/07/13] kern/68987 panic: kmem_malloc(163840): kmem_map too o [2004/07/13] usb/69006 usb [patch] Apple Cinema Display hangs USB po o [2004/07/13] kern/69019 [wi] wlan stalling after 2-3 hrs of moder o [2004/07/14] i386/69049 i386 [install] error "anic: page fault" o [2004/07/14] kern/69058 panic: kernel reads unmapped memory while o [2004/07/14] kern/69066 panic: nmdm page fault when slattach on a o [2004/07/15] kern/69092 [rl] kernel: rl0: watchdog timeout o [2004/07/15] kern/69100 [nwfs] panic: 5.2.1p9 kernel panics when o [2004/07/16] kern/69141 panic: softdep_lock [5.2.1-RELEASE, SMP] o [2004/07/16] kern/69158 [an] Cisco MPI350 wireless card problems o [2004/07/18] i386/69218 simokawa [boot] failure: 4.10-BETA and later do no o [2004/07/19] i386/69260 i386 [install] Problem starting the installati o [2004/07/19] i386/69281 i386 init dies when MAXSSIZ, MAXDSIZ, and DFLD o [2004/07/26] kern/69607 [if_tap] [crash] system crashes in if_tap o [2004/07/26] kern/69612 [panic] 4.10-STABLE crashes everyday: pag o [2004/07/26] kern/69629 [panic] Assertion td->td_turnstile o [2004/07/27] kern/69663 ddb's panic comand can not dump o [2004/07/28] amd64/69704 amd64 ext2/ext3 unstable in amd64 o [2004/07/28] amd64/69707 amd64 IPC32 dont work OK in amd64 FreeBSD o [2004/07/28] bin/69723 sysinstall: allow to continue from packag o [2004/08/03] bin/69942 [sysinstall] sysinstall changes /etc/rc.c p [2004/08/03] kern/69953 anholt VIA agp: System reboots on startx with DR o [2004/08/05] i386/70028 i386 [umass] umass issue in the boot prcess on o [2004/08/11] ports/70309 sumikawa [patch] racoon disrupt manually-keyed IPS o [2004/08/11] i386/70330 marcel Re-Open 33262? - gdb does not handle pend o [2004/08/12] kern/70360 [twe] Random lock-ups with 3ware RAID 5 u o [2004/08/13] i386/70386 i386 IBM x345 Freezes Randomly o [2004/08/15] i386/70482 i386 Array adapter problems o [2004/08/16] i386/70525 i386 [boot] boot0cfg: -o packet not effective o [2004/08/16] i386/70531 i386 [boot0] [patch] boot0 hides Lilo in exten o [2004/08/17] kern/70587 [vm] [patch] NULL pointer dereference in o [2004/08/18] bin/70600 fsck(8) throws files away when it can't g o [2004/08/18] docs/70616 brd [patch] incompleteness and error in su(1) o [2004/08/19] kern/70649 [rtc] system clock slows down when heavil o [2004/08/19] kern/70663 [ipx] Freebsd 4.10 ncplogin + Netware 4.1 f [2004/08/20] ports/70695 hrs teTeX (port source print/teTeX) ends with o [2004/08/20] i386/70747 i386 ddos attack causes box to crash on kernel o [2004/08/21] kern/70753 [boot] Device for firewire hard disk not o [2004/08/21] bin/70803 truss wedges if child exits at the wrong o [2004/08/22] kern/70809 [panic] ufs_direnter: compact1 o [2004/08/25] i386/70925 i386 [hang] 5.3Beta1 acpi-pci driver failure, f [2004/08/25] kern/70931 [panic] page fault at end of boot on Athl o [2004/08/26] conf/70973 [patch] script 800.loginfail does not rep o [2004/08/26] bin/70974 [rpc] SIGSEGV in rpc.lockd o [2004/08/26] threads/70975threads unexpected and unreliable behaviour when o [2004/08/26] i386/71000 i386 [boot] BTX halted when booting from CD on o [2004/08/27] i386/71035 i386 [kbd] SMP boot hangs in bus_space_write_1 o [2004/08/27] i386/71048 i386 [hang] ASUS TUV4X hangs when SONY CRX140E o [2004/08/28] i386/71087 i386 [hang] 5.3-beta(2-5) fail to install on e o [2004/08/29] kern/71109 alc [pmap] [patch] Possible race conditions i o [2004/08/30] kern/71131 [panic] profile.sh causes bfe to panic o [2004/08/30] i386/71144 i386 FBSD5.3b2 doesn't boot on a Compaq Armada o [2004/08/30] bin/71147 sshd(8) will allow to log into a locked a o [2004/08/30] usb/71155 usb [usb] misbehaving usb-printer hangs proce o [2004/08/30] i386/71158 i386 pci bus number 3 devices are missing on l o [2004/08/30] gnu/71160 marcel gdb gets confused about active frame o [2004/08/31] i386/71190 i386 Dead thinkpad R31 after installing 5.2.1 o [2004/08/31] kern/71198 Lack of PUC device in GENERIC kernel caus o [2004/09/02] bin/71290 [PATCH] passwd cannot change passwords ot o [2004/09/02] kern/71310 jeff [panic] kernel crash on rtprio pid priori o [2004/09/03] bin/71323 qa [sysinstall] FTP download from floppy boo p [2004/09/05] kern/71388 rwatson [panic] due mac_policy_list_conditional_b o [2004/09/05] kern/71391 [nfs] [panic] md via NFS file + mount -t o [2004/09/05] kern/71394 [boot] unable to mount troot device in bo o [2004/09/05] kern/71402 rwatson panic with lomac o [2004/09/06] kern/71421 [hang] [sched_ule] filesystem operations o [2004/09/06] i386/71428 i386 DMA does not work on VIA 82C586 [4.10] f [2004/09/07] i386/71470 i386 [hang] Asus P4P800-E Promise 20378 RAID 1 o [2004/09/07] amd64/71471 amd64 Can not install 5.3beta3/amd64 on IBM eSe o [2004/09/08] kern/71478 [nis] NIS/NFS: res_mkquery failed [4.2] p [2004/09/10] kern/71547 anholt R200 (8500) hang on startx (nforce2) a [2004/09/10] kern/71568 brooks [kbd] [patch] unable to install FreeBSD u o [2004/09/11] bin/71594 [patch] pkg_install (sign) - variables ma o [2004/09/11] bin/71602 [PATCH] uninitialized "len" used instead o [2004/09/11] bin/71603 "systat -v" enters infinite loop p [2004/09/12] kern/71638 anholt Radeon 9200 SE with Xorg 6.7 and DRI 5.0. f [2004/09/12] i386/71641 i386 5.3-BETA3: wi0 hangs during kernel load o [2004/09/12] amd64/71644 amd64 [panic] amd64 5.3-BETA4 crash when heavy o [2004/09/12] bin/71651 [PATCH] cron may attept to close unopened o [2004/09/12] kern/71677 rwatson [mac] [patch] MAC Biba / IPFW panic f [2004/09/13] kern/71695 brooks [gif] [hang] ifconfig(8) hanging box o [2004/09/14] sparc64/71729sparc64 printf in kernel thread causes panic on S o [2004/09/15] kern/71771 [amr] Hang during heavy load with amr rai o [2004/09/16] kern/71785 anholt panics in X (Xorg and XFree86) with ATI c a [2004/09/16] bin/71786 [patch] adduser breaks if /sbin/nologin i f [2004/09/16] kern/71791 [panic] Fatal trap 12: page fault while i o [2004/09/16] kern/71792 [vm] [patch] Wrong/missing 'goto' target o [2004/09/17] kern/71827 jeff [sched_ule] [panic] Running java applicat o [2004/09/19] kern/71918 4.5 disklabel gets damaged when mounted b o [2004/09/22] kern/71999 [ata] [panic] recurring panic in 4.10: at o [2004/09/22] i386/72004 i386 [boot] FreeBSD 5.2.1 install hangs with e o [2004/09/22] kern/72007 [panic] clist reservation botch [4.10] o [2004/09/23] kern/72022 packet loss on loopback interface [5.3-BE s [2004/09/23] kern/72041 [cam] [hang] Deadlock when disk is destro o [2004/09/24] i386/72065 i386 4.x and 5.2.1 doesn't recognize PCnet/ISA o [2004/09/27] ports/72122 mharo sudo 1.6.8p1 with pam-krb5 authentication o [2004/09/27] kern/72130 Promise Fastrack sx4000 boot problem o [2004/09/28] ports/72149 nectar [PATCH] heimdal with LDAP backend - bad s o [2004/09/28] java/72151 phantom JVM crash on 5.2.1-R o [2004/09/29] kern/72163 ACPI Panics on boot with 5.3-BETA-3 and u o [2004/09/30] kern/72208 panic: bio_completed can't be greater tha o [2004/09/30] kern/72210 andre ipnat problem with IP Fastforward enable o [2004/09/30] kern/72211 Cannot boot 5.3-BETA6 with both SCSI and f [2004/09/30] i386/72215 i386 with acpi enabled network card will not w o [2004/10/03] kern/72278 Installworld crashes machine [5.3-BETA7] o [2004/10/03] docs/72285 doc GCC manuals are out of sync o [2004/10/04] kern/72305 boot hangs after discovering disks when a o [2004/10/05] i386/72343 i386 Suspend resets system on Inspiron 5160. o [2004/10/05] threads/72353threads Assertion fails in /usr/src/lib/libpthrea o [2004/10/06] bin/72370 obrien awk in -current dumps core p [2004/10/06] kern/72372 anholt radeon 9200se atlantis dri hangs X (nforc o [2004/10/06] i386/72376 i386 acpi is mutually exclusive with snd_mss o f [2004/10/06] i386/72378 remko [sk] NFS hangs in 5.3-BETA7 [3Com gbit ca o [2004/10/06] kern/72396 [netinet] [patch] Incorrect network accou o [2004/10/07] i386/72416 i386 FreeBSD 5.3-BETA7: The alternate systemcl o [2004/10/07] kern/72424 panic: ffs_blkfree: freeing free block in o [2004/10/07] threads/72429threads threads blocked in stdio (fgets, etc) are f [2004/10/08] kern/72439 multimedia [sound] Sound not functioning for VIA_823 f [2004/10/08] i386/72441 remko HP Proliant DL380 hangs on reboot with 5. f [2004/10/09] i386/72456 i386 5.xx Releases Do Not Identify ATA when 4. o [2004/10/09] usb/72466 brooks [kbd] USB keyboard does not respond in si o [2004/10/10] kern/72490 Panic mounting cdrom with RWCombo Abort trap (core dumped) o [2004/11/04] kern/73538 [bge] problem with the Broadcom BCM5788 G o [2004/11/05] bin/73559 sos burncd(8) failure closing/fixating DVD-+R o [2004/11/06] bin/73617 qa [sysinstall] fdisk editor unmarks active o [2004/11/07] amd64/73650 amd64 5.3-release panics on boot f [2004/11/08] i386/73658 i386 [ed] ed(4) can't get correct MAC address o [2004/11/08] i386/73666 i386 5.3 UDMA error WD1600 can't partition dri o [2004/11/09] i386/73706 jhb ATA_IDENTIFY timed out under FreeBSD 5.3 o [2004/11/09] kern/73719 rwatson Page fault in bpf_mtap () o [2004/11/09] kern/73740 [nfs] [panic] 5-3-R#3 panic when accessin o [2004/11/09] kern/73744 printing via cups causes "Interrupt storm o [2004/11/10] amd64/73775 amd64 Kernel panic (trap 12) when booting with o [2004/11/11] kern/73830 le kernel panic when raid5 member disk is re o [2004/11/12] kern/73850 thomas atapicam and Zip drive causes reboots upo o [2004/11/12] kern/73871 [wi] Intersil Prism wireless wi0 locks up o [2004/11/13] kern/73910 ipfw [ipfw] serious bug on forwarding of packe o [2004/11/14] i386/73934 i386 fdisk sees disk as empty f [2004/11/16] kern/73987 multimedia [sound] Nforce2 MB sound problem o [2004/11/16] i386/74008 i386 IBM eServer x225 cannot boot any v5.x - e o [2004/11/16] kern/74012 FreeBSD 4.10 stops responding while playi o [2004/11/16] amd64/74014 amd64 5.3-RELEASE-AMD64 freezes on boot during o [2004/11/16] misc/74019 Not NOMAN requires NO_CXX in make.conf o [2004/11/17] bin/74043 [PATCH] sh trap builtin does not properly o [2004/11/17] i386/74044 i386 ServerWorks OSB4 SMBus interface does not o [2004/11/18] i386/74074 i386 hw.ata.wc=0 / but write cache still enabl o [2004/11/19] kern/74104 ipfw [ipfw] ipfw2/1 conflict not detected or r p [2004/11/19] kern/74105 rwatson IPX protocol support doesn't work o [2004/11/19] i386/74124 i386 ata0 failure on HP(Vectra) VL6/350 [intro o [2004/11/19] bin/74127 [patch] patch(1) may misapply hunks with o [2004/11/19] kern/74136 FreeBSD 5.3 does not see RAID 1 drive onl f [2004/11/20] ports/74171 ports-bugs [panic] comms/ltmdm: Fatal trap 12: page o [2004/11/21] i386/74217 i386 init died [Presario 2500] o [2004/11/22] kern/74230 periodic Fatal trap 12: page fault while o [2004/11/22] kern/74238 firewire [firewire] fw_rcv: unknown response; fire s [2004/11/22] kern/74242 rwatson Write to fifo with no reader fails in 6.0 p [2004/11/22] bin/74255 des sshd produces Zombies with UsePam and Pri o [2004/11/22] kern/74272 Interrupt storm detected on "irc10:atapci o [2004/11/24] kern/74309 xterm -C and rxvt -C do not grab /dev/con o [2004/11/24] kern/74319 system reboots after few hours [5.3] [smp p [2004/11/25] kern/74386 emaste [kernel] [patch] Killing watchdogd does n a [2004/11/26] kern/74432 Yamaha DS-1E produces "kernel: Danger! pc o [2004/11/29] kern/74495 [wi] wi(4) wlan driver device freeze (5.3 o [2004/11/29] ports/74518 openoffice openoffice-1.1 build failure on 4-stable: o [2004/11/29] gnu/74531 gcc doesn't link correctly if -pg specifi o [2004/12/01] i386/74576 i386 FAILURE - ATA_IDENTIFY no interrupt o [2004/12/01] i386/74601 i386 Cardbus fails after busdma_machdep.c upda o [2004/12/02] conf/74610 Hostname resolution failure causes firewa o [2004/12/02] kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5 f [2004/12/03] kern/74635 yar [panic] vlan over fxp driver IP assignmen o [2004/12/04] usb/74690 usb [umass] [patch] support for SanDisk 8-in- s [2004/12/05] kern/74708 [umapfs] [panic] UMAPFS kernel panic o [2004/12/05] amd64/74747 amd64 System panic on shutdown when process wil o [2004/12/06] ports/74760 java java/javavmwrapper messes up amavisd-new o [2004/12/06] usb/74771 usb [umass] mounting write-protected umass de o [2004/12/06] kern/74778 ipsec passthrough / nat-t crash freebsd f o [2004/12/06] bin/74779 Background-fsck checks one filesystem twi o [2004/12/07] bin/74801 cpio -p --sparse creates truncated files o [2004/12/07] kern/74809 [modules] [panic] smbfs panic if multiply o [2004/12/07] i386/74816 i386 OS crash with kernel trap 12 in different o [2004/12/08] kern/74852 page fault: after a few days init causes s [2004/12/08] ports/74857 ports-bugs clamav socket problem a [2004/12/08] ports/74866 portmgr Update Mk/bsd.port.mk to support python p o [2004/12/08] kern/74877 Panic after halting the system - vrele: n o [2004/12/10] kern/74923 [ipx] [panic] kernel panic with ncplist o a [2004/12/10] bin/74926 dds look(1) will silently ignore input from n p [2004/12/10] bin/74929 des DES/BLF login.conf classes not working wi o [2004/12/11] kern/74935 andre [netinet] [patch] TCP simultaneous open f o [2004/12/12] kern/74968 cdparanoia torture wedges CD-drive and PA o [2004/12/12] kern/74976 [vfs] [panic] 5.3-STABLE: vn_finished_wri o [2004/12/12] i386/74988 i386 dma errors with large maxtor hard drives p [2004/12/13] kern/75014 rwatson When close ipx socket kernel panic o [2004/12/14] ports/75048 seanc www/mod_backhand nsswitch problem : nss_d o [2004/12/15] kern/75099 OpenOffice makes the system freeze o [2004/12/15] kern/75122 silby [netinet] [patch] Incorrect inflight band o [2004/12/16] kern/75157 Cannot print to /dev/lpt0 with HP Laserje f [2004/12/16] kern/75159 rodrigc (SC|VGA)_NO_FONT_LOADING in kernel config o [2004/12/18] amd64/75209 amd64 5.3-Release panics on attempted boot from o [2004/12/18] kern/75233 breaking fdformat /dev/fd0 resets device o [2004/12/19] kern/75249 [boot] 5.x install CD hangs on VirtualPC o [2004/12/19] kern/75250 gibbs timedout_scbs is not initialized with LIS o [2004/12/19] bin/75258 [patch] dd(1) has not async signal safe i o [2004/12/19] threads/75273threads FBSD 5.3 libpthread (KSE) bug o [2004/12/20] ports/75315 obrien the shells/bash2 port is broken on -CURRE o [2004/12/21] kern/75368 [panic] initiate_write_inodeblock_ufs2() o [2004/12/21] threads/75374threads pthread_kill() ignores SA_SIGINFO flag o [2004/12/22] kern/75407 [an] an(4): no carrier after short time o [2004/12/23] amd64/75417 amd64 ACPI: SATA Hard-disk o [2004/12/26] kern/75510 panic: kmem_malloc(4096): kmem_map too sm o [2004/12/27] kern/75541 [sysv] [patch] Forgotten tunables for sys p [2004/12/27] kern/75542 rwatson Inconsistent naming of a tunable and weir o [2004/12/31] kern/75687 multimedia [sound] [patch] No sound on PC which is i o [2005/01/01] usb/75705 usb [panic] da0 attach / Optio S4 (with backt o [2005/01/01] docs/75711 keramida opendir manpage o [2005/01/03] kern/75733 harti ATM driver problem. o [2005/01/03] kern/75755 kmem_malloc(45056): kmem_map too small: 3 o [2005/01/03] kern/75773 [panic] sysctl -a panic o [2005/01/04] kern/75780 [panic] panic: vm_page_free: freeing wire o [2005/01/04] kern/75794 tackerman [em] em(4) driver alignment problems o [2005/01/04] usb/75797 usb 5.3-STABLE(2005 1/4) detect USB headset, o [2005/01/04] kern/75823 [wi] wi0 interface self-destructs after a o [2005/01/05] kern/75850 Reboot hangs when swap resides on disks t o [2005/01/06] kern/75875 acd0: FAILURE - READ_BIG ILLEGAL REQUEST o [2005/01/06] i386/75887 i386 [pcvt] with vt0.disabled=0 and PCVT in ke o [2005/01/08] bin/75931 Got "bus error" on running certain apps o [2005/01/09] kern/75978 Linksys WPC11 ver 3 wifi card locks up 5 p [2005/01/09] bin/75980 expand(1) breaks tab columns in Japanese o [2005/01/10] kern/76023 [panic] xmms causes panic f [2005/01/10] ports/76029 mita misc/mgp-mode.el is already included in m o [2005/01/11] kern/76080 [panic] "bio_completed .. greater than bi o [2005/01/12] kern/76126 [nfs] [patch] 4.11 client will send a NFS o [2005/01/12] bin/76134 fetch(1) doesn't like 401 errors with -A o [2005/01/12] amd64/76136 amd64 system halts before reboot o [2005/01/13] usb/76204 usb panic while using usb attached modem o [2005/01/13] kern/76207 [xl] [patch] Null pointer dereference in o [2005/01/14] kern/76237 le [vinum] [panic] ufs_baddir, possible link o [2005/01/17] amd64/76336 amd64 racoon/setkey -D cases instant "Fatal Tra o [2005/01/17] i386/76372 i386 cannot burn iso image disk2 of any releas o [2005/01/18] usb/76395 usb USB printer does not work, usbdevs says " s [2005/01/18] i386/76397 i386 [ata] ata raid crashes in g_down (heavy l o [2005/01/18] kern/76398 [libc] stdio can lose data in the presenc o [2005/01/18] kern/76410 [bpf] [patch] Null pointer dereference in o [2005/01/19] kern/76464 mlaier PF, set loginterface & non existing inter o [2005/01/20] i386/76487 i386 Compiled GENERIC kernel (and non-GENERIC) o [2005/01/20] kern/76504 silby Keep-alives doesn't work on half-closed s o [2005/01/21] kern/76525 select() hangs on EOF from named pipe (FI o [2005/01/21] kern/76538 geom [gbde] nfs-write on gbde partition stalls o [2005/01/21] usb/76554 usb Panram "yoyo" USB MP3 player causes panic o [2005/01/22] bin/76578 uniq truncates long lines to LINE_MAX o [2005/01/23] bin/76588 OpenSSL fails on loading keyfiles from BI o [2005/01/24] java/76631 java any port linux-*-jdk12 will core dump if o [2005/01/24] ports/76633 kwm Totem will not play DVDs o [2005/01/25] ports/76644 emulation FreeBSD 5.3 will freeze or crash when run o [2005/01/25] kern/76663 panic with FAST_IPSEC and IPv6 o [2005/01/25] i386/76666 i386 Booting and Sound are mutually exclusive o [2005/01/25] kern/76672 Problem with cardbus and vlans o [2005/01/25] usb/76684 usb Toshiba PDR-M4 camera connected via USB h o [2005/01/26] threads/76694threads fork cause hang in dup()/close() function o [2005/01/27] i386/76737 i386 CardBus problem (cbb1: Could not map regi o [2005/01/28] kern/76792 le [vinum] vinum not working with aac disk d f [2005/01/30] ports/76838 edwin multimedia/pvr250 problems in 4.x with co o [2005/01/30] kern/76848 [amr] amr hangs p [2005/01/31] kern/76890 glebius [em] [patch] em driver does not send rout o [2005/01/31] kern/76893 [cam] [patch] Fatal divide in booting pro o [2005/01/31] i386/76925 i386 standard pci-ide, install - "NO DISKS FOU o [2005/02/01] kern/76937 Page fault while in kernel mode under hea o [2005/02/01] i386/76944 i386 [busdma] [patch] i386 bus_dmamap_create() o [2005/02/01] i386/76948 i386 [rl] Slow network with rl0 o [2005/02/01] kern/76968 Failing to boot into machine o [2005/02/02] amd64/77011 amd64 consisten 5.3-p5 make crash on installwor o [2005/02/02] kern/77026 umount-ing non-existent device panics sys p [2005/02/03] bin/77067 stefanf /bin/sh premature termination when 'set - o [2005/02/04] amd64/77101 obrien feature request: please include ULi M1689 o [2005/02/05] ports/77115 phantom jdk15 and amd64, ${ARCH} bug f [2005/02/06] i386/77154 i386 5.3 refuses to boot when IDE channel2 is o [2005/02/06] kern/77181 [newfs] [patch] newfs -g largevalue, mkdi o [2005/02/06] usb/77184 usb kernel panic on USB device disconnect o [2005/02/07] kern/77195 darrenr [ipfilter] [patch] ipfilter ioctl SIOCGNA o [2005/02/09] kern/77289 system hangs while trying to unmount prev o [2005/02/09] usb/77294 usb ucom + ulpcom panic f [2005/02/09] ports/77325 barner devel/valgrind hangs at program completio o [2005/02/10] i386/77335 i386 Can not initial Ethernet Broadcom UDI PXE o [2005/02/10] kern/77337 Samba3+FAT32->Reboot o [2005/02/10] conf/77340 rc awk used in /etc/rc.d/nsswitch when not a o [2005/02/12] sparc64/77417sparc64 [panic] with high usage of cpu when lan u o [2005/02/13] kern/77432 [nfs] [patch] It is not possible to load o [2005/02/13] kern/77439 WAG511 NETGEAR pccard does not attach (De o [2005/02/13] i386/77443 i386 [fdc] can't access floppy -- regression o o [2005/02/13] bin/77455 natd(8): fatal trap 19 in natd o [2005/02/13] kern/77463 [nfs] [patch] Local DoS from user-space i o [2005/02/14] kern/77493 [named pipes] freebsd 5.3 + bash process o [2005/02/14] i386/77529 i386 installation of freebsd 5.3 in laptop an o [2005/02/15] ports/77574 nectar net/nss_ldap locks out when cd'ing to see o [2005/02/16] kern/77588 [em] PREEMPTION problems in combination w o [2005/02/16] usb/77604 usb Sluggish Logitch LX700 USB Mouse o [2005/02/17] amd64/77629 amd64 aMule hardlocks AMD64 system o [2005/02/17] kern/77631 [sis] sis network driver broken in 5.3 o [2005/02/17] i386/77643 sos [ata] SATA PCI controllers fail with WRIT o [2005/02/17] bin/77651 init can loose shutdown related signals o [2005/02/17] ports/77656 phantom java/jdk15 - (AMD64) install problem. o [2005/02/18] kern/77665 rwatson multicast sockets + interface removal = p o [2005/02/19] kern/77710 emulation [linux] Linux page fault sigcontext infor o [2005/02/20] kern/77753 DVD-writer fails to fixate DVD f [2005/02/20] kern/77805 Boot hangs with ACPI enabled o [2005/02/21] ports/77873 portmgr New variable: USE_BSD_MK o [2005/02/22] conf/77932 [patch] security.functions: pf and ipfw p f [2005/02/22] i386/77935 remko Can't boot with 5.x CD or floppy o [2005/02/23] usb/77940 usb [patch] [panic] insertion of usb keyboard o [2005/02/23] amd64/77949 amd64 Pb boot FreeBSD 64 o [2005/02/23] ports/77954 trevor emulators/linux_base for amd64 fails to i o [2005/02/23] kern/77982 [lnc] [patch] lnc0 can NOT be detected in o [2005/02/25] docs/78062 doc Sample Echo Pseudo-Device Driver for Free p [2005/02/25] bin/78085 robert id command inconsistency f [2005/02/25] ports/78086 bms multimedia/dirac: install failure (patch o [2005/02/25] bin/78087 groups program inconsistency o [2005/02/27] docs/78154 doc [PATCH] Make en_US FreeBSD Handbook more o [2005/02/27] gnu/78161 [patch] typo in gzexe o [2005/02/28] kern/78179 bus_dmamem_alloc() with BUS_DMA_NOWAIT ca o [2005/02/28] kern/78216 WRITE_DMA UDMA ICRC errors while copying o [2005/03/01] i386/78218 usb [kue] kue not detected on Sony PCG-F370 V o [2005/03/01] i386/78219 i386 Netgear FA-410TX is incorrectly detected o [2005/03/01] kern/78227 Destroying a network interface leaks kern f [2005/03/02] i386/78301 i386 Fatal trap 12 o [2005/03/03] i386/78339 i386 BTX loader crashes on boot on HP Proliant o [2005/03/03] docs/78357 doc getaddrinfo()'s AI_ADDRCONFIG not documen o [2005/03/03] kern/78382 wpaul [ndis] dhclient on ndis0 causes kernel pa o [2005/03/04] kern/78384 [panic] Reproducible panic with port iplo o [2005/03/04] amd64/78406 amd64 [panic]AMD64 w/ SCSI: issue 'rm -r /usr/p o [2005/03/04] ports/78428 openoffice Openoffice-1.1.4 stops compiling -> dmake o [2005/03/05] kern/78434 [vfs] [patch] vfs_mount: -current does no p [2005/03/06] kern/78478 rwatson writing to closed socket does not generat o [2005/03/07] i386/78517 i386 WRITE_DMA and READ_DMA timeouts with ATI o [2005/03/07] amd64/78558 amd64 installation o [2005/03/08] bin/78570 "wicontrol -i wi0 -C" outputs garbage o [2005/03/10] i386/78657 i386 [xe] [hang] error installing 5.3-RELEASE o [2005/03/10] threads/78660threads Java hangs unkillably in STOP state after f [2005/03/10] i386/78666 i386 ata0-master: FAILURE ATA-IDENTIFY timed o o [2005/03/13] conf/78762 ipfw [ipfw] [patch] /etc/rc.d/ipfw should exce o [2005/03/13] kern/78791 [xl] xl(4) input errors and speed problem o [2005/03/14] kern/78801 mux ping: sendto: No buffer space available o [2005/03/14] amd64/78848 amd64 [sis] sis driver on FreeBSD 5.x does not f [2005/03/15] kern/78868 gibbs [scsi] Adaptec 29160 fails with IBM LTO-2 o [2005/03/16] i386/78929 i386 atapicam prevents boot, system hangs o [2005/03/16] i386/78930 i386 SuperMicro web server with 5.3-RELEASE ke o [2005/03/17] kern/78946 [vm] vm_pageout_flush: partially invalid o [2005/03/17] kern/78953 bp [smbfs] smbfs getdirentries() failure cau o [2005/03/17] kern/78956 Only one write operation attempted on RAI o [2005/03/17] bin/78964 qa [sysinstall] can not write labels to hdd o [2005/03/17] kern/78968 FreeBSD freezes on mbufs exhaustion (netw o [2005/03/18] kern/78987 scottl [udf] [patch] udf fs: readdir returns err o [2005/03/18] usb/78989 usb please add USB keyboard support to instal o [2005/03/19] ports/79014 nork building www/linuxpluginwrapper fails. o [2005/03/19] kern/79025 [patch] && in /usr/src/etc/Makefile needs o [2005/03/21] i386/79073 i386 System panic and hang after creating a la o [2005/03/21] i386/79080 acpi acpi thermal changes freezes HP nx6110 o [2005/03/21] i386/79081 acpi ACPI suspend/resume not working on HP nx6 o [2005/03/22] usb/79140 usb WD Firewire/USB Combo hangs under load on o [2005/03/22] i386/79141 i386 [agp] 5.4Beta1 does not recognize my inte f [2005/03/23] kern/79148 DHClient / Ethernet Card not communicatin o [2005/03/23] kern/79160 [xl] [patch] xl_detach cause panic o [2005/03/23] kern/79168 Problems running two firewire disks on on o [2005/03/23] i386/79169 i386 freeze with striped USB Drives under high o [2005/03/24] kern/79208 [nfs] Deadlock or starvation doing heavy o [2005/03/24] kern/79214 [nfs] iozone hurts tcp-based NFS o [2005/03/25] ports/79231 x11 XORG / FBSD5.4 stuck at 640x480 on HP XE2 o [2005/03/26] kern/79255 Fixating CDRW with burncd(8) hangs system o [2005/03/26] kern/79262 [dc] Adaptec ANA-6922 not fully supported o [2005/03/26] bin/79263 find -exec {} + fails with -or and ! o [2005/03/27] i386/79268 i386 5.3-RELEASE won't boot on Compaq Armada 4 o [2005/03/27] usb/79269 usb USB ohci da0 plug/unplug causes crashes a o [2005/03/27] usb/79287 usb UHCI hang after interrupt transfer o [2005/03/28] kern/79295 umount oddity with NFS (fwe) over VIA Fir s [2005/03/28] kern/79323 [wi] authmod setup with ifconfig on dlink o [2005/03/29] kern/79324 [bge] Broadcom bge chip initialization fa p [2005/03/29] kern/79332 [ata] [patch] "ffs_mountroot: can't find o [2005/03/29] kern/79333 pjd GEOM MIRROR mount root problem o [2005/03/29] kern/79334 [ata] ATA_IDENTIFY timed out for 5.3 and o [2005/03/29] kern/79336 [nfs] NFS client doesn't detect file upda s [2005/03/29] kern/79339 [kernel] [patch] Kernel time code sync wi f [2005/03/30] bin/79376 moused causes random mouse events with a o [2005/03/31] ports/79386 kwm patch multimedia/gstreamer-plugins: wrong o [2005/03/31] ports/79397 clement news/inn fails to build nnrpd under RELEA o [2005/03/31] i386/79409 i386 Coming back from idles make the server re o [2005/04/02] usb/79436 usb Panic: ohci_abort_xfer: not in process co o [2005/04/02] kern/79493 [if_tun] [patch] Reproducible if_tun pani o [2005/04/04] usb/79524 usb printing to Minolta PagePro 1[23]xxW via o [2005/04/07] kern/79621 qa [sysinstall] sysinstall does not create a o [2005/04/07] usb/79622 imp USB devices can be freed twice o [2005/04/07] usb/79656 usb [usb] RHSC interrupts lost o [2005/04/07] docs/79658 doc Freebsd Handbook incorrect about ATAPI CD o [2005/04/08] kern/79660 ATAPI CD driver /dev/acd0tNN fails if dev o [2005/04/08] kern/79665 [panic] "unmount: dangling vnode" on amd o [2005/04/08] threads/79683threads svctcp_create() fails if multiple threads o [2005/04/08] i386/79686 i386 Spurious notebook disk errors from ATA dr o [2005/04/08] kern/79693 jhb SMP: msleep and sleepq_broadcast race o [2005/04/08] kern/79700 [nfs] suspending nfs file access hangs ot o [2005/04/09] kern/79703 [hang] RocketRaid 1820A has problems with o [2005/04/09] usb/79722 usb [usb] wrong alignments in ehci.h o [2005/04/09] i386/79729 i386 umass, da0 not detected by devfs for o [2005/04/09] i386/79730 i386 SLIM DRIVE COMBO fails with READ_BIG erro o [2005/04/11] i386/79779 i386 If system memory is above 4GB, one parts o [2005/04/11] kern/79783 ata: hw.ata.atapi_dma=1 reduces HDD writi o [2005/04/11] i386/79784 i386 [bfe] Broadcom BCM4401 : no carrier o [2005/04/11] kern/79785 realtek NIC will crash a heavy BSD system o [2005/04/12] i386/79807 i386 Lock Up on Old Acer P1 Comp o [2005/04/12] amd64/79813 amd64 Will not install/run on amd64 nForce 4 pl o [2005/04/12] i386/79833 i386 BTX crashes on boot when using Promise TX o [2005/04/13] docs/79857 doc manpage about ntp is wrong o [2005/04/14] kern/79895 darrenr [ipfilter] 5.4-RC2 breaks ipfilter NAT wh o [2005/04/14] kern/79905 multimedia [sound] sis7018 sound module problem o [2005/04/14] bin/79910 qa [sysinstall] Cannot escape from failed po o [2005/04/14] kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: o [2005/04/14] kern/79940 [panic] 5.3 with kernel debug causes pani o [2005/04/14] ports/79941 openoffice Openoffice 1.1.4_1 binary packages (i386) o [2005/04/14] i386/79943 i386 Very High interupt rate on PCM o [2005/04/16] kern/79988 darrenr [trap] page faults while in kernel mode o [2005/04/16] kern/80005 [re] re(4) network interface _very_ unpre p [2005/04/17] kern/80035 glebius netgraph is causing crash (free()->panic) o [2005/04/17] usb/80040 usb [hang] Use of sound mixer causes system f f [2005/04/17] kern/80041 multimedia [sound] snd_via8233 does not support VIA8 o [2005/04/17] kern/80042 FreeBSD 5.4 RC2: Promise PDC20265 on A7V o [2005/04/18] bin/80074 [openssl] Bug in OpenSSL's sk_insert() ca o [2005/04/19] kern/80088 [smbfs] Incorrect file time setting on NT o [2005/04/19] amd64/80114 amd64 kldload snd_ich causes interrupt storm wh o [2005/04/20] kern/80136 [md] [crash] mdconfig can reboot the syst o [2005/04/20] kern/80166 ups [panic] Debugger SMP race panic o [2005/04/22] usb/80260 usb Travan USB tape drive fails to write o [2005/04/22] kern/80266 rwatson [ipx] [patch] IPX routing doesn't work o [2005/04/22] i386/80268 i386 [crash] System with Transmeta Efficeon cp o [2005/04/25] kern/80321 ups serial db problems o [2005/04/25] kern/80322 TCP socket support broken on a busy port p [2005/04/25] kern/80346 stefanf [patch] Misuse of el_init() can lead mult s [2005/04/26] kern/80354 andre [crash] Path MTU discovery ICMP NATD BSD o [2005/04/26] usb/80361 usb mounting of usb-stick fails o [2005/04/26] usb/80373 usb usb keyboard does not respond o [2005/04/26] kern/80381 5.4 RC3 can't allocate ps/2 irq, no psm, o [2005/04/27] bin/80389 kuriyama rpc.lockd brokenness o [2005/04/27] sparc64/80410sparc64 [netgraph] netgraph is causing crash with f [2005/04/28] i386/80426 i386 5.4-RC3 still panic when boot on ASUS P2B f [2005/04/28] i386/80433 i386 write failure on transfer! o [2005/04/28] threads/80435threads panic on high loads o [2005/04/30] kern/80469 [smbfs] mount_smbfs causes freebsd to reb o [2005/04/30] ports/80491 doceng Dependency error between packages prebuil o [2005/05/01] ports/80514 ports-bugs emulators/vmware3: vmmon_smp.ko does not o [2005/05/01] kern/80519 [ntfs] Write capability for ntfs filesyst o [2005/05/03] kern/80572 [bridge] bridge/ipfw works intermittantly o [2005/05/04] usb/80628 usb recent USB MFCs cause panics o [2005/05/05] ports/80633 delphij mail/spamd: problems with rcNG (if spamd s [2005/05/05] ports/80679 emulation emulators/linux_base-8: Use ${MACHINE_ARC o [2005/05/06] usb/80685 usb panic in usb_cold_explore() at begining o [2005/05/06] amd64/80691 amd64 amd64 kernel hangs on load o [2005/05/06] kern/80694 [kbd] [patch] atkbd looped on Acer Travel o [2005/05/06] kern/80714 drop/boot to single user hangs on 5.4-REL o [2005/05/07] kern/80739 Strange panic (keyboard related?) on 5.4 o [2005/05/08] kern/80742 [pecoff] [patch] Local DoS in sys/compat/ o [2005/05/08] kern/80784 mux [fxp] fxp gives device timeouts o [2005/05/08] bin/80798 mount_portal pipe leaves file descriptors o [2005/05/09] usb/80829 usb possible panic when loading USB-modules f [2005/05/09] ports/80837 emulation x11-toolkits/linux-gtk: cannot install by o [2005/05/10] docs/80843 doc [patch] Suggested doc fix for psm0 / hand o [2005/05/10] kern/80853 [ed] [patch] add support for Compex RL200 o [2005/05/10] usb/80862 usb USB locking issues o [2005/05/10] ports/80869 girgen postgresql80-* does not handle Kerberos c o [2005/05/11] sparc64/80890sparc64 [panic] kmem_malloc(73728): kmem_map too f [2005/05/11] ports/80892 daichi portupgrade ignores configfile o [2005/05/11] bin/80913 ipfw [patch] /sbin/ipfw2 silently discards MAC o [2005/05/12] ports/80926 emulation running $PREFIX/etc/rc.d/vmware.sh return o [2005/05/12] kern/80932 tackerman [em] [patch] Degraded performance of em d o [2005/05/12] kern/80938 gmirror: DEVFS Overflow table f [2005/05/13] kern/80969 glebius [panic] Repeatable double fault panic aft o [2005/05/13] kern/80980 [i386] [patch] problem in "sys/i386/inclu o [2005/05/13] i386/80989 i386 Cannot install 5.4-RELEASE both in my sys o [2005/05/14] kern/81000 [apic] Via 8235 sound card worked great w o [2005/05/14] kern/81019 [re] re(4) RealTek 8169S32 behaves errati o [2005/05/14] amd64/81037 amd64 SATA problem o [2005/05/16] kern/81095 IPsec connection stops working if associa p [2005/05/16] i386/81111 i386 /boot/loader causes reboot due to CFLAGS+ o [2005/05/17] kern/81146 multimedia [sound] Sound isn't working AT ALL for Si o [2005/05/17] kern/81147 tackerman [em] [patch] em0 reinitialization while a o [2005/05/18] kern/81180 [bktr] bktr(4) driver cannot capture both o [2005/05/18] kern/81202 glebius nmap scan causes box to get immediately r o [2005/05/18] kern/81207 [if_ndis] NDIS wrapper doesn't probe buil o [2005/05/18] i386/81215 i386 X Freeze on Dell Inspiron 9100 with Radeo p [2005/05/19] bin/81231 des Patch pam_ssh to reject keys with no pass o [2005/05/19] kern/81232 [panic] vrele: negative ref o [2005/05/19] i386/81235 i386 /sys/i386/conf/GENERIC needs "options ASR o [2005/05/19] threads/81258threads Thread specific data is sometimes assigne o [2005/05/19] amd64/81272 amd64 JDK 1.5 port doesn't build. o [2005/05/19] kern/81282 le [vinum] [panic] Check parity with gvinum o [2005/05/20] kern/81301 problems with new "contigmalloc" routine o [2005/05/20] usb/81308 usb [ugen] [patch] polling a ugen(4) control o [2005/05/20] i386/81311 i386 [smp] [hang] Athlon MP SMP + 3ware + em0 o [2005/05/20] kern/81322 [lnc] [hang] lnc driver causes lockups o [2005/05/20] kern/81324 darrenr [panic] "Duplicate free of item %p from z o [2005/05/20] amd64/81325 amd64 KLD if_ath.ko: depends on ath_hal - not a o [2005/05/23] bin/81389 brian ( usermode ppp ) LCP Negotiation Never Fi o [2005/05/23] bin/81390 ( usermode ppp ) LCP Negotiation Never Fi o [2005/05/24] conf/81429 [patch] Error in /etc/rc.subr: jail+devfs p [2005/05/24] ports/81440 cy Major improvements to x11-wm/fvwm2-devel o [2005/05/25] ports/81464 knu ruby-1.8.2_3 stack handling broken due to o [2005/05/26] usb/81524 usb panic: usb_cold_explore: busses to explor o [2005/05/27] kern/81539 The fxtv program freezes systems o [2005/05/27] kern/81545 PPTP mpd-link stops to send and/or receiv o [2005/05/28] amd64/81602 amd64 SATA crashes with parallel pcm access o [2005/05/28] kern/81606 darrenr ipnat fails to start after upgrade to REL o [2005/05/29] ports/81631 ports-bugs new port: german/tvbrowser o [2005/05/30] kern/81644 [vge] vge(4) does not work properly when o [2005/05/31] gnu/81689 Unable to connect via SSH using protocol o [2005/06/01] kern/81770 [nfs] Always "NFS append race" at every N o [2005/06/01] usb/81774 usb 2nd generation iPod mini cannot be mounte o [2005/06/02] kern/81807 [sio] Silo overflows with serial multipor o [2005/06/03] ports/81821 kwm port multimedia/gstreamer-plugins build b o [2005/06/04] conf/81882 [patch] missing terminal definition for w o [2005/06/04] kern/81887 scsi [aac] Adaptec SCSI 2130S aac0: GetDeviceP o [2005/06/04] i386/81903 i386 Installer hangs on all menu entries on To s [2005/06/06] ports/81940 gerald wine produces err:heap:HEAP_CreateSystemH o [2005/06/06] kern/81943 des [kernel] [patch] _assert_sbuf_integrity c p [2005/06/07] kern/81978 yar [ PATCH ] if_vlan didn't pass the ALLMULT o [2005/06/07] bin/81997 ntpd fails to bind to IP-address o [2005/06/08] i386/82029 i386 Boot Loader installation on MegaRAID cont p [2005/06/08] bin/82030 simon [sysinstall] Choosing an alternate defaul o [2005/06/08] kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work o [2005/06/09] conf/82059 [patch] /etc/rc.d/localpkg: partially sor o [2005/06/09] kern/82064 anholt DRM not working with SMP o [2005/06/09] amd64/82071 amd64 incorrect -march's parameter to build 32b o [2005/06/11] kern/82143 kqueue on FreeBSD 4.11 fails to report UD f [2005/06/13] java/82183 java Cannot install Java 1.5, lots of missing o [2005/06/13] usb/82198 usb Panic on attaching of ONKI N-338 USB MP3 o [2005/06/13] bin/82207 tcpslice(1) incorrectly handles dates whe o [2005/06/14] kern/82219 [panic] in dumping if watchdog enabled. o [2005/06/14] kern/82227 [digi] Xem: chained concentrators not rec o [2005/06/14] ports/82241 anders minicom port references old serial port n a [2005/06/15] bin/82263 compat 4x broken after last update o [2005/06/15] kern/82271 pf [pf] cbq scheduler cause bad latency o [2005/06/15] usb/82272 usb Can not recognize Casio camera EX-Z40 as o [2005/06/15] i386/82285 i386 [race] kernel panic during reboot o [2005/06/15] docs/82296 doc ttys(5) man page misleads about use for n o [2005/06/17] usb/82350 usb [usb] null pointer dereference in USB sta o [2005/06/19] amd64/82425 amd64 fxp0: device timeout, fxp interface dies o [2005/06/20] kern/82442 [panic] Fatal trap 12 in em driver on 4.1 o [2005/06/21] kern/82464 [pccard] Sony Ericsson GC75 GPRS MODEM no o [2005/06/21] kern/82468 Using 64MB tcp send/recv buffers, traffic o [2005/06/21] kern/82482 [hptmv] [patch] hptmv(4) ( Highpoint Rock o [2005/06/21] kern/82491 [bootp] [patch] bootpd shouldn't ignore r o [2005/06/21] kern/82497 [vge] vge(4) on AMD64 only works when loa o [2005/06/22] usb/82520 usb Reboot when USL101 connected o [2005/06/22] conf/82526 [patch] /etc/rc.d/ntpd is being started t o [2005/06/23] amd64/82555 amd64 Kernel Panic - after i connect to my "amd o [2005/06/23] sparc64/82569sparc64 USB mass storage plug/unplug causes syste o [2005/06/25] ports/82641 sobomax Remove or mark BROKEN misc/zaptel on 4.x o [2005/06/25] kern/82649 [panic] some request to DVDROM causes ker o [2005/06/25] standards/82654standards C99 long double math functions are missin o [2005/06/26] usb/82660 usb EHCI: I/O stuck in state 'physrd'/panic o [2005/06/26] bin/82667 burncd doesn't abort on error conditions o [2005/06/26] kern/82668 ATA timeouts on 5.4-stable o [2005/06/28] bin/82720 [patch] Incorrect help output from growfs o [2005/06/28] kern/82755 [panic] during periodic ncvs.sh script at o [2005/06/29] ports/82759 delphij Source navigator installs in wrong direct o [2005/06/29] ports/82771 ale Setting "BUILD_OPTIMIZED=yes" breaks port o [2005/06/30] kern/82805 [nfs] [panic] sched_switch ched_4bsd.c:86 o [2005/06/30] kern/82806 darrenr ipnat doesn't handle out of order fragmen f [2005/06/30] ports/82824 daichi sysutils/portupgrade fails to build due t o [2005/07/01] kern/82846 phk Kernel crash in 5.4 with SMP,PAE o [2005/07/01] ports/82856 ports-bugs vmware3 port fails to compile on FreeBSD o [2005/07/02] kern/82881 [netgraph] [panic] ng_fec(4) causes kerne o [2005/07/03] kern/82919 [bridge] [patch] Bridge configuration upd f [2005/07/04] www/82961 remko CSR's listing is way out of date o [2005/07/04] bin/82975 route change does not parse classfull net o [2005/07/05] amd64/83005 amd64 Memory Occupied during installation of th o [2005/07/05] kern/83017 [modules] snd_ich freezes system when bei f [2005/07/07] i386/83078 i386 Need to develop the network driver for Bo o [2005/07/07] bin/83080 DHCP configuration fails while installing p [2005/07/07] bin/83085 des [patch] double free() in openpam o [2005/07/07] kern/83098 'vrele: negative ref cnt' in shutdown wit o [2005/07/07] kern/83107 delphij [libc] [patch] libc uuid_compare() doesn' o [2005/07/07] bin/83114 DHCP configuration fails while installing o [2005/07/09] ports/83183 olgeni webmin/perl coredumps o [2005/07/09] bin/83195 nvi loses edited file on network disconne f [2005/07/10] i386/83214 i386 FreeBSD 5.4 cannot install on IC35L120AVV o [2005/07/10] ports/83223 tobez lang/perl5.8: perl-after-upgrade do nothi o [2005/07/11] ports/83252 openoffice Openoffice-1.1.4 build failure: Died at . o [2005/07/11] kern/83254 [digi] driver can't init Digiboard PC/4e o [2005/07/11] kern/83297 [bpf] Possible issue with FreeBSD 5.4 jai o [2005/07/12] kern/83319 Systencrash on Heavy HardDisk Load. o [2005/07/12] bin/83336 [ PATCH ] libc's parse_ncp() don't check o [2005/07/12] bin/83338 [ PATCH ] libc's getent() don't check for o [2005/07/12] bin/83340 [ PATCH ] setnetgrent() and supporting fu o [2005/07/12] bin/83344 [ PATCH ] Improper handling of malloc fai o [2005/07/12] bin/83347 [ PATCH ] improper handling of malloc fai o [2005/07/12] bin/83348 [ PATCH ] Improper handling of malloc fai o [2005/07/12] bin/83349 [ PATCH ] improper handling o malloc's fa o [2005/07/12] bin/83359 [ PATCH ] improper handling of malloc fai p [2005/07/13] bin/83363 stefanf [ PATCH ] Improper handling of malloc's f o [2005/07/13] bin/83364 [ PATCH ] improper handling of malloc fai o [2005/07/13] kern/83368 [ipx] [patch] incorrect handling of mallo o [2005/07/13] bin/83369 [ PATCH ] incorrect handling of malloc fa o [2005/07/13] kern/83375 phk Fatal trap 12 cloning a pty o [2005/07/13] kern/83384 failure of non-essential IDE partitions c o [2005/07/13] kern/83406 [smp] em/bge drivers: severe performance o [2005/07/14] bin/83426 [ PATCH ] improper handling of malloc fai o [2005/07/14] kern/83429 [ath] ath(4) does not work with the D-Lin o [2005/07/14] ports/83434 hq www/jakarta-tomcat ports give the wrong o o [2005/07/14] kern/83464 [geom] [patch] Unhandled malloc failures o [2005/07/15] kern/83499 fragmented packets does not pass through a [2005/07/15] ports/83514 portmgr fix typo in bsd.port.mk: s/RC_ORDER/USE_R f [2005/07/15] kern/83521 pjd GEOM_STRIPE Error On Boot o [2005/07/16] kern/83552 [panic] Fatal trap 19 on ti0 when SMP is o [2005/07/16] bin/83558 usr.sbin/kernbb doesn't compile during bu o [2005/07/16] usb/83563 usb Page Fault while detaching Mpman Usb devi o [2005/07/16] i386/83574 i386 installation failure o [2005/07/17] kern/83586 [if_ndis] [panic] ndis panic with Intel P f [2005/07/18] kern/83671 Can't get comconsole to work properly on o [2005/07/18] usb/83677 usb [usb] usb controller not detected o [2005/07/18] bin/83696 Maximum members in group seems broken f [2005/07/19] i386/83735 i386 network card (realtek 8139) and sound car o [2005/07/19] usb/83756 usb Microsoft Intellimouse Explorer 4.0A does o [2005/07/20] kern/83761 [panic] vm-related panic: blst_radix_free o [2005/07/20] ports/83767 tobez lang/perl5.8: Perl5.8.7 coredumps on Text o [2005/07/20] docs/83771 doc handbook/raid.html and atacontrol o [2005/07/21] i386/83826 i386 can't install any version on Toshiba Satt f [2005/07/21] kern/83885 gnn [panic] Kernel panic when received ICMP T o [2005/07/22] bin/83914 popen() doesn't work in static threaded p o [2005/07/22] i386/83925 i386 can't boot Dell Latitude D610 after BOIS s [2005/07/22] ports/83929 trevor www/linux-mozilla - PATCH - update port, o [2005/07/22] kern/83930 sam crypto_q_mtx recursion when unloading hif o [2005/07/23] usb/83942 usb [patch] QUIRK: Langel USB flash mp3 playe o [2005/07/23] kern/83943 [panic] FreeBSD 6.0-BETA1 with nve o [2005/07/23] conf/83969 [patch] /etc/rc.d/cleartmp pollutes non-r o [2005/07/24] usb/83977 usb [ucom] [panic] ucom1: open bulk out error o [2005/07/24] kern/83999 firewire [firewire] [patch] panic in fw_bus_explor o [2005/07/24] i386/84008 i386 /dev/X? should be /dev/ad1s* o [2005/07/24] kern/84015 [hang] Nforce3-250Gb freezes on FreeBSD-6 o [2005/07/25] amd64/84027 obrien if_nve gets stuck o [2005/07/25] kern/84052 [modules] [hang] 5.4-STABLE - kldunload s o [2005/07/25] i386/84088 i386 Panic with nforce2 platform on FreeBSD 6. o [2005/07/26] kern/84102 gnn FreeBSD 6.0 BETA 1 install Panic's in VMW o [2005/07/26] kern/84107 [unionfs] [panic] unionfs related panic o [2005/07/26] kern/84133 [panic] amd64, while making ports (trace o [2005/07/26] kern/84135 pjd [panic] ggatec destroy panics BETA-1 o [2005/07/27] ports/84160 mharo [patch] ftp/proftpd - module mod_ldap - t p [2005/07/27] kern/84163 [mlx] 6.0-BETA1 mlx driver don't find any o [2005/07/28] kern/84202 [ed] [patch] Holtek HT80232 PCI NIC recog o [2005/07/28] ports/84207 novel [ patch ] security/gnutls: update to 1.2. o [2005/07/28] bin/84217 brian "enable proxy" is ignored in ppp.conf p [2005/07/28] conf/84221 Wrong permissions on /etc/opiekeys o [2005/07/29] i386/84303 i386 boot sometimes stops at "uhci0: 3.5GB o [2005/08/05] kern/84568 sos [ata] Sysinstall ata related panic under o [2005/08/05] conf/84574 /etc/rc.d/[cleanvar, cleartmp, abi, power o [2005/08/05] kern/84584 [re] re(4) spends too much time in interr o [2005/08/05] kern/84589 [2TB] 5.4-STABLE unresponsive during back o [2005/08/07] kern/84637 pjd [geom] [patch] GEOM LABEL sometimes doesn o [2005/08/07] ports/84644 phantom Java port lies about what files to fetch o [2005/08/07] usb/84649 usb [quirk] [patch] kernel panic after insert o [2005/08/07] kern/84656 [panic] when kern.maxdsiz is => hw.physme o [2005/08/08] bin/84668 qa [sysinstall] ssh and sysinstall problem o [2005/08/08] kern/84673 [nfs] NFS client problem "Stale NFS file p [2005/08/08] kern/84684 truckman [kernel] [patch] Kernel panic in kern_pro o [2005/08/09] i386/84717 i386 [hang] 5.4-rel booting locks-up on Superm p [2005/08/10] bin/84740 tjr regcomp("\254") fails s [2005/08/10] threads/84778threads libpthread busy loop/hang with Java when o [2005/08/11] kern/84799 [fdc] [patch] can't read beyond track 0 o f [2005/08/11] kern/84801 mlaier kernel hangs with pf and route-to o [2005/08/11] bin/84816 patch(1) inserts a line in the wrong plac o [2005/08/11] kern/84818 atapi cd: hangup with motor switched on a o [2005/08/11] ports/84820 x11 x11-servers/xorg-server fails to start w/ o [2005/08/12] amd64/84832 amd64 Installation crashes just at boot AMD64/ o [2005/08/13] kern/84861 [ipw] [patch] still can't get working ipw p [2005/08/14] kern/84908 [reboot] filesystem full and reboot (cras o [2005/08/14] amd64/84930 amd64 [msdosfs] something wrong with msdosfs on o [2005/08/15] usb/84936 usb install - usb keyboard not recognized o [2005/08/15] i386/84943 i386 "Invalid Partition Table" Intel ICH6 SATA o [2005/08/15] kern/84953 [nfs] NFS locking issue in RELENG_6/i386/ o [2005/08/15] kern/84954 imp [CARDBUS] cbb alloc res fail (with hw.car o [2005/08/15] kern/84964 [nfs] nfs4 mount doesn't handle NFS4ERR_G o [2005/08/15] kern/84965 [nfs] nfs4 mount generates NFS4ERR_BAD_SE o [2005/08/15] kern/84968 [nfs] programs on nfs4 mounts won't execu o [2005/08/16] ports/84974 kwm Update port gnome x11/workrave from 1.6 t o [2005/08/16] kern/85005 Network interrupt after shutdown method h o [2005/08/17] kern/85042 [smbfs] mount_smbfs: can't get handle to o [2005/08/18] i386/85072 i386 [psm] ps/2 Mouse detection failure on com o [2005/08/18] amd64/85081 amd64 TeamSpeak o [2005/08/19] i386/85101 i386 [libm] nearbyint always returns nan o [2005/08/19] bin/85115 byacc generates uncompileable file o [2005/08/19] kern/85123 [iir] Improper serialization in iir_ioctl o [2005/08/19] kern/85137 [pseudofs] [patch] panic due to sleep wit f [2005/08/20] ports/85155 cy security/tripwire clobbers config files o o [2005/08/20] threads/85160threads [libthr] [patch] libobjc + libpthread/lib f [2005/08/22] ports/85200 ports-bugs mail/postfix: db write part of /etc/spwd. o [2005/08/22] bin/85206 rcNG local package initialization is non- o [2005/08/23] kern/85258 mux [fxp] changing promisc mode on nic can le o [2005/08/24] kern/85266 [xe] [patch] xe(4) driver does not recogn o [2005/08/26] kern/85320 [gre] [patch] possible depletion of kerne o [2005/08/26] kern/85326 [smbfs] [panic] saving a file via samba t o [2005/08/27] alpha/85346 alpha PREEMPTION causes unstability in Alpha400 o [2005/08/28] kern/85366 [msdosfs] [patch] MSDOSFS doesn't mark vo a [2005/08/28] ports/85369 lawrance port comms/hylafax will not send e-mail n o [2005/08/28] i386/85402 i386 FreeBSD 6.0 Betas hang after an uncertain o [2005/08/29] amd64/85431 amd64 AMD64 has short but temporary freezes (ha o [2005/08/29] ports/85433 edwin [patch] multimedia/pvr250: does not build o [2005/08/29] kern/85434 firewire [fwip] fwip (IP over firewire) doesn't wo o [2005/08/29] kern/85444 IPv6 crash, possibly related to destroyin o [2005/08/29] i386/85450 i386 panic: subdisk6 detached (appears to be a o [2005/08/29] amd64/85451 amd64 6.0-BETA3 lockups on AMD64 o [2005/08/29] i386/85454 i386 Panic while booting: No virtual memory fo o [2005/08/30] kern/85464 Cannot unmount file-backed disk imported o [2005/08/30] ports/85470 x11 82845GV video mode switching with Xorg a [2005/08/30] ports/85490 portmgr [PATCH] If WANT_LINT is set, port buildin o [2005/08/30] kern/85493 imp [ed] [patch] OLDCARD can't probe ed drive o [2005/08/31] ports/85514 vsevolod mutt-ng-20050825 does not install with ol o [2005/09/01] conf/85558 brooks initdiskless should not generate memory d o [2005/09/01] ports/85561 clement www/apache2 build failed o [2005/09/01] kern/85583 obrien [nve] [timeout] send errors ("device time o [2005/09/01] kern/85603 FS corruption and 'uncorrectable' DMA err o [2005/09/03] bin/85696 xargs -E doesn't work o [2005/09/05] kern/85728 [trap] Crashes on 6.0 when copying data b o [2005/09/05] ports/85730 danfe nvidia-driver eats the /usr/X11R6/lib/mod o [2005/09/05] ports/85735 x11 Force imake respect CC/CXX o [2005/09/05] kern/85751 [devfs] [panic] panic in devfs_setattr() f [2005/09/05] ports/85756 roam Linker error when upgrading port security o [2005/09/05] kern/85768 gibbs aic79xx driver timeouts with U160 target o [2005/09/05] ia64/85772 ia64 gpt (geom_) needs to adopt g_ctl s [2005/09/06] ports/85779 edwin fmsx 3.0 is unstable (reboting, freezing o [2005/09/06] kern/85791 kernel panic, page fault in kernel mode o [2005/09/06] bin/85796 des pam doesn't work correctly after Upgrade o [2005/09/06] kern/85804 panic after chown -R from chrooted shell o [2005/09/06] kern/85809 panic: mutex "ipf state entry" already in o [2005/09/06] bin/85810 nslookup/dig Hang and processes cannot be o [2005/09/06] kern/85813 timeout waiting for read DRQTrying to mou o [2005/09/06] usb/85814 usb Microsoft Wireless Mouse doesnt work o [2005/09/06] kern/85816 maxproc=1 in login.conf causes kernel pan o [2005/09/07] bin/85830 des [patch] pam_exec incorrectly works with v s [2005/09/07] ports/85850 cperciva portsnap extract silently deletes Makefil o [2005/09/08] i386/85866 i386 bootloader freezes on Pentium2/3 o [2005/09/08] docs/85867 doc dumpon.8 is missing crucial information o [2005/09/09] kern/85893 [panic] while trying to mount audio CD o [2005/09/09] kern/85894 [nfs] [panic] nfs_timer / nfs_socket.c:11 o [2005/09/09] ports/85905 perky mod_python3 pthread_attr_destroy failure o [2005/09/09] kern/85911 Flash Mp3 player o [2005/09/10] kern/85931 panic: "vm_fault: fault on nofault entry" o [2005/09/10] i386/85938 i386 Install fails, unable to write partitions o [2005/09/10] i386/85944 i386 FreeBSD restarts after showing "Welcome t s [2005/09/11] kern/85975 [cam] devfs does not create entries when o [2005/09/11] kern/85993 [panic] emulators/kqemu panics 6.0-BETA4 o [2005/09/12] bin/86012 kpasswd(1) fails if one of the KDC are un o [2005/09/12] usb/86031 usb need support usb nic rt2500 in my 5.4 STA o [2005/09/13] kern/86055 FreeBSD 6.0 beta4 install panic:bio alrea o [2005/09/13] kern/86065 [kqueue] system reboot without sync (and o [2005/09/13] kern/86067 jeff [sched_ule] 6.0-BETA4 hangs while trying o [2005/09/13] i386/86072 pf [pf] Packet Filter rule not working prope o [2005/09/13] amd64/86080 amd64 [radeon] [hang] radeon DRI causes system o [2005/09/14] kern/86103 darrenr [ipfilter] Illegal NAT Traversal in IPFil o [2005/09/14] kern/86107 panic: unrhdr has N allocations, NULL der o [2005/09/14] ports/86139 sergei Shared object "libzsh-4.2.5.so" not found o [2005/09/15] ports/86163 lioux net/azureus doesn't run o [2005/09/16] ports/86197 vsevolod ejabberd and nullmail both want gid 522 o [2005/09/16] amd64/86199 amd64 Missed AMD64 motherboard o [2005/09/17] conf/86249 rcNG can not stop daemon which has a long o [2005/09/17] kern/86261 brian 'out of buffer space' after many PPPoE re o [2005/09/18] kern/86306 [em] [patch] if_em.c locks up while tryin o [2005/09/18] ports/86310 portmgr all-depends-list target of bsd.port.mk is f [2005/09/18] i386/86312 i386 5.4-STABLE ATA Timeout WRITE_DMA f [2005/09/19] ports/86318 ports-bugs graphics/xfig 3.2.4_1 takes over cpu afte o [2005/09/19] i386/86325 i386 [install] unable to install FreeBSD on IB o [2005/09/19] kern/86330 [ipv6] [panic] panic in ESP code o [2005/09/20] kern/86361 [bridge] bridge(4) does not work with VLA o [2005/09/20] i386/86364 i386 ATA woes, SATA controller: failed writes, o [2005/09/20] i386/86380 i386 i386_set_ioperm doesn't take effect immed o [2005/09/20] ports/86383 openoffice Can't compile openoffice.org-1.1 o [2005/09/21] kern/86411 scottl [amr] Very low performance of amr(4) unde o [2005/09/21] ports/86416 clement apache <=2.0.54. mod_ldap can't work with s [2005/09/21] kern/86417 sos [ata] Panic when doing massive i/o operat o [2005/09/21] ports/86421 clement Apache-2.0.54_4 PHP popen hangs o [2005/09/21] kern/86423 truckman backgroud fsck leaves incorrect free bloc o [2005/09/21] kern/86427 LOR / Deadlock with FASTIPSEC and nat o [2005/09/22] bin/86456 arp(8) program hangs o [2005/09/23] amd64/86503 amd64 [atapicam] [panic] k3b crash the system l o [2005/09/23] bin/86514 awk -vVAR=val doesn't work without space o [2005/09/24] bin/86518 qa sysinstall(8) Main Menu navigation f [2005/09/24] kern/86525 FreeBSD 6.0BETA5 hangs after boot up syst f [2005/09/24] ports/86531 dougb xscreensaver kill xorg 6.8.2 o [2005/09/24] docs/86532 doc [patch] wpa_supplicant.conf man page shou o [2005/09/24] ports/86535 des usermin/perl coredumps o [2005/09/25] kern/86550 csjp kernel (w/ UFS_EXTATTR* and UFS_ACL) pani s [2005/09/26] kern/86596 [unionfs] unionfs -b brokes file modes o [2005/09/26] i386/86598 nectar Bug in OpenSSL Padlock Engine (simple pat o [2005/09/26] i386/86612 i386 SCSI DAT Drive Issue o [2005/09/27] kern/86619 linux emulator interacts oddly with cp f [2005/09/27] ports/86642 daichi portupgrade doesn't add MAKE_ARGS to inst o [2005/09/27] i386/86651 i386 FAILURE ATA-IDENTIFY o [2005/09/28] i386/86667 i386 GNOME Battery Applet causing keyboard to f [2005/09/28] ports/86687 tobez Perl ithreads coredump o [2005/09/28] bin/86690 kientzle bsdtar sparse file problems o [2005/09/29] java/86700 java SIGSEGV in native jdk15 f [2005/09/29] ports/86718 ume cyrus-sasl2 2.1.21 will not build with op f [2005/09/30] kern/86746 cognet watch/snp don't work in 6.0 o [2005/09/30] kern/86747 snd_ich and snd_driver .ko's strogly load o [2005/09/30] kern/86763 [ucom] kernel: ucom0: ucomwritecb: IOERRO o [2005/09/30] usb/86767 usb [usb] bogus "slice starts beyond end of t o [2005/10/01] kern/86779 taskqueue_enqueue_fast uses spinlock on s o [2005/10/01] i386/86806 i386 Couldn't alloc kernel virtual memory o [2005/10/03] kern/86848 [pf][multicast] destroying active syncdev o [2005/10/05] i386/86920 i386 [ndis] ifconfig: SIOCS80211: Invalid argu o [2005/10/05] kern/86944 [nfs] [patch] When I use FreeBSD with NFS o [2005/10/06] kern/87014 rwatson BPF_MTAP/bpf_mtap are not threadsafe and f [2005/10/07] i386/87031 i386 Promise TX2000 boot problem o [2005/10/07] i386/87085 i386 Will not install on Microtel system f [2005/10/07] kern/87094 5.4 system with SMP and IPFW crashes unde o [2005/10/08] usb/87099 usb panic: ohci_add_done: addr 0x000d1bf0 not o [2005/10/08] kern/87107 Boot process will not complete with IPSEC p [2005/10/08] amd64/87112 peter Boot problems on a 16 processor AMD64 com o [2005/10/08] kern/87114 [xl] xl0 : watchdog timeout on 6.0 BETA5 o [2005/10/08] i386/87122 i386 Installer of 6.0-BETA5 can't find HDD par o [2005/10/09] i386/87155 i386 [boot] [panic] Can't Alloc Virtual Memory o [2005/10/09] amd64/87156 amd64 First Installation: Kernel crashes o [2005/10/09] ports/87157 mat www/p5-CGI-Minimal - PATCH to update the o [2005/10/09] ports/87171 x11 Don't build low-quality Korean bitmap fon o [2005/10/10] kern/87194 [fxp] fxp(4) promiscuous mode seems to co p [2005/10/10] bin/87221 brooks cron(8) cannot send mail when world is bu o [2005/10/10] i386/87223 i386 The moving cursor of the mouse at a login o [2005/10/11] kern/87248 [iwi] Data-corruption while using WEP on o [2005/10/11] kern/87255 [mfs] [panic] large malloc-backed mfs cra o [2005/10/11] amd64/87258 amd64 [smp] [boot] cannot boot with SMP and Are o [2005/10/12] amd64/87305 amd64 [smp] Dual Opteron / FreeBSD 5 & 6 / powe o [2005/10/12] amd64/87316 amd64 [vge] "vge0 attach returned 6" on FreeBSD a [2005/10/12] amd64/87328 amd64 [boot] BTX halted error o [2005/10/12] amd64/87348 amd64 amd64+smp+startkde always crashing o [2005/10/13] i386/87356 i386 6.0 RC1 cannot see 250GB drive p [2005/10/13] kern/87363 jhb [viapm] viapm(4) breaks PCI-ISA bridge -- o [2005/10/13] i386/87364 scottl [aac] aac controller stopped working betw o [2005/10/13] kern/87368 fat32 driver bug o [2005/10/13] kern/87371 multimedia [sound] [panic] Force unload snd_es137x c o [2005/10/13] ports/87397 edwin incorrect use of PAPERSIZE make variable o [2005/10/13] ports/87404 nork Adobe Reader no longer works with www/lin o [2005/10/13] kern/87413 damien [iwi] 6.0-RC1: "ifconfig iwi0 mode 11g up p [2005/10/14] kern/87418 glebius [em] [patch] The em driver sometimes stop o [2005/10/14] kern/87421 [netgraph] [panic]: ng_ether + ng_eiface o [2005/10/14] ports/87433 lioux Can't compile /usr/ports/net/mldonkey-dev a [2005/10/14] amd64/87436 amd64 gui does not start on the ATI RS480 M2-IL o [2005/10/14] bin/87465 [patch] dhclient(8) not properly configur o [2005/10/15] amd64/87472 amd64 I downloaded 5.4 and went to install it, o [2005/10/16] ports/87505 ale converters/php5-recode extension makes ap o [2005/10/16] kern/87506 [vr] [patch] Fix alias support on vr inte o [2005/10/16] amd64/87514 amd64 6.0-CURRENT freezes machine using >4GB on o [2005/10/16] ports/87518 edwin [fix] multimedia/pvr250: Does not build o o [2005/10/16] usb/87519 usb cannot install on USB-only system o [2005/10/16] kern/87521 darrenr [ipfilter] [panic] using ipfilter "auth" o [2005/10/16] ports/87523 trevor [patch] www/linux-mozilla: added support o [2005/10/16] ports/87525 ports-bugs [fix] misc/compat4x: amd64 unsupported o [2005/10/16] kern/87544 geom [gbde] mmaping large files on a gbde file o [2005/10/16] ports/87546 emulation [fix] emulators/rtc: broken if sizeof(int o [2005/10/17] usb/87565 usb [PATCH] Support for Vodaphone 3G/UMTS car o [2005/10/17] i386/87568 i386 6.0-STABLE disable acpi needed but 5.4-RE o [2005/10/17] i386/87576 i386 no installation on Acer aspire 1304xc lap o [2005/10/17] kern/87585 sos [ata] no SATA support w/SIS 180 RAID cont o [2005/10/17] kern/87586 Unable to use networked swap in 6.0-RC1 f [2005/10/18] kern/87596 [panic] OS crash on a Firefox link click f [2005/10/18] ports/87597 ports-bugs problems trying to compile cal3d o [2005/10/18] i386/87598 i386 make release broken f [2005/10/18] ports/87606 ports-bugs Writable directories introduced by mail/s o [2005/10/18] i386/87622 i386 aacd not working o [2005/10/18] i386/87630 i386 [ndis] No match for NdisIMGetCurrentPacke o [2005/10/18] ports/87631 sobomax zaptel modules loading crashes FreeBSD 6. o [2005/10/18] ports/87643 jedgar Cannot install P5-Mysql o [2005/10/19] i386/87654 i386 Marvell Yukon 88E8036 NIC not detected by o [2005/10/19] ports/87655 ports-bugs security/nettle is out of date : port ver o [2005/10/19] kern/87658 IO::AIO test suite loops infinitely on 5. o [2005/10/19] amd64/87689 amd64 [powerd] [hang] powerd hangs SMP Opteron o [2005/10/20] ports/87704 knu lang/ruby18 - Build fails, WITH_ONIGURUMA o [2005/10/20] kern/87727 [panic] 6.0-RC1 coredumps o [2005/10/20] bin/87729 phk most calls to malloc(3) generate warnings o [2005/10/20] amd64/87748 amd64 can't initialize X o [2005/10/20] i386/87750 i386 [boot] btx halted error while installatio o [2005/10/20] kern/87758 [ath] [hang] Reboot problem with atheros f [2005/10/21] kern/87791 Kernel crash when running df o [2005/10/21] bin/87792 [patch] very bad performance of cp(1) via o [2005/10/21] kern/87793 thompsa unable to tear down bridge (if_bridge) o [2005/10/21] ports/87809 ports-bugs New port: comm/uticom o [2005/10/21] ports/87819 gnome graphics/sodipodi: sodipodi-0.34_5 crashe f [2005/10/22] kern/87846 5.4 will NOT work with any other os on di o [2005/10/23] kern/87859 [smbfs] System reboot while umount smbfs. o [2005/10/23] kern/87861 "panic: initiate_write_inodeblock_ufs2: a o [2005/10/23] www/87864 www manpage web frontend is missing new FreeB o [2005/10/23] i386/87876 i386 Installation Problems for i368 Compaq R30 o [2005/10/23] i386/87877 i386 non-root mount operation fails o [2005/10/24] amd64/87898 amd64 Failt to init X: can't open device/io o [2005/10/24] i386/87910 i386 mouse does not work in whole of monitor a o [2005/10/24] bin/87911 kientzle tar(1): internal error o [2005/10/24] ports/87933 perl p5-Mail-SpamAssassin-3.1.0_3 missing depe f [2005/10/24] i386/87934 sos [ata] atacontrol attach ata0 causes momen o [2005/10/24] kern/87959 cracauer [ext2fs] no cp(1) possible, mmap returns o [2005/10/25] kern/87967 [nfs] [panic] Page fault panic on NFS cli f [2005/10/25] i386/87975 sos [ata] [boot] no kernel support for ata pd o [2005/10/25] amd64/87977 amd64 [busdma] [panic] amd64 busdma dflt_lock c o [2005/10/25] ports/87978 portmgr *_DEPENDS gets broken after changing (LOC o [2005/10/25] ports/87985 trevor print/acroread7 need to resetting its ARC o [2005/10/25] kern/87986 geom [geom] [hang] gmirror and quota will hang o [2005/10/25] www/87993 www 2 docu hyperlinks doesn't contain content f [2005/10/25] kern/88011 thompsa [bridge] bridge and if_bridge is broken b o [2005/10/26] ports/88019 petef PATCH - graphics/p5-Graphics-ColorNames d f [2005/10/26] ports/88027 ports-bugs portupgrade removes symlinks that point t o [2005/10/26] kern/88045 obrien [nve] [patch] 6.0rc1: nve0: device timeou o [2005/10/26] kern/88047 [asr] [panic] 6.0-RC1 reboots with SMP an o [2005/10/27] i386/88082 i386 cts protection for ath0 causes panic o [2005/10/27] gnu/88087 c++filt(1) dumps core on a trivial string o [2005/10/27] ports/88098 girgen Unable to build postgresql-contrib when p o [2005/10/28] ports/88115 x11 ivview (installed by inventor port) end i o [2005/10/28] ports/88122 cy /security/krb5 compile error o [2005/10/28] i386/88124 i386 [hang] X -configure freezes 6.0rc1 o [2005/10/28] i386/88130 i386 [hang] Machine hands on dhcp o [2005/10/28] i386/88139 i386 [i386] feature request: 53C875 Chipset HP f [2005/10/28] ports/88162 gnome Mozilla-devel crashes FreeBSD o [2005/10/29] i386/88164 i386 installing Cpanel Wget f [2005/10/29] ports/88181 dinoex openssl-stable port seems too frequently o [2005/10/30] kern/88213 [panic] Hang followed by Panic on 6.0-RC1 o [2005/10/30] bin/88215 [patch] syslogd(8) does not pass cleanly o [2005/10/30] kern/88241 [libc] [patch] Incorrect processing of mu o [2005/10/30] amd64/88249 amd64 getdents syscall fails for devfs on amd64 o [2005/10/31] kern/88266 [smbfs] smbfs does not implement UIO_NOCO o [2005/10/31] kern/88268 [bpf] yet another null pointer in bpf cod o [2005/10/31] sparc64/88279sparc64 Hme driver. Failure to initialize onboard p [2005/10/31] conf/88293 brooks /etc/rc.initdiskless broken o [2005/10/31] amd64/88299 amd64 swapcontext fails with errno 0 p [2005/10/31] kern/88301 brooks [libutil] unable to rsh to 5.4-STABLE sys o [2005/11/01] kern/88362 pf [pf] [panic] carp with pfsync causing sys o [2005/11/02] i386/88387 i386 sound-driver plays too slow o [2005/11/02] ports/88389 bms devel/picasm fails to install device prof o [2005/11/02] ports/88402 roam courier-auth doesn't compile on AMD64 due f [2005/11/02] ports/88406 rodrigc devel/apr-svn picks up e2fsprogs header a o [2005/11/03] ports/88433 mharo [patch] ftp/proftpd 1.3.0rc3 o [2005/11/03] i386/88459 i386 [panic] Fatal trap 19 (process: idle: cpu f [2005/11/03] ports/88462 ports-bugs math/GiNaC: ginsh crashes during startup a [2005/11/03] ports/88466 portmgr small update to bsd.port.mk for postgresq o [2005/11/03] kern/88472 [panic] panic/reboot in 5.4-STABLE o [2005/11/04] amd64/88485 amd64 em(4) problem o [2005/11/04] kern/88487 [panic] softdep_setup_inomapdep: found in o [2005/11/04] kern/88496 [iwi] iwi0: fatal error - have to reboot o [2005/11/04] ports/88506 barner devel/boost-python build fails with SIGSE o [2005/11/05] kern/88518 cannot mount root rw at boot o [2005/11/05] bin/88524 openssl can not work with smtp.gmail.com o [2005/11/05] ports/88535 phk emulators/hercules segfaults o [2005/11/06] ports/88540 ports-bugs net/tn3270 crashes during startup. o [2005/11/06] ports/88542 clsung Update Port: textproc/p5-Text-Ngram 0.07 o [2005/11/06] ports/88543 knu Update Port: devel/p5-String-Ediff 0.04 - o [2005/11/06] ports/88547 lev devel/subversion make install dies on som o [2005/11/06] kern/88555 [panic] ffs_blkfree: freeing free frag on o [2005/11/06] ports/88574 sobomax [PATCH][amd64] Fix build of net/asterisk o [2005/11/07] i386/88583 i386 i can't install freebsd in server ibm xse o [2005/11/07] misc/88586 Your installer with FTP has a horrible re o [2005/11/07] ports/88590 ports-bugs archivers/libunrar: respect CXX/LDFLAGS 1847 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1996/07/07] bin/1375 eivind [patch] Extraneous warning from mv(1) s [1996/10/14] kern/1791 tegge syslimits.h does not allow overriding def s [1996/11/23] bin/2090 clients may bind to FreeBSD ypserv refusi s [1996/12/02] bin/2137 tegge vm statistics are bad s [1996/12/27] kern/2298 [sio] [patch] support for DSR/DCD swappin s [1996/12/30] kern/2325 quota.user enlarged, no boot on 2.2-BETA a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d o [1997/02/19] kern/2768 ktrace(1) -i dumps corrupted trace data o [1997/03/11] bin/2934 sh(1) has problems with $ENV o [1997/07/02] kern/4012 [nfs] 2.2-RELEASE/Digital UNIX NFSv3 0 le o [1997/07/18] bin/4116 Kerberized login as .root fails to s [1997/07/26] bin/4172 des suggest reconnection option added to fetc s [1997/07/28] kern/4184 [netatalk] [patch] minor nits in sys/neta o [1997/07/30] kern/4194 kernel pci driver for Digital 21041 Ether o [1997/08/29] kern/4413 No way to unmount a floppy that goes bad o [1997/08/29] bin/4419 man can display the same man page twice o [1997/08/30] bin/4420 imp find -exedir doesn't chdir for first entr p [1997/09/03] bin/4459 bde No prototype for moncontrol(3) and monsta o [1997/09/25] bin/4629 grog calendar doesn't print all dates sometime o [1997/09/28] bin/4646 qa [sysinstall] can't fixit with an NFS-moun o [1997/10/16] kern/4782 Under certain conditions, several krsh's o [1997/11/13] bin/5031 gad lpr does not remove original file if -s i s [1997/11/28] bin/5173 [PATCH] restore ought to deal with root s s [1997/12/15] bin/5296 slattach fails creating pidfile with ioct o [1997/12/22] kern/5362 [mount] mount incorrectly reports / as an o [1998/01/12] bin/5483 Login(1) clears utmp entry o [1998/01/27] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe o [1998/01/27] kern/5587 des session id gets dropped o [1998/01/31] bin/5609 gad lpd cannot send long files to HP's JetDir o [1998/02/11] bin/5712 mikeh /bin/chio code cleaup and option added o [1998/02/14] bin/5745 nik [PATCH] Add /usr/local/share/mk to defaul o [1998/02/28] kern/5877 kbyanc sb_cc counts control data as well as data p [1998/03/31] kern/6184 No error if resulting file pos in lseek i o [1998/04/19] conf/6346 joe Kernel version strings need to relate to s [1998/05/17] kern/6668 babkin [patch] new driver: Virtual Ethernet driv s [1998/05/29] bin/6785 place for all the default dump flags a [1998/07/01] bin/7136 markm kerberized telnetd doesn't use gettytab % s [1998/07/10] bin/7232 qa [sysinstall] suggestion for FreeBSD insta o [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/07/13] bin/7265 A warning flag is added to ln(1). o [1998/07/15] bin/7287 Incorrect domain name for MAP_UPDATE in m a [1998/07/20] bin/7324 mtm Suggestions for minor modifications to ad s [1998/08/10] kern/7556 sl_compress_init() will fail if called an s [1998/08/13] bin/7606 [patch] NIS Makefile.dist: NOPUSH replace s [1998/08/23] kern/7722 Changes to acct format s [1998/09/09] bin/7868 [patch] morse(6): Morse Code Fixups o [1998/09/18] bin/7973 gad lpd: Bad control file owner in case of re o [1998/10/03] bin/8133 markm [patch] bug in telnetd (Kerberos IV) a [1998/10/28] bin/8479 dd Final \'s in /etc/exports did not work in f [1998/10/30] kern/8498 dwmalone Race condition between unp_gc() and accep o [1998/11/27] bin/8867 qa [sysinstall] [patch] /stand/sysinstall co a [1998/12/18] bin/9123 pax can't read tar archives that contain s [1998/12/29] bin/9233 gmp's mpq_add and mpq_sub are buggy o [1999/01/19] kern/9570 dfr [ed] [patch] ed(4) irq config enhancement o [1999/01/22] kern/9619 Restarting mountd kills existing mounts o [1999/01/25] kern/9679 fix for uninterruptible open in portal fi s [1999/01/29] bin/9770 jmallett [patch] An openpty(3) auxiliary program o [1999/02/02] bin/9868 Patch to add "date -a" o [1999/02/02] kern/9869 When using macros out of function, they s s [1999/02/06] kern/9927 gibbs the ahc driver doesn't correctly grok swi o [1999/02/11] bin/10030 markm Kerberized telnet fails to encrypt when a o [1999/03/02] bin/10358 yar ftp(1) has problems with long pathnames o [1999/03/16] bin/10611 timed enhancement o [1999/03/19] gnu/10670 peter cvs doesn't allow digits in local keyword o [1999/03/19] kern/10673 wpaul Non-ASCII chars on serial console with Re a [1999/03/24] kern/10778 ru "ipforward_rt" is not cleared when routin a [1999/04/08] kern/11024 mtm getpwnam(3) uses incorrect #define to lim o [1999/04/11] bin/11085 Per-host configuration for syslog.conf s [1999/04/13] bin/11114 harti make(1) does not work as documented with o [1999/04/16] kern/11165 emulation [ibsc2] IBCS2 doesn't work correctly with o [1999/04/23] bin/11294 direct logging to other hosts (no local s o [1999/05/19] kern/11789 obrien ELF machine definition missing for ARM o [1999/06/03] kern/12014 alfred Fix SysV Semaphore handling s [1999/06/07] kern/12071 fanf [net] [patch] new function: large scale I o [1999/06/08] i386/12088 imp [ed] [patch] ed(4) has minor problem with o [1999/06/21] bin/12324 qa [sysinstall] fdisk partition editor is mi o [1999/07/07] kern/12543 [fxp] [patch] cumulative error counters f o [1999/07/07] bin/12545 peter kldload(8) should be more sensitive to er o [1999/07/25] bin/12801 nvi infinite recursion with options "left o [1999/08/09] bin/13042 make(1) doesn't handle wildcards in subdi o [1999/08/12] bin/13108 authunix_create_default includes egid twi a [1999/08/13] bin/13128 cy pkg_delete doesn't handle absolute pathna o [1999/08/14] kern/13141 se [scsi] Multiple LUN support in NCR driver o [1999/08/21] bin/13309 billf Fixes to nos-tun o [1999/08/23] kern/13326 additional timeval interfaces for tags o [2000/07/20] bin/20054 yar ftpd: rotating _PATH_FTPDSTATFILE losts x o [2000/07/30] kern/20297 multimedia [sound] [patch] Joystick is not enabled w s [2000/08/01] kern/20333 des [libpam] ftp login fails on unix password o [2000/08/03] kern/20389 ken "device pass" required for CD ripping o [2000/08/04] bin/20391 jhb [sysinstall] sysinstall should check debu o [2000/08/04] kern/20410 [sio] sio support for high speed NS16550A o [2000/08/09] bin/20501 mjacob extra flag to dump to offline autoloaders o [2000/08/10] kern/20529 wpaul gigabit cards fail to link o [2000/08/21] bin/20742 ps Weird problem with 'more' on 4-1-STABLE o [2000/08/23] bin/20799 peter top's problem o [2000/08/27] bin/20881 There's no reason not to build DNSsec-DSA o [2000/08/27] bin/20889 dwmalone syslogd.c still uses depreciated domain A o [2000/08/28] bin/20908 qa [sysinstall] /stand/sysinstall too limite o [2000/08/30] bin/20944 natd enhancements, default config file an o [2000/09/03] bin/21008 gad Fix for lpr's handling of lots of jobs in o [2000/09/04] docs/21024 bde pow() ERANGE bug f [2000/09/06] bin/21080 mjacob dump doesn't use eject tape device correc o [2000/09/12] kern/21222 [nfs] wrong behavior of concurrent mmap() o [2000/09/16] bin/21312 more incorrectly redraws screen on xterm o [2000/09/16] bin/21315 Shells often behave oddly when executing s [2000/09/19] kern/21384 greid [sound] pcm driver has static in recorded o [2000/09/24] bin/21519 standards sys/dir.h should be deprecated some more f [2000/09/26] bin/21570 dougb [PATCH] Add -r option to /usr/bin/mail, q s [2000/09/30] bin/21659 Berkeley db library is statically compile o [2000/10/01] i386/21672 obrien [i386] AMD Duron Rev. A0 reports incorrec o [2000/10/01] conf/21675 Better and more disktab entries for MO dr o [2000/10/04] bin/21751 ken libcam's cam_real_open_device() may lose o [2000/10/05] kern/21768 rwatson shouldn't trailing '/' on regular file sy a [2000/10/07] kern/21807 [msdosfs] [patch] Make System attribute c o [2000/10/15] conf/21994 qa [sysinstall] Config of Anonftp (at instal s [2000/10/17] bin/22034 nfsstat(1) lacks useful features found in o [2000/10/21] bin/22182 vi options noprint/print/octal broken o [2000/10/21] kern/22190 threads A threaded read(2) from a socketpair(2) f p [2000/10/21] bin/22198 bms inet_ntop may set errno to ENOSPC and nee o [2000/10/26] conf/22308 [nfs] mounting NFS during boot blocks if o [2000/10/31] bin/22442 greid [PATCH] Increase speed of split(1) o [2000/11/10] bin/22730 fenner tcpslice doesn't handle long file offsets o [2000/11/17] misc/22914 [bootinst] bootinst messages are not upda o [2000/11/24] conf/23063 bms [PATCH] for static ARP tables in rc.netwo o [2000/11/24] bin/23082 dwmalone ntpd has only one reference-clock parser p [2000/11/28] kern/23148 getopt(3) works non-intuitively? p [2000/11/29] bin/23178 'talk' not doing right thing o [2000/11/29] bin/23180 Certain KOI8 characters are treated as "w a [2000/12/04] bin/23254 fenner yacc accepts bad grammer p [2000/12/05] kern/23304 kbyanc POSIX clock_gettime, clock_getres return o [2000/12/06] kern/23314 scsi aic driver fails to detect Adaptec 1520B a [2000/12/09] bin/23402 qa [sysinstall] upgrade ought to check parti o [2000/12/14] kern/23546 tanimura [snd_csa] [patch] csa DMA-interrupt probl s [2000/12/15] kern/23561 emulation [linux] feature request: Linux compatibil o [2000/12/15] bin/23562 markm [patch] telnetd doesn't show message in f o [2000/12/19] bin/23635 mike [PATCH] whois enhancement - smarter whois o [2000/12/25] ports/23822 trevor mtree entries for German X11 man pages a [2000/12/28] bin/23912 underflow of cnt in vs_paint() by O_NUMBE o [2001/01/04] bin/24066 marcel gdb can't detach from programs linked wit o [2001/01/16] bin/24390 standards Replacing old dir-symlinks when using /bi o [2001/01/18] bin/24435 qa [libdisk] changing slice type causes Auto o [2001/01/20] bin/24485 [PATCH] to make cron(8) handle clock jump o [2001/01/21] bin/24513 peter new options for pppd p [2001/01/21] conf/24515 dougb Fix for find(1) warning in /etc/rc o [2001/01/22] kern/24528 Bad tracking of Modem status s [2001/01/24] standards/24590standards timezone function not compatible witn Sin o [2001/01/24] bin/24592 cjc dmesg.boot Gets Overwritten without Reboo o [2001/01/31] bin/24757 yar ftpd not RFC compliant o [2001/02/02] docs/24786 doc missing FILES descriptions in sa(4) o [2001/02/05] kern/24882 ktrace not syncing .out file before panic o [2001/02/06] bin/24907 qa [sysinstall] Options screen at MenuMedia o [2001/02/08] bin/24953 green adduser ignores passwd_format in login.co o [2001/02/08] kern/24959 andre proper TCP_NOPUSH/TCP_CORK compatibility o [2001/02/09] i386/24963 i386 [perfmon] perfmon(4) doesn't work on SMP o [2001/02/11] bin/25013 mv(1) cannot move unresolvable symlinks a o [2001/02/11] bin/25015 cp: options -i and -f do not work as docu o [2001/02/11] kern/25018 lstat(2) returns bogus permissions on sym o [2001/02/15] kern/25109 Fujitsu MO device MCC3064AP could't be c o [2001/02/20] bin/25218 mailwrapper(1) invokes sendmail when reso f [2001/02/22] bin/25278 bs accepts -s -c but not -sc o [2001/02/22] alpha/25284 alpha PC164 won't reboot with graphics console f [2001/02/26] kern/25386 multimedia [sound] Incorrect mixer registers (line & o [2001/02/28] kern/25445 kernel statistics are displayed in wrong o [2001/03/01] bin/25477 billf pam_radius fix to allow null passwords fo s [2001/03/02] ports/25490 wosch [PATCH] fix various bugs in stat(1) p [2001/03/02] kern/25499 [kbd] [patch] buffer paste functionality s [2001/03/08] bin/25598 yar patch to let ftpd output message when cha o [2001/03/12] kern/25733 [intpm] mismatch between error reporting o [2001/03/12] bin/25736 ac -d option probrem with overdays logon f [2001/03/13] kern/25777 atime not updated on exec o [2001/03/15] conf/25829 IPSec config in rc.network doesn't allow o [2001/03/17] kern/25866 more than 256 ptys, up to 1302 ptys. f [2001/03/22] docs/26003 rwatson getgroups(2) lists NGROUPS_MAX but not sy o [2001/03/22] bin/26005 delphij MIME quoted-printable encoding added to v a [2001/03/29] ports/26192 sem apel appeared both in xemacs/site-package o [2001/04/01] kern/26261 [sio] silo overflow problem in sio driver o [2001/04/02] docs/26286 doc *printf(3) etc should gain format string o [2001/04/03] kern/26323 [ufs] [patch] Quota system creates zero-l a [2001/04/04] kern/26348 [pcvt] scon -s, page fault in HP mode f [2001/04/09] kern/26454 multimedia [sound] mixer volume settings on Maestro- a [2001/04/13] kern/26534 ipfw [ipfw] Add an option to ipfw to log gid/u o [2001/04/13] kern/26547 ambrisko [lnc] [patch] problem with shared memory o [2001/04/14] kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY whe o [2001/04/15] kern/26584 kernel boot messages aren't logged correc o [2001/04/16] kern/26618 iedowse unmount(2) can't unmount a filesystem who p [2001/04/17] kern/26646 ache srand() provides only 8-bit table o [2001/04/18] conf/26658 grog update to src/usr.bin/calendar/calendars/ o [2001/04/18] kern/26686 Freeze at boot from 4.3-RC4 floopies - US o [2001/04/19] bin/26695 change request: kill(1)/killall(1) -l out o [2001/04/23] kern/26787 dd sysctl change request s [2001/04/23] bin/26803 des Fix fetch to allow FTP puts in '-o' & all o [2001/04/24] i386/26812 peter old bootstrap /sys/i386/boot/... still in o [2001/04/26] docs/26879 darrenr [ipf] mkfilter not installed, yet referre o [2001/04/28] bin/26919 qa [sysinstall] fdisk should ONLY set one bo o [2001/05/01] kern/27008 kernel function sysbeep(xxx, 0) does prod f [2001/05/07] bin/27188 jon fix of rsh non-interactive mode behaviour o [2001/05/08] bin/27216 qa [sysinstall] can not get to shell prompt o [2001/05/09] kern/27232 [nfs] On NFSv3 mounted filesystems, stat o [2001/05/10] bin/27258 getty didn't check if if= isn't empty o [2001/05/11] kern/27269 Cannot mount linux extended (logical) par o [2001/05/12] bin/27281 vidcontrol(1) does not have error codes o [2001/05/13] bin/27306 marcel [patch] hw watchpoints work unreliable un o [2001/05/14] bin/27319 obrien df displays amd pid processes o [2001/05/17] kern/27403 [lpt] lpt driver doesn't handle flags any o [2001/05/18] kern/27429 'dependant' is a misspelling o [2001/05/21] bin/27483 qa [sysinstall] [patch] make sysinstall ask o [2001/05/23] kern/27571 bp [unionfs] Changing policy of shadowing fi o [2001/05/26] kern/27660 Kernel does not return error if adding du o [2001/05/27] bin/27687 fsck wrapper is not properly passing opti o [2001/06/02] bin/27829 pax's uid/gid cache is read-only a [2001/06/02] docs/27833 cjc No man page for locate.rc o [2001/06/02] kern/27835 execve() doesn't conform to execve(2) spe s [2001/06/03] docs/27843 doc [PATCH] make.conf WITH_* variables aren't o [2001/06/04] bin/27872 qa [sysinstall] "Load Config" hangs Compaq D s [2001/06/07] ports/27936 mi Update /usr/ports/deskutils/xmdiary 3.0.1 o [2001/06/08] bin/27972 losing information with talk a [2001/06/11] bin/28081 qa [sysinstall] /stand/sysinstall errs out i f [2001/06/14] ports/28155 portmgr [patch] DESTDIR is used incorrectly in bs a [2001/06/16] gnu/28189 [PATCH] fix for detecting empty CVS commi f [2001/06/16] kern/28206 bp [nullfs] [patch] umapfs/umap_vfsops.c sho o [2001/06/17] conf/28236 [PATCH] iso-8859-1_to_cp437.scm doesn't c o [2001/06/18] misc/28255 small picobsd documentation still references ol s [2001/06/18] kern/28260 standards UIO_MAXIOV needs to be made public o [2001/06/22] bin/28333 rtprio/idprio setuid problems o [2001/06/23] bin/28364 lex(1) generated files fail to compile cl o [2001/06/30] docs/28555 trhodes [PATCH] style(9) isn't explicit about boo o [2001/07/02] bin/28620 ru xinstall has no way to pass options to st s [2001/07/03] ports/28678 wosch portcheckout doesn't allow flexible build o [2001/07/07] bin/28789 /usr/bin/last does not filter for uucp co o [2001/07/11] kern/28888 mbr Acer 8000 NIC not detected correctly o [2001/07/14] bin/28972 dwmalone gamma returns same result as lgamma s [2001/07/14] i386/28975 mjacob [rp] RocketPort problems o [2001/07/18] bin/29062 markm krb4 and krb5 multiply defined version sy f [2001/07/18] kern/29067 multimedia [sound] Yamaha OPL3Sa2 pcm/pnp stops play o [2001/07/21] bin/29119 menu of fdisk editor in 4.3R does not lis f [2001/07/23] kern/29169 mjacob FC loop that 'goes away' never times out o [2001/07/26] docs/29245 doc top(1) manpage doesn't understand SMP s [2001/07/29] bin/29292 sos The functional addtion to burncd(8) f [2001/07/30] kern/29312 multimedia [sound] Using mixer on pcm misbehaves wit f [2001/07/30] kern/29318 mjacob [scsi] [patch] Exabyte 8200 needs SA_QUIR o [2001/08/01] kern/29355 mux [kernel] [patch] add lchflags support o [2001/08/01] bin/29363 gad [PATCH] newsyslog can support time as ext s [2001/08/04] kern/29423 [patch] new feature: kernel security hook o [2001/08/07] bin/29516 markm telnet from an non FreeBSD host still use f [2001/08/08] kern/29538 joerg Mounting /dev/fd0 never completes o [2001/08/09] bin/29581 nectar proposed gethostbyXXXX_r() implementation o [2001/08/14] kern/29698 emulation [linux] [patch] linux ipcs doesn'work o [2001/08/15] kern/29727 scsi [amr] [patch] amr_enquiry3 structure in a o [2001/08/20] bin/29893 qa [sysinstall] suggestions for 4.4 sysinsta o [2001/08/20] bin/29897 des pam_unix patch, which uses loginclass pas a [2001/08/23] docs/30008 doc This document should be translated, comme o [2001/08/24] kern/30052 mbr [dc] [patch] dc driver queues outgoing pk o [2001/08/29] kern/30186 getaddrinfo does not handle incorrect ser o [2001/09/03] i386/30276 i386 CPUTYPE=486 built on a CPUTYPE=p3 WORLD b o [2001/09/04] conf/30301 Default printcap "mx" config too small o [2001/09/04] bin/30321 strftime(3) '%s' format does not work pro s [2001/09/05] ports/30331 portmgr [patch] Conflict between bsd.port.mk MAKE o [2001/09/05] bin/30360 vmstat returns impossible data s [2001/09/07] kern/30422 [patch] new function: add WDT hardware wa o [2001/09/07] bin/30424 Generalization of vipw to lock pwdb while o [2001/09/09] docs/30442 trhodes remove broken referemce to gettime(9) fro o [2001/09/09] threads/30464threads pthread mutex attributes -- pshared o [2001/09/12] bin/30517 qa [sysinstall] using sysinstall with instal o [2001/09/13] bin/30542 [PATCH] add -q option to shut up killall o [2001/09/15] conf/30590 /etc/hosts.equiv and ~/.rhosts interactio p [2001/09/16] kern/30608 kern.ps_showallproc=0 doesn't limit queri o [2001/09/18] bin/30654 gad Added ability for newsyslog to archive lo f [2001/09/19] bin/30661 alfred [rpc.lockd] [patch] FreeBSD-current fails a [2001/09/22] bin/30737 qa sysinstall leaks file descriptors on rest o [2001/09/24] ports/30777 portmgr add a 'make pkg-plist' make target in por o [2001/09/25] conf/30812 [patch] giant termcap database update o [2001/09/25] bin/30819 /bin/mv results in warnings when /bin/cp o [2001/09/26] bin/30854 bootpd/bootpgw change - skip ARP modifica p [2001/09/27] kern/30857 [intr] [patch] intr_machdep.c allows acce o [2001/09/27] bin/30863 bootpd/dovend.c Win95 compatibility impro o [2001/09/30] conf/30929 usb [patch] use usbd to initialize USB ADSL m o [2001/09/30] conf/30938 Improving behavior of /etc/periodic/daily o [2001/10/04] bin/31034 dwmalone regularly add original address logging fo o [2001/10/04] kern/31048 des linprocfs:/proc/meminfo cannot handle mul o [2001/10/07] docs/31109 doc replace gif images w/ png ones due to pat o [2001/10/10] bin/31199 tunefs error is incorrect when enabling s o [2001/10/10] kern/31201 [libdisk] [patch] add free_space(chunk) t o [2001/10/18] i386/31353 i386 [apm] [patch] 'shutdown -p' does not work o [2001/10/19] kern/31380 [nfs] NFS rootfs mount failure message to o [2001/10/20] bin/31387 When getuid()=0, mailwrapper should drop f [2001/10/21] kern/31398 multimedia [sound] newpcm does not play back the tai o [2001/10/22] i386/31427 davidxu [pmap] [patch] minor incorrect code in sy o [2001/10/22] bin/31432 umount(8) and unmount(2) don't corespond o [2001/10/23] kern/31456 [pcn] [patch] register number definition f [2001/10/25] kern/31490 [sysctl] [patch] Panic in sysctl_sysctl_n f [2001/10/27] kern/31521 multimedia [sound] pcm0 plays too fast on Intel 8280 o [2001/10/29] bin/31588 change request to allow mount(1) to set t o [2001/10/30] kern/31624 writev may return undocumented ECONNRESET o [2001/10/30] kern/31647 socket calls can return undocumented EINV s [2001/11/01] kern/31686 bms Problem with the timestamp option when fl o [2001/11/02] kern/31708 VM system / fsync / flushing delayed inde o [2001/11/05] gnu/31772 New option in dialog(1) o [2001/11/10] kern/31890 [syscons] [patch] new syscons font o [2001/11/11] bin/31906 No method available to unwind atexit(3) s o [2001/11/12] bin/31933 pw can interpret numeric name as userid d o [2001/11/14] kern/31981 [libc] [patch] (mis)feature in getnetent o [2001/11/14] bin/31985 New /etc/remote flag for tip to append LF o [2001/11/14] bin/31987 patch to allow dump(1) to notify operator o [2001/11/15] docs/32020 trhodes loader.8 manpage missing tunables o [2001/11/19] conf/32108 Proposed Firewall (IPv4) configuration sc p [2001/11/20] standards/32126standards getopt(3) not Unix-98 conformant f [2001/11/20] bin/32144 qa [sysinstall] unattended install with sysi o [2001/11/26] bin/32288 qa [sysinstall] After install: /etc/rc compl a [2001/11/29] bin/32375 qa [sysinstall] sysinstall doesn't respect U a [2001/11/30] bin/32411 shutdown's absolute-time handling could b o [2001/12/03] kern/32480 [syscons] Missing graphic characters in s o [2001/12/04] bin/32501 trhodes quot(8) is stupid regarding the filesyste o [2001/12/09] usb/32652 usb [uscanner] [patch] A new ioctl to uscanne s [2001/12/09] usb/32653 usb Added patches to improve USB scanner supp o [2001/12/10] kern/32659 [vm] [patch] vm and vnode leak with vm.sw o [2001/12/10] gnu/32661 dd send-pr uses $LOGNAME for From and Reply o [2001/12/10] bin/32667 systat waste too much time reading input o [2001/12/10] bin/32680 [PATCH] Allows users to start jail(1) by o [2001/12/13] bin/32808 dwmalone [PATCH] tcpd.h lacks prototype for hosts_ o [2001/12/13] kern/32812 [bktr] bktr driver missing tuner for eepr o [2001/12/14] bin/32828 w incorrectly handles stale utmp slots wi o [2001/12/21] bin/33066 rwatson sysinstall does not write to new disks as s [2001/12/24] bin/33133 keyinit outputs wrong next login password o [2001/12/26] bin/33182 marcel gdb seg faults when given handle SIGALRM o [2001/12/26] kern/33203 [nfs] "got bad cookie" errors on NFS clie o [2002/01/05] docs/33589 doc Patch to doc.docbook.mk to post process . a [2002/01/07] bin/33661 PAP AuthAck/AuthNak parsing problem in pp o [2002/01/09] docs/33724 doc [patch] fix Handbook error about Advanced o [2002/01/10] bin/33774 Patch for killall(1) o [2002/01/11] bin/33778 joe crunchgen enhancements o [2002/01/12] bin/33809 mux [patch] mount_nfs(8) has trouble with emb o [2002/01/13] bin/33834 strptime(3) is misleading o [2002/01/14] docs/33852 doc split(1) man page implies that input file o [2002/01/14] docs/33877 doc Documented behaviour of SF_flags for non- o [2002/01/16] bin/33941 /usr/sbin/dev_mkdb dumps core a [2002/01/16] kern/33963 bde Messages at the serial IO port device pro o [2002/01/16] kern/33965 [kbd] [patch] programmable keys of the ke a [2002/01/17] bin/34010 [patch] keyinit takes passwords less than o [2002/01/22] bin/34146 newfs defaults and vfs.usermount=1 tug at s [2002/01/22] bin/34171 yar ftpd indiscrete about unprivileged user a f [2002/01/23] kern/34195 iedowse setting the action for SIGCHLD to SIG_IGN o [2002/01/23] bin/34199 dwmalone [PATCH] top(1) RES/rss display incorrect o [2002/01/24] docs/34239 trhodes tunefs(8) man page doesn't describe argum o [2002/01/26] bin/34309 gad lpd does not garantie that controlfiles b o [2002/01/29] bin/34394 peter tgetent returns wrong value in libtermcap o [2002/01/29] bin/34412 tftp will still try and receive traffic e o [2002/01/31] bin/34497 grog calendar(1) does not understand calendars s [2002/01/31] bin/34498 Error in vi manpage. o [2002/02/01] bin/34519 pkg_check(8) does not return exit code >0 o [2002/02/05] bin/34628 [pkg_install] pkg-routines ignore the rec o [2002/02/06] kern/34665 darrenr [ipfilter] ipfilter rcmd proxy "hangs". o [2002/02/07] gnu/34709 marcel [patch] Inaccurate GDB documentation o [2002/02/08] bin/34728 DHCP hostname set as Hexadecimal string o [2002/02/09] bin/34759 Phantasia does not accept [enter] key o [2002/02/10] bin/34788 dwmalone dmesg(1) issues with console output o [2002/02/11] bin/34832 /usr/share/man/cat3/setkey.3.gz linked to p [2002/02/12] bin/34874 bms Netstat output to small o [2002/02/12] kern/34880 luigi Impossibility of grouping IP into a pipe a [2002/02/16] docs/35011 doc There are no commands called "diskless" o f [2002/02/17] bin/35018 brian enhancing daily/460.status-mail-rejects s [2002/02/18] bin/35070 math(3) references section "3m", etc. o [2002/02/19] bin/35109 [PATCH] games/morse: add ability to decod o [2002/02/19] bin/35113 grdc enhancement: countdown timer mode o [2002/02/22] docs/35222 doc mailing list archive URL regexp suboptima o [2002/02/23] kern/35234 scsi World access to /dev/pass? (for scanner) o [2002/02/24] kern/35262 [boot2] [patch] generation of boot block o [2002/02/25] kern/35289 [bktr] [patch] Brooktree device doesnt pr o [2002/02/25] kern/35324 Plug and Play probe fails to configure Di o [2002/02/27] kern/35377 process gets unkillable (-9) in "ttywai" o [2002/02/28] bin/35400 qa [sysinstall] sysinstall could improve man o [2002/03/01] bin/35451 PATCH: pkg_add -r able to save local copy o [2002/03/04] misc/35542 bde [patch] BDECFLAGS needs -U__STRICT_ANSI__ o [2002/03/04] conf/35545 [patch] enhanced periodic scripts: 100.cl o [2002/03/05] bin/35568 make declares target out of date, but $? o [2002/03/06] docs/35608 doc mt(1) page uses "setmark" without explana o [2002/03/06] docs/35609 doc mt(1) page needs explanation of "long era o [2002/03/06] docs/35612 doc ps(1) page "state" description doesn't me o [2002/03/07] kern/35635 [libiconv] [patch] missing dep in libicon o [2002/03/07] docs/35642 doc lo(4) page maybe should document optional o [2002/03/07] docs/35644 doc lo(4) page presumes familiarity with prin o [2002/03/07] docs/35646 doc cp(1) page needs a "Bugs" section. o [2002/03/07] www/35647 www www; combine query-by-number and multi-fi o [2002/03/07] docs/35652 trhodes bsd.README seriously obsolete o [2002/03/08] docs/35686 doc blackhole(4) page seems to contradict its o [2002/03/09] docs/35696 trhodes mount_smbfs(8) references a nonexistent n o [2002/03/09] www/35711 bugmeister the "gnats page" should move to its own s o [2002/03/09] bin/35717 which(1) returns wrong exit status for m o [2002/03/10] docs/35732 doc adduser(8) page has obsolete reference an o [2002/03/11] ports/35767 portmgr make_index script does not deal with syml o [2002/03/11] bin/35769 w does not correctly interpret X sessions o [2002/03/11] kern/35774 [libutil] logwtmp: Suboptimal auditing po o [2002/03/13] kern/35846 imp timeout in wi_cmd 11, machine hangs for a o [2002/03/14] bin/35886 [patch] pax(1) enhancement: custom time f p [2002/03/14] bin/35894 [patch] popen.c in cron won't build witho o [2002/03/16] docs/35943 doc at(1) config files are misplaced in /var/ o [2002/03/16] docs/35953 doc hosts.equiv(5) manual is confusing or wro s [2002/03/19] standards/36076standards Implementation of POSIX fuser command o [2002/03/20] bin/36118 qa [sysinstall] 4.5 Upgrade says it won't to o [2002/03/20] bin/36143 [patch] Dynamic (non linear) mouse accele o [2002/03/21] kern/36170 [an] [patch] an(4) does an_init() even if o [2002/03/24] bin/36262 [patch] Fixed rusers(1) idle-time reporti o [2002/03/27] bin/36374 Patch (against core dumps) and improvemet o [2002/03/27] bin/36385 luigi crunchgen does not handle Makefiles with o [2002/03/27] conf/36392 [feature request] cron starts before vi r o [2002/03/28] docs/36432 doc Proposal for doc/share/mk: make folded bo o [2002/03/29] docs/36449 doc symlink(7) manual doesn't mention trailin a [2002/03/29] kern/36451 [bktr] [patch] Japan IF frequency is inco s [2002/03/29] gnu/36460 cu(1) program does not work very well. f [2002/03/29] bin/36477 gshapiro mailwrapper doesn't handle rmail calls o [2002/03/29] bin/36501 grog /usr/bin/calendar can't handle recurring o [2002/03/30] bin/36553 gad Two new features in newsyslog(8) o [2002/03/31] bin/36556 [patch] regular expressions for tcpwrappe o [2002/04/01] bin/36626 login_cap(3) incorrectly claims that all o [2002/04/02] bin/36646 dwmalone [patch] top(1) does not work correctly in o [2002/04/04] docs/36724 darrenr ipnat(5) manpage grammar is incomplete an o [2002/04/04] bin/36740 make ps obey locale (particularly for tim o [2002/04/04] bin/36757 which(1) ought to append @ if result is s o [2002/04/05] bin/36786 make ps use 24-hour time by default s [2002/04/08] java/36901 glewis WITHOUT_X11 Knob for port java/jdk13 o [2002/04/08] kern/36902 [libc] [patch] proposed new format code % o [2002/04/09] kern/36916 qa [libdisk] DOS active partition flag lost o [2002/04/10] kern/36952 ldd comand of linux does not work o [2002/04/10] bin/36960 grog calendar doesn't effect -t option. o [2002/04/12] bin/37013 ls directory name output trailing slash d o [2002/04/14] bin/37074 bp [PATCH] Typographical error in output of o [2002/04/15] bin/37083 small improvement to talk(1): add clocks o [2002/04/15] bin/37096 [patch] fixes to fsdb(8) command-line han o [2002/04/16] bin/37160 qa [sysinstall] coredumps when trying to loa o [2002/04/23] kern/37380 jhb [boot0] [patch] boot0 partition list is o o [2002/04/23] conf/37387 grog bsdmainutils/calendar Hungarian addon fil o [2002/04/24] bin/37424 [patch] nfsstat(1) reports negative value o [2002/04/25] bin/37437 Add HTTP-style support to {vis,unvis}(1). o [2002/04/25] bin/37442 [PATCH] sleep(1) to support time multipli p [2002/04/25] kern/37448 obrien [PATCH] ldd/rtld support for more informa o [2002/04/29] kern/37554 jmg [vm] [patch] make ELF shared libraries im o [2002/04/29] kern/37555 [kernel] [patch] vnode flags appear to be o [2002/04/29] conf/37569 [PATCH] Extend fstab(5) format to allow f o [2002/04/30] kern/37600 multimedia [sound] [partial patch] t4dwave drive doe f [2002/05/02] kern/37657 multimedia [sound] /dev/dsp and /dev/audio skip the o [2002/05/02] bin/37672 pw(8) prints warnings after successful NI o [2002/05/02] threads/37676threads libc_r: msgsnd(), msgrcv(), pread(), pwri o [2002/05/03] docs/37719 kensmith Detail VOP_ naming in a relevant man-page o [2002/05/04] bin/37733 su(1) does not behave the way it is descr s [2002/05/07] docs/37843 doc manual for pthread_setschedparam is wrong o [2002/05/07] bin/37844 [PATCH] make knob to not install progs wi o [2002/05/09] gnu/37910 PATCH: make send-pr(1) respect &'s in /et o [2002/05/13] alpha/38031 alpha osf1.ko not loaded during boot-time of li s [2002/05/13] ports/38034 ports-bugs compaq-cc (under linux-emu) installes man o [2002/05/14] bin/38055 qa [sysinstall] Groups (creation) item shoul o [2002/05/14] bin/38056 qa [sysinstall] User (creation)'s "Member gr o [2002/05/14] bin/38057 qa [sysinstall] "install" document doesn't d o [2002/05/14] docs/38061 ume Typos in man pages for faith & faithd o [2002/05/16] bin/38156 quotacheck chokes on user -2 o [2002/05/17] bin/38168 [patch] feature request: installing curse o [2002/05/18] bin/38256 linking pax to pax_{cpio|tar} s [2002/05/20] kern/38347 [libutil] [patch] [feature request] new l o [2002/05/22] kern/38429 [PATCH] getgpid and getsid work for proce o [2002/05/23] kern/38445 suggestion: centralize ptrace() permissio o [2002/05/24] bin/38478 qa [sysinstall] In Choose Distributions scre o [2002/05/24] bin/38480 qa [sysinstall] sysinstall should prompt for s [2002/05/24] www/38500 www gnats web form is overenthusiastic about o [2002/05/24] conf/38524 cons25 doesn't support F-keys beyond 12 o [2002/05/25] docs/38540 blackend sysinstall application name should be Sys o [2002/05/25] docs/38556 remko EPS file of beastie, as addition to exist o [2002/05/26] bin/38583 qa [sysinstall] sysinstall installs crypto s o [2002/05/27] ports/38593 portmgr Third level ports o [2002/05/27] bin/38610 qa [sysinstall] should be able to mount ISO o [2002/05/27] docs/38620 doc Committers Guide and CVS o [2002/05/27] kern/38626 luigi dummynet/traffic shaper: RED: max_th and o [2002/05/30] bin/38727 [patch] mptable(1) should complain about f [2002/05/30] kern/38730 philip Memorex scrollpro mouse is not fully func o [2002/05/30] kern/38749 kientzle Diskless booting fails with some DHCP ser o [2002/05/31] docs/38772 doc firewall_type feature not mentioned on Ha o [2002/06/02] kern/38826 [bootmgr] RFE: BootMgr should provide mor o [2002/06/02] kern/38828 scsi [feature request] DPT PM2012B/90 doesn't o [2002/06/03] bin/38854 qa [sysinstall] resetting during setup cause o [2002/06/06] misc/38937 delay between tracks in digital audio dum o [2002/06/06] bin/38940 Change: an option to *stat to allow supre o [2002/06/07] docs/38982 doc developers-hanbook/Jail fix o [2002/06/08] kern/39047 IPSEC Compression (IPCOMP) broken in tunn o [2002/06/12] kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLIN o [2002/06/14] standards/39256standards snprintf/vsnprintf aren't POSIX-conforman o [2002/06/14] conf/39306 The /etc/rc file should know if is runnin o [2002/06/15] docs/39348 doc kenv fetch of hostname requires dhcp/boot o [2002/06/16] bin/39360 qa [sysinstall] if linux emu is added as a d o [2002/06/17] kern/39425 [amd] Auto mounted directory was not foun o [2002/06/17] bin/39439 tcopy will not duplicate tapes with block o [2002/06/18] bin/39463 mtm [PATCH] Add several options to fingerd o [2002/06/18] conf/39466 /etc/security: find -xdev hangs on dead N f [2002/06/19] conf/39505 automate BUILDNAME variable for releases o [2002/06/19] kern/39527 dwmalone getcwd() and unreadable parent directory o [2002/06/19] docs/39530 doc access(2) man page has unnecessarily broa o [2002/06/20] bin/39574 qa [sysinstall] error mounting /dev/acd0c on s [2002/06/20] conf/39580 insecure default settings f [2002/06/22] ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXA o [2002/06/23] kern/39681 [sysctl] [patch] add hidden kernel boot t o [2002/06/25] docs/39824 doc Various tweaks for doc/en_US.ISO8859-1/bo o [2002/06/26] bin/39864 robert hostname instead of IP in w(1) -n output o [2002/06/26] bin/39893 setusercontext library call differs umask o [2002/06/27] bin/39905 johan cleaning sbin/restore code from warnings o [2002/06/29] conf/39976 vi recovery halting boot process o [2002/06/29] kern/40017 [patch] allows config(8) to specify confi s [2002/06/29] kern/40021 [kernel build] [patch] use ld(1) to build p [2002/07/01] gnu/40057 bugmeister send-pr -a flag does not work with -f o [2002/07/02] kern/40127 [libutil] [patch] Add functions for PID-f o [2002/07/03] kern/40132 multimedia [sound] [patch] enabling the joystick int f [2002/07/06] bin/40273 dougb some more fortunes o [2002/07/07] conf/40298 [patch] /etc/rc: using swapfile as /tmp o [2002/07/09] kern/40369 [kernel] [patch] rman_reserve_resource - o [2002/07/09] bin/40391 imp [sysinstall] sysinstall with PCCARD<->ISA o [2002/07/10] docs/40423 doc Keyboard(4)'s definition of parameters to o [2002/07/13] kern/40516 [ti] [patch] ti driver has no baudrate se f [2002/07/13] bin/40538 dougb mergemaster fixes and enhancements o [2002/07/14] conf/40548 list of /etc/defaults/make.conf undocumme p [2002/07/14] kern/40563 bms gif driver can clobber route/arp table o [2002/07/14] bin/40572 vipw prints silly message if $EDITOR fail o [2002/07/15] bin/40597 add /sbin/fdisk ability of showing extend s [2002/07/16] threads/40671threads pthread_cancel doesn't remove thread from o [2002/07/19] conf/40777 disktab does not support 2.88MB floppies o [2002/07/21] docs/40851 doc [PATCH] "mergemaster -p" in UPDATING's "C o [2002/07/23] kern/40919 usage of ucred->cr_uid in sys/netinet/in_ o [2002/07/23] kern/40926 qa [boot] After Upgrading or Clean Installin f [2002/07/23] kern/40927 multimedia [sound] Acer Labs M5451 dies with pcm:pla o [2002/07/24] usb/40948 usb [usb] USB HP CDW8200 does not work o [2002/07/24] i386/40958 i386 [apm] apm on Acer TravelMate 351 could no o [2002/07/25] bin/40980 du(1)'s -h and -k options interact confus o [2002/07/27] bin/41060 ready to import gzip 1.3.3 o [2002/07/28] docs/41089 doc pax -B option does not mention interactio o [2002/07/30] bin/41159 new sed -c option to allow ; as a separat s [2002/07/30] misc/41179 feature request: LD_LIBRARY_PATH security o [2002/07/31] bin/41190 in sed, report the { linenum instead of E o [2002/07/31] bin/41213 top(1) blocks if NIS-related entries in p o [2002/07/31] kern/41215 [kbd] console revert back to kbd0 (AT) af o [2002/08/01] bin/41238 qa [sysinstall] problems with FreeBSD instal o [2002/08/02] docs/41270 doc confusing directions for kernelconfig cha o [2002/08/02] bin/41271 Non-suid-crontab. o [2002/08/04] bin/41307 libalias: logging of links lifecycle (add o [2002/08/04] www/41312 cvsadm RCS IDs are off-by-one in the NetBSD cvsw o [2002/08/06] i386/41364 imp [pccard] NewMedia "Bus Toaster" SCSI card o [2002/08/07] usb/41415 usb [usb] [patch] Some USB scanners cannot ta o [2002/08/10] bin/41526 symlinked mount points get mounted more t o [2002/08/11] kern/41543 emulation [patch] feature request: easier wine/w23 f [2002/08/11] bin/41556 obrien [PATCH] wtmp patch for lukemftpd o [2002/08/12] bin/41566 obrien file(1) out of date o [2002/08/12] i386/41569 silo overflow p [2002/08/12] standards/41576standards POSIX compliance of ln(1) a [2002/08/12] bin/41583 assorted mtree bugs (+fixes) o [2002/08/15] bin/41674 ken iostat column formatting overlaps f [2002/08/17] kern/41743 multimedia [sound] No sound from SiS630s controller o [2002/08/17] bin/41744 qa [sysinstall] cannot stop comat22 from bei o [2002/08/20] docs/41807 doc natd -punch_fw "bug" o [2002/08/20] bin/41817 pw groupshow doesn't include the login gr o [2002/08/20] docs/41820 doc Device driver confusion in Handbook (2.3) o [2002/08/21] conf/41855 brooks improvment of /etc/rc.diskless2 script o [2002/08/21] i386/41856 i386 VESA splash screen problems on ThinkPad 2 o [2002/08/22] docs/41879 hrs cleanup to DOCROOT/share/sgml/freebsd.dsl o [2002/08/23] docs/41919 blackend MINI kernel for bootfloppy (Handbook p.34 o [2002/08/23] kern/41930 declaration clash for ffs() and ${CXX} o [2002/08/23] bin/41947 hexdump(1) unprintable ASCII enhancement o [2002/08/23] bin/41949 qa [sysinstall] sysinstall sorts /etc/rc.con o [2002/08/26] bin/42018 krion pkg_info with PKG_PATH searches through t o [2002/08/26] bin/42022 qa [sysinstall] non-interactive mode prompts a [2002/08/27] docs/42058 doc Documentation: Installing Oracle 8i onto o [2002/08/27] kern/42065 [kernel] [patch] kern.ps_showallprocs has o [2002/08/27] bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports o [2002/08/29] bin/42162 qa [sysinstall] installation crashes, md0c f o [2002/08/30] docs/42182 trhodes Making Dedicated Mode disks doc out of da o [2002/08/30] bin/42217 libdisk segfaults with 1024 bytes/sector o [2002/09/01] kern/42274 [kernel] [patch] Convert defined variable o [2002/09/02] bin/42336 [PATCH] ISO-fication of /usr/src/contrib/ o [2002/09/03] bin/42386 cleaning code from warnings in libkvm o [2002/09/03] bin/42387 cleaning code of librpcsvc from warnings o [2002/09/04] kern/42422 dbm_delete returns -1 instead of 1 when t o [2002/09/04] kern/42429 [libc] [patch] hash_action called with HA o [2002/09/05] kern/42442 problem in idlequeue/debugging mode ? o [2002/09/06] kern/42461 mdodd if_wi_pci.c,if_wi_pccard.c lack device_re s [2002/09/06] kern/42466 emulation [linux] linux: 'ipc' typ=258 not implemen o [2002/09/06] bin/42468 mount_smbfs incorrectly handled configura o [2002/09/06] bin/42469 After mounting by mount_smbfs directories f [2002/09/08] kern/42564 multimedia [sound] record bug with emu10k1 driver f [2002/09/10] kern/42638 multimedia [sound] CS4326/4327 (MSS) buggy output pl o [2002/09/11] bin/42663 pw(1): pw useradd assigns unique UID's to o [2002/09/13] kern/42728 small many problems in src/usr.sbin/ppp/* afte o [2002/09/14] i386/42766 i386 [vm] [patch] proposal to perform reboot v o [2002/09/15] bin/42803 tconv, tic, captoinfo binaries missing fr o [2002/09/18] bin/42934 qa [sysinstall] installation procedure on in o [2002/09/19] kern/42956 [libc] dlclose gives "invalid shared obje o [2002/09/19] bin/42974 [patch] syslogd(8): add ISO 8601 date for p [2002/09/20] bin/43139 bms /sbin/route -host option doesn't always s o [2002/09/21] kern/43154 [if_tun] [patch] tunwrite() does not allo o [2002/09/22] i386/43262 i386 [hang] command 'shutdown -r' (also reboot o [2002/09/25] kern/43355 idad driver will work if logical drives d o [2002/09/25] bin/43367 incorrect report from 'who' after 'shutdo o [2002/09/25] bin/43368 krion pkg_create fails if target directory does o [2002/09/25] bin/43372 Broken struct ufs_args in ufsmount.h o [2002/09/27] bin/43434 New option to 'dmesg' which allow to disp o [2002/09/29] docs/43470 blackend Solid State / x109 article out of date. o [2002/09/29] kern/43474 [nfs] [patch] dhcp.* values not set in ke s [2002/09/29] bin/43497 mount(8): mount -t nfs -> crunchgen incom o [2002/09/30] conf/43500 rc.syscons "allscreens" improvements o [2002/09/30] i386/43539 i386 [fdc] Cannot mout floppy on Compaq Prolia o [2002/10/02] kern/43577 [kernel] [patch] feature request: new ker o [2002/10/02] bin/43582 passwd(1) fails on nonexistent users o [2002/10/03] kern/43611 [crypto] [patch] static-ize some symbols o [2002/10/03] kern/43616 [zlib] [patch] static-ize some functions o [2002/10/04] docs/43651 doc stab(5) incorrectly states to include jus o [2002/10/05] kern/43716 [puc] [patch] puc driver does not recogni s [2002/10/07] ports/43771 ports-bugs LaTeX ports mixed between print and textp o [2002/10/08] bin/43819 changed truss output for utrace calls o [2002/10/08] docs/43823 doc [PATCH] update to environ(7) manpage o [2002/10/08] misc/43825 qa please remove object files in source (src o [2002/10/09] bin/43857 isdn [patch] conflicting types in /usr/src/usr o [2002/10/09] docs/43861 doc non-trivial typo in wicontrol man page o [2002/10/11] kern/43905 [headers] [patch] kqueues: EV_SET(kevp++, o [2002/10/11] kern/43916 [ex] [hang] Olicom OC-2220 (PC-card) hang o [2002/10/11] docs/43941 doc Rationale for Upgrade Sequence o [2002/10/14] docs/44034 trhodes Multiple sysctl variables are not documen o [2002/10/14] kern/44058 [MAKEDEV] [patch] /dev/ch* is created wit o [2002/10/15] docs/44074 doc ln(1) manual clarifications [patch] o [2002/10/15] kern/44098 RealTec-based NIC initialization problem o [2002/10/15] bin/44122 tun0 gets a second ip adress after a disc o [2002/10/17] conf/44170 Add ability to run multiple pppoed(8) on a [2002/10/17] www/44181 garys www "Release Information" organization o [2002/10/18] bin/44212 Unify 'recursive' options -r and -R o [2002/10/19] kern/44267 [sio] [patch] One more modem PNP id for / o [2002/10/19] conf/44286 roberto /etc/defaults/rc.conf uses the obsolete n o [2002/10/20] kern/44293 thomas Unable to access audio CD under Linux emu o [2002/10/22] kern/44365 [headers] [patch] introduce ulong and unc o [2002/10/22] kern/44372 roberto some kernel options prevent NTP clock syn o [2002/10/23] standards/44425standards getcwd() succeeds even if current dir has o [2002/10/26] kern/44497 NIC Lags? o [2002/10/26] kern/44500 [bge] [patch] bge(4): add AC1001 Gigabit o [2002/10/29] kern/44580 [nfs] NFS updates file access time when f o [2002/10/29] kern/44587 scsi dev/dpt/dpt.h is missing defines required o [2002/10/29] docs/44594 doc Handbook doesn't mention drivers.flp for f [2002/10/30] conf/44717 dougb update login.conf and unify login capabil o [2002/11/04] bin/44894 markm telnet(1): as a local non-root user and r o [2002/11/05] bin/44915 qa [sysinstall] 'choose installation media' o [2002/11/06] gnu/44984 Send-pr can use environmental variable $F o [2002/11/06] docs/45011 trhodes style(9): '->' and '.' don't require spac o [2002/11/07] kern/45026 [nis] Can't set next password change date o [2002/11/08] gnu/45137 peter [PATCH] CVS 1.11.2 cannot reuse log messa o [2002/11/10] bin/45193 [PATCH] truss can't truss itself o [2002/11/11] ports/45216 joerg devel/bcc port is incomplete o [2002/11/11] conf/45222 daily rejected mail hosts report too long o [2002/11/12] conf/45226 mtm Fix for rc.network, ppp-user annoyance o [2002/11/12] bin/45229 restore(8) -i: ls reports mising files as o [2002/11/13] bin/45254 qa [sysinstall] [patch] sysinstall installs f [2002/11/14] ports/45289 hrs ja-dvi2ps-3.2 does not handle \special co o [2002/11/14] kern/45293 kevent denies to observe /dev/tty o [2002/11/16] bin/45333 [PATCH] New option -r for chown and chgrp o [2002/11/18] ports/45414 portmgr make update in /usr/ports missing default o [2002/11/19] bin/45486 Support for human readble (-h/-H) output s [2002/11/21] bin/45547 sos a patch to make burncd handle .wav files. a [2002/11/22] bin/45584 read builtin function of sh does not read o [2002/11/23] bin/45608 qa [sysinstall] install should config all et s [2002/11/23] ports/45613 portmgr make update doesn't o [2002/11/24] kern/45684 systat -vmstat reports "alternate system o [2002/11/25] bin/45701 markm spelling error in rogue o [2002/11/25] conf/45704 [PATCH] request to change cp866b font to o [2002/11/25] bin/45729 make rbootd transfere the default file if o [2002/11/27] kern/45793 [headers] [patch] invalid media subtype a o [2002/11/28] bin/45830 nectar [kerberos] KDC has problems when listenin p [2002/11/30] conf/45874 ache [PATCH] FreeBSD does not know about ca_ES o [2002/12/01] bin/45896 dwmalone setnetgrent() should return error code o [2002/12/02] docs/45940 doc burncd missing info o [2002/12/07] conf/46062 kris Remove skel from BSD.root.dist. o [2002/12/09] i386/46113 i386 [bus] [patch] busspace bugs in parameter o [2002/12/09] standards/46119standards Priority problems for SCHED_OTHER using p o [2002/12/10] kern/46159 ipfw [ipfw] [patch] ipfw dynamic rules lifetim o [2002/12/10] bin/46163 gad lpc problem. Only root can modify despit o [2002/12/11] docs/46196 doc Missing return value in (set_)menu_format o [2002/12/13] bin/46235 rwatson [sysinstall] NTP servers for Finland requ o [2002/12/16] docs/46291 doc correlation between HZ kernel config para o [2002/12/16] docs/46295 doc please add information to Nvi recovery em o [2002/12/17] bin/46328 gad patch for lpd o [2002/12/19] kern/46368 [isa] [patch] MAXDEP in isa/pnpparse.c is s [2002/12/19] bin/46382 ps(1) could use a "repeat" mode o [2002/12/20] conf/46409 Certain periodic scripts check broken NFS o [2002/12/21] standards/46441standards /bin/sh does not do parameter expansion i o [2002/12/22] conf/46453 [INTERNATIONALIZATION] cons25l2, ISO8859- o [2002/12/31] conf/46645 [PATCH] rc.shutdown state table saving ha a [2003/01/03] docs/46709 peter tables in terminfo.5 are broken o [2003/01/03] kern/46734 [joy] [patch] joystick driver doesn't all s [2003/01/04] conf/46746 No way to set link addresses through rc.c o [2003/01/04] bin/46758 moused enhancements o [2003/01/09] bin/46888 gad Add script run hook to newsyslog(8) o [2003/01/09] bin/46905 qa [sysinstall] FreeBSD 5.x cannot be instal s [2003/01/10] conf/46913 darrenr ipf denied packets of security run output o [2003/01/10] bin/46925 sysctl -a goes into an infinite loop... o [2003/01/11] kern/46973 [syscons] [patch] syscons virtual termina s [2003/01/13] ports/47018 sf Teach ftp/wget new very useful feature - o [2003/01/19] bin/47204 qa [sysinstall] base + XFree86 install fails o [2003/01/19] i386/47223 i386 [pcvt] [PATCH] pcvt(4), ESC sequences do o [2003/01/20] bin/47235 top reports inaccurate cpu usage f [2003/01/20] kern/47243 multimedia [sound] Onboard CMedia CMI8738 playback n o [2003/01/21] kern/47311 mdodd [patch] Kernel support for NVIDIA nForce2 o [2003/01/21] bin/47314 qa [sysinstall] wish: install should not req o [2003/01/22] bin/47350 rc.network supports only one ppp profile f [2003/01/22] kern/47352 multimedia [sound] pcm/ac'97, dsp device busy o [2003/01/22] i386/47376 i386 [pcvt] [PATCH], pcvt(4), COLOR_KERNEL_FG, o [2003/01/23] bin/47387 [PATCH] gprof -K still requires "a.out" a f [2003/01/25] kern/47452 le [vinum] df(1) reports filesystem empty wh o [2003/01/27] bin/47540 Make natd configurable in running state w o [2003/01/27] conf/47566 le [vinum] [patch] add vinum status verifica o [2003/01/28] docs/47575 doc Clarify requirements for IPFW2 in STABLE o [2003/01/28] bin/47576 [PATCH] factor(6)ing of negative numbers o [2003/01/28] docs/47594 doc [PATCH] passwd(5) incorrectly states allo o [2003/01/28] bin/47596 daily security run complains if timezone o [2003/02/02] bin/47815 stty -all should work. o [2003/02/02] docs/47818 doc ln(1) manpage is confusing o [2003/02/04] bin/47908 qa [sysinstall] /stand/sysinstall can't disp o [2003/02/06] docs/47991 trhodes Handbook section on upgrading kernel says o [2003/02/08] docs/48101 doc There's no documentation on the fixit dis o [2003/02/09] conf/48105 /etc/disktab has incomplete duplication o o [2003/02/09] misc/48110 [patch] change CVSROOT/log_accum.pl to no o [2003/02/10] conf/48133 /etc/rc: improved vi recovery notificatio o [2003/02/11] kern/48172 ipfw [ipfw] [patch] ipfw does not log size and o [2003/02/12] conf/48195 /var/db/mounttab error on diskless boot f [2003/02/14] ports/48281 obrien Patch editors/vim to use fetch instead of o [2003/02/15] bin/48309 pppoe connections fail to establish if th o [2003/02/16] kern/48338 multimedia [sound] pcm audio driver hogs /dev/dsp?.? o [2003/02/16] usb/48342 usb [PATCH] usbd dynamic device list. o [2003/02/18] bin/48443 mtm /usr/sbin/periodic executes too many file o [2003/02/18] conf/48444 [patch] security.functions: count connect o [2003/02/19] kern/48471 pjd [kernel] [patch] new feature: private IPC o [2003/02/22] conf/48566 [PATCH] /etc/defaults/make.conf stales af o [2003/02/23] kern/48599 [syscons] [patch] syscons cut-n-paste log o [2003/02/23] bin/48603 Getopt is broken. Patch included. o [2003/02/24] gnu/48638 [PATCH] some bug fixs in libdialog o [2003/02/25] alpha/48676 alpha Changing the baud rate of serial consoles o [2003/03/03] conf/48870 [PATCH] rc.network: allow to cancel inter o [2003/03/03] kern/48894 [nfs] Suggested improvements to the NFS r s [2003/03/06] bin/48962 des [PATCH] modify /usr/bin/fetch to allow ba o [2003/03/06] kern/48976 [modules] nwfs.ko oddity o [2003/03/06] docs/48980 doc [PATCH] nsgmls -s errors and sect. 3.2.1 o [2003/03/06] bin/48989 qa [sysinstall] Sysinstall's partition edit a [2003/03/07] bin/49023 gad [patch] to lpd(8) (printjob.c) to pass so o [2003/03/08] kern/49039 add support for RS485 hardware where dire o [2003/03/10] kern/49086 ipfw [ipfw] [patch] Make ipfw2 log to differen f [2003/03/12] ports/49955 portmgr [PATCH] bsd.port.mk: add target to automa o [2003/03/12] kern/49957 naddy CRC32 generator should be the common rout o [2003/03/18] misc/50106 [patch] make 'make release' more flexible o [2003/03/19] bin/50118 grog calendar(1) dumps core if there is ./cale p [2003/03/21] conf/50160 ache sl_SI.ISO8859-2 collation sequence is wro o [2003/03/23] docs/50211 doc [PATCH] Fix textfile creation p [2003/03/24] docs/50248 ceri New FreeBSD books o [2003/03/25] bin/50300 Make the loader's use of terminal-control o [2003/03/26] bin/50310 [libalias] [patch] natd / libalias fix to p [2003/03/27] bin/50328 kris ctm_smail doesn't handle large deltas wel o [2003/03/27] bin/50331 Changing uid with pw causes duplicate use o [2003/03/27] conf/50365 [PATCH] rc.sysctl cannot handle values co o [2003/04/01] kern/50526 [kernel] [patch] update to #! line termin o [2003/04/03] bin/50569 /bin/sh doesn't handles ${HOME}/.profile o [2003/04/03] docs/50573 doc return values for res_query/res_search/re o [2003/04/06] bin/50656 /bin/cp - wrong error on copying of multi o [2003/04/07] docs/50677 doc [PATCH] update doc/en_US.ISO8859-1/books/ o [2003/04/07] kern/50687 ioctl(.., CDIOCCAPABILITY, ...) always re p [2003/04/08] docs/50735 brueffer Small diff to the developers handbook & o o [2003/04/09] bin/50749 ipfw [ipfw] [patch] ipfw2 incorrectly parses p o [2003/04/10] docs/50773 jmg [patch] NFS problems by jumbo frames to m o [2003/04/12] alpha/50868 alpha fd0 floppy device is not mapped into /dev p [2003/04/14] bin/50924 [patch] vmstat(8): "vmstat -f" says "unim f [2003/04/14] i386/50929 i386 AMD K6-2+ processor is identified incorre o [2003/04/14] bin/50949 BUG: mtree doesn't honor the -P when chec o [2003/04/14] conf/50956 daily_status_disks_df_flags in /etc/defau o [2003/04/15] bin/50971 du(1) doesn't understand UF_NODUMP flag o [2003/04/15] bin/50988 [Patch] find -size -- express argument in o [2003/04/15] kern/51009 [aue] [patch] buggy aue driver fixed. o [2003/04/16] bin/51070 [patch] add -p option to pom(6) p [2003/04/17] kern/51082 bms FEATURE: More descriptive message on drop o [2003/04/18] kern/51120 MSGBUF_SIZE doesn't work in makefiles a [2003/04/18] docs/51133 murray RSH environmental variable not described s [2003/04/18] bin/51137 [patch] config(8) should check if a sched o [2003/04/18] kern/51145 multimedia [sound] Audio Slows during Heavy I/O o [2003/04/19] bin/51148 Control the cache size for pwd_mkdb to sp f [2003/04/19] ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILE o [2003/04/21] bin/51205 dwmalone openssl in base system is not compiled th o [2003/04/22] bin/51296 grog calendar wrong for dates based on day+-nu o [2003/04/27] docs/51480 dds Multiple undefined references in the Free o [2003/04/28] bin/51488 Compat patch: more(1) allowed filename to p [2003/04/28] conf/51504 ache New file: src/share/mklocale/zh_CN.GBK.sr f [2003/05/01] ports/51663 roam [PATCH] mail/vpopmail fix for using vmodu p [2003/05/03] conf/51729 ache A patch that can make freebsd support zh_ o [2003/05/06] docs/51875 doc [patch] atkbd(4) adjustment o [2003/05/06] docs/51891 doc DIAGNOSTICS in ed driver manpage don't ma o [2003/05/07] conf/51920 Collation for no_NO.ISO8859-1 o [2003/05/07] docs/51921 doc ls(1) manpage lacks some information abou o [2003/05/08] ports/51947 mharo Analog port does not include anlgform.htm o [2003/05/08] kern/51958 usb [usb] [patch] update for urio driver o [2003/05/10] kern/52026 usb [usb] feature request: umass driver suppo o [2003/05/11] docs/52071 doc [PATCH] Add more information about soft u o [2003/05/13] bin/52190 dwmalone [Patch] decode more syscalls in truss o [2003/05/14] misc/52255 small picobsd build script fails under FreeBSD o [2003/05/14] misc/52256 small picobsd build script does not read in use o [2003/05/15] kern/52258 imp pccard non-functional, repeated "card ins o [2003/05/15] bin/52271 qa [sysinstall] sysinstall panics in machine o [2003/05/19] i386/52427 i386 DVD replay under MSI "655 MAX" mobo inter o [2003/05/19] docs/52448 simon [patch] Misc man page reference fixes o [2003/05/20] bin/52469 ppp: Multiple devices using UDP don't wor o [2003/05/21] bin/52517 murray New functionality for /usr/bin/Mail f [2003/05/23] bin/52601 mbr [PATCH] rpc.yppasswdd fails if master.pas o [2003/05/23] kern/52623 [ex] [patch] IRQ error in driver for the o [2003/05/26] ports/52706 portmgr [patch] bsd.port.mk issues warning if a s o [2003/05/27] kern/52725 [PATCH] installincludes for kmods f [2003/05/28] bin/52746 tcsh fails to handle large arguements o [2003/05/28] kern/52752 [ichsmb] [patch] SMBus controller on ICH4 o [2003/05/28] kern/52764 Impossible to build kernel with COPTFLAGS s [2003/05/28] ports/52765 portmgr [PATCH] Uncompressing manual pages may fa o [2003/05/29] bin/52782 user ppp dumps core when doing pppctl "sh s [2003/05/31] bin/52826 krion Feature Request: Adding Timestamps to pkg o [2003/06/01] i386/52835 pdeuskar [em] em driver does not work with mobile- o [2003/06/03] kern/52907 phk [libc] [patch] more malloc options for de s [2003/06/03] ports/52917 portmgr [PATCH] bsd.port.mk: update default value p [2003/06/05] kern/52960 jmg [kbd] kbdcontrol macros don't work when l o [2003/06/05] kern/52971 bad macro LIST_HEAD in /usr/include/sys/q o [2003/06/06] kern/52980 mbr [dc] [patch] dc driver fails to init Inte o [2003/06/08] usb/53025 usb [ugen] [patch] ugen does not allow O_NONB o [2003/06/10] bin/53131 qa [sysinstall] "ALL" could not turn check B o [2003/06/13] kern/53265 imp Make Sierra A555 work in FreeBSD o [2003/06/13] docs/53271 hmp the bus_dma man page fails to document al o [2003/06/13] bin/53288 tail will sometimes display more lines th o [2003/06/15] bin/53341 qa [sysinstall] [patch] dump frequency in sy p [2003/06/16] bin/53377 [PATCH] su does not return exit status of o [2003/06/16] kern/53383 [bktr] [patch] adding Terratec TValue to o [2003/06/17] kern/53417 multimedia [sound] Bad Recordings on AC97 onboard au o [2003/06/19] bin/53475 cp(1) copies files in reverse order to de o [2003/06/19] kern/53506 [partial patch] support gzipped modules o [2003/06/19] bin/53520 su to another user does not update utmp o [2003/06/20] bin/53560 logging domain names in wtmp is retarded o [2003/06/21] docs/53575 doc Change to Handbook Section 20.9 o [2003/06/21] docs/53596 doc Updates to mt manual page o [2003/06/24] www/53676 simon [patch] Don't make people contact doc@ fo o [2003/06/24] standards/53682le [PATCH] add fuser(1) utility o [2003/06/25] docs/53732 doc quota output and man page do not document o [2003/06/26] docs/53751 hmp bus_dma(9) incorrectly documents BUS_DMA_ a [2003/06/28] bin/53870 das C++ undeclares standard math functions li o [2003/06/29] bin/53899 mktime gives wrong result in Central time p [2003/07/01] conf/53944 [PATCH] ARMSCII-8 (Armenian) LOCALE and C o [2003/07/01] kern/53987 [smbfs] smbfs can't access to files with o [2003/07/02] docs/54009 trhodes Clarify the location of the splash image o [2003/07/02] bin/54026 bms [patch] Add support for non-standard port o [2003/07/03] kern/54049 multimedia [sound] Sound driver reports device busy o [2003/07/03] kern/54078 multimedia [sound] Sound Plays ~10% Slow [4.8] o [2003/07/06] bin/54141 wrong behavour of cu(1) o [2003/07/07] conf/54170 error from weekly periodic script 330.cat s [2003/07/07] bin/54185 rwatson UFS2 filesystem ACL flag not enforced o [2003/07/08] kern/54220 [PATCH] /usr/src/Makefile has wrong instr o [2003/07/09] bin/54274 udp-proxy support is not implemented in l o [2003/07/11] bin/54365 [PATCH] add -u option to install(1) for S o [2003/07/11] kern/54383 net [nfs] [patch] NFS root configurations wit o [2003/07/13] kern/54439 [sysctl] [patch] Protecting sysctls varia o [2003/07/13] docs/54451 doc [patch] i386_{get|set}_ldt manual page is o [2003/07/14] docs/54461 kensmith Possible addition to Handbook o [2003/07/17] bin/54594 Apply regexps to the entire variable -- a o [2003/07/18] kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-inde o [2003/07/21] bin/54683 sh, redundant history o [2003/07/22] docs/54752 hmp bus_dma explained in ISA section in Handb o [2003/07/23] bin/54784 find -ls wastes space o [2003/07/25] standards/54833standards [pcvt] more pcvt deficits o [2003/07/25] standards/54839standards [pcvt] pcvt deficits s [2003/07/26] bin/54878 incorrect divisor in /usr/bin/jot -r o [2003/07/26] docs/54879 doc man 1 jot, -r description o [2003/07/26] kern/54884 mckusick FreeBSD -stable and -current free space h o [2003/07/27] bin/54891 libalias/natd and exporting connection-in o [2003/07/27] bin/54897 [PATCH] -y flag for mount_mfs f [2003/07/28] kern/54981 sanpei QUIRK: Add support for Lexar 256MB USB dr o [2003/07/29] conf/55015 [patch] 700.kernelmsg: Security check out o [2003/07/30] kern/55031 [libc] getgrent() failure with large grou o [2003/07/31] standards/55112standards glob.h, glob_t's gl_pathc should be "size o [2003/08/01] kern/55163 [jail] [patch] hide kld system details fr o [2003/08/03] bin/55215 le [PATCH] add wu-ftpd style xferlog format o [2003/08/08] misc/55387 [patch] users LD_LIBRARY_PATH can interfe o [2003/08/08] gnu/55394 marcel GDB on FreeBSD 4.8: Deprecated bfd_read. o [2003/08/08] kern/55395 matk ICH sampling rate changes after resume fr o [2003/08/11] conf/55470 [pccard] [patch] new pccard.conf entry (I o [2003/08/12] docs/55482 doc DUMP has access to block devices in a JAI s [2003/08/13] ports/55515 portmgr [patch] extract perl stuff from bsd.port. o [2003/08/13] bin/55539 [patch] Parse fstab(5) with spaces in pat o [2003/08/13] bin/55546 cdcontrol(1) play tr m:s.f interface is p o [2003/08/17] ports/55669 nobutaka emacs20 and emacs21 override each other a o [2003/08/20] kern/55793 [dc] Flaky behavior of if_dc when initial o [2003/08/20] kern/55802 Make kernel.GENERIC suitable for diskless o [2003/08/21] kern/55835 emulation [linux] [patch] Linux IPC emulation missi o [2003/08/21] i386/55838 i386 [kbd] [patch] Dual characters from keyboa o [2003/08/21] ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to u o [2003/08/22] docs/55883 kensmith [patch] handbook advanced-networking/chap o [2003/08/24] conf/55916 Change to /etc/rc.network & /etc/defaults o [2003/08/24] kern/55917 tun# devices cannot be created in 4.8-STA p [2003/08/24] docs/55925 roam mt, mtio, tcopy man pages refers to *rsa o [2003/08/24] gnu/55936 send-pr does not set mail envelope from o [2003/08/26] kern/55984 ipfw [ipfw] [patch] time based firewalling sup s [2003/08/26] bin/56012 [MAKEDEV] [patch] MAKEDEV does not allow o [2003/08/28] usb/56095 usb [usb] [patch] QUIRK: Apacer Pen Drive fai o [2003/08/30] kern/56165 bms if_baudrate is not correct for rl, xl, dc o [2003/08/31] kern/56245 [bktr] Distorted and choppy video with bk o [2003/08/31] bin/56249 obrien lukemftpd has two bugs (motd, munged utmp o [2003/08/31] kern/56250 [ums] [patch] ums(4) doesn't work with MC f [2003/09/02] ports/56301 daichi portupgrade: -O ineffective o [2003/09/04] bin/56447 Extend mt command for AIT-2 tape drives o [2003/09/04] kern/56451 /compat/linux/proc/cpuinfo gives wrong CP o [2003/09/05] standards/56476standards cd9660 unicode support simple hack o [2003/09/07] gnu/56554 re add Cc: maintainer feature to send-pr o [2003/09/07] bin/56558 [PATCH] locate(1) cannot be safely used w o [2003/09/09] kern/56632 MTIO incorrect mt_fileno status after MTE o [2003/09/09] bin/56648 le [PATCH] enable rcorder(8) to use a direct o [2003/09/10] kern/56664 bad file# in MTIO status buffer after MTE o [2003/09/11] kern/56720 [libc] feature request: UNICODE support i o [2003/09/12] conf/56736 mtm [PATCH] rcNG: enable packages to particip f [2003/09/16] ports/56928 java jce-aba port should install to $JAVA_HOME o [2003/09/16] conf/56934 rc.firewall rules for natd expect an inte o [2003/09/16] docs/56936 hmp [patch] articles/java-tomcat: add applica o [2003/09/17] conf/56940 pccard.conf entry for PCET10-CL causes sy o [2003/09/17] bin/56952 re [sysinstall] floppy install error s [2003/09/18] ports/56980 portmgr unprivileged user, extracting of tarballs a [2003/09/18] docs/56981 peter man terminfo(5) from libncurses does not o [2003/09/19] bin/57018 le [PATCH] convert growfs to use libufs(3) o [2003/09/19] bin/57024 a new option for xargs(1) -- only treat \ o [2003/09/19] bin/57026 [PATCH] mount_cd9660(8): there is no way o [2003/09/20] kern/57036 No media detected by 3c905b-tx on 4.9-rel o [2003/09/20] bin/57045 trpt(8) option -t was disabled on -curren o [2003/09/21] bin/57054 let test(1) compare the mtime of a file t s [2003/09/22] bin/57088 [cam] [patch] for a possible fd leak in l o [2003/09/22] bin/57089 "w" does not honor the -n option o [2003/09/24] docs/57153 doc S_IRWXU missing in fstat(2) man page? o [2003/09/26] kern/57230 [psm] [patch] psm(4) incorrectly identifi o [2003/09/26] amd64/57250 obrien Broken PTRACE_GETFPREGS and PTRACE_SETFPR o [2003/09/26] ports/57259 portmgr [patch] Building a port as root using an o [2003/09/27] standards/57295harti make's handling of MAKEFLAGS is not POSIX o [2003/09/27] docs/57298 blackend [patch] add using compact flash cards inf o [2003/09/30] docs/57388 doc INSTALL.TXT enhancement: mention ok promp s [2003/09/30] bin/57407 bms [patch] Better NTP support for dhclient(8 o [2003/10/01] misc/57464 [boot] loader(8) seems to confuse files [ o [2003/10/01] kern/57469 scsi [scsi] [patch] Quirk for Conner CP3500 o [2003/10/02] ports/57498 portmgr HEIMDAL_HOME should be defined in src or s [2003/10/02] ports/57502 ports-bugs ports that define USE_* too late o [2003/10/02] conf/57517 add parameter for /etc/periodic/daily/210 o [2003/10/03] kern/57522 [PATCH] New PID allocater algorithm from p [2003/10/03] docs/57541 trhodes Some suggestions for the Basics chapter o o [2003/10/04] docs/57569 doc error on gensetdefs(8) man page p [2003/10/06] bin/57630 lptcontrol gives "device busy" if device o [2003/10/06] bin/57641 dd [patch] missing option in mount_mfs(8) a [2003/10/07] kern/57696 [nfs] NFS client readdir terminates prema o [2003/10/07] bin/57715 [patch] tcopy(1) enhancement o [2003/10/08] conf/57748 [patch] rc.network doesn't allow for -a i a [2003/10/12] standards/57911tjr fnmatch ("[[:alpha:]]","x", FNM_PATHNAME) o [2003/10/13] docs/57926 doc amd.conf.5 poorly format as it has both m o [2003/10/13] docs/57974 doc man page apropos for select macros (FD_SE o [2003/10/13] kern/57976 simple kernel DDB enhancement o [2003/10/13] docs/57978 doc Type miss of GPIB in Hardware Notes o [2003/10/14] bin/58008 qa [sysinstall] [patch] sysinstall postfix i o [2003/10/14] bin/58012 Multihomed tftpd enhancement o [2003/10/16] docs/58111 doc Handbook 12.4.3 Rebuilding ATA RAID1 Arra o [2003/10/18] docs/58202 kensmith handbook doesn't mention kldload'ness of o [2003/10/18] conf/58206 [Patch] 460.status-mail-rejects incompati o [2003/10/20] bin/58293 vi replace with CR (ASCII 13) doesn't wor o [2003/10/22] kern/58373 mckusick [ufs] ufs inconsistency between 4.9-RC an o [2003/10/22] bin/58390 bsdlabel fails to display an error messag o [2003/10/24] bin/58483 [patch] mount(8): allow type special or n o [2003/10/24] kern/58497 sysctl knob to return current process' ji f [2003/10/25] kern/58529 dwmalone [libpcap] [patch] RDWR bpf in pcap. o [2003/10/26] ports/58545 joerg devel/avr-gcc: fix libintl and libiconv d o [2003/10/26] conf/58557 Summer/Winter-time change causes daily cr o [2003/10/26] gnu/58583 kan gcc.1, cpp.1 and gcov.1 manpages are outd o [2003/10/27] conf/58595 Default NTP configuration o [2003/10/28] docs/58615 doc update for Vinum chapter of Handbook: des o [2003/10/28] gnu/58656 marcel gdb not ready for prime time o [2003/10/29] standards/58676standards grantpt(3) alters storage used by ptsname o [2003/10/29] conf/58680 dougb [PATCH] RCNG: shouldn't ldconfig be start o [2003/10/29] bin/58696 /sbin/natd feature request & possible pat o [2003/10/30] docs/58710 doc killpg(2) contains an error regarding sen o [2003/10/31] i386/58784 i386 [ata] ATA does not work in DMA mode (ASUS o [2003/11/01] kern/58803 [kernel] [patch] kern.argmax isn't change o [2003/11/04] conf/58939 [patch] dumb little hack for /etc/rc.fire o [2003/11/05] kern/58967 Kernel kills processes in spite of cputim o [2003/11/05] bin/58970 truss coredumps for the no significant re o [2003/11/07] docs/59044 doc doc.docbook.mk does not properly handle a o [2003/11/11] usb/59169 usb [ulpt] [patch] ulpt is missing read opera o [2003/11/12] bin/59207 uustat list limit of 201 jobs o [2003/11/12] kern/59208 matk [sound] [patch] reduce pops and crackles o [2003/11/12] bin/59220 obrien systat(1) device select (:only) broken o [2003/11/13] docs/59240 blackend handbook update: linux MATLAB s [2003/11/13] ports/59254 ports-bugs ports that write something after bsd.port o [2003/11/14] kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_ f [2003/11/14] ports/59292 hrs dvips one line paper sizes broken? o [2003/11/15] www/59307 remko [patch] xml/xsl'ify & update publications o [2003/11/19] kern/59456 fdescfs stat / compress creates only empt o [2003/11/19] docs/59477 doc Outdated Info Documents at http://docs.fr o [2003/11/20] bin/59530 strange bug in /bin/sh o [2003/11/21] bin/59551 marcel Problem with GDB on latest -CURRENT f [2003/11/21] ports/59553 hrs teTeX installs texdoctk without depending o [2003/11/21] bin/59564 Added an option (-S) to from command to a o [2003/11/23] conf/59600 [PATCH] Improved us.emacs.kbd mapping o [2003/11/23] kern/59624 [ata] [patch] HightPoint HPT371 support f o [2003/11/26] kern/59698 [kbd] [patch] Rework of ukbd HID to AT co o [2003/11/26] bin/59708 qa [sysinstall] [patch] add sSMTP support fo o [2003/11/27] bin/59730 isdnd crashes with signal 11 if cannot cr o [2003/11/27] kern/59732 jhb acpi causes boot to hang o [2003/11/27] docs/59735 kensmith Adding a reference to Icelandic Rsync o [2003/11/27] docs/59736 kensmith Updating size of archives s [2003/11/27] kern/59739 [libc] rmdir(2) and mkdir(2) both return o [2003/11/28] bin/59772 ftpd(8)/FreeBSD 5: support for tcp_wrappe o [2003/11/28] bin/59774 ftpd(8)/FreeBSD 5: syslog facility may be o [2003/11/28] bin/59775 ftpd(8)/FreeBSD 5: incorrect reply for "u p [2003/11/29] conf/59799 New locale: zh_HK.Big5HKSCS o [2003/11/29] kern/59806 tackerman [em] [patch] Suspend/resume breaks em0 o [2003/11/30] kern/59814 FreeBSD mknod refuses to create pipes and o [2003/11/30] docs/59835 doc ipfw(8) man page does not warn about acce f [2003/11/30] i386/59854 anholt System panics when AMD 762 AGP is loaded o [2003/12/02] kern/59896 trm driver is not in GENERIC o [2003/12/02] docs/59900 kuriyama out of date README.txt and .message files o [2003/12/02] kern/59903 [pci] [patch] "pci_find_device" returns [ o [2003/12/03] bin/59922 Toshiba Portege hangs with Eicon DIVA T/A o [2003/12/09] kern/60089 scottl UDF filesystem appends garbage to files o [2003/12/10] conf/60106 /etc/hosts mentions AfriNIC which does no o [2003/12/12] kern/60174 marcel debugging a kernel module in load/attach o [2003/12/12] kern/60183 sobomax [gre] [patch] No WCCPv2 support in gre o [2003/12/15] usb/60248 usb [patch] Problem with USB printer HP Laser a [2003/12/16] kern/60293 bms FreeBSD arp poison patch o [2003/12/16] kern/60307 [pccard] [patch] wrong product id in pcca o [2003/12/17] i386/60319 i386 [hang] read error 34/0 during installatio o [2003/12/18] bin/60350 qa [sysinstall] in Choose Distributions scre o [2003/12/18] misc/60352 [patch] buildworld fails in sysinstall if o [2003/12/21] kern/60448 PF_KEY protocol does not have a correspon f [2003/12/21] ports/60472 lawrance [New Port] devel/doxymacs Doxymacs is Dox o [2003/12/22] misc/60503 [modules] small error in modules installa o [2003/12/22] bin/60510 [patch] change to less(1) for compressed o [2003/12/23] docs/60529 doc resolver(5) man page is badly out of date o [2003/12/24] docs/60544 doc getenv(3) manpage doesn't state the retur o [2003/12/25] kern/60550 silby [kernel] [patch] hitting process limits p f [2003/12/25] ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify o [2003/12/26] kern/60599 multimedia [sound] [partial patch] No sound for ATI o [2003/12/27] bin/60632 UI bug in partition label screen in sysin o [2003/12/27] bin/60636 Enhancement to adduser script. o [2003/12/28] bin/60662 qa [sysinstall] 5.2 Anonymous FTP server out o [2003/12/29] kern/60677 multimedia [sound] [patch] No reaction of volume con o [2003/12/29] kern/60697 [pty] [patch] pseudo-tty hack versus teln f [2003/12/29] kern/60699 DVD Multidrive udma mode autosensed wrong o [2003/12/29] i386/60702 i386 can't boot 5.2-RC2 iso's to install o [2003/12/30] kern/60719 ipfw [ipfw] Headerless fragments generate cryp o [2003/12/30] kern/60737 multimedia [sound] Sound card Turtle Beach Santa Cru o [2003/12/31] kern/60761 multimedia [sound] pcm performance on emu10k1 driver o [2004/01/02] bin/60834 [patch] ftpd(8) send_data()+oldway: anony o [2004/01/03] kern/60874 [feature request] auto-assign devfs rules o [2004/01/04] bin/60892 [patch] added -p option to kldxref(8) to o [2004/01/06] kern/60963 [pecoff] [patch] Win32 Applications abort o [2004/01/06] kern/60982 [pci] [patch] ID for VIA 686A Power Manag o [2004/01/07] i386/61005 i386 [boot] The Boot Manager in FreeBSD 5.2RC o [2004/01/08] docs/61070 doc handbook: Installation docs misleading: o [2004/01/09] kern/61109 [bge] bge on TYAN AMD762-based Thunder/Ti o [2004/01/11] amd64/61209 amd64 ppc0: cannot reserve I/O port range o [2004/01/12] usb/61234 usb [usb] [patch] usbhidaction(1) doesn't sup o [2004/01/12] bin/61239 [patch] bootp enhancement, places the dhc o [2004/01/12] kern/61261 obrien generated header, emu10k1-alsa%diked.h no o [2004/01/12] bin/61264 qa [sysinstall] unable To Use VT100 Terminal o [2004/01/13] conf/61289 /etc/pccard_ether: please use ifn value o o [2004/01/13] kern/61300 [aue] [patch] Enabling HomePNA PHY on aue o [2004/01/13] docs/61301 doc [patch] Manpage patch for aue(4) to enabl o [2004/01/13] i386/61308 i386 Maxproc Limits counts Zombie Processes wh f [2004/01/13] misc/61322 [patch] bsd.dep.mk disallows shell genera o [2004/01/14] i386/61348 i386 Adaptec 1460D PCI SCSI Card does not work o [2004/01/16] bin/61405 cperciva A faster ffs(3) o [2004/01/16] kern/61415 [net80211] [patch] disable broadcast ssid o [2004/01/16] kern/61438 qa [sysinstall] 5.2 nfs tasks running by def o [2004/01/16] i386/61442 i386 Highpoint RocketRAID 1520 uses only UDMA2 s [2004/01/17] ports/61471 ports-bugs Suggested mini-patch to ports/graphics/sa o [2004/01/17] i386/61481 i386 [patch] a mechanism to wire io-channel-ch o [2004/01/17] kern/61497 ups [kernel] [patch] __elfN(map_insert) bug o [2004/01/17] bin/61502 dwmalone Incorrect ip6fw output when adding rules o [2004/01/18] kern/61503 [smbfs] mount_smbfs does not work as non- o [2004/01/18] conf/61504 mtm [patch] New RC script: accf_http o [2004/01/18] i386/61545 i386 5.2 release cannot see NIC on Dell 1750 o [2004/01/19] i386/61579 i386 [hang] sis 645dx is not working (but on t o [2004/01/20] i386/61603 i386 [sysinstall] wrong geometry guessed s [2004/01/20] kern/61622 Intel Pro/100 Intelligent Server Adapter o [2004/01/20] conf/61641 grog Martin Luther King, Jr. Day missing from o [2004/01/21] bin/61666 peter [patch] mount_nfs(8) parsing bug, segment o [2004/01/21] docs/61667 doc Obsolete documentation on FreeBSD PnP f [2004/01/21] kern/61677 Unable to open CDROM tray if boot_cdrom i o [2004/01/21] bin/61690 fsdb seqfaults in cmd. parsing routine a [2004/01/22] kern/61744 andre [netinet] [patch] TCP hangs onto mbufs wi o [2004/01/24] bin/61808 [PATCH] Update RPC prgs to allow binding s [2004/01/24] kern/61810 mounts done within a chroot show up wrong o [2004/01/24] www/61824 www Misleading documentation on FreeBSD insta o [2004/01/24] conf/61847 Additions to file /usr/share/misc/pci_ven o [2004/01/25] i386/61858 bms bus_dmamap_sync with BUS_DMASYNC_POSTREAD o [2004/01/25] docs/61859 doc Incorrect informaiton about trace command o [2004/01/25] kern/61909 5.2-Current fails to notice change of CD o [2004/01/26] bin/61971 k5init --renewable fails o [2004/01/27] bin/61975 ume [PATCH] sync src/usr.sbin/traceroute6.c w o [2004/01/27] bin/61978 [PATCH] sync src/usr.sbin/setkey/token.l a [2004/01/27] ports/61998 roam PostgreSQL support for mail/vpopmail 5.3. o [2004/01/27] i386/62003 i386 [loader] [patch] make /boot/loader "reboo o [2004/01/28] kern/62042 luigi [ipfw] ipfw can't no more reject icmp (ic o [2004/01/29] bin/62077 Make it possible to abbreviate device nam o [2004/01/30] kern/62098 [pccard] [patch] Bad CISTPL_VERS_1 and cl o [2004/01/30] kern/62102 alc obreak update f [2004/01/31] bin/62139 User cannot login through telnet or ssh b o [2004/02/01] bin/62207 ppp crashes with option 'nat punch_fw' wh o [2004/02/02] kern/62257 card reader UCR-61S2B is only half-suppor o [2004/02/03] i386/62288 i386 reopened raid disks on a running system o [2004/02/03] bin/62300 gcc/config/freebsd-spec.h 1.6 is incomple o [2004/02/04] kern/62323 [kbd] Logitech Cordless MX Duo Keyboard/M o [2004/02/04] i386/62324 i386 [bge] Onboard Broadcom BCM5705 controller o [2004/02/04] kern/62333 [dc] syslog: kernel: dc0: discard oversiz o [2004/02/04] bin/62334 vipw doesn't see changes if re-edit for t o [2004/02/05] docs/62402 doc easily circumventable Blade150 problem o [2004/02/06] docs/62412 doc one of the diskless boot methods describe o [2004/02/08] bin/62513 Errant /usr/bin/krb5-config on 4-STABLE p [2004/02/08] gnu/62555 readline 4.3 should be patched o [2004/02/10] ports/62657 portmgr Port linux-jpeg have decreaseed version n o [2004/02/11] bin/62702 qa [sysinstall] backup of /etc and /root dur o [2004/02/11] bin/62711 qa [sysinstall] installation: "Insert Next C o [2004/02/12] docs/62719 doc cross-reference pccardd and devd o [2004/02/12] docs/62724 doc host(1) manpage does not include informat o [2004/02/12] kern/62742 [hang] system "hangs" for a some time whi o [2004/02/12] kern/62746 tjr [smbfs] SMBFS and vfs.usermount. User can f [2004/02/13] ports/62761 portmgr patch for phasing out distinfo files o [2004/02/13] bin/62766 ``systat -vm'' does not work on diskless f [2004/02/14] ports/62829 portmgr Mk file bsd.linux.rpm.mk supporting Linux o [2004/02/14] java/62837 phantom linux-sun-jdk14 executables hang with COM s [2004/02/14] standards/62858standards malloc(0) not C99 compliant o [2004/02/15] kern/62862 multimedia [sound] [patch] fix pcm vchans related cr o [2004/02/15] bin/62885 des pam_radius doesn't maintain multiple stat o [2004/02/15] kern/62890 ups proc pointer set by fork1 can be stale in o [2004/02/17] bin/62965 krion pkg_add -r fails if fetching multiple pac o [2004/02/17] i386/62977 i386 Mouse daemon during install/setup f [2004/02/18] ports/62990 daichi portupgrade fails to use package even wit o [2004/02/18] ports/63018 obrien editors/vim: dependency to ruby/python is o [2004/02/19] bin/63064 strptime fails on %z o [2004/02/19] docs/63084 des Several Man-pages reference non-existant o [2004/02/20] kern/63096 rwatson [mac] [patch] MAC entry point for route m o [2004/02/20] ports/63108 obrien amd64/bento-fix: devel/gdb52 and devel/gd o [2004/02/21] amd64/63188 amd64 [ti] ti(4) broken on amd64 o [2004/02/22] bin/63197 tftp Bus error, core dumped o [2004/02/22] docs/63215 doc Wrong prototypes in mi_switch(9) (ref doc o [2004/02/22] ports/63216 portmgr 'BROKEN' or 'IGNORED' ports exit their "m s [2004/02/22] ports/63238 thierry New port: french/firefox-flp - Mozilla / o [2004/02/24] bin/63319 burncd fixate error o [2004/02/26] bin/63413 dbm_delete return value incorrect o [2004/02/29] conf/63527 AM/PM date format should be localized. o [2004/02/29] www/63551 ceri Lack of DTD in cgi scripts o [2004/02/29] www/63552 remko Validation errors due to CAPs in attribut o [2004/03/01] docs/63570 ceri Language cleanup for the Handbook's DNS s o [2004/03/01] bin/63608 Add a -c option to time(1) to display csh o [2004/03/02] i386/63628 bms [loader] [patch] i386 master boot record o [2004/03/02] bin/63659 /usr/sbin/pw does not honor symlinks in s s [2004/03/03] ports/63716 portmgr [patch] Mk/bsd.port.mk: move sysctl to ${ o [2004/03/04] kern/63746 vmnet0 makes vmnet4096 o [2004/03/04] kern/63768 Must access /dev/acd0c before using /dev/ o [2004/03/05] i386/63815 i386 boot loader waste a lot of time (10 min) o [2004/03/06] usb/63837 usb [uhid] [patch] USB: hid_is_collection() o o [2004/03/07] kern/63863 glebius [netgraph] [patch] feature request: imple s [2004/03/07] kern/63897 makeoptions CONF_CFLAGS are ignored when f [2004/03/09] kern/63982 tackerman em0 hardware checksum offloading causes b o [2004/03/10] bin/64036 Linux application Sophos Mailmonitor not o [2004/03/10] kern/64040 multimedia [sound] crackling sound on 5.2.1-RELEASE o [2004/03/11] kern/64114 [vga] [patch] bad vertical refresh for co o [2004/03/12] bin/64153 mdmfs features via fstab o [2004/03/12] kern/64178 jmg [kqueue] [patch] kqueue does not work wit o [2004/03/13] bin/64198 init(8) may keep zombies o [2004/03/15] ports/64304 portmgr geography category o [2004/03/16] bin/64327 [patch] make(1): document surprising beha o [2004/03/17] kern/64365 acpi ACPI problems o [2004/03/17] conf/64381 qa lo0 not up and no IPs assigned after inst p [2004/03/19] bin/64464 rwatson pam_krb5 module ignores no_ccache option o [2004/03/19] bin/64476 dougb [patch] mergemaster(8): support for keepi p [2004/03/20] ports/64490 obrien link error in manpage of editors/vim o [2004/03/20] kern/64522 3COM 3C920B onboard Asus P4R800-VM not su o [2004/03/22] kern/64556 [sis] if_sis short cable fix problems wit o [2004/03/22] kern/64588 [joy] [patch] Extend joystick driver arch o [2004/03/23] i386/64626 i386 AP initialization problem on GIGABYTE GA- s [2004/03/24] bin/64664 bms Reboot command needs to protect itself fr o [2004/03/26] kern/64772 Mouse Movement Problem o [2004/03/26] kern/64788 nsswitch with ldap and starting ppp on bo o [2004/03/27] docs/64807 doc Handbook section on NAT incomplete o [2004/03/27] bin/64811 systat can't display big numbers in some s [2004/03/29] kern/64875 standards [libc] [patch] [feature request] add a sy o [2004/03/29] kern/64878 tackerman [em] Intel 82547 CSA Driver forces system o [2004/03/30] bin/64921 vmstat -i is not reporting IRQ usage on a o [2004/03/30] ports/64930 kris ports/Tools/portbuild/scripts/makeworld d o [2004/03/31] kern/64971 A squid process larger than 3G o [2004/04/01] bin/65045 ftp doesn't remember binary mode if setti o [2004/04/02] docs/65065 doc improper language ntpd man pages o [2004/04/03] i386/65124 i386 Unable to disable TERM_EMU cleanly o [2004/04/05] kern/65206 adding floppy drive seems to force PIO mo o [2004/04/05] bin/65228 [Patch] Allow rup(1) to parse hostnames f o [2004/04/06] bin/65258 save /etc/rc.firewall from changing for s o [2004/04/07] kern/65278 ups [sio] [patch] kgdb debugger port initiali o [2004/04/07] bin/65299 vi temp path contains double / o [2004/04/08] bin/65306 obrien [patch] Portability fixes for FreeBSD bui f [2004/04/09] ports/65344 portmgr USE_ macros for graphics libraries o [2004/04/09] kern/65355 [pci] [patch] TC1000 serial ports need en o [2004/04/10] ports/65408 trevor patch to shorten 133 DESCR files o [2004/04/10] ports/65409 trevor big whitespace cleanup o [2004/04/11] usb/65436 usb [umass] [patch] add quirk for PNY Attache o [2004/04/12] kern/65448 jhb _mtx_unlock_sleep() race condition if ADA o [2004/04/13] docs/65477 doc Installation Instruction fail to mention o [2004/04/13] bin/65483 vi -r crashes o [2004/04/14] i386/65528 i386 [psm] mouse cursor disapears on moving o [2004/04/14] docs/65530 doc minor improvement to getgrent.3 p [2004/04/15] bin/65557 des passwd uses passwd_format of default logi s [2004/04/15] ports/65587 ports-bugs Update emulators/linux-winetools to 1.30 o [2004/04/16] kern/65627 [i386] [patch] store P3 serial number in o [2004/04/17] bin/65649 gad Add `-u name' option to env(1) o [2004/04/18] bin/65707 scp does not deal with local file copies o [2004/04/19] kern/65769 usb [usb] Call to tcflush(x, TCIFLUSH) stops s [2004/04/20] ports/65794 joe net/ripetools is obsolete o [2004/04/20] bin/65803 gad bin/ps enhancements (posix syntax, and mo s [2004/04/20] ports/65804 portmgr [PATCH] bsd.port.mk is gratuitously slow o [2004/04/20] ports/65828 trevor big whitespace cleanup (see ports/65409) o [2004/04/20] ports/65829 trevor big whitespace cleanup (see ports/65409) a [2004/04/22] docs/65895 murray incorrect "omshell" link in "dhclient" ma f [2004/04/23] ports/65915 portmgr [PATCH] bsd.port.mk: handle interactive c o [2004/04/25] bin/65973 Problem logging in to the NIS slave and N o [2004/04/27] ports/66032 portmgr [PATCH] bsd.port.mk: clean room installat o [2004/04/28] ports/66042 lawrance new port: www/suexec13 (standalone suexec o [2004/04/29] kern/66079 bms route change default causes panic in cert o [2004/04/29] kern/66095 [pam] template_user is broken in pam_radi o [2004/04/30] ports/66109 portmgr [PATCH] bsd.port.mk: inconsistent use of o [2004/04/30] ports/66110 portmgr [PATCH] bsd.port.mk: MLINKS error detecti o [2004/05/03] kern/66185 [twe] twe driver generates gratuitous war o [2004/05/03] kern/66225 [netgraph] [patch] extend ng_eiface(4) co f [2004/05/04] ports/66246 lawrance new ports: textproc/docbook-utils, textpr o [2004/05/04] docs/66264 doc [patch] libexec/rtld/rtld.1 typo fixes no o [2004/05/04] docs/66265 doc [patch] Document what -f and LD_TRACE_LOA o [2004/05/04] kern/66268 glebius [socket] [patch] Socket buffer resource l o [2004/05/05] gnu/66279 less(1) -- add support for stty(1) erase2 p [2004/05/05] docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to n o [2004/05/05] docs/66296 doc [patch] contrib/amd/amq/amq.8 uses log_op p [2004/05/06] bin/66311 fenner TCPDUMP ISAKMP payload handling denial-of o [2004/05/07] ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java por o [2004/05/07] docs/66343 doc unlisted supported card on man page for w o [2004/05/07] standards/66357standards make POSIX conformance problem ('sh -e' & o [2004/05/08] ports/66389 portmgr [PATCH] bsd.port.mk: follow MOVED ports o [2004/05/09] kern/66422 multimedia [sound] [patch] no sound on modern Sony V o [2004/05/10] bin/66445 [patch] Add options to last(1) to ignore f [2004/05/10] ports/66476 adamw [NEW PORT] misc/gaim-talkfilters: A neat o [2004/05/10] alpha/66478 alpha unexpected machine check: panic for 4.9, o [2004/05/10] ports/66480 openoffice editors/openoffice-1.1 port uses root's $ o [2004/05/10] docs/66483 doc [patch] share/man/man4/csa.4 grammar nits p [2004/05/10] bin/66492 cpio -o -Hustar creates broken timestamps o [2004/05/11] docs/66505 trhodes escaping '~' and '$' characters in login. o [2004/05/11] standards/66531standards _gettemp uses a far smaller set of filena f [2004/05/11] kern/66547 usb [usb] Palm Tungsten T USB does not initia o [2004/05/12] kern/66564 [xl] 3c920-MV00 PHY detection problem s [2004/05/12] ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/ o [2004/05/12] kern/66589 processes get stuck in "inode" state when o [2004/05/13] bin/66594 marcel gdb dumps core o [2004/05/14] kern/66642 multimedia [sound] pcm0: play: 0: play interrupt tim o [2004/05/16] bin/66677 mv incorrectly copies somedir/.. to ./.. o [2004/05/17] conf/66726 /etc/periodic/security/ 800.loginfail scr o [2004/05/17] bin/66763 mdmfs: sync arguments with those of newfs o [2004/05/17] docs/66768 doc 4_RELENG share/man/man4/ng_one2many.4 MFC o [2004/05/17] docs/66770 doc [patch] share/man/man4/ng_pppoe.4 tyops, o [2004/05/17] docs/66771 imp [patch] usr.sbin/pccard/pccardc/pccardc.8 o [2004/05/17] docs/66775 roam Clarification to committer's guide that p s [2004/05/18] ports/66808 ade bsd.port.mk: bsd.autotools.mk appears too o [2004/05/19] ports/66892 portmgr possible bug in philosophy of ports/MOVED o [2004/05/19] bin/66893 [patch] rpc.yppasswdd(8): Linux NIS clien o [2004/05/20] bin/66941 [patch] gcc2.95 (FreeBSD-specific): fix u o [2004/05/21] kern/66981 Can't read audio CDs with a samsung sw-25 o [2004/05/21] bin/66988 [Patch] apm.c check validation of the ret f [2004/05/21] i386/66997 yar [bge] Problem with Broadcom BCM5705M and o [2004/05/21] i386/67011 mdodd [vpd] [patch] MFC of vpd driver for IBM x o [2004/05/22] bin/67041 "fortune -m" peeks in "fortune" file only o [2004/05/22] i386/67055 i386 [psm] Mouse (wheel) detection problem on o [2004/05/23] docs/67078 doc [patch] MFC of a rtld(1) man page is inco o [2004/05/24] bin/67142 rpc.yppasswdd incorrectly throws errors a o [2004/05/25] bin/67172 w,finger display the remote host incorrec s [2004/05/25] ports/67192 ports-bugs mod_perl-related regressions in the newes o [2004/05/26] bin/67231 [patch] pam_krb5 doesn't honor default fl o [2004/05/27] kern/67242 tackerman [em] [patch] dev/em/if_em.c isn't ctags c o [2004/05/28] bin/67307 ready to import bootstrap_cmds/decomment o [2004/05/28] bin/67308 ready to import bootstrap_cmds/relpath fr o [2004/05/28] kern/67309 acpi zzz reboot computer (ACPI S3) a [2004/05/29] bin/67317 bms [patch] to nfsd.c to make it slightly mor f [2004/05/29] bin/67334 mount_cd9660 gives dscheck: negative b_bl o [2004/05/30] i386/67383 i386 [i386] [patch] do a better job disassembl f [2004/06/01] ports/67436 portmgr patch for bsd.port.mk: GNU_CONFIGURE_PREF o [2004/06/01] ports/67437 portmgr patch for bsd.port.mk: NO_BUILD and PKGNA o [2004/06/02] misc/67502 cvsadm cvs-all commit message did not include al s [2004/06/03] ports/67531 portmgr New spanish virtual category p [2004/06/03] conf/67549 No Cents for es_ES monetdef (Euro) o [2004/06/03] bin/67550 Add BLK_SIZE option to tftpd server o [2004/06/04] www/67554 www man-cgi visual glitch on 3-word titles f [2004/06/04] ports/67562 portmgr patch for bsd.port.mk - USE_BDB, WANT_BDB o [2004/06/04] gnu/67565 SIGPIPE processing in cvs 1.11.5 may lead o [2004/06/04] i386/67578 i386 [kbd] Keyboard error IBM xSeries 335 o [2004/06/04] kern/67580 request to add hints for boot failures f [2004/06/06] kern/67627 phk [panic] gbde kernel panic o [2004/06/07] www/67651 hrs Update early-adopter post-4.10 o [2004/06/07] bin/67687 iostat does not provide read vs. write st s [2004/06/08] kern/67706 [unionfs] cvs update over a union mount s o [2004/06/08] bin/67723 FreeBSD 5.x restore cannot handle other p o [2004/06/09] kern/67763 [pccard] [patch] PCMCIA: MELCO manufactur o [2004/06/10] i386/67773 i386 5.x series - md5 on dev no longer works e f [2004/06/10] docs/67806 doc [patch] Let 5.x users know how to boot in s [2004/06/11] ports/67815 ports-bugs graphics/ImageMagick no longer recognizes o [2004/06/11] i386/67818 bz [sk] driver watchdog timeout issue on asu o [2004/06/11] kern/67830 [smp] [patch] CPU affinity problem with f s [2004/06/11] ports/67832 jdp Change request: net/cvsup (STATIC -> WANT o [2004/06/13] docs/67893 doc boot.8's -m description is insufficient. o [2004/06/13] alpha/67903 alpha hw.chipset.memory: 1099511627776 - thats o [2004/06/14] bin/67943 find(1) fails when current directory is n o [2004/06/16] bin/68014 stty -pendin does not turn off pendin mod o [2004/06/16] bin/68016 Bug in visual bell on console (kbdcontrol o [2004/06/17] bin/68062 standalone repeat(1) command o [2004/06/18] kern/68081 [headers] [patch] sys/time.h (lint fix) o [2004/06/19] conf/68108 [patch] Adding mac-address /conf selector o [2004/06/19] kern/68110 hsu [netinet] [patch] RFC 3522 for -HEAD o [2004/06/19] i386/68117 i386 serious network collisions after NIC "med o [2004/06/19] kern/68122 multimedia [sound] Device busy (/dev/dsp)- insane, n o [2004/06/20] bin/68134 rwatson 'invalid hostname' displayed in w/who out o [2004/06/20] i386/68140 i386 Problem with Sony AIT ATAPI Tape dirve a [2004/06/22] kern/68189 luigi arp -a discloses non-jail interfaces with o [2004/06/22] kern/68192 Cannot use quotas on jailed systems p [2004/06/22] docs/68201 keramida [patch] pthread_atfork(3) man page o [2004/06/23] usb/68232 usb [ugen] [patch] ugen(4) isochronous handli o [2004/06/25] kern/68311 [patch] it is impossible to override defa o [2004/06/25] bin/68312 be able to create fdisk partions using si o [2004/06/25] kern/68315 [ata] [patch] atacontrol(8) addspare for o [2004/06/25] kern/68317 [kernel] [patch] on soft (clean) reboots o [2004/06/25] bin/68328 enable configuration of extra listen sock s [2004/06/25] ports/68337 portmgr patch so that README.html files in ports s [2004/06/25] ports/68346 portmgr Nested port install requires user interve o [2004/06/27] usb/68412 usb [usb] [patch] QUIRK: Philips KEY013 USB M o [2004/06/27] kern/68435 wpaul xl driver in freebsd 5.x only works if pr o [2004/06/28] bin/68437 conscontrol DEVDIR -> _PATH_DEV fix and m o [2004/06/28] docs/68453 doc [patch] rc.subr.8 o [2004/06/28] kern/68458 Burning DVD causes lots of FAILURE - READ o [2004/06/28] kern/68459 [vfs] [patch] Patches to mknod(2) behave o [2004/06/30] kern/68514 [re] Realtek driver halts on oversized fr o [2004/06/30] kern/68515 multimedia [sound] sound card noise (ES1938, 5.0) o [2004/06/30] i386/68518 i386 [agp] [hang] hangs while loading 82443BX p [2004/06/30] conf/68524 Including the Basque in the system o [2004/06/30] conf/68525 rc Loader's verbose boot mode has rc.d/local o [2004/06/30] bin/68527 Resizing 'top' running in a terminal to o o [2004/07/01] bin/68552 tip(1) does not set noncanonical mode inp o [2004/07/02] bin/68586 dwmalone [patch] allow syslogd to forward to non-d o [2004/07/02] docs/68606 doc Porter's Handbook: document how to write o [2004/07/03] kern/68623 [sf] [patch] sf(4) (Adaptec StarFire) mul o [2004/07/04] kern/68665 multimedia [sound] pcm doesn't detect Realtek ac97 o o [2004/07/05] kern/68690 [libc] write(2) returns wrong value when p [2004/07/05] bin/68691 dwmalone syslogd - correct program name handling s [2004/07/05] kern/68692 andre [net] [patch] Move ARP out of routing tab o [2004/07/06] kern/68719 [msdosfs] [patch] poor performance with m o [2004/07/07] conf/68745 rc /etc/rc.d/devfs runs after ntpd so links o [2004/07/07] i386/68754 i386 [hang] SMP reset bug (Tyan Thunder100, 44 o [2004/07/07] kern/68765 [mmap] a little data can be stored beyond o [2004/07/08] bin/68797 cut(1) patches to fflush after each write o [2004/07/09] bin/68840 [PATCH] Add Solaris-style -x flag to iost o [2004/07/09] docs/68843 doc Dates on rc.subr(8) & rc(8) are whack. o [2004/07/09] docs/68845 doc The .At macro produces unexpected results o [2004/07/09] bin/68848 [patch] find(1) shows pathname as optiona a [2004/07/11] bin/68904 krion pkg_install fixes (_PATH_*, sprintf -> sn o [2004/07/11] misc/68905 core dump ownership issue o [2004/07/11] conf/68916 Named starts PRIOR to ldconfig o [2004/07/13] bin/68981 unlogic jot behaviour. o [2004/07/13] kern/68991 le [vinum] vinum doesn't care which type a p o [2004/07/13] bin/69010 [patch] Portability fixes for FreeBSD bui o [2004/07/13] threads/69020threads pthreads library leaks _gc_mutex o [2004/07/14] kern/69064 [kernel] [patch] No multiple ip4/6's coul o [2004/07/15] bin/69083 [patch] basic modelines for contrib/nvi o [2004/07/17] bin/69164 marcel GDB/amd64: coredump while debugging a cor o [2004/07/17] ports/69191 roam SRV patch for dnbs/djbdns o [2004/07/18] i386/69257 i386 [i386] [patch] in_cksum_hdr is non-functi o [2004/07/19] bin/69268 wpaul [patch] Fix ndiscvt(8) to warn you if it' a [2004/07/19] kern/69283 multimedia [sound] Via 8233 driver records at half s o [2004/07/19] ports/69288 mharo [PATCH] security/sudo: Fix deinstall o [2004/07/19] ports/69309 ale mysql database backup script for periodic o [2004/07/21] bin/69362 mbr amd (automounter) does not properly detec o [2004/07/21] docs/69383 keramida disklabel = bsdlabel in 5.X or later o [2004/07/22] bin/69398 [patch] cleartext display of password in o [2004/07/22] kern/69448 socket.h: cmsghdr macros don't work with s [2004/07/23] ports/69475 ports-bugs xemacs invalidly calls xargs (witj unexis o [2004/07/23] kern/69502 [modules] kldload will load modules that f [2004/07/24] ports/69537 daichi Portupgrade cannot be run by cron properl o [2004/07/27] kern/69650 [patch] make getserv* functions work with o [2004/07/28] amd64/69705 amd64 IPC problem (msq_queues) o [2004/07/28] amd64/69709 amd64 ACPI enabled then floppy don't work (5.2. o [2004/07/28] i386/69722 i386 [wi] wi0: init failed, Lucent Technologie o [2004/07/29] kern/69730 [puc] [patch] puc driver doesn't support o [2004/07/29] i386/69750 acpi Boot without ACPI failed on ASUS L5 o [2004/07/30] kern/69825 [libc] 1st group supplied to setgroups() o [2004/07/30] kern/69826 [libc] 16th group has no effect when acce o [2004/08/01] docs/69861 doc [patch] usr.bin/csplit/csplit.1 does not o [2004/08/01] bin/69875 `mlxcontrol status ' hangs wit o [2004/08/03] kern/69963 ipfw [ipfw] install_state warning about alread o [2004/08/03] ports/69965 portmgr check for moved ports in "make deinstall- o [2004/08/04] bin/69986 qa [sysinstall] [patch] no job control in fi o [2004/08/04] kern/69989 killing process that uses snp + unloading o [2004/08/04] bin/70002 qa [sysinstall] fails to locate FTP dirs if o [2004/08/05] conf/70048 magic(5) file has a typo at second test f o [2004/08/08] bin/70182 [patch] fortune -e implementation bug o [2004/08/09] docs/70217 doc Suggested rewrite of docproj/sgml.sgml o [2004/08/10] bin/70245 re Change to src/release/Makefile to aid doc o [2004/08/10] conf/70252 add System Administrator Appreciation Day o [2004/08/10] bin/70283 mtm adduser aborts in batch mode with comment o [2004/08/11] java/70292 java jdk14 compile problem o [2004/08/11] bin/70297 request to make amd timeouts per-mount lo a [2004/08/11] ports/70300 sergei devel/porttools does not use EMAIL from ~ o [2004/08/12] bin/70335 inconsistent syslog behavior when max chi o [2004/08/12] bin/70336 telnetd always exits with value 1 f [2004/08/12] usb/70362 sanpei [usbdevs] [patch] LaCie 160GB USB drive f [2004/08/12] ports/70365 daichi sysutils/portupgrade incorrectly give inf o [2004/08/13] ports/70400 jedgar databases/p5-Mysql is incompatible with d o [2004/08/13] kern/70401 darrenr [modules] Could not load ipl.ko when no I o [2004/08/15] bin/70476 sbin/reboot change, -p behavior default f o [2004/08/15] amd64/70500 amd64 [bge] bge driver for 3Com 3C996B on amd64 o [2004/08/16] bin/70511 When fread()ing with buffering turned off o [2004/08/16] usb/70523 usb [usb] [patch] umct sending/receiving wron o [2004/08/16] bin/70528 No libffi on amd64, either with native co o [2004/08/16] bin/70536 reboot -dp tries to dump when powering of o [2004/08/16] docs/70555 doc [patch] changes to freebsd-glossary o [2004/08/17] docs/70583 ceri [PATCH] Update freebsd-glossary o [2004/08/18] kern/70608 [irq] ethernet-error (card uses duplicate o [2004/08/18] i386/70610 i386 [speaker] [patch] spkr(4): hardcoded assu o [2004/08/19] docs/70652 hmp New man page: portindex(5) o [2004/08/20] docs/70697 doc pcm(4) is out of date o [2004/08/20] kern/70708 [nfs] gcore/procfs not finding /proc/pid/ o [2004/08/20] conf/70715 Lack of year in dates in auth.log can cau o [2004/08/21] bin/70756 [PATCH] indent(1) mishandles code that is o [2004/08/21] bin/70795 [nanobsd] [patch] misc nanobsd fixes and o [2004/08/21] kern/70798 Compatibility: Sun/Solaris has an fcntl() o [2004/08/22] kern/70810 [pci] [patch] Enable SMBus device on Asus o [2004/08/22] standards/70813standards [PATCH] ls(1) not Posix compliant o [2004/08/22] ports/70831 tobez make perl5.8 port SU_CMD aware o [2004/08/22] i386/70832 i386 [re] serious problems with RealTek NIC us f [2004/08/22] usb/70835 sanpei [usbdevs] [patch] scsi_da does not recogn s [2004/08/23] kern/70852 multimedia [sound] via82xx PCM driver does not enabl o [2004/08/23] kern/70880 peter [nfs] 5.3 beta1 nfs problem o [2004/08/24] ports/70900 edwin [patch] devel/sdl12 inconsistency between o [2004/08/24] kern/70904 darrenr [ipfilter] ipfilter ipnat problem with h3 o [2004/08/25] i386/70926 i386 [boot] 5.3Beta-1 bootstrap error: "atapci o [2004/08/25] usb/70942 usb [usb] Genius Wireless USB mouse: moused d o [2004/08/26] docs/70985 standards [patch] sh(1): incomplete documentation o o [2004/08/27] kern/71045 [dhcp] DHCP-Request is sets other device' o [2004/08/29] bin/71098 CVS keywords are not expanded with CVS 1. p [2004/08/30] kern/71142 delphij [syscons] [patch] add vesa [1024x768] mod o [2004/08/31] kern/71184 andre tcp-sessions hangs on FIN_WAIT_2 state o [2004/08/31] gnu/71210 Update to GNU sdiff: add user-preference o [2004/09/01] kern/71219 /proc/*/map dont tell file offset o [2004/09/01] conf/71254 ncurses: xterm vs. cons* termtypes or sc( o [2004/09/01] kern/71258 [vm] [patch] anonymous mmappings not alwa o [2004/09/02] kern/71280 [aue] aue0 device (linksys usb100tx) does p [2004/09/02] kern/71317 sanpei [sound] [patch] Add nForce2 sound support o [2004/09/03] kern/71334 [mem] [patch] mem_range_attr_{set|get} ar o [2004/09/04] kern/71366 ipfw [ipfw] "ipfw fwd" sometimes rewrites dest o [2004/09/05] conf/71386 loader.conf: hint.apic.0.disabled="YES" d o [2004/09/06] usb/71416 usb [usb] Cryptoflex e-gate USB token (ugen0) o [2004/09/06] usb/71417 usb [usb] Cryptoflex e-gate USB token (ugen0) o [2004/09/06] kern/71422 rwatson LOR in sys/net/bpf o [2004/09/07] kern/71450 [de] de(4): MAC address change on 21040 " o [2004/09/07] usb/71455 usb [usb] Slow USB umass performance of 5.3 o [2004/09/07] kern/71469 default route to internet magically disap o [2004/09/07] kern/71474 route lookup does not skip interfaces mar p [2004/09/08] conf/71488 brooks [patch] create spooldirs for lpd (in a di o [2004/09/08] ports/71489 sem [PATCH] www/slash: initial support for mo o [2004/09/08] ports/71498 tobez update port: databases/p5-GDBM: update an o [2004/09/09] ports/71512 james vncserver problems on amd64 and x.org o [2004/09/09] bin/71513 [PATCH] allow -user/group +/-id construct o [2004/09/09] kern/71532 Multiple SCSI-Busses are seen differently p [2004/09/09] ports/71544 arved devel/tvision might need these extra patc o [2004/09/10] conf/71549 /etc/termcap missing passthrough printing o [2004/09/10] docs/71555 doc how to run matlab on 5.2 o [2004/09/11] i386/71586 i386 FreeBSD 5.3-BETA3 #3 hang during boot on o [2004/09/11] usb/71605 usb [umass] [patch] umass doesn't recognize m o [2004/09/11] kern/71608 [pccard] XIRCOM REM56-100 Ethernet 10/100 o [2004/09/12] bin/71613 [PATCH] cleanup of the usr.sbin/tracerout o [2004/09/12] bin/71616 [PATCH] cleanup of the usr.sbin/yp_mkdb c o [2004/09/12] bin/71617 [PATCH] cleanup of the usr.sbin/ypserv co o [2004/09/12] bin/71618 [PATCH] cleanup of the usr.sbin/timed cod o [2004/09/12] bin/71619 [PATCH] cleanup of the usr.sbin/tcpdump c o [2004/09/12] bin/71620 [PATCH] cleanup of the usr.sbin/sysinstal o [2004/09/12] bin/71621 [PATCH] cleanup of the usr.sbin/sliplogin o [2004/09/12] bin/71622 [PATCH] cleanup of the usr.sbin/sicontrol o [2004/09/12] bin/71623 [pcvt] [patch] cleanup of the usr.sbin/pc o [2004/09/12] bin/71624 [PATCH] cleanup of the usr.sbin/rtadvd co o [2004/09/12] bin/71625 [PATCH] cleanup of the usr.sbin/rpc.ypupd o [2004/09/12] bin/71626 [PATCH] cleanup of the usr.sbin/rpc.statd o [2004/09/12] bin/71628 [PATCH] cleanup of the usr.sbin/rpcbind c o [2004/09/12] bin/71629 [PATCH] cleanup of the usr.sbin/pppstats o [2004/09/12] bin/71630 [PATCH] cleanup of the usr.sbin/pppd code o [2004/09/12] bin/71631 [PATCH] cleanup of the usr.sbin/pppctl co o [2004/09/12] bin/71632 [PATCH] cleanup of the usr.sbin/ndp code o [2004/09/12] bin/71633 [PATCH] cleanup of the usr.sbin/mrouted c o [2004/09/12] bin/71659 [PATCH] cleanup of the usr.sbin/mount_por o [2004/09/12] bin/71660 [PATCH] cleanup of the usr.sbin/kgmon cod o [2004/09/12] bin/71661 [PATCH] cleanup of the usr.sbin/keyserv c o [2004/09/12] bin/71663 [PATCH] cleanup of the usr.sbin/i4b code o [2004/09/12] bin/71664 [PATCH] cleanup of the usr.sbin/fwcontrol o [2004/09/12] bin/71665 [PATCH] cleanup of the usr.sbin/dconschat a [2004/09/12] bin/71666 delphij [PATCH] cleanup of the usr.sbin/btxld cod o [2004/09/12] bin/71667 [PATCH] cleanup of the usr.sbin/bootparam o [2004/09/12] bin/71669 [PATCH] cleanup of the usr.sbin/atm code o [2004/09/12] bin/71671 [PATCH] cleanup of the usr.sbin/apmd code o [2004/09/12] kern/71683 [nis] NIS/NFS problem [4.8] o [2004/09/13] docs/71690 doc [patch] inaccurate information in systat( s [2004/09/13] ports/71693 thierry [NEW PORT] x11-clocks/9clock: This is a s s [2004/09/13] kern/71708 [MAKEDEV] [PATCH] MAKEDEV create n+1 bpf o [2004/09/13] kern/71711 [bpf] [patch] generate a single bpf times p [2004/09/14] kern/71726 sanpei [sound] [patch] nForce3 250(CK8S) audio s o [2004/09/15] bin/71749 [PATCH] truss -f causes circular wait whe f [2004/09/15] conf/71757 brooks no /etc/rc.d/diskless script in FreeBSD 5 o [2004/09/15] conf/71767 [patch] French translations for keyboards s [2004/09/15] bin/71773 des [patch] genericize.pl -c misses some comm o [2004/09/15] kern/71774 [ntfs] NTFS cannot "see" files on a WinXP o [2004/09/16] docs/71782 doc mount_nfs(8) man page is a bit out of dat o [2004/09/16] bin/71801 [patch] Add ncurses utility programs: inf o [2004/09/17] kern/71813 I get a geometry error on my wd 200gb hd f [2004/09/17] kern/71818 sanpei QUIRK: support for DMR1000 USP flash pen/ o [2004/09/17] kern/71833 multiple process disc access / injustice s [2004/09/18] bin/71855 [patch] making kdump WARNS=6 clean o [2004/09/20] i386/71924 i386 timeouts with ata+hpt366 controller on BE o [2004/09/20] bin/71928 Disk quota doesn't work with numeric logi o [2004/09/20] conf/71952 missing past participles in /usr/share/di f [2004/09/21] ports/71953 thierry New port: x11-themes/kde-splash-freebsd: s [2004/09/21] kern/71965 andre TCP MSS issue in combination with ipfw fw o [2004/09/21] threads/71966threads Mlnet Core Dumped : Fatal error '_pq_inse f [2004/09/21] docs/71980 doc Handbook says that no other software is k o [2004/09/22] conf/71994 [patch] dot.login: login shell may unnece s [2004/09/22] ports/71997 lawrance New port:math/webwork used to create prob o [2004/09/22] standards/72006standards floating point formating in non-C locales s [2004/09/22] ports/72016 joe Setiathome doesn't run on my second proce f [2004/09/24] ports/72067 obrien [PATCH] editors/vim: i18n and extra suppo o [2004/09/25] conf/72076 [patch] German locales use old %d.%m.%y d o [2004/09/27] bin/72124 [patch] rm -P can't unlink u-w files o [2004/09/27] conf/72135 [patch] ipsec belongs to /etc/rc.d/NETWOR o [2004/09/29] bin/72173 csplit(1) ver 1.9 wrong behaviour with ne o [2004/09/29] i386/72179 i386 [acpi] [patch] Inconsistent apm(8) output f [2004/09/30] bin/72193 pjd sysinstall crash with geom_raid3.ko o [2004/09/30] kern/72194 stack backtrace after wakeup from sleepin s [2004/09/30] ports/72202 simon portaudit warns about the CVS server vuln o [2004/09/30] kern/72217 [netinet6] [patch] Bug in calculation of o [2004/09/30] kern/72218 multimedia [sound] audio recording broken with emu10 o [2004/09/30] conf/72219 Sysinstall doesn't enable 3rd party MTA i o [2004/10/01] kern/72221 multimedia [sound] emu10k1 stereo channels are rever a [2004/10/01] kern/72224 anholt umass devices broken by DRM (AGP issue?) o [2004/10/01] bin/72232 qa [sysinstall] Installer installs gui-enabl o [2004/10/02] kern/72263 [gif] gifconfig output corruption o [2004/10/03] conf/72277 [patch] update for /usr/share/skel o [2004/10/04] kern/72293 [de] de(4) NIC performance degradation wi o [2004/10/04] kern/72296 [bfe] bfe0: discard oversize frame (ether f [2004/10/04] ports/72336 sergei add RCng to mail/maildrop o [2004/10/04] kern/72338 calcru: runtime wen backwards from ... o [2004/10/04] ports/72339 marius security/ssh2 port startup script needs t p [2004/10/05] i386/72340 des [bsd.cpu.mk] [patch] add Pentium M, P3 M, o [2004/10/05] usb/72344 usb [usb] [patch] QUIRK: Dane-Elec zMate 512 o [2004/10/05] kern/72352 [puc] [patch] Support for VScom PCI-100L o [2004/10/05] bin/72355 Can't run "strings" on a (disk) device, e o [2004/10/05] bin/72357 [patch] WARNS?=5 cleanup for src/tools/to o [2004/10/06] i386/72380 usb [usb] USB does not work [dual Celeron Abi o [2004/10/06] docs/72383 doc manpage for awk(1) is terribly small and o [2004/10/06] ports/72398 jmz emulators/mtools man pages are too funky o [2004/10/07] ports/72417 sobomax [patch] enable options for net/ser f [2004/10/07] ports/72421 thierry new port: py-Levenshtein o [2004/10/07] kern/72433 [amr] [patch] AMR raid, amrreg.h struct a o [2004/10/08] kern/72440 [netinet] [patch] Not increment ifp->if_s o [2004/10/09] conf/72465 [patch] United States International keybo o [2004/10/09] kern/72468 andre OS does not know how to handle broadcast. f [2004/10/10] bin/72485 krion pkg_add -r unnecessarily downloads packag o [2004/10/11] kern/72498 [libc] timestamp code on jailed SMP machi o [2004/10/11] bin/72501 cperciva script(1) loops after EOF is read p [2004/10/11] conf/72505 brian [patch] Fix rc.d/ppp-user to make use of o [2004/10/11] bin/72517 Minor Bug in /etc/login.access o [2004/10/12] kern/72560 jeff [sched_ule] [patch] small cleanup of SCHE o [2004/10/12] kern/72585 [syscons] [patch] iso05-8x16.fnt lacks le o [2004/10/12] bin/72588 [patch] iostat(8) tty stats field concate a [2004/10/13] kern/72639 5.3-BETA7 kernel config option ALT_BREAK_ o [2004/10/13] kern/72659 jeff [sched_ule] [patch] little bug in sched_u o [2004/10/14] bin/72674 [patch] make /usr/bin/whois use SK-NIC's o [2004/10/15] kern/72728 brooks [syscons] [patch] keyboard debug and rebo o [2004/10/15] usb/72732 usb [patch] Kyocera 7135 quirk. o [2004/10/15] usb/72733 usb Kyocera 7135 Palm OS connection problem. o [2004/10/15] misc/72741 qa ssh broken on fixit cd (missing /dev/rand o [2004/10/17] bin/72787 gtar in base system doesn't seem to honor o [2004/10/17] bin/72793 [patch] wicontrol(8) prints out non-print a [2004/10/18] bin/72814 bms [patch] libpcap opens bpf as O_RDONLY - d o [2004/10/19] ports/72865 emulation emulators/vmware3 crashes on 5.3-STABLE o [2004/10/19] bin/72875 des Some utilities used in debugging do not f o [2004/10/19] bin/72881 yppush pushes map to local server o [2004/10/19] kern/72887 multimedia [sound] emu10k1: sound lag o [2004/10/20] conf/72901 [patch]: dot.profile: prevent printing wh o [2004/10/20] kern/72920 emulation [linux]: path "prefixing" is not done on f [2004/10/20] kern/72933 yar [netgraph] [patch] promisc mode on vlan i s [2004/10/21] ports/72956 ports-bugs x11/dgs incorrectly marked as IGNORE a [2004/10/21] conf/72978 [patch] add danish syscons keymap with ac o [2004/10/22] kern/72987 ipfw [ipfw] ipfw/dummynet pipe/queue 'queue [B o [2004/10/22] kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound near o [2004/10/22] kern/72997 [sk] Network performance down [6-CURRENT] o [2004/10/22] sparc64/72998sparc64 [kernel] [patch] set_mcontext() change sy o [2004/10/22] ports/73009 x11 5.3-RC1 ports refer to XF86Config - shoul o [2004/10/23] kern/73034 [libalias] libalias does not handle lower o [2004/10/23] kern/73051 [if_tun] tun0: Warning: ff02:5::/32: Chan o [2004/10/23] usb/73056 usb [usb] Sun Microsystems Type 6 USB mouse n o [2004/10/24] ports/73061 clsung Update port: devel/p5-Glib2 (enable threa o [2004/10/25] kern/73098 multimedia [sound] Scan rate of sound card shifts wh p [2004/10/25] bin/73110 rwatson [patch] ffsinfo conversion from atol() to p [2004/10/25] bin/73112 rwatson [patch] change atol() to strtol() in bads o [2004/10/26] kern/73145 severe network slowdown with DEC 21140 ne o [2004/10/27] kern/73195 bad PATH, missing HOME and TERM env var o o [2004/10/29] kern/73276 ipfw [ipfw] [patch] ipfw2 vulnerability (parse o [2004/10/29] ports/73285 billf net-mgmt/flow-tools port improvements o [2004/10/29] kern/73294 [hang] hangs in default mode when AcceleP o [2004/10/30] i386/73308 i386 unable to install on AMD 2500+,NF2,GF MX4 o [2004/10/30] bin/73327 [PATCH] iostat - extended mode display o [2004/10/30] kern/73328 top shows NICE as -111 on processes start o [2004/10/31] bin/73337 nsswitch: potential invalid free o [2004/11/01] kern/73375 [panic] vinvalbuf: dirty bufs during umas o [2004/11/01] kern/73388 brooks [usb] usb-keyboard stops working o [2004/11/02] bin/73411 [patch] FTPD could set attributes to 0600 o [2004/11/03] ports/73448 nectar [PATCH] nss_ldap - getpwnam does not retu o [2004/11/03] kern/73492 [feature request] Reliable Temporary File o [2004/11/03] kern/73496 [feature request] A more flexible version o [2004/11/04] kern/73514 [ntfs] [patch] mount_ntfs: can't access t o [2004/11/04] kern/73517 [pfil] pfil_hooks (ipfw,pf etc) and ipsec o [2004/11/05] www/73549 www Mail list archive navigation difficulty s [2004/11/05] www/73551 remko List archive 'quoted-printable' corruptio o [2004/11/05] usb/73553 brooks [usb] Microsoft USB Internet Keyboard not o [2004/11/06] docs/73583 doc [patch] add missing instructions to ndis( o [2004/11/06] ports/73609 lawrance New port: x11-toolkits/wxhaskell o [2004/11/07] docs/73638 doc ipfw(8): Clarify syntax for use of tables o [2004/11/07] kern/73646 [ahd] I/O performance: with/without MEMIO o [2004/11/07] conf/73653 Proposal of changes to the GENERIC kernel o [2004/11/08] kern/73663 emulation [ibcs2] module_register_init: MOD_LOAD (i o [2004/11/08] kern/73675 [atapicam] atapicam causes interrupt stor o [2004/11/08] conf/73677 [patch] add support for powernow states t o [2004/11/08] docs/73679 doc FreeBSD 5.3 Release notes mention new nat o [2004/11/09] i386/73742 i386 5.3 rel i386 disk2 image not copying s [2004/11/09] ports/73743 x11 XOrg/XFree xauth add/startx problem o [2004/11/10] kern/73777 emulation [linux] [patch] linux emulation: root dir o [2004/11/10] conf/73786 added WARNING in spanish to stable-supfil o [2004/11/11] conf/73799 Move the last stuff out of usbd.conf o [2004/11/11] i386/73822 acpi [request] add thermal support to ACPI o [2004/11/11] kern/73823 acpi [feature request] acpi / power-on by time o [2004/11/11] conf/73834 Bad dependencies for /etc/rc.d/savecore o [2004/11/12] kern/73865 [rpcbind] [patch] NOINET6=yes in /etc/mak o [2004/11/12] bin/73884 Add NetBSD's rawrite32 to install tools o [2004/11/13] conf/73909 [patch] rc.d/sshd does not work with port o [2004/11/14] i386/73921 i386 [sysctl] [patch] sysctlbyname for machdep o [2004/11/14] conf/73929 [patch] /etc/rc.d/named will not work wit o [2004/11/15] kern/73961 [fdc] floppy disk drive performance probl o [2004/11/15] kern/73978 emulation [ibcs2] an error message appears during l o [2004/11/16] bin/73988 isdn ISDN - first dial attempt fails o [2004/11/16] conf/74004 [PATCH] add fam support to inetd.conf o [2004/11/16] conf/74005 [PATCH] aditional support for /etc/rc.ini o [2004/11/16] conf/74006 dougb [PATCH] /etc/rc.d/named minor fixes o [2004/11/17] kern/74030 acpi Unplugging AC causes battery % to stay lo o [2004/11/17] kern/74037 [ppc] ppc(4) cannot find parallel port on o [2004/11/18] bin/74062 [gre] ifconfig(8) does not display tunnel o [2004/11/18] kern/74066 [ata] acd driver fault: READ_BIG timeout o [2004/11/20] bin/74140 ntpdate(8): ntpdate does not try all IPs o [2004/11/20] i386/74153 i386 [pst] FreeBSD 5.3 cannot boot ftom pst o [2004/11/20] kern/74159 [headers] [patch] fix warnings concerned o [2004/11/20] bin/74178 [patch] grdc(6) - scrolling does not work o [2004/11/21] threads/74180threads KSE problem. Applications those riched ma o [2004/11/21] i386/74191 multimedia [sound] Notebook PC2001 Compliant AC97 au o [2004/11/21] usb/74211 usb USB flash drive causes CAM status 0x4 on o [2004/11/21] conf/74213 [PATCH] Connect src/etc/periodic/security o [2004/11/21] kern/74215 acpi [request] add ACPI headers to /usr/includ o [2004/11/21] i386/74216 i386 system halts o [2004/11/21] i386/74218 i386 boot floppy (2nd time) read error o [2004/11/22] conf/74228 dougb periodic 470.status-named doesn't work wi o [2004/11/23] kern/74281 [digi] digi(4): Digiboard PCI Xem (64-por o [2004/11/24] kern/74314 [resolver] DNS resolver broken under cert o [2004/11/24] i386/74327 i386 [pmap] [patch] mlock() causes physical me f [2004/11/24] ports/74344 java [proposal] tomcat41ctl: support for passi s [2004/11/25] kern/74352 NFSCLIENT and booting to an mfsroot via T o [2004/11/25] usb/74358 usb [umass] unplugging at boot time an umass o [2004/11/25] bin/74360 [patch] ndiscvt(8) generates a driver whi a [2004/11/25] bin/74387 linprocfs can be mounted on top of itself o [2004/11/26] misc/74396 [patch] "make release" fails if the cdrto o [2004/11/26] bin/74404 sh does not handle signals to subshells p o [2004/11/26] bin/74406 qa [sysinstall] sysinstall accepts but disca s [2004/11/26] ports/74416 fenner update for rtpmon o [2004/11/27] bin/74450 [libalias] [patch] enable libalias/natd t o [2004/11/27] usb/74453 usb Q-lity CD-RW USB ECW-043 (ScanLogic SL11R o [2004/11/27] i386/74454 i386 [bsd.cpu.mk] [patch] Adding VIA Eden fami o [2004/11/28] docs/74477 doc [patch] Correct several links in the cont o [2004/11/29] kern/74498 [pccard] [patch] new CIS id for Intersil o [2004/11/29] bin/74500 [PATCH] allow chflags to set flags on sym o [2004/11/29] bin/74506 [patch] bad top command display p [2004/11/29] bin/74509 brooks [PATCH] ifconfig allows setting 33-byte S f [2004/11/29] ports/74537 obrien editors/vim issue: report invalid size of o [2004/11/30] kern/74549 [modules] [patch] Allow third party KLDs o [2004/11/30] usb/74557 usb imation 500mb usb key can only be written o [2004/11/30] bin/74567 [2TB] [patch] du doesn't handle sizes >1T o [2004/12/01] misc/74577 [patch] decorating space in Beastie menu o [2004/12/02] amd64/74608 amd64 [mpt] [hang] mpt hangs 5 minutes when boo o [2004/12/02] usb/74609 usb [usb] [patch] allowing cdma modems to wor o [2004/12/02] docs/74612 doc [patch] updates to the glossary o [2004/12/03] i386/74650 i386 System Reboot with umount command o [2004/12/03] gnu/74654 libsupc++.a lacks necessary functions o [2004/12/03] i386/74658 i386 [ata] ATAPI CD not recognized after booti o [2004/12/05] docs/74724 ceri handbook network-inetd webpage o [2004/12/05] ports/74740 danfe Update port: x11-wm/wampager - Update to o [2004/12/05] bin/74743 [patch] wctype.c declares static array on o [2004/12/06] ports/74752 simon make takes a little while before anything o [2004/12/06] kern/74777 [request] Bootup "beep" in 5.3 should be o [2004/12/06] kern/74786 [irq] [patch] Smartlink Modem causes inte o [2004/12/07] i386/74803 i386 regression: lost 3Com509B in 5.X o [2004/12/07] amd64/74811 amd64 [nfs] df, nfs mount, negative Avail -> 32 o [2004/12/07] conf/74817 [patch] network.subr: fixed automatic con o [2004/12/07] kern/74827 [fdc] Problem writing data to floppies [5 o [2004/12/08] usb/74849 usb [usb] [patch] Samsung SPH-i500 does not a o [2004/12/08] kern/74868 [acpi] ACPI enabled in 5.3 Release make K o [2004/12/09] usb/74880 usb [usb] [patch] Samsung N400 cellphone/acm s [2004/12/09] ports/74882 hq [New port] java/httpunit: web test framew o [2004/12/09] docs/74889 wosch S_ISREG etc marcos missing from stat man f [2004/12/09] kern/74893 multimedia [sound] [patch] Channels of USB audio can o [2004/12/09] ports/74907 apache [PATCH] www/mod_perl: cleanups o [2004/12/10] ports/74913 pat I can't see anything in X11 applications o [2004/12/10] ports/74919 ale [PATCH] lang/php4: Add hardened-php.org p o [2004/12/10] kern/74920 [ep] [panic] 3Com 3C509-Combo Etherlink I o [2004/12/12] i386/74966 i386 [rl] Realtek driver seems to misinterpret o [2004/12/12] kern/74971 le [vinum] vinum creates (shows) incorrect v o [2004/12/12] kern/74977 firewire [modules] dcons.ko requires KDB support o [2004/12/12] kern/74986 tackerman sysctlize a parameter of if_em's interrup o [2004/12/12] usb/74989 usb (regression) Lost USB support between 5.2 o [2004/12/13] kern/75008 [psm] [patch] ALPS GlidePoint not recogni o [2004/12/13] ports/75015 amd64 cvsup on amd64 coredumps with either runs o [2004/12/14] docs/75068 doc login.conf(5) manual page says nothing ab o [2004/12/15] i386/75090 i386 READ_BIG errors with Sony CRX1611 o [2004/12/15] kern/75121 Wrong behaviour of IFF_LINK2 bit in 6in6 o [2004/12/15] ports/75130 danfe [NEW PORT] www/mono-xsp: A light-weight w o [2004/12/15] kern/75132 jhb [puc] [patch] add support for the Davicom o [2004/12/15] conf/75137 jhb add snd_* modules support to /etc/rc.d/mi o [2004/12/16] ports/75143 java There is no way to specify jvm parameters o [2004/12/17] bin/75175 jot duplicates numbers in simple invocati o [2004/12/17] bin/75177 philip Bug selecting psm operation level in mous o [2004/12/17] i386/75185 i386 ACPI doesn't power off Tyan S2460 o [2004/12/18] kern/75211 le [vinum] vinum writes several errors to st o [2004/12/19] kern/75254 [wi] [patch] PRISM3-based adapter ZCOM XI p [2004/12/19] kern/75277 rwatson netstat -m 'mbufs in use' output appears o [2004/12/20] kern/75298 [pccard] [patch] add missing device id fo o [2004/12/20] kern/75312 [rl] Built-in RTL8281BL on Asus Pundit AB o [2004/12/20] kern/75316 multimedia [sound] [patch] Enable to select a record o [2004/12/21] bin/75362 contrib/smbfs mount_smbfs No buffer space o [2004/12/22] bin/75378 login(1): login/wtmp/utmp not updating pr o [2004/12/22] kern/75380 [nfs] can not open("..") from top-level d s [2004/12/22] i386/75387 i386 [ata] feature request: support of Promise o [2004/12/23] i386/75420 i386 CMD 648 PCI not work s [2004/12/24] ports/75464 portmgr bsd.port.mk install default configuration o [2004/12/26] conf/75502 [patch] Fix LC_NUMERIC and LC_MONETARY fo o [2004/12/27] docs/75545 trhodes typos in man3 manual pages, form_field_op o [2004/12/28] bin/75570 chflags nosappnd directory doesn't work o [2004/12/28] docs/75577 doc typos in man3 manual pages, login_class.3 o [2004/12/28] usb/75578 usb [patch] QUIRK: PNY USB flash key o [2004/12/28] kern/75582 [dc] [patch] Add support for Linksys PCMP o [2004/12/28] i386/75583 i386 Installation fails o [2004/12/28] bin/75585 [unionfs] mount -p on unionfs results in o [2004/12/29] bin/75632 le gvinum commands not consistent with vinum o [2004/12/30] gnu/75662 less -f behavior contradicts man page o [2005/01/01] misc/75702 dwmalone -O5 flag breaks some compiles in /usr/src o [2005/01/01] kern/75710 [cue] cue0 device configuration causes ke o [2005/01/03] bin/75742 krion [patch] pkg_add does not honour prefix fo o [2005/01/03] kern/75764 [umass] [patch] "umass0: Phase Error" - n o [2005/01/03] bin/75766 [patch] nfsd(8) loops with TCP + multiple o [2005/01/03] bin/75767 WANTED: "fdclose" function in libc o [2005/01/04] i386/75776 i386 NO ps/2 keyboard using USB keyboard under o [2005/01/04] usb/75800 usb ucom1: init failed STALLED error in time o [2005/01/05] www/75830 www ports.cgi used ports/INDEX from CVS o [2005/01/05] bin/75842 /sbin/mount: valid, but double, fstab mou o [2005/01/05] bin/75855 getpwent functions on 5.3 with large pass o [2005/01/05] docs/75865 doc comments on "backup-basics" in handbook o [2005/01/06] kern/75873 Usability problem with non-RFC-compliant o [2005/01/06] i386/75881 i386 ACPI suspend/resume doesn't work on ASUS o [2005/01/06] ports/75883 demon mrtg + ucd-snmp give wrong results o [2005/01/06] bin/75884 m4(1): syscmd's output is out of sync wit o [2005/01/06] kern/75894 multimedia [sound] AD1981 not probing (shuttle ST62K o [2005/01/06] i386/75898 i386 Exception and reboot: Loader and kernel u f [2005/01/07] ports/75916 thierry New port: net/decv o [2005/01/07] usb/75928 usb Cytronix SmartMedia card (SMC) reader has o [2005/01/08] kern/75934 [libcrypt] [patch] missing blowfish funct f [2005/01/08] ports/75939 nork sysutils/smartmontools: smartd can not fo o [2005/01/08] kern/75969 multimedia [sound] [patch] Support for Sigmatel STAC o [2005/01/08] usb/75970 usb [usb] [patch] support for Sandisk Cruzer o [2005/01/09] docs/75995 doc hcreate documentation(?) bug o [2005/01/09] kern/76002 [bktr] [patch] for PixelView PlayTv Pro R f [2005/01/10] ports/76021 daichi portupgrade: package delete can remove ne o [2005/01/10] sparc64/76052marius Incorrect panic strings in sparc64 files o [2005/01/10] gnu/76069 FreeBSD's definition of offsetof isn't go o [2005/01/11] kern/76081 [rl] [patch] Add support for CardBUS NIC o [2005/01/11] bin/76089 The "-n" option in /usr/bin/w is broken o [2005/01/11] docs/76094 doc Incorrect statement about partition d p [2005/01/11] ports/76116 ports-bugs PORT UPDATE: graphics/lcms (with PATCH) o [2005/01/12] conf/76124 [patch] Mistake in /usr/share/misc/pci_ve o [2005/01/12] kern/76144 poll doesn't set POLLHUP when FIFO is clo o [2005/01/12] gnu/76169 [patch] Add PAM support to cvs pserver o [2005/01/12] kern/76178 scsi [ahd] Problem with ahd and large SCSI Rai o [2005/01/13] kern/76225 [modules] [patch] WITHOUT_MODULES option o [2005/01/13] conf/76226 Default local.9600 gettytab initially use s [2005/01/14] ports/76247 grog net/arla port update o [2005/01/14] ports/76257 danfe nvidia_driver breaks xorg-clients build o [2005/01/15] conf/76298 fstab doesn't pass mntops properly o [2005/01/17] docs/76333 doc EOF indicator can be cleared by not only f [2005/01/17] ports/76358 vs xlockmore PAM support o [2005/01/17] bin/76362 sys directory link points to wrong locati o [2005/01/17] ports/76365 ports-bugs NEW PORT net/xdb_auth_cpile A user auth/c o [2005/01/18] bin/76401 sysinstall to set "host name" for dhclien o [2005/01/18] kern/76432 gnn [net] [patch] recursive locking in the ne o [2005/01/19] usb/76461 usb [umass] disklabel of umass(4)-CAM(4)-da(4 o [2005/01/20] kern/76485 sched_getparam returns weird priority num s [2005/01/20] conf/76491 Addition into /etc/security few new funct o [2005/01/20] bin/76494 [patch] passwd(1) does not indicate a suc p [2005/01/20] bin/76497 tcpdump dumps core on ppp ipv6cp packets o [2005/01/20] conf/76509 [patch] New locale uk_UA.CP1251 support o [2005/01/20] docs/76515 doc missleading use of make -j flag in handbo s [2005/01/21] kern/76520 [libiconv] [patch] Add new kernel-side li o [2005/01/21] kern/76539 [dummynet] [patch] ipnat + dummynet on ou o [2005/01/21] kern/76551 [re] [patch] re0: watchdog timeout o [2005/01/23] www/76586 re [patch] minor updates to en/releng/index. o [2005/01/23] i386/76587 i386 ps2 mouse weird... o [2005/01/23] bin/76590 adding -mapall in nfs exports requires re o [2005/01/23] kern/76611 isdn [i4b] [patch] i4b itjc bad enums for PIB o [2005/01/24] conf/76626 [patch] 460.status-mail-rejects shows des o [2005/01/25] i386/76653 i386 Problem with Asahi Optical usb device (Pe o [2005/01/25] kern/76678 rwatson [libpam] [patch] Allow pam_krb5 to authen o [2005/01/26] ports/76695 trevor RPM complaints on installation of linux_b o [2005/01/26] bin/76697 newsyslog keeps one more archive files th o [2005/01/26] kern/76710 [mii] [patch] rgephy does not deal with s o [2005/01/26] bin/76711 parse error in rm.c:check() while parsing o [2005/01/27] usb/76732 usb Mouse problems with USB KVM Switch o [2005/01/27] bin/76736 dwmalone syslogd pipelines losing messages s [2005/01/27] ports/76748 haskell New port: devel/hs-plugins. Loading Haske o [2005/01/27] bin/76752 /usr/bin/login o [2005/01/27] bin/76756 des function pw_equal in pw_util.c does not t o [2005/01/29] kern/76818 rwatson ACL modifications touch file's mtime o [2005/01/30] kern/76857 Samsung mouse misbehaviour o [2005/01/31] ports/76915 portmgr [patch] Handle port deinstall scripts whe o [2005/01/31] kern/76918 multimedia [sound] ATI AD1981 AC'97 Audio Controller p [2005/02/01] threads/76938delphij include/unistd.h: ttyname_r prototype mis o [2005/02/01] kern/76950 ACPI wrongly blacklisted on Micron Client o [2005/02/01] kern/76966 udp/520 reply packets when routed is not o [2005/02/01] kern/76971 ipfw [ipfw] ipfw antispoof incorrectly blocks o [2005/02/01] kern/76972 64-bit integer overflow computing user cp o [2005/02/02] ports/76986 ports-bugs New port: print/pmx a pre-processor of Mu o [2005/02/02] bin/77001 sysinstall binary upgrade clobbers /etc/l o [2005/02/02] bin/77031 [patch] comm(1) unable to handle lines gr o [2005/02/03] bin/77082 krion src/usr.sbin/pkg_install - Add 3 new macr f [2005/02/04] docs/77087 doc The bootvinum script given in the handboo o [2005/02/04] bin/77089 /sbin/natd: natd ignores -u with passive o [2005/02/04] kern/77091 Keyboard quits working under X with MAXCO o [2005/02/06] kern/77156 FreeBSD does not redirect packets on prop o [2005/02/07] conf/77197 [patch] calendar.judaic is out of date o [2005/02/07] bin/77212 krion src/usr.sbin/pkg_install - make directory o [2005/02/07] kern/77239 [xl] 3Com 3CXFEM656C does not seem to be o [2005/02/08] ports/77246 portmgr update "make index" target to use "make f o [2005/02/08] kern/77253 emulation [linux] meminfo in linprocfs returns bad p [2005/02/08] bin/77259 stefanf /bin/sh: shell command "command -v cmd" d o [2005/02/08] bin/77260 df behaviour has changed between 4.x and o [2005/02/08] bin/77261 login doesn't chdir into a group-protecte o [2005/02/08] kern/77273 darrenr [ipfilter] ipfilter breaks ipv6 statefull o [2005/02/10] kern/77341 problems with IPV6 impementation o [2005/02/10] kern/77355 [i386] [patch] Detect i*86 subarches for s [2005/02/10] ports/77359 thierry New port: graphics/gephex Software-based o [2005/02/10] kern/77365 [amdpm] [patch] amdpm driver has wrong PC o [2005/02/11] kern/77377 Slow downloading from FreeBSD server with p [2005/02/11] conf/77386 brooks let /etc/rc.d/var create spool dirs for l o [2005/02/13] bin/77445 ntpd(8): too many recvbufs(40) when ntpd s [2005/02/13] ports/77453 ports-bugs [request] new port: print/ghostpcl o [2005/02/14] ports/77471 ports-bugs New port: Device driver for Voicetronix O o [2005/02/14] i386/77477 i386 AHA-1542CP SCSI failed to probe f [2005/02/14] ports/77495 niels new port: security/sav o [2005/02/15] kern/77537 Conditional breakpoints hang on SMP machi o [2005/02/15] kern/77541 [em] [patch] if_oerrors book keeping erro o [2005/02/15] bin/77554 type mismatch in IPv6 firewall rule parse o [2005/02/16] ports/77584 ports-bugs New ports: games/sear, games/sear-media. o [2005/02/18] kern/77662 diskless hostname set via DHCP only if AC o [2005/02/18] conf/77663 Suggestion: add /etc/rc.d/addnetswap afte o [2005/02/21] ports/77820 portmgr bsd.port.mk 1.508 and PORTDOCS globbing b o [2005/02/21] kern/77826 [ext2fs] ext2fs usb filesystem will not m o [2005/02/21] kern/77835 stefanf [libc] [patch] res_debug.c needs const de o [2005/02/21] kern/77841 [libc] [patch] cast away const in getpubl o [2005/02/21] ports/77857 kwm [PATCH] net/gnomemeeting: correctly deter o [2005/02/21] ports/77876 portmgr Ensure uniqueness of (DOCS|EXAMPLES|DATA) o [2005/02/22] kern/77902 [nfs] NFS client should use VA_UTIMES_NUL o [2005/02/22] kern/77904 [nfs] NFS server should set VA_UTIMES_NUL o [2005/02/22] kern/77913 [wi] [patch] Add the APDL-325 WLAN pccard o [2005/02/22] bin/77918 ceri quota does not exit with a status != 0, i o [2005/02/23] kern/77958 [smbfs] can't delete read-only files via o [2005/02/24] ports/78012 ports-bugs [NEW PORT] net/abills: Billing system fro o [2005/02/24] bin/78021 sem_open(3) doesn't mention fnctl.h inclu o [2005/02/24] docs/78041 doc docs for md need further explanation of t o [2005/02/25] kern/78057 ad0: FAILURE - READ_DMA status=51 error=4 o [2005/02/25] kern/78070 [bge] [patch] Potential null pointer dere o [2005/02/25] kern/78072 [lge] [patch] Potential memory leak in lg o [2005/02/25] kern/78090 [ipf] ipf filtering on bridged packets do o [2005/02/26] kern/78114 phk [geom] [patch] Solaris/x86 label structur o [2005/02/26] bin/78131 geom gbde "destroy" not working. o [2005/02/27] docs/78138 doc Error in pre-installation section of inst o [2005/02/27] bin/78170 [patch] Fix signal handler in bootpd a [2005/02/28] docs/78174 markus Update for Bluetooth-related manpages o [2005/03/01] ports/78234 olgeni x11/eterm invalids compose character defi o [2005/03/01] ports/78235 ale lang/php4 segfaults with both xslt and Ze o [2005/03/01] docs/78240 doc Replace with around a # o [2005/03/02] docs/78275 doc Keyword size needs to be changed to lengt f [2005/03/02] ports/78293 edwin Proposition for the review of multimedia/ o [2005/03/02] bin/78304 Signal handler abuse in comsat(8) o [2005/03/03] ports/78337 ale Feature Request: cpdf for lang/php5-exten o [2005/03/03] kern/78342 jeff top -S shows potentially incorrect CPU us o [2005/03/03] usb/78371 usb Philips Wearable Audio Player (128) fails o [2005/03/04] kern/78388 [vr] vr network drivers cause watchdog ti o [2005/03/04] conf/78419 /etc/termcap is a symbolic link o [2005/03/04] bin/78424 Internal IPs on router, natd/libalias bre o [2005/03/05] docs/78440 phantom POSIX semaphores don't work by default in o [2005/03/05] kern/78444 jeff [sched_ule] doesn't keep track of the sle o [2005/03/05] kern/78464 des Rename /proc/mtab to /proc/mounts f [2005/03/06] ports/78473 danfe New port: graphics/opencv (Open Source Co o [2005/03/06] kern/78474 [kernel] [patch] swapped out procs not br o [2005/03/06] docs/78479 doc SO_NOSIGPIPE socket option undocumented o [2005/03/06] docs/78480 doc Networked printer setup unnecessarily com o [2005/03/06] ports/78490 portmgr Update port: Mk/bsd.port.mk add PORTEXAMP o [2005/03/07] docs/78520 doc error in man(5) lpd.conf, lpd.perms pages o [2005/03/07] kern/78526 problem with ST380011A Segate and FreeBSD o [2005/03/07] bin/78529 'df' shows wrong info about hard drive af o [2005/03/07] standards/78537phk times(2) not functioning per the Posix sp o [2005/03/07] usb/78543 usb [patch] Support for Trip-Lite USB 2 Seria o [2005/03/07] ports/78554 portmgr [patch] bsd.port.mk: allow install port w o [2005/03/07] bin/78562 Add numerical sorting option to join(1) o [2005/03/07] i386/78569 i386 seg fault compiling after install on AMD o [2005/03/08] ports/78596 portmgr bsd.port.mk does not match tradition or P o [2005/03/09] kern/78646 [libmap] [patch] libmap should canonicali o [2005/03/10] kern/78673 [nfs] [patch] nfs client open resets attr o [2005/03/11] ports/78712 perky [Update Ports] Rename ja-pycodec to ja-py o [2005/03/12] bin/78728 ntpd -- noisy when IPv4 or IPv6 interface o [2005/03/12] kern/78756 phantom [libc] [patch] src/lib/libc/nls/fr_FR.ISO o [2005/03/13] kern/78758 sos [ata] [patch] Add support for re-sizing A o [2005/03/13] bin/78759 patch: verbosity for bin/chflags a [2005/03/13] ports/78760 lioux [PATCH] multimedia/kmplayer: Make TV view o [2005/03/13] bin/78763 pjd [PATCH] Added jail support to ps o [2005/03/13] bin/78768 pjd [Patch] Added jail support to top o [2005/03/13] bin/78785 ipfw [ipfw] [patch] ipfw verbosity locks machi o [2005/03/13] kern/78787 sysconf(_SC_CLK_TCK) may return incorrect o [2005/03/14] kern/78812 [workaround] logitech cordless mouse with o [2005/03/15] kern/78849 phk Problems with GBDE encrypted partitions o [2005/03/15] kern/78884 [nfs] [patch] nfs client cache negative l o [2005/03/15] ports/78898 ports-bugs new ports chinese/lumaqq: General QQ-like o [2005/03/16] conf/78906 [patch] Allow mixer_enable="NO" in rc.con o [2005/03/16] docs/78915 doc rfork()'s RFTHREAD is not documented o [2005/03/17] amd64/78954 amd64 kerberos 5 failed to build o [2005/03/17] kern/78957 time counter per process stops (syscall: o [2005/03/18] usb/78984 usb Creative MUVO umass failure f [2005/03/18] ports/78990 ache [update] {news,chinese}/tin: integrate pa o [2005/03/19] bin/79008 add option for pom(6) to specify EPOCH o [2005/03/19] ports/79010 portmgr [patch] bsd.port.mk - all-depends-tree ta o [2005/03/19] ports/79021 ports-bugs New port: linux_base-fedora o [2005/03/20] kern/79035 le [vinum] gvinum unable to create a striped s [2005/03/20] kern/79048 [libc] realloc() copies data even when th o [2005/03/20] ports/79049 ports-bugs New port net-mgmt/netdump-server:RedHat s o [2005/03/20] standards/79055standards Add an IFS regression test for shells o [2005/03/20] standards/79056standards regex(3) regression tests o [2005/03/20] kern/79058 [panic] floppy umount crash on accidental p [2005/03/20] bin/79063 tjr grep(1) - strange behaviour (most likely o [2005/03/21] kern/79066 [bktr] bktr(4) eating about 10% CPU load o [2005/03/21] standards/79067standards /bin/sh should be more intelligent about o [2005/03/21] ports/79069 grog "make install" in instant-workstation fai o [2005/03/21] i386/79091 i386 [i386] [patch] Small optimization for i38 o [2005/03/21] ports/79093 mi net/rdist6 ignore ssh transport o [2005/03/22] bin/79109 devfs.conf not honored at boot o [2005/03/22] kern/79117 isdn [iavc] iavc(4) for AVM B1 PCI does not at a [2005/03/22] ports/79123 portmgr [patch] bsd.port.mk - add SHA256 support o [2005/03/22] i386/79136 i386 disk controller not detected o [2005/03/22] kern/79138 rwatson close while sending on connected UNIX-dom o [2005/03/22] kern/79139 [pci] [patch] Support for more PCIe chips o [2005/03/22] i386/79143 i386 Broadcom NIC driver do not work for IPMI o [2005/03/23] docs/79156 doc buffersize knob for sound(4) is a tunable o [2005/03/23] usb/79164 usb [usb] [patch] QUIRK: Qware BeatZkey! Pro o [2005/03/24] conf/79196 [PATCH] configurable dummynet loading fr o [2005/03/25] bin/79228 [ PATCH ] extend /sbin/arp to be able to o [2005/03/25] bin/79232 WARNS6 clean libexec/comsat o [2005/03/25] ports/79235 ports-bugs [maintainer update] sysutils/dtc: v0.17.0 o [2005/03/26] kern/79251 geom [2TB] newfs fails on 2.6TB gbde device o [2005/03/26] kern/79266 [pci] [patch] RELENG_4 pci CONF1_ENABLE_M o [2005/03/27] i386/79272 i386 "ata" detects and enables UDMA66 or UDMA1 o [2005/03/27] i386/79274 i386 Autoconfigure fails for O2Micro OZ6812/68 o [2005/03/28] bin/79296 "umount -a -t msdos" not work o [2005/03/28] i386/79317 i386 Freebsd Erasing NVRAM o [2005/03/30] i386/79350 i386 "ata" unrequested increase in xDMAx speed a [2005/03/30] ports/79351 lofi Character passing error in security/pinen o [2005/03/30] kern/79352 [feature request] double tagged q-in-q ne o [2005/03/30] ports/79382 ume package information for cyrus-sasl2-sasla o [2005/03/31] ports/79398 portmgr [patch] bsd.port.mk: add USE_MAKESELF kno o [2005/03/31] conf/79415 Fix "Mothers Day" in calendar.french. o [2005/03/31] kern/79416 darrenr ipf in 4.11 breaks POLA p [2005/04/01] bin/79418 stefanf [patch] libedit sync from netbsd cvs o [2005/04/01] kern/79427 multimedia [sound] No sound on Compaq Armada 100S la o [2005/04/02] kern/79441 [msdosfs] problem writing on mounted msdo o [2005/04/03] kern/79498 multimedia [sound] sndfile-play (and many other play a [2005/04/03] ports/79509 portmgr add .desktop file facilities to bsd.port. o [2005/04/04] ports/79536 pat sysutils/wmmemload install problem from t o [2005/04/04] ports/79540 pat sysutils/wmcpuload feature o [2005/04/05] bin/79570 Dynamic OpenSSL engine load disabled o [2005/04/05] kern/79575 [md] [patch] Fixes order of disks in 'mdc o [2005/04/06] bin/79607 obrien grok and default to bzip2-compressed manu o [2005/04/07] ports/79611 ale Port build failure in mail/php4-imap 4.3. o [2005/04/07] kern/79635 82545GM reports the EEPROM Checksum Is No a [2005/04/07] ports/79637 cjh [PATCH] print/magicfilter: update to 2.3. s [2005/04/07] ports/79639 thierry biology/deft: patch for compilation on Fr o [2005/04/07] usb/79649 usb [usb] [patch] quirk: Gembird MP3 player o [2005/04/07] ports/79651 clement [patch] mail/ssmtp: add per-user smtp aut o [2005/04/08] ports/79661 des emulators/doscmd outdated man info o [2005/04/08] kern/79678 multimedia [sound] sound works except recording from o [2005/04/08] bin/79690 [patch] mdmfs does not accept numeric uid o [2005/04/08] ports/79694 kuriyama net-mgmt/net-snmp: net-snmp-5-2-1.1 witho o [2005/04/08] kern/79698 des [ichwd] [patch] ICH watchdog driver broke o [2005/04/08] conf/79701 [PATCH] wcwidth(3) returns wrong value ab o [2005/04/09] kern/79705 mac_seeotheruids not blocking root o [2005/04/09] bin/79714 marcel kgdb user I/O nits o [2005/04/09] conf/79715 MNT_NODEV should be removed from sys/moun o [2005/04/09] usb/79723 usb [usb] prepare for high speed isochronous o [2005/04/09] usb/79725 usb [usb] [patch] USB device speed is not dou o [2005/04/12] i386/79840 i386 Partitioning and formating a new disk fai f [2005/04/13] ports/79862 daichi portupgrade-20041226_2 has faulty IGNORE o [2005/04/13] threads/79887threads [patch] freopen() isn't thread-safe o [2005/04/14] i386/79890 i386 burncd fails on a Pioneer DVD drive o [2005/04/14] usb/79893 usb New usbdevs/umass quirks derived from Lin o [2005/04/15] kern/79944 virtual floppy controller of Virtual PC d o [2005/04/15] bin/79965 top messes up narrow terminals while disp p [2005/04/16] kern/79998 yar [sk] [patch] Give sk(4) VLAN MTU capabili o [2005/04/16] usb/80010 usb [aue] [patch] add support for the AEI USB o [2005/04/17] kern/80031 [coda] [patch] Remove insque/remque from o [2005/04/17] ports/80043 ports-bugs New port: devel/metaEnv CWI MetaEnvironme o [2005/04/18] kern/80048 [aac] [patch] support for HP ML110 G2 SAT p [2005/04/18] bin/80058 adduser -f exits silently if file has emp o [2005/04/18] docs/80070 doc [patch] Wrong dbm_close return value desc o [2005/04/18] i386/80081 i386 [if_ndis] Problem loading a NDIS kernel m o [2005/04/19] i386/80092 i386 PC Cards do not work at all on laptop Com o [2005/04/19] i386/80095 i386 ld-elf.so.1 crashes with executables prod o [2005/04/19] bin/80097 df reports incorrect stats with gmirror o [2005/04/19] ports/80111 ume patch to make WITH_KERBEROS4 working for o [2005/04/19] bin/80117 qa [sysinstall] [patch] smbfs install option o [2005/04/20] ports/80132 portmgr [PATCH] bsd.port.mk -- Add support for -j o [2005/04/20] kern/80147 multimedia [snd_sb16] [patch] panic with the vibra16 o [2005/04/20] kern/80149 multimedia problems with an soundblaster-8 (original o [2005/04/20] kern/80151 multimedia [sound] [patch] Missing ESS ES1688 PCI-ID o [2005/04/20] kern/80152 multimedia [sound] [patch] SIMPLEX flag is not set p o [2005/04/20] conf/80158 request configuration option for specifin o [2005/04/20] docs/80159 doc [patch] rtld(1) mentions "%m" but it's no o [2005/04/21] bin/80176 des fetch does not always work with https wit o [2005/04/21] docs/80186 imp [patch] Footnote is wrong in the /usr/src o [2005/04/22] ports/80227 sobomax net/ser does not have an rc script. It sh o [2005/04/22] kern/80234 multimedia [sound] [patch] add entry for Analog Devi o [2005/04/22] bin/80236 [patch] atacontrol(8) outputs minimal usa o [2005/04/22] bin/80242 [patch] jail(8) should be able to set ker o [2005/04/22] bin/80256 /rescue/vi doesn't work without terminal o [2005/04/22] bin/80258 [PATCH] Comment why some Binaries are sta o [2005/04/22] kern/80265 D-Link NIC with VIA Rhine II has no carr o [2005/04/23] kern/80269 [libtacplus] [patch] libtacplus tac_get_a f [2005/04/23] ports/80274 ports-bugs GDB console problem (ddd-3.3.10 with Free o [2005/04/23] kern/80283 [reboot] SMP problem a [2005/04/23] standards/80293standards sysconf() does not support well-defined u p [2005/04/25] bin/80348 rs(1) handles command line arguments impr o [2005/04/27] usb/80383 usb [uhid] [patch] Add quirk for uhid to igno s [2005/04/27] kern/80396 anholt i915 AGP not supported o [2005/04/27] bin/80411 [patch] bin/df/df.c sign errors in calls o [2005/04/27] usb/80420 usb atapicam stops iPod functionality o [2005/04/27] bin/80421 [PATCH] whois(1) should query AfriNIC ser f [2005/04/29] ports/80461 thierry The print/pdfjam port requires bash but i o [2005/04/29] kern/80465 multimedia [sound] pcm0:record:0: record interrupt t f [2005/04/30] ports/80484 thierry New port: security/synscan flexible, scri o [2005/04/30] usb/80487 usb [usb] [patch] quirk: United MP 5512 Porta o [2005/05/01] conf/80504 [patch] de_DE.ISO8859-1 libc message cata f [2005/05/01] ports/80515 ports-bugs emulators/vmware3: /usr/local/etc/rc.d/vm o [2005/05/02] bin/80530 man(1) should become Unicode aware o [2005/05/02] bin/80534 feature request: enumeration of filesyste o [2005/05/02] ports/80536 jmz textproc/ispell: ispell/spell seg faults o [2005/05/03] kern/80580 [panic] 4.11 router panic in lockmgr: loc o [2005/05/04] bin/80610 [patch] netstat(1): lost data due lu form o [2005/05/04] bin/80620 des [patch] fetch -U does not work o [2005/05/04] kern/80626 Out of memory ? then dead o [2005/05/05] kern/80632 multimedia pcm driver missing support for CMI8738 au o [2005/05/05] kern/80642 ipfw [ipfw] [patch] ipfw small patch - new RUL o [2005/05/06] bin/80687 [patch] Missing NULL termination after st f [2005/05/06] ports/80705 gnome [PATCH] converters/libiconv: includes a p o [2005/05/07] bin/80732 [PATCH]: getty(8) and telnetd(8) ignore t o [2005/05/08] usb/80773 usb "usbd_get_string()" could have taken a le o [2005/05/08] usb/80774 usb have "usbd_find_desc" in line with the ot o [2005/05/08] kern/80775 sysctl_handle_string should have a timeou o [2005/05/08] usb/80776 usb [udav] UDAV device driver shouldn't use u o [2005/05/08] usb/80777 usb usb_rem_task() should wait for callback t o [2005/05/09] bin/80812 [ new util ] request to add new util: get o [2005/05/09] kern/80815 acpi ACPI(pci_link) problem in 5.4-STABLE: TIM o [2005/05/09] kern/80824 multimedia [sound] kldunload can't unload sound.ko o [2005/05/10] kern/80844 [psm] [patch] Increase compatibility of p o [2005/05/10] usb/80854 usb suggestion for new iface-no-probe mechani o [2005/05/10] bin/80868 /bin/sh gives wrong line number of unterm o [2005/05/11] docs/80871 doc terminfo(5) man page source corrupted o [2005/05/11] conf/80907 tmpmfs default change o [2005/05/12] bin/80924 fsck should show CTIME. o [2005/05/12] usb/80935 usb uvisor.c is not work with CLIE TH55. o [2005/05/12] ports/80943 ale lang/php4: update PHP for new mnogosearch o [2005/05/12] ports/80944 lawrance [NEW PORT] www/mnogosearch-php: Mnogosear o [2005/05/12] ports/80946 ale www/php4-mnogosearch: Mnogosearch PHP4 Ex o [2005/05/13] ports/80968 ijliao [NEW PORT] cad/gplcver: A Verilog HDL sim o [2005/05/13] ports/80979 x11 x11/xorg-clients: when hostname is not co o [2005/05/13] threads/80992threads abort() sometimes not caught by gdb depen o [2005/05/14] kern/80999 [hang] artswrapper freezes system with 0.98, re o [2005/07/24] ports/83986 ports-bugs New port www/p5-Apache2-DebugFilter o [2005/07/24] ports/83987 ports-bugs New port www/p5-Apache2-Filter-HTTPHeader o [2005/07/24] kern/83995 CFLAGS & COPTFLAGS ambiguous behaviour o [2005/07/24] kern/84020 Couldn't load graphical screensaver modul o [2005/07/24] docs/84021 doc Missing manpage on RELENG_6 o [2005/07/25] conf/84030 [patch] /etc/rc.d/power_profile is not a o [2005/07/25] kern/84040 [mpt] 6.0-BETA1 mpt driver not working un o [2005/07/25] bin/84041 [PATCH] fix for wall(1) error message o [2005/07/25] bin/84050 tcpdump is dumping hex instead of text du f [2005/07/25] ports/84053 portmgr mail/qmail: Big patch to prevent stale de s [2005/07/25] bin/84084 qa [sysinstall] FreeBSD 4.11-R won't install p [2005/07/26] docs/84101 garys mt(1) manpage has erroneous synopsis, etc o [2005/07/26] ports/84140 ports-bugs www/flashplugin-mozilla causes www/firefo s [2005/07/26] ports/84143 skv Update www/p5-Apache-Peek 1.02 -> 1.04, r o [2005/07/27] docs/84154 doc Handbook somewhat off in use of /boot/ker o [2005/07/27] bin/84162 (t)csh: builtins commands with redirectio o [2005/07/27] conf/84172 loader.conf(5) is missing an entry for "d o [2005/07/28] kern/84199 dlinfo in libexec/elf-rtld/rtld.c does no o [2005/07/28] bin/84208 qa [sysinstall] "Leave the MBR untouched" op o [2005/07/28] ports/84212 cy misc/screen port can't talk to TTYs o [2005/07/28] kern/84215 [jail] [patch] wildcard ip (INADDR_ANY) s o [2005/07/28] kern/84219 [ncurses] [patch] ncurses.h wchar_t confl o [2005/07/28] kern/84225 gnn losing default route changing netmask on o [2005/07/28] ports/84255 tobez [patch] lang/perl5.8 (5.8.7) and freebsd. p [2005/07/29] docs/84264 keramida [patch] ata(4) manpage disagrees with tun o [2005/07/29] docs/84265 doc [patch] chmod(1) manpage omits implicatio p [2005/07/29] docs/84266 garys security(8) manpage should have init(8)'s o [2005/07/29] docs/84267 doc chflags(1) manual doesn't say it's affect o [2005/07/29] docs/84268 doc chmod(1) manpage's BUGS entry is either w o [2005/07/29] docs/84271 ceri compress(1) doesn't warn about nasty link p [2005/07/29] docs/84273 keramida disktab(5) manual has bad SEE ALSO o [2005/07/29] bin/84298 [patch] allow mount(8) to recognize relat o [2005/07/29] ports/84299 knu A (possible) bug in ports/Mk/bsd.ruby.mk o [2005/07/29] kern/84311 multimedia [sound] 82801FB/FR/FW/FRW Intel High Defi o [2005/07/29] docs/84317 doc fdp-primer doesn't show class=USERNAME di o [2005/07/30] ports/84329 ports-bugs New port: x11-fonts/proggy_fonts a monosp o [2005/07/30] ports/84342 ports-bugs New port: security/klamav f [2005/07/31] ports/84369 thierry update x11-toolkits/iwidgets o [2005/07/31] ports/84376 ports-bugs [Update Port] x11-themes/kde-style-comix o [2005/07/31] kern/84386 Feature Request: PPPoA Authentication bui o [2005/07/31] docs/84408 doc dump(8) manpage doesn't require an option o [2005/07/31] docs/84409 doc vinum-object-naming.html -v/-U typo o [2005/08/01] ports/84465 tobez Update port: mail/p5-Mail-Box v2.042 => v o [2005/08/02] docs/84467 doc bsdlabel(8) manpage uses archaic "pack" i o [2005/08/02] kern/84471 multimedia [sound] [patch] no sound ICH4 (Analog Dev a [2005/08/02] ports/84489 portmgr Depreciated MACHINE_ARCH being used in bs o [2005/08/02] bin/84494 rpcbind TCP cannot be told to bind to a s o [2005/08/02] ports/84501 ports-bugs update lang/oo2c p [2005/08/03] kern/84503 Deadlock when filesystem is full o [2005/08/03] kern/84507 multimedia [sound] fm801: Not every card supports va s [2005/08/03] docs/84519 doc [patch] mdoc(7) manpage needs more about o [2005/08/03] bin/84520 whatis(1) program burps on /bin/[ o [2005/08/03] ports/84521 ports-bugs New port: sysutils/nctop o [2005/08/03] ports/84530 ports-bugs [New Port] net-mgmt/ourmon: Network Monit o [2005/08/04] docs/84538 doc sk(4) driver supports Marvell 88E800x chi o [2005/08/04] docs/84549 doc [patch] errno(2) manpage uses "<...>" for s [2005/08/04] docs/84550 doc mdoc(7) manpage erroneously requires SYNO o [2005/08/04] i386/84555 i386 boot2 unable to load kernel directly. f [2005/08/04] ports/84561 ports-bugs [new port] audio/xmms2 o [2005/08/05] bin/84569 rm -W sometime does not work o [2005/08/05] conf/84581 [patch] Teach config(8) to look for kerne o [2005/08/06] usb/84608 usb Sony digital camera DSC-P100, rev 2.00/5. o [2005/08/06] ports/84614 ports-bugs New port: java/eclipse-javasvn o [2005/08/06] docs/84620 doc [patch] xargs(1) manpage has "utility" an o [2005/08/06] ports/84625 ports-bugs New port: lang/twelf A meta-logical frame o [2005/08/07] bin/84634 fjoe [geom] [patch] new utility to control GEO o [2005/08/07] docs/84645 doc intro(6) manpage should always be install o [2005/08/07] docs/84646 doc terminfo(5) manpage confuses man program. o [2005/08/07] ports/84650 ale customizable pid filename for databases/m o [2005/08/07] amd64/84652 amd64 kbdmap -r dumps core f [2005/08/08] bin/84667 qa [sysinstall] annoying installation proble o [2005/08/08] docs/84670 doc [patch] tput(1) manpage missing ENVIRONME o [2005/08/08] misc/84674 Installer trying to install bad package t o [2005/08/09] ports/84701 tmclaugh [NEW PORT] audio/cowbell: elegant id3 edi o [2005/08/09] bin/84705 fdisk(8) program warning about sector num o [2005/08/09] ports/84709 ade Update port: devel/bison to version 2.0 o [2005/08/09] ports/84711 az rcNG script for net-mgmt/arpwatch f [2005/08/09] ports/84718 girgen [PATCH] databases/postgresql74-server: Ad o [2005/08/10] ports/84742 phantom make ports/java/jdk14 use dynamic Motif l o [2005/08/10] conf/84752 [patch] 100.clean-disks cleans file syste o [2005/08/10] kern/84761 shutdown() of non-connected socket should o [2005/08/10] docs/84764 doc [patch] hosts.equiv(5) manpage should SEE f [2005/08/10] ports/84775 sem new port: databases/kmysqladmin o [2005/08/11] docs/84790 doc Error in SYSCALL_MODULE(9) manual page o [2005/08/11] kern/84797 [libutil] [patch] State engine in the lib o [2005/08/11] conf/84800 obrien [patch] setting CPUTYPE=nocona on an Inte o [2005/08/11] docs/84806 doc mdoc(7) manpage has section ordering prob s [2005/08/11] ports/84819 barner [MAINTAINER] math/coq: enable on ia64 o [2005/08/11] kern/84823 [bpf] [patch] bpf in non-blocking mode is o [2005/08/12] misc/84833 netchild include make.conf NO_* targets into delet o [2005/08/12] docs/84849 doc [patch] fdisk(8) manpage doesn't warn fdi o [2005/08/12] ports/84853 danfe [New port] games/quake3 f [2005/08/13] ports/84869 ports-bugs New port: textproc/regex-coach f [2005/08/13] ports/84876 trevor [NEW PORT] print/acroread7-esp: The Acrob o [2005/08/13] ports/84886 hrs [NEW PORT] japanese/acroread7-jpn: The Ac o [2005/08/14] bin/84911 [patch] ndisgen(8) can't cope with .sys-f o [2005/08/14] docs/84913 doc bsdlabel(8) manpage seems wrong about fsi o [2005/08/14] kern/84920 math programs reporting incorrect values s [2005/08/14] ports/84921 ports-bugs [UPDATE] games/fargoal: update port and a o [2005/08/15] docs/84955 doc [patch] mdoc(7) manpage should mention mi o [2005/08/15] docs/84956 doc [patch] intro(5) manpage doesn't mention o [2005/08/15] kern/84957 fire_saver.ko causes high CPU usage by sw o [2005/08/15] docs/84961 doc [patch] Sync NDIS documentation with real o [2005/08/15] ports/84969 danfe Update port: x11/nvidia-driver (do not in f [2005/08/16] ports/84975 vs New Port: devel/uppaal o [2005/08/16] gnu/84976 System ncruses does not have wide charact o [2005/08/16] kern/84981 [headers] [patch] header protection for < o [2005/08/16] kern/84983 scottl [udf] [patch] udf filesystem: stat-ting f o [2005/08/16] ports/84986 obrien [port update] devel/gdb53 unbreak o [2005/08/16] bin/84992 gcc4.x cleanup of usr.bin/hexdump o [2005/08/16] bin/84993 kientzle gcc4.x cleanup of usr.bin/tar o [2005/08/16] bin/84994 gcc4.x cleanup of usr.bin/wc o [2005/08/16] ports/84999 hoek [patch] bug in the uulib-0.5.20 p [2005/08/16] docs/85008 keramida [patch] environ(7) manpage references bui f [2005/08/16] bin/85011 imp /sbin/restore on 5.4 will not read Solari o [2005/08/17] ports/85031 sobomax [NEW PORT] net/astfax o [2005/08/17] bin/85049 rbootd spams console o [2005/08/17] docs/85062 doc tr(1) manpage omits several character cla o [2005/08/17] docs/85063 doc expand(1) manpage needs to clarify -t opt o [2005/08/17] docs/85066 doc [patch] builtin(1) manpage has incomplete o [2005/08/18] usb/85067 usb Cannot attach ScanJet 4300C to usb device p [2005/08/18] docs/85079 keramida umodem(4) - add "ELSA MicroLink 56k USB" o [2005/08/18] standards/85080standards output of long double subnormals (with pr o [2005/08/18] kern/85086 [ef] [patch] Locking fixes for ef(4) (+re o [2005/08/18] misc/85087 send-pr should prefer to use HTTP, rather o [2005/08/18] standards/85090standards [patch] add memalign() and posix_memalign o [2005/08/18] docs/85097 doc [patch] devd.conf.5 lacks a lot of vital p [2005/08/18] standards/85099tjr POSIX violation in split(1) o [2005/08/18] docs/85100 doc ICH audio device support statement is amb o [2005/08/19] docs/85103 doc sh(1) manpage doesn't contain the word "c o [2005/08/19] kern/85106 The ICH7 smb interface is not recognised o [2005/08/19] docs/85118 doc [PATCH] opiekey(1) references non-existin o [2005/08/19] docs/85127 doc loader(8) manpage uses too-rare "depurati o [2005/08/19] docs/85128 doc loader.conf autoboot_delay incompletly de o [2005/08/19] ports/85132 x11 XOrg 6.8.2 won't start on Toshiba Satelli p [2005/08/20] docs/85142 simon ccdconfig manpage references outdated inf o [2005/08/20] conf/85143 grog [patch] fix usr.bin/calendar/calendars/de o [2005/08/20] amd64/85144 amd64 Asus K8S-MX mobo, integ LAN not recognize o [2005/08/20] ports/85151 kuriyama net-mgmt/net-snmp patch addition request o [2005/08/21] ports/85169 dd [patch] update editors/mg o [2005/08/21] kern/85175 emulation [linux] [patch] linux emulation layer wit p [2005/08/21] kern/85176 des [kernel] [patch] optimization of fdalloc o [2005/08/21] ports/85178 girgen Kerberos Support in libpq (Port: PostgreS p [2005/08/21] kern/85185 des [libfetch] [patch] Env Parser problem in o [2005/08/21] docs/85186 doc ktrace(1) manpage doesn't warn about need o [2005/08/21] docs/85187 doc find(1) manpage missing block info for -l o [2005/08/21] ports/85191 ports-bugs [PATCH] misc/linux-opengroupware o [2005/08/21] docs/85194 doc man ssh(1) -o description o [2005/08/22] kern/85203 [headers] [patch] add TH_PUSH to TH_FLAGS o [2005/08/22] bin/85204 [patch] add read-ahead to amd(8) for NFS o [2005/08/22] kern/85205 Minor information leak in jails - a user o [2005/08/22] docs/85209 doc pfsync man page corrections o [2005/08/22] docs/85232 doc [PATCH] instructions on building web site o [2005/08/23] i386/85242 i386 [libc] [patch] libc contains relocation t o [2005/08/23] docs/85243 doc Missing icmp related abbreviations for pf o [2005/08/23] i386/85246 i386 unable to install from CD on Asus PC-DL D a [2005/08/23] ports/85254 trevor [patch] emulators/linux_base-rh-9: add /u o [2005/08/23] kern/85257 [boot] BTX boot loader fails on USB CDROM o [2005/08/24] bin/85261 krion [patch] nanobsd build breaks on pkg_add p [2005/08/24] bin/85267 stefanf sh -e exits when command "false || return o [2005/08/24] i386/85273 i386 FreeBSD (NetBSD or OpenBSD) not install o f [2005/08/26] ports/85312 vs [MAINTAINER-UPDATE] Update ports/games/xs o [2005/08/26] ports/85327 ports-bugs [NEW PORT] games/gngeo - NeoGeo emulator o [2005/08/27] www/85333 www BSDTechTalk community with tutorials is n o [2005/08/27] docs/85353 doc Very little cosmetic/ponctuation changes o [2005/08/27] conf/85363 syntax error in /etc/rc.d/devfs o [2005/08/28] bin/85367 qa [sysinstall] [patch] fix package categori o [2005/08/28] i386/85417 i386 [i386] [patch] Possible bug in ia32 float o [2005/08/28] i386/85423 i386 [ex] ex(4) does not correctly recognize N o [2005/08/29] docs/85425 doc fido (watchdog) device /dev/fido not docu o [2005/08/29] ports/85429 ports-bugs New port: games/quake3 Quake III Arena -- o [2005/08/29] bin/85445 ifconfig(8): deprecated keyword to ifconf o [2005/08/29] bin/85449 dougb [patch] mergemaster(8) default for deleti o [2005/08/30] kern/85477 [xe] [patch] fix driver message in if_xe. o [2005/08/30] kern/85479 anholt [drm] [patch] Two small fixes for DRM/DRI a [2005/08/30] ports/85488 portmgr [PATCH] New "makepatch: " target to help o [2005/08/30] bin/85494 fsck_ffs: unchecked use of cg_inosused ma o [2005/08/30] misc/85497 pkill CVS module points to wrong location o [2005/08/30] ports/85498 kuriyama [UPDATE] textproc/jade, textproc/sp: add o [2005/08/30] bin/85502 dump prints negative time and gt 100% don o [2005/08/31] ports/85513 netchild Intel C++ compiler not 100% binary compat a [2005/08/31] ports/85519 sem [UPDATE] net/libnet & net/libnet-devel & o [2005/08/31] conf/85548 [patch] share/examples/etc/make.conf: del o [2005/09/02] amd64/85626 amd64 java/jdk15 compile error o [2005/09/02] ports/85642 obrien core dump in shells/bash2 (or maybe libre o [2005/09/02] kern/85648 [net] [patch] provide more specific defau o [2005/09/02] kern/85649 [msdosfs] [patch] allow mounting msdos fi o [2005/09/02] kern/85650 [libstand] [patch] modifications to tftp- o [2005/09/02] kern/85651 [kernel] [patch] debugging code to show e o [2005/09/02] i386/85652 i386 [loader] [patch] deal with out-of-memory o [2005/09/02] i386/85653 i386 [i386] [patch] relieve hangs in tight loo o [2005/09/02] i386/85654 i386 [i386] [patch] separate max cpu from max o [2005/09/02] i386/85655 i386 [i386] [patch] expose cpu info for i386 s o [2005/09/02] i386/85656 i386 [i386] [patch] expose more i386 specific o [2005/09/02] kern/85657 [kernel] [patch] capture and expose per-C o [2005/09/02] kern/85658 jeff [sched_ule] [patch] add DDB command, show a [2005/09/02] ports/85669 portmgr bsd.ports.subdir.mk: Ports not escape plu o [2005/09/02] ports/85672 lawrance [MAINTAINER REQUEST] games/duke3d is outd a [2005/09/03] ports/85695 portmgr Add bsd.database.mk. o [2005/09/04] ports/85704 portmgr Add WITH_GL user variable to bsd.port.mk o [2005/09/04] ports/85707 nork port www/linuxpluginwrapper makes mozilla o [2005/09/04] bin/85712 uncompress(1) program emits bogus "overwr f [2005/09/05] www/85724 remko Please add our company to your list of se o [2005/09/05] ports/85731 clsung New ports: textproc/openvanilla-framework o [2005/09/05] docs/85733 remko FAQ should point to /boot/loader.conf for o [2005/09/05] ports/85746 kris [patch] Tools/portbuild/scripts/buildscri o [2005/09/06] kern/85780 'panic: bogus refcnt 0' in routing/ipv6 o [2005/09/06] ports/85788 roam [PATCH] mail/vpopmail: Add sgid to vchkpw o [2005/09/06] kern/85792 53c1030 is detected, but doesn't work pro o [2005/09/06] amd64/85812 amd64 "Rebooting..." on serial console appears o [2005/09/07] conf/85819 [patch] script allowing multiuser mode in o [2005/09/07] amd64/85820 amd64 1.5 times slower performance with SCHED_U o [2005/09/07] gnu/85824 obrien gas crashes when assembling this file p [2005/09/07] ports/85827 trevor [patch] print/acroread7: prefix changes f o [2005/09/07] ports/85841 cjh Update port: print/cjk-lyx Update to 1.3. o [2005/09/07] i386/85851 i386 system hangs on during booting the machin o [2005/09/08] ports/85872 ale [PATCH] www/eaccelerator: security issue o [2005/09/08] kern/85886 [an] an0: timeouts with Cisco 350 minipci o [2005/09/09] gnu/85895 [PATCH] cc -print-search-dirs returns (nu o [2005/09/09] kern/85902 strange sysctl output o [2005/09/11] kern/85964 multimedia [sound] Can't play 24 bit audio (Audigy 2 o [2005/09/11] kern/85971 jeff [uma] [patch] minor optimization to uma o [2005/09/11] bin/85977 mount_smbfs needs port parameter o [2005/09/11] ports/85979 simokawa [patch]: Unregistered conflict between mu o [2005/09/11] ports/85985 ports-bugs [NEW PORT] mail/couriergraph: A RRDtool f o [2005/09/11] docs/85986 doc FreeBSD keyword missing if you display se o [2005/09/11] ports/85988 ale print/pdflib can't build o [2005/09/11] usb/85992 usb [uhid] [patch] USB stops working when try o [2005/09/12] ports/85997 phantom java/jdk15 1.5.0p1_3 causes keyboard prob o [2005/09/12] kern/86003 Startup reports "failed to attach P_CNT" o [2005/09/12] docs/86028 doc [patch] Add Ruby to the list of interpret o [2005/09/13] docs/86044 doc man 8 jail missing crucial mount in start o [2005/09/13] kern/86049 laptop fan does not turn off if it is "on o [2005/09/13] i386/86068 i386 Fatal trap 12,while running pim6sd o [2005/09/13] docs/86090 doc [PATCH] clarification of rc.conf(5) manua o [2005/09/13] usb/86094 usb [uscanner] [patch] Support for Epson 2480 o [2005/09/14] ports/86098 ports-bugs [PATCH] devel/pear-PEAR/Makefile.common: s [2005/09/14] ports/86106 portmgr ${CC} should be added to ${MAKE_ENV} when o [2005/09/14] kern/86124 [em] dell 1850 pro/1000 slow (em problem? o [2005/09/14] kern/86131 [cam] [patch] quirk for Creative MuVo sli o [2005/09/14] docs/86134 blackend [patch] fix inconsistency in handbook sec f [2005/09/15] ports/86142 vs Update www/mod_proxy_html to version 2.5. o [2005/09/15] ports/86145 ade devel/m4 should not build its own getopt o [2005/09/15] bin/86148 [patch] dirname(1) doesn't take multiple o [2005/09/15] ports/86156 anders [update] security/vpnd to 1.1.2 o [2005/09/15] ports/86168 danfe [UPDATE] games/frikqcc: integrate with "g o [2005/09/15] ports/86170 danfe [UPDATE] games/fuhquake: minor changes, i o [2005/09/15] ports/86171 danfe [UPDATE] games/meqcc: integrate with "gam o [2005/09/15] ports/86172 danfe [UPDATE] games/qcc: integrate with "games o [2005/09/15] ports/86173 danfe [UPDATE] games/qccx: integrate with "game o [2005/09/15] ports/86175 ports-bugs [UPDATE] games/quakeforge: minor changes, f [2005/09/15] ports/86176 ports-bugs [UPDATE] games/tenebrae: integrate with " o [2005/09/15] ports/86186 pat [UPDATE] games/q3server: integrate with " o [2005/09/15] ports/86187 pat [UPDATE] games/q3server-excessive: integr o [2005/09/15] ports/86188 pat [UPDATE] games/q3server-freezetag: integr o [2005/09/15] ports/86189 pat [UPDATE] games/q3server-osp: integrate wi o [2005/09/15] ports/86190 pat [UPDATE] games/q3server-ra3: integrate wi o [2005/09/15] ports/86191 pat [UPDATE] games/q3server-ut: integrate wit o [2005/09/15] ports/86192 pat [UPDATE] games/q3server-wfa: integrate wi o [2005/09/16] usb/86195 usb [patch] allow USB Ethernet Adaptor "ELECO o [2005/09/16] ports/86206 openoffice editors/openoffice.org-2.0: Unable to bui o [2005/09/16] ports/86209 anders Updates port to dmidecode-2.7 f [2005/09/16] ports/86214 pav update port: deskutils/alexandria 0.5.0 - o [2005/09/16] ia64/86218 ia64 Mozilla / Firefox: regxpcom or regchrome p [2005/09/16] docs/86228 keramida typos in man4 manual pages, fe.4. p [2005/09/16] docs/86234 keramida Need to explain * in master.passwd in pas o [2005/09/17] ports/86242 ade repocopy devel/bison1875 -> devel/bison20 o [2005/09/17] conf/86252 [PATCH] /etc/rc.d/sendmail wants to build o [2005/09/17] ports/86281 portmgr Additional commentary for describes targe o [2005/09/18] ports/86283 perky devel/newt build WITH_PYTHON fails on amd o [2005/09/18] kern/86290 jeff minor optimizations + cleanup to vrele us o [2005/09/18] usb/86298 usb Known good USB mouse won't work with corr o [2005/09/18] ports/86309 ade Mk/bsd.autotools.mk: split run-autotools: o [2005/09/19] kern/86319 [nfs] [feature request] support a "noac" o [2005/09/19] ports/86334 pat x11-clocks/wmclockmon :: bug in internet o [2005/09/19] kern/86336 rwatson LOR in kern/uipc_usrreq.c and kern/kern_d o [2005/09/19] docs/86342 doc bikeshed entry of Handbook is wrong f [2005/09/20] ports/86357 pav Modify port: www/skytemplate o [2005/09/20] ports/86384 mnag openssh-portable GSSAPI key-exchange patc o [2005/09/20] ports/86385 bms sysutils/aaccli has wrong pkg-descr o [2005/09/21] bin/86388 [patch] periodic(8) daily should backup b o [2005/09/21] ports/86394 ports-bugs [NEW PORT] graphics/crystalspace: Crystal f [2005/09/21] ports/86401 barner new ports multimedia/zapping o [2005/09/21] bin/86405 /usr/bin/more segmentation fault o [2005/09/21] misc/86412 can not link shared libs to libstdc++ and o [2005/09/21] kern/86429 [if_tap] [patch] if_tap doesn't filter fr o [2005/09/21] usb/86438 usb Fix for non-working iPod over USB is in N o [2005/09/22] ports/86439 barner [NEW PORT] games/doom-data - Doom data fi f [2005/09/22] ports/86440 barner [UPDATE] games/deng: integrate with "doom o [2005/09/22] ports/86441 barner [NEW PORT] games/doom-hacx - A full TC us o [2005/09/22] ports/86442 barner [NEW PORT] games/doom-hr - Hell Revealed o [2005/09/22] ports/86443 barner [NEW PORT] games/doom-hr2 - Hell Revealed o [2005/09/22] ports/86444 barner [NEW PORT] games/doom-wolfendoom - Wolfen o [2005/09/22] ports/86445 jmz [UPDATE] games/doom: integrate with "doom f [2005/09/22] ports/86446 barner [UPDATE] games/doomlegacy: integrate with f [2005/09/22] ports/86447 barner [UPDATE] games/prboom: integrate with "do f [2005/09/22] ports/86448 barner [UPDATE] games/vavoom: integrate with "do s [2005/09/22] ports/86451 vsevolod Update port: www/plone (upgrade to the la o [2005/09/22] kern/86453 kientzle [patch] libarchive memory leak with bad f o [2005/09/22] bin/86454 qa [sysinstall] sysinstall terminates with s o [2005/09/22] ports/86459 bms Update net-mgmt/snmptt to 1.0 f [2005/09/22] ports/86461 pav [NEW PORT] textproc/sdcv: A text-based ut o [2005/09/22] ports/86462 ports-bugs [NEW PORT] chinese/sdcv-dict-zh_TW: Engli o [2005/09/22] ports/86465 mnag add MIT kerberos option to mail/postfix o [2005/09/22] ports/86475 ports-bugs New Ports: devel/sfslite-noopt and devel/ f [2005/09/23] standards/86484rwatson [PATCH] mkfifo(1) uses wrong permissions o [2005/09/23] bin/86485 [PATCH] hexdump -s speedup on /dev f [2005/09/23] ports/86486 vs Update devel/tclreadline port for newer v f [2005/09/23] ports/86491 arved Kaffeine fails to compile o [2005/09/23] ports/86512 gerald [new port] lang/gcc401 o [2005/09/24] ports/86521 nectar [PATCH] japanese/ja-im-ja: [fix build on o [2005/09/24] kern/86536 multimedia [sound] /dev/mixer has no devices (still) o [2005/09/25] ports/86543 hrs [New Port] devel/plan9port o [2005/09/25] kern/86557 multimedia [sound] Sound Card Volume isn't adjustabl f [2005/09/25] i386/86563 i386 System doesn't reboot on "shutdown -r now o [2005/09/26] ports/86572 kuriyama net-snmp doesn't know how to fill in hrSW o [2005/09/26] ports/86580 ale [new] databases/php5-oci8: Oracle OCI8 sh o [2005/09/26] bin/86587 rm -r /PATH fails with lots of small file o [2005/09/26] ports/86594 markp [update] sysutils/ndir 0.8.8 o [2005/09/26] bin/86600 qa [sysinstall] Sysinstall boot manager scre o [2005/09/26] ports/86601 anders [NEW PORT] www/thttpd-st: Tiny/turbo/thro o [2005/09/26] ports/86602 ale [NEW PORT] irc/php4-ircg: The ircg (IRC g o [2005/09/26] ports/86608 ale lang/php5: Enhancement to allow dynamic o p [2005/09/27] kern/86618 jhb [nge] [panic] panic with ifconfig nge o [2005/09/27] ports/86625 girgen Repo copy of postgresql80-server -> postg p [2005/09/27] gnu/86627 brooks src/contrib/bc / option -h / contains typ o [2005/09/27] ports/86634 ports-bugs New port: net-mgmt/torrus The Data Series o [2005/09/27] bin/86635 [patch] pfctl: allow new page character ( o [2005/09/27] bin/86647 natd(8) copy to limied buffer size withou o [2005/09/27] docs/86650 remko [patch] correct various issues in the han o [2005/09/27] kern/86655 [msdosfs] [patch] msdosfs incorrectly han o [2005/09/28] kern/86657 [kbd] [patch] change to USB keyboard opti o [2005/09/28] bin/86665 qa [sysinstall] sysinstall binary upgrade cl f [2005/09/28] i386/86666 kernel trap 18 with interrupts disabled o [2005/09/28] conf/86668 gshapiro sendmail rc.d sequence wrong o [2005/09/28] ports/86671 x11 xorg does not recognize newer ATI chipset f [2005/09/28] ports/86684 thierry [PATCH] pear-PEAR/Makefile.common trimmin o [2005/09/29] kern/86693 [nis] [patch] inconsistency between getus o [2005/09/29] bin/86710 [patch] update bin/ls to have option to c o [2005/09/29] ports/86715 ports-bugs drupal missing dependency o [2005/09/29] docs/86733 doc [patch] Add using kldload as an alternati o [2005/09/30] ports/86741 nork NULL pointer dereference in graphics/xpdf o [2005/09/30] bin/86742 kientzle [libarchive] [patch] Add archive_open_ to a [2005/09/30] kern/86752 mlaier pf does not use default timeouts when rel a [2005/09/30] conf/86759 ssh(1): unable to initialise sftp with ss o [2005/09/30] bin/86765 bsdlabel assing wrong fs type. o [2005/09/30] ports/86766 ehaupt [NEW PORT] games/ksudoku: 2D/3D Sudoku ga o [2005/10/01] ports/86776 portmgr [patch] bsd.port.mk - fetch-list doesn't o [2005/10/01] ports/86785 scrappy patch: converters/p5-Convert-ASN1 - updat o [2005/10/01] ports/86794 mat update: devel/p5-DateTime-Event-ICal - up o [2005/10/01] java/86804 java [PATCH] Install a desktop icon for the ja o [2005/10/01] i386/86820 i386 ISO Install Disk hangs after acd0: o [2005/10/02] ports/86838 sobomax Spelling error on misc/zaptel/pkg-message o [2005/10/02] ports/86839 mnag Update port: sysutils/pcfclock revised to o [2005/10/02] ports/86843 ports-bugs [NEW PORT] graphics/crystalentitylayer: C f [2005/10/03] ports/86852 pav update cvs2svn to version 1.3.0 o [2005/10/03] bin/86859 qa [sysinstall] Installer should ask about L o [2005/10/03] kern/86871 allocation logic for PCBs in TIME_WAIT st o [2005/10/03] bin/86873 file(1) does not recognize 5.x filesystem o [2005/10/03] docs/86876 doc Opera is now ad-free for everybody, refle f [2005/10/04] ports/86899 ahze multimedia/mjpegtools - lavplay/glav clai o [2005/10/05] bin/86940 des src/usr.bin/fetch - fix mirror mode (-m) f [2005/10/05] ports/86947 tobez ports:pari update (2.1.6 -> 2.1.7) o [2005/10/05] kern/86957 ipfw [ipfw] [patch] ipfw mac logging o [2005/10/06] kern/86965 [ntfs] NTFS driver returns incorrect 'num o [2005/10/06] kern/86966 LG GCC-4242N CD-RW write failure o [2005/10/06] conf/86973 Daily periodic mail rejects out of contro o [2005/10/06] ports/86997 ports-bugs New port: games/oolite - clone of Elite s o [2005/10/07] bin/87022 telnet hang in ptcout o [2005/10/07] www/87025 www Website inconsistency: missing platforms o [2005/10/07] kern/87032 ipfw [ipfw] [patch] ipfw ioctl interface imple f [2005/10/07] ports/87037 tobez [MAINTAINER] www/p5-W3C-LogValidator: upd o [2005/10/07] kern/87074 mlaier pf does not log dropped packets when max- s [2005/10/07] ports/87092 obrien [UPDATE] editors/vim: notify the user abo o [2005/10/07] www/87093 bugmeister reporting bugs - filter some by adding li o [2005/10/08] www/87119 hrs [patch] encode copyright and such symboli o [2005/10/08] ports/87120 lev [PATCH] Add libiconv support to devel/min o [2005/10/08] ports/87128 ports-bugs New port: activeheart: nice KDE Window de o [2005/10/08] ports/87133 ports-bugs New port databases/p5-DBIx-DWIW A DBI wra o [2005/10/09] www/87144 www New site has "Submit Bug" link under "Sec o [2005/10/09] ports/87151 nobutaka Update port: editors/emacs Fix package bu o [2005/10/09] www/87152 www Missing Link o [2005/10/09] www/87153 www Missing Links in Table www/german o [2005/10/09] ports/87160 x11 [UPDATE] xorg-server: nv GeForce screento o [2005/10/09] ports/87180 ports-bugs [UPDATE] games/quake2forge: integrate wit o [2005/10/09] ports/87181 danfe [UPDATE] games/quake2lnx: integrate with o [2005/10/10] docs/87186 doc Handbook recommends outdated make op. f [2005/10/10] ports/87187 dougb Window Maker Preferences Program (WPrefs. o [2005/10/10] conf/87196 human readable disk free in daily output o [2005/10/10] ports/87204 tjr [UPDATE PATCH] net/coda6_server & depende o [2005/10/10] i386/87208 i386 /dev/cuad[0/1] bad file descriptor error o [2005/10/10] ports/87214 portmgr Fix warning issued during make index o [2005/10/10] i386/87222 i386 The moving cursor of the mouse at a login o [2005/10/10] usb/87224 usb Cannot mount USB Zip750 o [2005/10/10] bin/87230 [PATCH] -G is ignored when adduser get ac o [2005/10/11] ports/87234 portmgr [patch] bsd.port.mk: add patch-dos2unix t o [2005/10/11] ports/87240 edwin [REPOCOPY] games/kxl -> devel/kxl o [2005/10/11] ports/87245 nork DarwinStreamingServer port fails on amd64 o [2005/10/11] ports/87270 billf [PATCH] irc/bnc: update to 2.9.4 f [2005/10/11] ports/87275 sem [maintainer-update] new version of math/j o [2005/10/11] ports/87295 billf [PATCH] irc/bnc: update to 2.9.4 p [2005/10/12] docs/87302 delphij [PATCH] Mention the fact that hptmv(4) wo a [2005/10/12] ports/87312 obrien Update misc/figlet to 2.2.2 o [2005/10/12] ports/87318 portmgr [patch] bsd.port.mk - add support for PER f [2005/10/12] ports/87329 ports-bugs Can't find mathlib when installing lang/m o [2005/10/12] ports/87332 sem [UPDATE] lang/ruby: Update to 1.8.3; taki o [2005/10/12] ports/87337 ports-bugs [NEW PORT] devel/SPE: Stani's Python Edit o [2005/10/12] ports/87340 ports-bugs New port: games/tmw A free open source 2D o [2005/10/12] kern/87350 Reproducible 6.0-RC1 kernel panic p [2005/10/13] docs/87351 keramida Jail building instructions don't work as o [2005/10/13] bin/87352 [PATCH] Add line edit and history support o [2005/10/13] i386/87359 i386 /usr/src/crypto/openssh does not honour N o [2005/10/13] ports/87365 sem [PATCH] devel/ruby18-freebase: [repocopy o [2005/10/13] ports/87366 sem [PATCH] devel/ruby18-freeride: [Fix fetch o [2005/10/13] ports/87372 ports-bugs www/phpbb: phpBB broken due to passing fu o [2005/10/13] usb/87395 usb [uscanner] [patch] Adding support for Can o [2005/10/13] ports/87396 portmgr Fix bsd.port.mk variable quoting issues f [2005/10/13] ports/87416 ports-bugs [PATCH] adapt lang/sbcl to PREFIX other t o [2005/10/14] ports/87420 portmgr Update Mk/bsd.port.mk implementing WITH_O o [2005/10/14] docs/87445 trhodes comments for improvement of handbook/kern p [2005/10/14] kern/87455 csjp bsnmp doesn't show correct status for ifO o [2005/10/14] ports/87468 nobutaka The editors/emacs port is outdated o [2005/10/16] i386/87507 i386 installation of 6.0 RC1 failed to create o [2005/10/16] ports/87508 anders option request for mail/imap-uw o [2005/10/16] ports/87511 markp [patch] Update graphics/ppmcaption to 1.1 o [2005/10/16] kern/87515 Splash screen fails to load on boot o [2005/10/16] ports/87522 ports-bugs [NEW PORT] www/joomla: Content Management o [2005/10/16] ports/87528 x11 Missing koi8-r encoding for xorg-fonts-en o [2005/10/16] bin/87529 "pw lock", "pw unlock" should support the o [2005/10/16] ports/87542 lioux bug in limiting upload traffic in net/py- o [2005/10/17] java/87552 java Enable multi-job builds for CPP files in o [2005/10/17] ports/87553 ports-bugs New Port: www/tablix Free software for so f [2005/10/17] ports/87562 ume cyrus-sasl2 make package fails o [2005/10/17] ports/87571 phantom java/jdk15: Port-Installation Java 1.5 Fr o [2005/10/17] ports/87581 ports-bugs [NEW PORT] security/jailaudit: Generate p o [2005/10/18] ports/87605 portmgr [patch] bsd.port.mk - add NOFETCHFILES va o [2005/10/18] kern/87615 Linux binaries need execution of shared l o [2005/10/18] ports/87625 sobomax Update port: misc/zaptel update to 0.11 f [2005/10/18] ports/87640 ehaupt Update port: sysutils/file update to 4.16 o [2005/10/18] ports/87642 portmgr Contrary to ports(7) there is no target " o [2005/10/19] ports/87644 kuriyama retire devel/p5-Test-Builder-Tester o [2005/10/19] usb/87648 usb [mouse] Logitech USB-optical mouse proble o [2005/10/19] ports/87649 kuriyama Update port: devel/rapidsvn (teach about o [2005/10/19] bin/87651 [patch] fsck(8) (on superblock error) tel o [2005/10/19] kern/87653 DRM: ATI Radeon Mobile X600SE not detecte f [2005/10/19] www/87656 remko BSD Usenet News Searcher does not work f [2005/10/19] ports/87678 ports-bugs Update port: comms/tlf update to 0.9.23 o [2005/10/19] docs/87681 doc [PATCH] correct gettimeofday manpage, doc f [2005/10/19] ports/87694 ports-bugs www/lynx: Add support for the application o [2005/10/20] docs/87698 doc No manual entry for rc.conf.local o [2005/10/20] ports/87699 ports-bugs [NEW PORT] editors/gobby - a collaborativ f [2005/10/20] ports/87703 ports-bugs [PATCH] finance/gnucash: update to 1.8.12 o [2005/10/20] ports/87709 mharo update converters/p5-Convert-PEM o [2005/10/20] ports/87711 mharo update p5-Crypt-DSA o [2005/10/20] ports/87712 mharo update security/p5-Crypt-Random o [2005/10/20] ports/87716 perl update net/p5-Net-SSH-Perl o [2005/10/20] bin/87724 cal(1)/ncal(1) not multibyte aware o [2005/10/20] docs/87725 doc error in documentation o [2005/10/20] bin/87726 gssapi.h is not c++ aware o [2005/10/20] bin/87728 mozilla: libnegotiateauth.so broken f [2005/10/20] ports/87731 thierry /usr/local/lib/php/20020429/domxml.so ref o [2005/10/20] ports/87745 emulation [patch] x11-toolkits/linux-openmotif: add o [2005/10/20] ports/87751 trevor replace master for lcsrc.zip o [2005/10/20] ports/87759 ports-bugs New Port: security/tor-devel o [2005/10/20] docs/87762 doc Fixes various anoncvs examples to work o [2005/10/21] ports/87764 ports-bugs [New port] games/quake4 o [2005/10/21] ports/87773 apache duplicate INDEX entry: www/mod_rpaf* o [2005/10/21] ports/87777 kwm gstreamer-properties dies with "undefined o [2005/10/21] ports/87779 mat Update devel/p5-DateTime-Set to 0.25. o [2005/10/21] ports/87780 mat Update www/p5-CGI-Minimal to 1.24 o [2005/10/21] kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: re p [2005/10/21] bin/87783 mlaier [patch] netstat: "pfkey" support is not c o [2005/10/21] ports/87808 markp Update port: archivers/xdms update MASTER o [2005/10/21] ports/87812 pat Deprecated port: astro/gkrellmearth o [2005/10/21] ports/87813 will Update port: astro/wmglobe update MASTER_ o [2005/10/21] ports/87814 kris Deprecated port: astro/xglobe o [2005/10/22] kern/87836 If using ATAPICAM with cd(dvd)rw without o [2005/10/22] ports/87840 portmgr bsd.port.subdir.mk improving(make search) o [2005/10/22] bin/87841 fetch should have options to set http "if f [2005/10/22] bin/87843 FreeBSD specific gcc compiler error o [2005/10/22] kern/87845 [sio] [patch] sio(4) should on probe retu o [2005/10/22] ports/87847 ports-bugs [patch] add Tahoma TTF fonts to x11-fonts o [2005/10/22] ports/87848 jdp duplicate LATEST_LINK for net/cvsup[-with f [2005/10/22] ports/87853 ports-bugs [fix] multimedia/mplayer: no bsdbt848 dri o [2005/10/23] docs/87857 doc ifconfig(8) wireless options order matter o [2005/10/23] ports/87858 ports-bugs New port: www/squid_radius_auth o [2005/10/23] ports/87860 ports-bugs New Port: mail/squirrelmail-vlogin-plugin o [2005/10/23] ports/87873 trevor www/linux-mozilla works well with amd64 o [2005/10/23] ports/87880 ports-bugs New port: irc/irssi-dcc_send_limiter [Irs f [2005/10/23] ports/87881 az Update port: sysutils/am-utils to 6.1.3 o [2005/10/23] amd64/87882 amd64 emu10k1 and APCI on amd64 is just noisy o [2005/10/23] ports/87883 ports-bugs New port: kde-icons-CrystalClear o [2005/10/23] ports/87886 cy x11-wm/fvwm2-devel: fvwm-2.5.14 FvwmProxy o [2005/10/23] ports/87888 cy security/krb5: krb5-1.4.1_1 does not buil o [2005/10/24] conf/87895 defaults/make.conf incorrect advice about f [2005/10/24] ports/87899 ports-bugs [PATCH] deskutils/xpad: update to 2.10 o [2005/10/24] kern/87906 [nullfs] [patch] nullfs NFS exporting o [2005/10/24] conf/87914 Adduser, uuid not used from adduser.conf f [2005/10/24] ports/87916 ehaupt [MAINTAINER] math/asymptote: update to 0. a [2005/10/24] ports/87920 vs [MAINTAINER] editors/winefish: mark as BR o [2005/10/24] conf/87925 [patch] feature request: modify output of o [2005/10/24] ports/87929 trevor Deprecated port: audio/mutemix o [2005/10/24] ports/87931 petef Update port: audio/napster update WWW on o [2005/10/24] docs/87936 doc Chapter on NIS/YP lacks good information o [2005/10/24] ports/87939 trevor Update port: audio/spiralloops update MAS o [2005/10/24] ports/87940 trevor Update port: audio/spiralsynth update MAS f [2005/10/24] ports/87941 ports-bugs Update port: audio/teknap remove WWW on p f [2005/10/24] ports/87951 ports-bugs Update port: audio/xmms-cdparanoia update f [2005/10/24] ports/87952 ports-bugs Update port: audio/xmms-midi remove WWW o f [2005/10/24] ports/87953 ports-bugs Update port: audio/xmms-speex remove WWW o [2005/10/24] ports/87956 ade PATCH: devel/gettext: silently depends on o [2005/10/24] ports/87958 ports-bugs Fix and improve games/uqm o [2005/10/24] ports/87961 ports-bugs [maintainer] x11-toolkits/py-kde: update o [2005/10/25] bin/87966 [PATCH] introduce -A flag for newfs to en o [2005/10/25] i386/87968 i386 [fdc] cannot access the floppy device f [2005/10/25] ports/87973 jylefort New port: www/django, the web framework f o [2005/10/25] bin/87981 darrenr [patch] ipmon(8) writes pid file even whe o [2005/10/25] ports/87982 wollman Update www/p5-HTML-Element-Extended to 1. f [2005/10/25] ports/87984 ports-bugs net/samba3 registers phantom dependencies o [2005/10/25] ports/87987 billf Update port: benchmarks/nttcp update MAST o [2005/10/25] ports/87988 grog Update port: benchmarks/rawio update MAST f [2005/10/25] ports/87989 ports-bugs Deprecated port: benchmarks/xengine o [2005/10/25] kern/87990 [kernel] [patch] SMP Race Condition in kd f [2005/10/25] ports/88000 ports-bugs Deprecated port: biology/L-Breeder f [2005/10/25] ports/88002 ports-bugs Deprecated port: biology/chemeq f [2005/10/25] ports/88003 ports-bugs Deprecated port: biology/deft f [2005/10/25] ports/88007 ports-bugs Update port: biology/paml update to 3.14b o [2005/10/25] ports/88009 grog Update port: cad/sceptre update MASTER_SI o [2005/10/26] ports/88012 ports-bugs Update Port: sysutils/ezjail f [2005/10/26] ports/88014 barner Patch for devel/boost port to (optionally p [2005/10/26] docs/88015 keramida typo in top(1) manual page o [2005/10/26] i386/88020 i386 cannot boot unless: hint.apic.0.disabled= f [2005/10/26] ports/88029 ports-bugs portsdb -Uu fails when you have WITH_BDB_ o [2005/10/26] ports/88032 okazaki PATCH: converters/mule-ucs: coding catego f [2005/10/26] ports/88046 ports-bugs Update port: comms/bforce remove WWW on p o [2005/10/26] ports/88048 glewis java/javavmwrapper: can't set $PORTDIRS t f [2005/10/26] ports/88051 ports-bugs Update port: deskutils/phprojekt s [2005/10/26] bin/88056 feature request: cp(1) could really use L f [2005/10/26] ports/88060 ports-bugs Update port: comms/mwavem update MASTER_S f [2005/10/26] ports/88064 ports-bugs Deprecated port: comms/vpb2 o [2005/10/27] bin/88077 w(1): w -n problems with IPv6 addresses a o [2005/10/27] ports/88083 ports-bugs [new port] www/session2: Persistent Sessi o [2005/10/27] www/88084 www fortune not found in online man pages o [2005/10/27] ports/88093 jedgar Update port: databases/dbf2mysql f [2005/10/27] ports/88095 ports-bugs Deprecated port: comms/qtpcr o [2005/10/27] ports/88101 seanc Update port: databases/postgresql-devel f o [2005/10/27] ports/88102 jedgar Update port: databases/pxtools update WWW o [2005/10/27] ports/88111 knu Update port: databases/ruby-memcache upda o [2005/10/28] kern/88117 [rtld] [patch] support of $ORIGIN in rtld o [2005/10/28] bin/88119 [patch] partial matching for ifconfig(8) o [2005/10/28] ports/88128 ports-bugs [maintainer] New port (1st of 3) to event f [2005/10/28] ports/88129 arved [maintainer] Update textproc/py-4suite: m o [2005/10/28] ports/88135 ports-bugs Deprecated port: deskutils/gdesklets-ltva o [2005/10/28] ports/88136 ports-bugs Deprecated port: deskutils/gdesklets-psi_ o [2005/10/28] ports/88137 ports-bugs Deprecated port: deskutils/gdesklets-sens o [2005/10/28] ports/88138 ports-bugs Deprecated port: deskutils/gdesklets-sens f [2005/10/28] ports/88142 ports-bugs Update port: deskutils/offix-trash fix ty o [2005/10/28] kern/88150 des [pam] PAM does not search /usr/local/lib o [2005/10/28] ports/88157 danfe Update port: devel/asmutils fix WWW on pk p [2005/10/28] bin/88159 brooks ifconfig(8) coredumps when string is too f [2005/10/29] ports/88165 ports-bugs Update lang/sbcl to 0.9.6 o [2005/10/29] ports/88166 skv add postgresql dependency to devel/bugzil o [2005/10/29] ports/88176 lioux Update port: net/xmule to version 1.12.0 f [2005/10/29] ports/88177 ports-bugs Update port: irc/thales o [2005/10/29] kern/88182 [ural] wep is broken in ural(4) hostap mo o [2005/10/29] ports/88184 ports-bugs [new port] graphics/libx3dtk, portable C+ o [2005/10/29] bin/88201 [PATCH]: arp(8): usr.sbin/arp/arp.c: Poss p [2005/10/29] bin/88203 csjp [patch] fstat(1) does not show correct de f [2005/10/30] ports/88220 ports-bugs maintainer-update: print/ft2demos o [2005/10/30] ports/88221 scrappy Update converters/p5-Convert-ASN1 to 0.19 o [2005/10/30] conf/88222 [patch] wrong date format in sv_SE.UTF-8 o [2005/10/30] ports/88230 portmgr Please add a new virtual category for Ama o [2005/10/30] ports/88232 trevor Update devel/p5-Class-MethodMaker to 2.07 f [2005/10/30] ports/88239 jylefort New port: net/openser - Very fast and fl o [2005/10/30] ports/88246 gerald gcc-3.4.5 port does not compile on FreeBS o [2005/10/30] ports/88247 sem [Maintainer Update] sysutils/kdar: Update o [2005/10/30] bin/88252 units(1) table errors/omissions for troy f [2005/10/30] ports/88254 ports-bugs update devel/distcc f [2005/10/30] ports/88256 ports-bugs [New port] math/LabPlot: add LabPlot (Dat f [2005/10/31] ports/88259 ports-bugs [patch] Update devel/kscope to 1.3.1 o [2005/10/31] ports/88260 lawrance Update port: net/poptop Update version 1. f [2005/10/31] ports/88261 lawrance update www/xist to 2.12 o [2005/10/31] www/88263 fenner http://docs.freebsd.org/cgi/mid.cgi outpu o [2005/10/31] ports/88269 ports-bugs new port net/smb4k - SMB/CIFS network bro o [2005/10/31] kern/88271 [pf] [patch] pf.ko from buildkernel can't f [2005/10/31] ports/88277 ports-bugs [maintainer update] mail/dbmail: synch 2. o [2005/10/31] ports/88285 billf Update port: devel/clig fix WWW on pkg-de o [2005/10/31] ports/88287 petef Deprecated port: devel/cvspadm o [2005/10/31] ports/88288 knu Update port: devel/darts update MASTER_SI o [2005/10/31] ports/88290 perky Deprecated port: devel/decompyle f [2005/10/31] ports/88291 ports-bugs [update] devel/smc: UNBREAK port (size mi f [2005/10/31] ports/88292 pav Deprecated port: devel/directfb o [2005/11/01] ports/88306 ports-bugs [NEW PORT] games/glest: Free 3d real-time o [2005/11/01] i386/88315 i386 Symbios/LSI-HBA-troubles (SYM83C895) and o [2005/11/01] ports/88316 obrien [PATH] add extra tarballs to vim and patc o [2005/11/01] ports/88318 sem missing support for FreeBSD -current in s o [2005/11/01] i386/88320 i386 ypxfr talks IPv6 to IPv4-only portmap -> o [2005/11/01] ports/88332 ports-bugs Update port: devel/flyspray -> 0.9.8 o [2005/11/01] kern/88336 [kernel] [patch] setkey(8) -D fails to re o [2005/11/01] ports/88351 ports-bugs New port: shells/ibsh o [2005/11/01] ports/88353 ports-bugs New port: print/latexdiff Determine and m o [2005/11/01] ports/88354 ports-bugs New port: security/sud f [2005/11/01] ports/88356 ports-bugs update sysutils/bacula-server to 1.38.0 f [2005/11/01] ports/88358 ports-bugs Update port: devel/gauche-sdl fix MASTER_ o [2005/11/01] ports/88363 markp Update port: devel/gengameng update MASTE o [2005/11/01] bin/88365 [patch] rm(1): "/bin/rm -P" cannot remove f [2005/11/01] ports/88369 ports-bugs Update port: devel/libdict update to 0.2. o [2005/11/01] ports/88372 ports-bugs New port: sysutils/BackupPC High performa o [2005/11/02] conf/88383 [PATCH]: etc/rc.d/ldconfig:does not prope o [2005/11/02] www/88385 remko Internet Service Providers o [2005/11/02] docs/88390 doc devctl(4) man page does not list the noti f [2005/11/02] ports/88391 ports-bugs New port: misc/loop is a shell programmin o [2005/11/02] ports/88395 ports-bugs New port: www/rejik A squid redirector us o [2005/11/02] ports/88397 knu Ruby does not upgrade properly from 1.8.2 o [2005/11/02] ports/88403 vsevolod port: net/openldap23-server/Makefile: BDB o [2005/11/02] bin/88404 ggatec and ggated links to library in /us o [2005/11/02] ports/88405 vs [UPDATE]: net/ns: Upgrade to 2.29. o [2005/11/02] usb/88408 usb axe0 read PHY failed o [2005/11/03] ports/88420 kuriyama update comms/conserver-com to 8.1.12 o [2005/11/03] ports/88422 ports-bugs New port mail/ask: spam filter o [2005/11/03] ports/88424 ports-bugs New port: net-mgmt/netleak Tool to detect o [2005/11/03] bin/88426 [patch] Typo in man (8) mount_ntfs o [2005/11/03] docs/88427 doc Diff (1) error. o [2005/11/03] docs/88429 doc FAQ 10.9. Quotas Improvement o [2005/11/03] ports/88430 ports-bugs [maintainer update] games/linux-americasa o [2005/11/03] ports/88431 anders update sysutils/dmidecode to 2.7 o [2005/11/03] www/88432 jcamou Request for addition to the consultants l o [2005/11/03] ports/88435 ports-bugs Update port: net/tkabber-devel (cvs snaps o [2005/11/03] ports/88444 barner [PATCH] mail/fetchmail: fix IMAP timeout o [2005/11/03] ports/88446 ports-bugs [NEW PORT] mail/rabl_server: Reactive Au o [2005/11/03] kern/88450 net SYN+ACK reports strange size of window o [2005/11/03] ports/88452 ports-bugs Filerunner-2.5.1 modulo year = 00xx inste o [2005/11/03] ports/88458 garga [UPDATE] chinese/joe: fix BROKEN & recopy o [2005/11/03] bin/88460 Import /usr/bin/getent from NetBSD o [2005/11/03] bin/88463 devfs(8): 'devfs rule add' before 'devfs o [2005/11/03] docs/88464 doc not enough information in devfs.rules(5) o [2005/11/04] ports/88475 billf net-mgmt/flow-tools has a python run-time o [2005/11/04] ports/88476 ports-bugs [NEW PORT]: bazaar C implementation of Ar o [2005/11/04] docs/88477 doc Possible addition to xl(4) manpage, Diagn o [2005/11/04] bin/88486 [patch] make periodic(8) quiet (configura o [2005/11/04] i386/88491 i386 [panic] Panic when boot installation CD1 o [2005/11/04] ports/88493 portmgr bsd.port.mk: cleanup cruft o [2005/11/04] ports/88495 ports-bugs New port: devel/bzrtools plugins for baza o [2005/11/04] www/88498 remko Hosting gallery submission. o [2005/11/04] www/88499 pav Gigabyte GA-K8VT800 Pro motherboard works o [2005/11/04] ports/88500 ports-bugs Deprecated port: devel/libzt f [2005/11/04] ports/88502 ports-bugs Update port: devel/nana update to 2.5 o [2005/11/04] www/88503 www Dead link in the online manpages for Free o [2005/11/04] ports/88505 knu Update port: devel/oniguruma update to 2. o [2005/11/04] docs/88507 doc [PATCH] Update sockets chapter in develop o [2005/11/04] i386/88508 i386 bad xorg packages in ISO image for Disc1 o [2005/11/05] docs/88512 doc [patch] mount_ext2fs(8) man page has no d o [2005/11/05] www/88514 www Getting listed as a FreeBSD Publisher o [2005/11/05] conf/88515 NTP not starting from RC when using /etc/ o [2005/11/05] usb/88516 usb [patch]/dev/ulpt hangs when try read() fr o [2005/11/05] ports/88528 ports-bugs pkg-plist for ports/japanese/xemacs21-can o [2005/11/05] ports/88529 trevor print/acroread7 needs symlink to acroread o [2005/11/06] ports/88536 ports-bugs [NEW PORT] graphics/cal3d-devel: Skeletal o [2005/11/06] ports/88537 ports-bugs New port: devel/wbxml2 o [2005/11/06] bin/88538 tcsh(1) ls-F spacing incorrect. o [2005/11/06] ports/88539 lioux [multimedia/ogle] use /dev/acd0 on FreeBS o [2005/11/06] ports/88544 ports-bugs [patch] lang/gcc28 pkg-plist is different o [2005/11/06] ports/88546 marcus Add a check for a period in IGNORE lines f [2005/11/06] ports/88548 ports-bugs update sysutils/pciutils to 2.2.0 p [2005/11/06] misc/88549 build error in /usr/src/tools/tools/aac o [2005/11/06] ports/88550 ports-bugs update java/jmp to 0.48 o [2005/11/06] ports/88551 ports-bugs [PORT AUTHOR UPDATE] update sysutils/port o [2005/11/06] ports/88552 ports-bugs [NEW PORT] net/hping-devel: Network audit o [2005/11/06] ports/88553 ports-bugs [MAINTAINER] net/hping: [SUMMARIZE CHANGE o [2005/11/06] docs/88554 doc Correct minor typo in handbook (filename o [2005/11/06] docs/88556 doc Correct FAQ typo and add more specific in o [2005/11/06] ports/88557 ports-bugs Update port: audio/solfege to 3.0.4 o [2005/11/06] ports/88559 az Update port: ftp/kpum to 0.5.3.1 o [2005/11/06] ports/88561 ports-bugs Update port: graphics/libexif-gtk to 0.3. o [2005/11/06] ports/88562 ports-bugs Update port: math/eukleides to 1.0.3 o [2005/11/06] ports/88563 ports-bugs Update port: math/qgfe o [2005/11/06] ports/88564 ports-bugs Update port: print/dvisvg o [2005/11/06] ports/88566 ports-bugs Update port: www/screem to 0.16.0 o [2005/11/06] ports/88567 ports-bugs math/cln: build fails with an older versi f [2005/11/06] ports/88572 ports-bugs Security fix: upgrade pear-PEAR to 1.4.4. f [2005/11/06] ports/88573 ports-bugs sysutils/pear-Log: upgrade to 1.9.2. o [2005/11/07] kern/88576 imp [fe] revision 1.31 to if_fe_pccard.c brea o [2005/11/07] ports/88577 ports-bugs [NEW PORT] x11-toolkits/libsexy, x11-tool o [2005/11/07] ports/88578 ports-bugs [MAINTAINER-UPDATE] deskutils/notificatio o [2005/11/07] ports/88581 ports-bugs [NEW PORT] devel/ode-devel: Articulated r o [2005/11/07] ports/88582 ports-bugs update lang/sbcl o [2005/11/07] ports/88584 x11 XFree86-4 (4.5.0) port is not working. o [2005/11/07] misc/88585 Cannot mount floppy o [2005/11/07] ports/88587 ports-bugs [NEW PORT] net/cvsupchk: Check a CVSup di o [2005/11/07] ports/88588 ports-bugs new MASTER_SITES for port textproc/lachec o [2005/11/07] ports/88589 ports-bugs Update port: net/jabber-msn 3092 problems total. From glebius at FreeBSD.org Mon Nov 7 03:41:54 2005 From: glebius at FreeBSD.org (Gleb Smirnoff) Date: Mon Nov 7 03:42:05 2005 Subject: bin/88201: [PATCH]: arp(8): usr.sbin/arp/arp.c: Possible typo. Message-ID: <200511071141.jA7BfscI060023@freefall.freebsd.org> Synopsis: [PATCH]: arp(8): usr.sbin/arp/arp.c: Possible typo. State-Changed-From-To: open->closed State-Changed-By: glebius State-Changed-When: Mon Nov 7 11:40:27 GMT 2005 State-Changed-Why: The verb "intuit" in this sentence means that arp(8) can't find an applicable interface for given entry. "intuit" is a valid verb, see: http://www.m-w.com/dictionary/intuit http://www.freebsd.org/cgi/query-pr.cgi?pr=88201 From sokolhacker at mail.ru Mon Nov 7 04:10:22 2005 From: sokolhacker at mail.ru (Sokolov Alexey) Date: Mon Nov 7 04:10:34 2005 Subject: misc/88593: /usr/src/tools/regression/lib/libc/string Message-ID: <200511071203.jA7C3iZJ053015@www.freebsd.org> >Number: 88593 >Category: misc >Synopsis: /usr/src/tools/regression/lib/libc/string >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 07 12:10:17 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Sokolov Alexey >Release: FreeBSD 6.0-STABLE >Organization: SokolSoft (sokolsoft.org.ru) >Environment: [17:07]#uname -a FreeBSD 6.0-STABLE FreeBSD 6.0-STABLE #0: Sat Nov 5 10:44:30 UTC 2005 root@:/usr/obj/usr/src/sys/GENERIC i386 [17:07]#cat /usr/src/.ctm_status src-6 136 >Description: !compiling /usr/src/tools/regression/lib/libc/string/ >How-To-Repeat: %cd /usr/src/tools/regression/lib/libc/string/ %make >Fix: error in file /usr/src/tools/regression/lib/libc/string/test-strerror.c:36: #include (%find /usr/include/* | grep tap.h) == 0 => cp [google.com: tap.h] /usr/include =) >Release-Note: >Audit-Trail: >Unformatted: From maxim at FreeBSD.org Mon Nov 7 04:34:54 2005 From: maxim at FreeBSD.org (Maxim Konovalov) Date: Mon Nov 7 04:35:06 2005 Subject: misc/88593: /usr/src/tools/regression/lib/libc/string Message-ID: <200511071234.jA7CYrKk067829@freefall.freebsd.org> Synopsis: /usr/src/tools/regression/lib/libc/string State-Changed-From-To: open->closed State-Changed-By: maxim State-Changed-When: Mon Nov 7 12:33:14 GMT 2005 State-Changed-Why: Not a bug really. Several regression tests depend on ports/devel/libtap. http://www.freebsd.org/cgi/query-pr.cgi?pr=88593 From spawk at acm.poly.edu Mon Nov 7 05:02:10 2005 From: spawk at acm.poly.edu (Boris Kochergin) Date: Mon Nov 7 05:02:22 2005 Subject: 6.0-RELEASE sparc64 kernel build error (missing clock_if.h) Message-ID: <436F504E.4070702@acm.poly.edu> Hi. This is my first time posting to a @freebsd.org list, so my apologies in advance if this should have gone to the sparc64 list or somewhere else. That aside, I've been attempting to build a custom kernel on a Sun Netra X1 for it to be a lightweight NAT/VLAN machine using the RELENG_6_0 sources and have encountered the following problem (I've googled quite a bit to find any similar cases, but to no avail). [snip of "make buildkernel..." output] make -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | MKDEP_CPP="cc -E" CC="cc" xargs mkdep -a -f .newdep -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wn ested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/usr/src/sys -I /usr/src/sys/contrib/dev/acpica -I/usr/src/sys/contrib/altq -I/usr/src/sys/contr ib/ipfilter -I/usr/src/sys/contrib/pf -I/usr/src/sys/contrib/dev/ath -I/usr/src/ sys/contrib/dev/ath/freebsd -I/usr/src/sys/contrib/ngatm -I/usr/src/sys/dev/twa -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finlin e-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -mcmodel=medlow -msoft-float -ffreestanding /usr/src/sys/sparc64/sparc64/rtc.c:58:22: clock_if.h: No such file or directory mkdep: compile failed *** Error code 1 Stop in /usr/obj/usr/src/sys/SUNNY. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. --- This file is nowhere to be found on the system, only a "clock_if.m", but its content isn't what the build process wants. Any ideas? Thanks in advance. -Boris From maxim at macomnet.ru Mon Nov 7 05:07:09 2005 From: maxim at macomnet.ru (Maxim Konovalov) Date: Mon Nov 7 05:08:46 2005 Subject: 6.0-RELEASE sparc64 kernel build error (missing clock_if.h) In-Reply-To: <436F504E.4070702@acm.poly.edu> References: <436F504E.4070702@acm.poly.edu> Message-ID: <20051107160547.X55395@mp2.macomnet.net> On Mon, 7 Nov 2005, 08:02-0500, Boris Kochergin wrote: > Hi. > > This is my first time posting to a @freebsd.org list, so my > apologies in advance if this should have gone to the sparc64 list or > somewhere else. That aside, I've been attempting to build a custom > kernel on a Sun Netra X1 for it to be a lightweight NAT/VLAN machine > using the RELENG_6_0 sources and have encountered the following > problem (I've googled quite a bit to find any similar cases, but to > no avail). It's really hard to guess without your kernel config file. Do you have 'device rtc' there? -- Maxim Konovalov From spawk at acm.poly.edu Mon Nov 7 05:15:33 2005 From: spawk at acm.poly.edu (Boris Kochergin) Date: Mon Nov 7 05:15:46 2005 Subject: 6.0-RELEASE sparc64 kernel build error (missing clock_if.h) In-Reply-To: <20051107160547.X55395@mp2.macomnet.net> References: <436F504E.4070702@acm.poly.edu> <20051107160547.X55395@mp2.macomnet.net> Message-ID: <436F5372.7000804@acm.poly.edu> Maxim Konovalov wrote: >On Mon, 7 Nov 2005, 08:02-0500, Boris Kochergin wrote: > > > >>Hi. >> >>This is my first time posting to a @freebsd.org list, so my >>apologies in advance if this should have gone to the sparc64 list or >>somewhere else. That aside, I've been attempting to build a custom >>kernel on a Sun Netra X1 for it to be a lightweight NAT/VLAN machine >>using the RELENG_6_0 sources and have encountered the following >>problem (I've googled quite a bit to find any similar cases, but to >>no avail). >> >> > >It's really hard to guess without your kernel config file. Do you >have 'device rtc' there? > > > Yeah, I do. Sorry for not mentioning it. Here's the kernel config file, in case there's anything else of interest: # # GENERIC -- Generic kernel configuration file for FreeBSD/sparc64 # # For more information on this file, please read the handbook section on # Kernel Configuration Files: # # http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html # # The handbook is also available locally in /usr/share/doc/handbook # if you've installed the doc distribution, otherwise always see the # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the # latest information. # # An exhaustive list of options and more detailed explanations of the # device lines is also present in the ../../conf/NOTES and NOTES files. # If you are in doubt as to the purpose or necessity of a line, check first # in NOTES. # # For hardware specific information check HARDWARE.TXT # # $FreeBSD: src/sys/sparc64/conf/GENERIC,v 1.96.2.4 2005/09/22 12:36:39 kensmith Exp $ machine sparc64 cpu SUN4U ident SUNNY # To statically compile in device wiring instead of /boot/device.hints #hints "GENERIC.hints" # Default places to look for devices. #makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols # Platforms supported # At this time all platforms are supported, as-is. options SCHED_ULE # ULE scheduler #options SCHED_4BSD # 4BSD scheduler options PREEMPTION # Enable kernel thread preemption options INET # InterNETworking options INET6 # IPv6 communications protocols options FFS # Berkeley Fast Filesystem options SOFTUPDATES # Enable FFS soft updates support #options UFS_ACL # Support for access control lists #options UFS_DIRHASH # Improve performance on big directories #options MD_ROOT # MD is a potential root device #options NFSCLIENT # Network Filesystem Client #options NFSSERVER # Network Filesystem Server #options NFS_ROOT # NFS usable as /, requires NFSCLIENT #options MSDOSFS # MSDOS Filesystem #options CD9660 # ISO 9660 Filesystem #options PROCFS # Process filesystem (requires PSEUDOFS) #options PSEUDOFS # Pseudo-filesystem framework #options GEOM_GPT # GUID Partition Tables. #options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!] #options COMPAT_FREEBSD5 # Compatible with FreeBSD5 #options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI #options KTRACE # ktrace(1) support options SYSVSHM # SYSV-style shared memory options SYSVMSG # SYSV-style message queues options SYSVSEM # SYSV-style semaphores options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions #options AHC_REG_PRETTY_PRINT # Print register bitfields in debug # output. Adds ~128k to driver. options ADAPTIVE_GIANT # Giant mutex is adaptive. options DEVICE_POLLING options HZ=1000 options IPFIREWALL options IPFIREWALL_DEFAULT_TO_ACCEPT options IPDIVERT options DUMMYNET # To make an SMP kernel, the next line is needed #options SMP # Symmetric MultiProcessor Kernel # Standard busses #device ebus device isa device pci #device sbus #device central #device fhc # Floppy drives #device fdc # ATA and ATAPI devices device ata device atadisk # ATA disk drives #device atapicd # ATAPI CDROM drives #device atapifd # ATAPI floppy drives #device atapist # ATAPI tape drives # Do NOT enable ATA_STATIC_ID -- cmd646 controller will be !ata2!, # and you will not mount an ATA /. #options ATA_STATIC_ID # Static device numbering # SCSI Controllers #device ahc # AHA2940 and onboard AIC7xxx devices #device isp # Qlogic family #device ispfw # Firmware module for Qlogic host adapters #device mpt # LSI-Logic MPT-Fusion (not yet) #device ncr # NCR/Symbios Logic #device sym # NCR/Symbios Logic (newer chipsets + those of `ncr') #device esp # NCR53c9x (FEPS/FAS366) # SCSI peripherals #device scbus # SCSI bus (required for SCSI) #device ch # SCSI media changers #device da # Direct Access (disks) #device sa # Sequential Access (tape etc) #device cd # CD #device pass # Passthrough device (direct SCSI access) #device ses # SCSI Environmental Services (and SAF-TE) # RAID controllers #device amr # AMI MegaRAID #device mlx # Mylex DAC960 family # atkbdc0 controls both the keyboard and the PS/2 mouse #device atkbdc # AT keyboard controller #device atkbd # AT keyboard #device psm # PS/2 mouse # syscons is the default console driver, resembling an SCO console #device sc #device creator # Creator, Creator3D and Elite3D framebuffers #device machfb # ATI Mach64 framebuffers #device splash # Splash screen and screen saver support #options KBD_INSTALL_CDEV # install a CDEV entry in /dev #device ofw_console # Open Firmware console device # Builtin hardware #device auxio # auxiliary I/O device #device clkbrd # Clock Board (blinkenlight on Sun Exx00) #device genclock # Generic clock interface #device eeprom # eeprom (really a front-end for the MK48Txx) #device mk48txx # Mostek MK48Txx clocks device rtc # rtc (really a front-end for the MC146818) #device mc146818 # Motorola MC146818 and compatible clocks # Serial (COM) ports #device sab # Siemens SAB82532 based serial ports device uart # Multi-uart driver #device puc # Multi-channel uarts # Parallel port #device ppc #device ppbus # Parallel port bus (required) #device lpt # Printer #device plip # TCP/IP over parallel #device ppi # Parallel port interface device #device vpo # Requires scbus and da # PCI Ethernet NICs. #device de # DEC/Intel DC21x4x (``Tulip'') #device em # Intel PRO/1000 adapter Gigabit Ethernet Card #device ixgb # Intel PRO/10GbE Ethernet Card #device lnc # NE2100, NE32-VL Lance Ethernet cards #device txp # 3Com 3cR990 (``Typhoon'') #device vx # 3Com 3c590, 3c595 (``Vortex'') # PCI Ethernet NICs that use the common MII bus controller code. # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs! device miibus # MII bus support #device bfe # Broadcom BCM440x 10/100 Ethernet #device bge # Broadcom BCM570xx Gigabit Ethernet device dc # DEC/Intel 21143 and various workalikes #device fxp # Intel EtherExpress PRO/100B (82557, 82558) #device gem # Sun GEM/Sun ERI/Apple GMAC #device hme # Sun HME (Happy Meal Ethernet) #device pcn # AMD Am79C97x PCI 10/100 (precedence over 'lnc') #device re # RealTek 8139C+/8169/8169S/8110S #device rl # RealTek 8129/8139 #device sf # Adaptec AIC-6915 (``Starfire'') #device sis # Silicon Integrated Systems SiS 900/SiS 7016 #device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet #device ste # Sundance ST201 (D-Link DFE-550TX) #device ti # Alteon Networks Tigon I/II gigabit Ethernet #device tl # Texas Instruments ThunderLAN #device tx # SMC EtherPower II (83c170 ``EPIC'') #device vr # VIA Rhine, Rhine II #device wb # Winbond W89C840F #device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') # Pseudo devices. device loop # Network loopback device mem # Memory and kernel memory devices device random # Entropy device device ether # Ethernet support #device sl # Kernel SLIP #device ppp # Kernel PPP #device tun # Packet tunnel. device pty # Pseudo-ttys (telnet etc) #device md # Memory "disks" device gif # IPv6 and IPv4 tunneling #device faith # IPv6-to-IPv4 relaying (translation) # The `bpf' device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! # Note that 'bpf' is required for DHCP. device bpf # Berkeley packet filter # USB support #device uhci # UHCI PCI->USB interface #device ohci # OHCI PCI->USB interface #device usb # USB Bus (required) #device udbp # USB Double Bulk Pipe devices #device ugen # Generic #device uhid # "Human Interface Devices" #device ukbd # Keyboard #device ulpt # Printer #device umass # Disks/Mass storage - Requires scbus and da #device ums # Mouse #device urio # Diamond Rio 500 MP3 player #device uscanner # Scanners # USB Ethernet, requires mii #device aue # ADMtek USB Ethernet #device axe # ASIX Electronics USB Ethernet #device cdce # Generic USB over Ethernet #device cue # CATC USB Ethernet #device kue # Kawasaki LSI USB Ethernet #device rue # RealTek RTL8150 USB Ethernet # FireWire support #device firewire # FireWire bus code #device sbp # SCSI over FireWire (Requires scbus and da) #device fwe # Ethernet over FireWire (non-standard!) From emillbrandt at coldhaus.com Mon Nov 7 05:50:18 2005 From: emillbrandt at coldhaus.com (Eric Millbrandt) Date: Mon Nov 7 05:50:29 2005 Subject: misc/88599: Change in default behavior with ifconfig and WEP Message-ID: <200511071340.jA7DegZC016914@www.freebsd.org> >Number: 88599 >Category: misc >Synopsis: Change in default behavior with ifconfig and WEP >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 07 13:50:16 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Eric Millbrandt >Release: 6.0 Release >Organization: >Environment: FreeBSD sniffles.XYZ.com 6.0-RELEASE FreeBSD 6.0-RELEASE #1: Sun Nov 6 18:14:37 EST 2005 emillbrandt@sniffles.XYZ.com:/usr/obj/usr/src/sys/SNIFFLES i386 >Description: The default behavior of ifconfig has changed since 5.4 when configuring a wireless card. Previously in rc.conf ifconfig_wi0="inet 192.168.1.10 netmask 255.255.255.0 ssid RedHouse wepmode on wepkey 0xVALUE" would successfully configure your card. Now in 6.0 you get the following error messages. ieee80211_load_module: load the wlan_wep module by hand for now. ifconfig: SIOCS80211: Invalid argument This change is not noted in the freebsd handbook or the ifconfig(8) man page. >How-To-Repeat: ifconfig_wi0="inet 192.168.1.10 netmask 255.255.255.0 ssid RedHouse wepmode on wepkey 0xVALUE" >Fix: ifconfig_wi0="inet 192.168.1.10 netmask 255.255.255.0 ssid RedHouse wepmode on weptxkey 1 wepkey 0xVALUE" >Release-Note: >Audit-Trail: >Unformatted: From maxim at macomnet.ru Mon Nov 7 06:23:02 2005 From: maxim at macomnet.ru (Maxim Konovalov) Date: Mon Nov 7 06:23:13 2005 Subject: 6.0-RELEASE sparc64 kernel build error (missing clock_if.h) In-Reply-To: <436F5372.7000804@acm.poly.edu> References: <436F504E.4070702@acm.poly.edu> <20051107160547.X55395@mp2.macomnet.net> <436F5372.7000804@acm.poly.edu> Message-ID: <20051107171256.E61689@mp2.macomnet.net> Enable devices genclock and mc146818 or disable rtc. -- Maxim Konovalov From pawel.rsc Mon Nov 7 06:30:18 2005 From: pawel.rsc (Pawel Rutkowski) Date: Mon Nov 7 06:30:41 2005 Subject: kern/88601: Geli cause kernel panic under heavy disk usage Message-ID: <200511071428.jA7ES0Es029050@www.freebsd.org> >Number: 88601 >Category: kern >Synopsis: Geli cause kernel panic under heavy disk usage >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 07 14:30:16 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Pawel Rutkowski >Release: 6.0-STABLE >Organization: >Environment: FreeBSD backup.int.rsc.pl 6.0-STABLE FreeBSD 6.0-STABLE #2: Sat Nov 5 15:54:32 CET 2005 root@ruthibm.int.rsc.pl:/usr/obj/usr/src/sys/GENERIC i386 >Description: While coping few big files (8x700MB) and 25GB of smaller files on GELI encrypted volume i got PANIC: mode = 0121473, inum = 185008, FS = /mnt Panic: ffs_valloc: dup alloc UPTIME: 1h41m44s Doing same operation on gbde volume or unencrypted file system works OK. Backtrace: mode = 0121473, inum = 185008, fs = /mnt panic: ffs_valloc: dup alloc Uptime: 1h41m44s Dumping 62 MB (3 chunks) chunk 0: 1MB (160 pages) ... ok chunk 1: 14MB (3584 pages) ... ok chunk 2: 48MB (12285 pages) 33 17 #0 doadump () at pcpu.h:165 165 pcpu.h: No such file or directory. in pcpu.h #0 doadump () at pcpu.h:165 #1 0xc0638846 in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:399 #2 0xc0638adc in panic (fmt=0xc0878f8c "ffs_valloc: dup alloc") at /usr/src/sys/kern/kern_shutdown.c:555 #3 0xc076dd20 in ffs_valloc (pvp=0xc1757330, mode=33060, cred=0xc15f0980, vpp=0xca1de8d4) at /usr/src/sys/ufs/ffs/ffs_alloc.c:933 #4 0xc0794177 in ufs_makeinode (mode=33060, dvp=0xc1757330, vpp=0xca1debe0, cnp=0xca1debf4) at /usr/src/sys/ufs/ufs/ufs_vnops.c:2165 #5 0xc0791381 in ufs_create (ap=0x0) at /usr/src/sys/ufs/ufs/ufs_vnops.c:171 #6 0xc0817a50 in VOP_CREATE_APV (vop=0x0, a=0xca1dea64) at vnode_if.c:204 #7 0xc06995e0 in vn_open_cred (ndp=0xca1debcc, flagp=0xca1deccc, cmode=292, cred=0xc15f0980, fdidx=3) at vnode_if.h:111 #8 0xc069941e in vn_open (ndp=0x0, flagp=0xca1deccc, cmode=292, fdidx=3) at /usr/src/sys/kern/vfs_vnops.c:91 #9 0xc069246e in kern_open (td=0xc1367900, path=0x0, pathseg=UIO_USERSPACE, flags=1538, mode=292) at /usr/src/sys/kern/vfs_syscalls.c:979 #10 0xc0692382 in open (td=0xc1367900, uap=0xca1ded04) at /usr/src/sys/kern/vfs_syscalls.c:945 #11 0xc0808bd7 in syscall (frame= {tf_fs = -1078001605, tf_es = -1078001605, tf_ds = -1078001605, tf_edi = 134579329, tf_esi = 134579200, tf_ebp = -1077941656, tf_isp = -904008348, tf_ebx = 671701828, tf_edx = 134578176, tf_ecx = 134680576, tf_eax = 5, tf_trapno = 0, tf_err = 2, tf_eip = 672114675, tf_cs = 51, tf_eflags = 582, tf_esp = -107794176 4, tf_ss = 59}) at /usr/src/sys/i386/i386/trap.c:976 #12 0xc07f7aaf in Xint0x80_syscall () at /usr/src/sys/i386/i386/exception.s:200 #13 0x00000033 in ?? () System information: Copyright (c) 1992-2005 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 6.0-STABLE #2: Sat Nov 5 15:54:32 CET 2005 root@ruthibm.int.rsc.pl:/usr/obj/usr/src/sys/GENERIC Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Pentium II/Pentium II Xeon/Celeron (334.09-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x660 Stepping = 0 Features=0x183f9ff real memory = 67096576 (63 MB) avail memory = 55066624 (52 MB) ACPI disabled by blacklist. Contact your BIOS vendor. npx0: [FAST] npx0: on motherboard npx0: INT 16 interface cpu0 on motherboard pcib0: pcibus 0 on motherboard pir0: on motherboard pci0: on pcib0 agp0: mem 0xe4000000-0xe7ffffff at device 0.0 on pci0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at device 0.0 (no driver attached) isab0: at device 4.0 on pci0 isa0: on isab0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xd800-0xd80f at device 4.1 on pci0 ata0: on atapci0 ata1: on atapci0 uhci0: port 0xd400-0xd41f irq 10 at device 4.2 on pci0 uhci0: [GIANT-LOCKED] usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered pci0: at device 4.3 (no driver attached) fxp0: port 0xd000-0xd03f mem 0xdb800000-0xdb800fff,0xdb000000-0xdb0fffff irq 11 at device 11.0 on pci0 miibus0: on fxp0 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fxp0: Ethernet address: 00:d0:b7:2b:93:25 pmtimer0 on isa0 orm0: at iomem 0xc0000-0xc7fff,0xc8000-0xc97ff on isa0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: [FAST] ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/9 bytes threshold ppbus0: on ppc0 plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 unknown: can't assign resources (port) unknown: can't assign resources (port) unknown: can't assign resources (port) unknown: can't assign resources (port) unknown: can't assign resources (memory) unknown: can't assign resources (port) unknown: can't assign resources (port) Timecounter "TSC" frequency 334093110 Hz quality 800 Timecounters tick every 1.000 msec ad0: 6149MB at ata0-master UDMA33 ad1: 38166MB at ata0-slave UDMA33 ad3: 38166MB at ata1-slave UDMA33 Trying to mount root from ufs:/dev/ad0s1a >How-To-Repeat: # fdisk -BI /dev/ad3s1 # geli init -s 8192 /dev/ad3s1 (used password: 1234567890) # geli attach /dev/ad3s1 # newfs -U -O2 /dev/ad3s1.eli # mount -o noatime /dev/ad3s1.eli /mnt start coping files to encrypted volume. I've been coping about 30GB rdiff-backup (lots of small, gziped files) repository. In about 2h You should get panic >Fix: >Release-Note: >Audit-Trail: >Unformatted: From spil.oss at googlemail.com Mon Nov 7 06:50:22 2005 From: spil.oss at googlemail.com (spil oss) Date: Mon Nov 7 06:50:34 2005 Subject: kern/87114: [xl] xl0 : watchdog timeout on 6.0 BETA5 Message-ID: <200511071450.jA7EoGrh088324@freefall.freebsd.org> The following reply was made to PR kern/87114; it has been noted by GNATS. From: spil oss To: bug-followup@FreeBSD.org, befree_fr@mac.com Cc: Subject: Re: kern/87114: [xl] xl0 : watchdog timeout on 6.0 BETA5 Date: Mon, 7 Nov 2005 15:48:49 +0100 Same here on FreeBSD 6.0-STABLE On freebsd-current I read a thread that deals with 3com 3c575 cardbus cards= : http://lists.freebsd.org/pipermail/freebsd-current/2005-October/056865.html Hopefully helpful details: * Worked fine on 5.4 * Whilst downloading an iso, no watchdog timeouts occured and speed was 100= %, but immediately after download finished they started popping up again (connecting seems to be slow though) * Inbound connections on xl1 are extremely laggy, switching screens via ssh= take a long while to start but then suddenly the whole screen is redrawn. xl0 se= ems to be fine. snippet from dmesg: cardbus0: Resource not specified in CIS: id=3D14, size=3D80 cardbus0: Resource not specified in CIS: id=3D18, size=3D80 xl1: <3Com 3c575B Fast Etherlink XL> port 0x1000-0x107f mem 0x88000000-0x8800007f,0x88000080-0x8800 00ff irq 10 at device 0.0 on cardbus0 miibus1: on xl1 tdkphy0: on miibus1 tdkphy0: 10baseT, 100baseTX, auto xl1: Ethernet address: 00:00:86:57:76:22 cut xl1: watchdog timeout xl1: watchdog timeout xl1: watchdog timeout From pjd at FreeBSD.org Mon Nov 7 07:46:05 2005 From: pjd at FreeBSD.org (Pawel Jakub Dawidek) Date: Mon Nov 7 07:46:17 2005 Subject: kern/88601: Geli cause kernel panic under heavy disk usage Message-ID: <200511071546.jA7Fk5GY097489@freefall.freebsd.org> Synopsis: Geli cause kernel panic under heavy disk usage Responsible-Changed-From-To: freebsd-bugs->pjd Responsible-Changed-By: pjd Responsible-Changed-When: Mon Nov 7 15:43:08 GMT 2005 Responsible-Changed-Why: I'll take this one. Could you confirm, that the problem doesn't exist with gbde or for file system without encryption when sector size of provider is also 8kB? I want to be sure, this is not a UFS bug. You can change provider's sector size using gnop(8): # gnop create -S 8192 /dev/da0 # newfs /dev/da0.nop http://www.freebsd.org/cgi/query-pr.cgi?pr=88601 From spawk at acm.poly.edu Mon Nov 7 08:06:37 2005 From: spawk at acm.poly.edu (Boris Kochergin) Date: Mon Nov 7 08:06:49 2005 Subject: 6.0-RELEASE sparc64 kernel build error (missing clock_if.h) In-Reply-To: <20051107171256.E61689@mp2.macomnet.net> References: <436F504E.4070702@acm.poly.edu> <20051107160547.X55395@mp2.macomnet.net> <436F5372.7000804@acm.poly.edu> <20051107171256.E61689@mp2.macomnet.net> Message-ID: <436F7B86.2060004@acm.poly.edu> Maxim Konovalov wrote: >Enable devices genclock and mc146818 or disable rtc. > > > Thanks, that worked. I guess I didn't think of enabling them as dependencies because the kernel docs didn't say say so. From PeterJeremy at optushome.com.au Mon Nov 7 10:00:35 2005 From: PeterJeremy at optushome.com.au (Peter Jeremy) Date: Mon Nov 7 10:01:25 2005 Subject: kern/78179: bus_dmamem_alloc() with BUS_DMA_NOWAIT can block Message-ID: <200511071800.jA7I0Vxi015780@freefall.freebsd.org> The following reply was made to PR kern/78179; it has been noted by GNATS. From: Peter Jeremy To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re: kern/78179: bus_dmamem_alloc() with BUS_DMA_NOWAIT can block Date: Tue, 8 Nov 2005 04:51:39 +1100 I have recently confirmed the continued existence of this problem in 7-CURRENT from 5th November: Whilst copying a file to a USB memory stick, I received the panic below. Looking at the sources, there are references to BUS_DMA_NOWAIT in over 100 files so the USB code isn't alone - though it's not obvious how many of these paths allocate more than one page (and therefore trigger the bug). Nov 7 19:14:26 server kernel: panic: trying to sleep while sleeping is prohibited Nov 7 19:14:26 server kernel: KDB: stack backtrace: Nov 7 19:14:26 server kernel: kdb_backtrace(c06fac04,c0762460,c06fd889,d4494828,100) at kdb_backtrace+0x2e Nov 7 19:14:26 server kernel: panic(c06fd889,1,c06fd805,10c,2) at panic+0xb7 Nov 7 19:14:26 server kernel: sleepq_add(cbe8f0e0,c07adc60,c070d2f1,0,c053527a) at sleepq_add+0xb2 Nov 7 19:14:26 server kernel: msleep(cbe8f0e0,c07adc60,44,c070d2f1,0) at msleep+0x2df Nov 7 19:14:26 server kernel: bwait(cbe8f0e0,44,c070d2f1,509,0) at bwait+0x60 Nov 7 19:14:26 server kernel: swap_pager_putpages(c2215ce4,d4494970,1,1,d4494920) at swap_pager_putpages+0x47a Nov 7 19:14:26 server kernel: default_pager_putpages(c2215ce4,d4494970,1,1,d4494920) at default_pager_putpages+0x2e Nov 7 19:14:26 server kernel: vm_pageout_flush(d4494970,1,1,60,c19115a0) at vm_pageout_flush+0x16b Nov 7 19:14:26 server kernel: vm_contig_launder_page(c1911558,0,c070dd4b,1ec,ffffffff) at vm_contig_launder_page+0x229 Nov 7 19:14:26 server kernel: vm_page_alloc_contig(10,0,0,ffffffff,1) at vm_page_alloc_contig+0x24d Nov 7 19:14:26 server kernel: contigmalloc(10000,c073a940,1,0,ffffffff) at contigmalloc+0xb5 Nov 7 19:14:26 server kernel: bus_dmamem_alloc(c2879100,c2410c88,5,c2410c84,ffffffff) at bus_dmamem_alloc+0xd2 Nov 7 19:14:26 server kernel: usb_block_allocmem(0,10000,1,c1fe333c,d4494a9c) at usb_block_allocmem+0x180 Nov 7 19:14:26 server kernel: usb_allocmem(c1b14000,10000,0,c1fe333c,d4494ae8) at usb_allocmem+0x73 Nov 7 19:14:26 server kernel: uhci_allocm(c1b14000,c1fe333c,10000,10c,1) at uhci_allocm+0x27 Nov 7 19:14:26 server kernel: usbd_transfer(c1fe3300,c4849480,c26e6400,d1483000,10000) at usbd_transfer+0xaa Nov 7 19:14:26 server kernel: umass_setup_transfer(c26e6400,c4849480,d1483000,10000,0) at umass_setup_transfer+0x57 Nov 7 19:14:26 server kernel: umass_bbb_state(c1a52d00,c26e6400,0,c19566f0,d4494b7c) at umass_bbb_state+0x1ce Nov 7 19:14:26 server kernel: usb_transfer_complete(c1a52d00,c053552c,c0761ce0,1,c06f9a88) at usb_transfer_complete+0x1aa Nov 7 19:14:26 server kernel: uhci_idone(c1a52d70,c1a52d88,c07ad548) at uhci_idone+0x2ee -- Peter Jeremy From brooks at one-eyed-alien.net Mon Nov 7 12:40:22 2005 From: brooks at one-eyed-alien.net (Brooks Davis) Date: Mon Nov 7 12:40:34 2005 Subject: misc/88599: Change in default behavior with ifconfig and WEP Message-ID: <200511072040.jA7KeL9D040382@freefall.freebsd.org> The following reply was made to PR misc/88599; it has been noted by GNATS. From: Brooks Davis To: Eric Millbrandt Cc: freebsd-gnats-submit@freebsd.org Subject: Re: misc/88599: Change in default behavior with ifconfig and WEP Date: Mon, 7 Nov 2005 12:34:31 -0800 On Mon, Nov 07, 2005 at 01:40:42PM +0000, Eric Millbrandt wrote: > >Description: > The default behavior of ifconfig has changed since 5.4 when configuring a wireless card. Previously in rc.conf ifconfig_wi0="inet 192.168.1.10 netmask 255.255.255.0 ssid RedHouse wepmode on wepkey 0xVALUE" would successfully configure your card. Now in 6.0 you get the following error messages. > > ieee80211_load_module: load the wlan_wep module by hand for now. > ifconfig: SIOCS80211: Invalid argument A wireless documentation update is in the works. Documentation in ifconfig(8) is inappropriate since the problem is that your kernel is misconfigured (you need the wlan_wep module built in or loaded at startup is you want to use wep). -- Brooks From linimon at FreeBSD.org Mon Nov 7 14:58:00 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Mon Nov 7 14:58:23 2005 Subject: i386/88585: Cannot mount floppy (HP Proliant ML370 G4) Message-ID: <200511072257.jA7Mvp0h057963@freefall.freebsd.org> Old Synopsis: Cannot mount floppy New Synopsis: Cannot mount floppy (HP Proliant ML370 G4) Responsible-Changed-From-To: freebsd-bugs->freebsd-i386 Responsible-Changed-By: linimon Responsible-Changed-When: Mon Nov 7 22:56:42 GMT 2005 Responsible-Changed-Why: This sounds as though it might be specific to this hardware. http://www.freebsd.org/cgi/query-pr.cgi?pr=88585 From linimon at FreeBSD.org Mon Nov 7 15:03:50 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Mon Nov 7 15:04:01 2005 Subject: bin/88586: [sysinstall] installer with FTP has a horrible retarded logic flaw Message-ID: <200511072303.jA7N3nEU058360@freefall.freebsd.org> Synopsis: [sysinstall] installer with FTP has a horrible retarded logic flaw State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Mon Nov 7 22:59:48 GMT 2005 State-Changed-Why: This is a support question, which should be asked on freebsd-questions. The way to get sysinstall to change the ftp location is to go to Options/Media Type/FTP/
To whom it may concern:

     I get a btx halted error upon booting of either i386 or amd64 cd's.  I know the i386 cd's work because I've installed the i386 version via vmware. 

Hardware:

I am running a Soltek 754 Pro motherboard w/ via K8T800pro chipset and Phoenix Bios version 6.00 PG
My CPU is and AMD Athlon 64 3000+ (code name = NewCastle) Brand ID 4 (Socket 754)

*If you need any further information, let me know.

Thanks and best regards,
Jonathan.






From snezhko at indorsoft.ru Thu Nov 10 03:00:35 2005 From: snezhko at indorsoft.ru (Victor Snezhko) Date: Thu Nov 10 03:00:47 2005 Subject: kern/88725: /usr/sbin/ppp panic with 2005.10.21 netinet6 changes Message-ID: <200511101100.jAAB0YCq002556@freefall.freebsd.org> The following reply was made to PR kern/88725; it has been noted by GNATS. From: Victor Snezhko To: bug-followup@freebsd.org Cc: freebsd-current@freebsd.org, Vladimir Kushnir , Max Laier , suz@freebsd.org Subject: Re: kern/88725: /usr/sbin/ppp panic with 2005.10.21 netinet6 changes Date: Thu, 10 Nov 2005 16:54:34 +0600 --=-=-= Mark Tinguely has found the offending timer. The following patch fixes the problem for me: --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=mld6.diff --- mld6.c Wed Nov 9 08:27:14 2005 *************** *** 640,645 **** --- 640,649 ---- mld6_stop_listening(in6m); ifma->ifma_protospec = NULL; LIST_REMOVE(in6m, in6m_entry); + if (in6m->in6m_timer != IN6M_TIMER_UNDEF) { + printf("in6_delmulti: timer 0x%p is still active\n", in6m->in6m_timer_ch); + mld_stoptimer(in6m); + } free(in6m->in6m_timer_ch, M_IP6MADDR); free(in6m, M_IP6MADDR); } --=-=-= Printf is fired with the patch applied, and panic doesn't occur. I have tested it on -current cvsupped with date=2005.10.21.16.25.00, and will test it on the fresh -current (in a day or two - I will need to recompile everything). The patch should work there although. According to the cvsweb, mld6.c didn't change. -- WBR, Victor V. Snezhko EMail: snezhko@indorsoft.ru --=-=-=-- From dpk at dpk.net Thu Nov 10 05:10:19 2005 From: dpk at dpk.net (David Kirchner) Date: Thu Nov 10 05:11:14 2005 Subject: kern/50201: [twe] 3ware RAID 5 resulting in data corruption Message-ID: <200511101310.jAADAJE5027002@freefall.freebsd.org> The following reply was made to PR kern/50201; it has been noted by GNATS. From: David Kirchner To: bug-followup@FreeBSD.org, bruce@engmail.uwaterloo.ca Cc: Subject: Re: kern/50201: [twe] 3ware RAID 5 resulting in data corruption Date: Wed, 9 Nov 2005 12:16:16 -0800 I'm wondering if this bug is still in the system. I've personally been using 3ware cards on 4.5 machines and beyond without data corruption: RAID5 w/ WC enabled and other RAID configurations (1, 10). The driver has also been updated relatively recently. Bruce, I'm not suggesting tha this bug is definitely fixed, but I'm curious, are you still having trouble with RAID5? If not, can we close this bug? From Keith.White at site.uottawa.ca Thu Nov 10 06:00:43 2005 From: Keith.White at site.uottawa.ca (Keith White) Date: Thu Nov 10 06:03:28 2005 Subject: bin/88788: [patch] bin/rup displays incorrect date and uptime on sparc64 platform Message-ID: <200511101353.jAADrUU1013725@grdsav.site.uottawa.ca> >Number: 88788 >Category: bin >Synopsis: [patch] bin/rup displays incorrect date and uptime on sparc64 platform >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 Nov 10 14:00:24 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Keith White >Release: 6.0-RELEASE sparc64 >Organization: SITE, University of Ottawa >Environment: System: FreeBSD grdsav.site.uottawa.ca 6.0-RELEASE FreeBSD 6.0-RELEASE #1: Wed Nov 9 10:27:29 EST 2005 root@grdsav.site.uottawa.ca:/usr/obj/usr/src/sys/ULTRA5 sparc64 >Description: "rup" displays incorrect date and uptime when run on the sparc64 platform (and presumably on other 64-bit time_t platforms). The RPC rstat network packet uses 32-bit time_t. src/usr.bin/rup.c uses gmtime() and localtime() to decode the time_t values. On the sparc64 platform these functions expect a 64-bit time_t so the returned values displayed by rup are incorrect. >How-To-Repeat: $ uname -rp 6.0-RELEASE sparc64 $ rup a.site.uottawa. 2:43pm up 0 day, 54 mins, load average: 0.00 0.09 0.16 b.site.uottawa. 5:03am up 41 days, 2:37, load average: 0.01 0.01 0.02 c.site.uottawa. 11:30pm up 117 days, 15:01, load average: 0.00 0.00 0.00 d.site.uottawa. 9:28pm up 237 days, 20:41, load average: 0.00 0.00 0.01 e.site.uottawa. 10:51am up 18 days, 20:52, load average: 0.02 0.01 0.02 f.site.uottawa. 8:11pm up 238 days, 8:43, load average: 0.90 0.41 0.12 g.site.uottawa. 1:21am up 21 days, 6:45, load average: 0.01 0.01 0.02 h.site.uottawa. 10:26pm up 274 days, 17:18, load average: 0.00 0.00 0.00 i.site.uottawa. 4:45am up 37 days,39 mins, load average: 0.02 0.00 0.00 >Fix: The following patch fixes the problem on sparc64 platforms. Tested on both sparc64 (6.0-RELEASE) and i386 (6.0-RELEASE). --- rup.patch begins here --- --- src/usr.bin/rup/rup.c.orig Sat May 21 05:55:07 2005 +++ src/usr.bin/rup/rup.c Wed Nov 9 14:16:37 2005 @@ -101,6 +101,7 @@ struct hostent *hp; char *host; statstime *host_stat = (statstime *)replyp; + time_t tmp_time_t; if (search_host(raddrp->sin_addr)) return(0); @@ -118,13 +119,26 @@ printf("%-*s\t", HOST_WIDTH, host); - tmp_time = localtime((time_t *)&host_stat->curtime.tv_sec); - host_time = *tmp_time; - - host_stat->curtime.tv_sec -= host_stat->boottime.tv_sec; - - tmp_time = gmtime((time_t *)&host_stat->curtime.tv_sec); - host_uptime = *tmp_time; + if (sizeof(time_t) == sizeof(host_stat->curtime.tv_sec)) { + tmp_time = localtime((time_t *)&host_stat->curtime.tv_sec); + host_time = *tmp_time; + + host_stat->curtime.tv_sec -= host_stat->boottime.tv_sec; + + tmp_time = gmtime((time_t *)&host_stat->curtime.tv_sec); + host_uptime = *tmp_time; + } + else { /* non-32-bit time_t */ + tmp_time_t = host_stat->curtime.tv_sec; + tmp_time = localtime(&tmp_time_t); + host_time = *tmp_time; + + host_stat->curtime.tv_sec -= host_stat->boottime.tv_sec; + + tmp_time_t = host_stat->curtime.tv_sec; + tmp_time = gmtime(&tmp_time_t); + host_uptime = *tmp_time; + } #define updays (host_stat->curtime.tv_sec / 86400) if (host_uptime.tm_yday != 0) --- rup.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Thu Nov 10 06:39:26 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Thu Nov 10 06:39:38 2005 Subject: ports/88774: authentication problem when kde starts up Message-ID: <200511101439.jAAEdPq0040082@freefall.freebsd.org> Synopsis: authentication problem when kde starts up Responsible-Changed-From-To: freebsd-bugs->kde Responsible-Changed-By: linimon Responsible-Changed-When: Thu Nov 10 14:38:23 GMT 2005 Responsible-Changed-Why: Over to maintainers of x11/kde3. http://www.freebsd.org/cgi/query-pr.cgi?pr=88774 From lofi at FreeBSD.org Thu Nov 10 06:48:53 2005 From: lofi at FreeBSD.org (Michael Nottebrock) Date: Thu Nov 10 06:49:15 2005 Subject: kern/81438: [ata] Ataidle seems broken + problem with ATA wakeup Message-ID: <200511101448.jAAEmopJ041124@freefall.freebsd.org> Synopsis: [ata] Ataidle seems broken + problem with ATA wakeup Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: lofi Responsible-Changed-When: Thu Nov 10 14:47:52 GMT 2005 Responsible-Changed-Why: Over to ata maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=81438 From linimon at FreeBSD.org Thu Nov 10 06:48:54 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Thu Nov 10 06:49:17 2005 Subject: kern/50201: [twe] 3ware RAID 5 resulting in data corruption Message-ID: <200511101448.jAAEmqkD041143@freefall.freebsd.org> Synopsis: [twe] 3ware RAID 5 resulting in data corruption State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Thu Nov 10 14:48:33 GMT 2005 State-Changed-Why: Feedback requested. http://www.freebsd.org/cgi/query-pr.cgi?pr=50201 From matthias.andree at gmx.de Thu Nov 10 06:50:25 2005 From: matthias.andree at gmx.de (Matthias Andree) Date: Thu Nov 10 06:51:55 2005 Subject: kern/88793: wlan(4) broken, sends corrupted packets with iwi(4) or ral(4) Message-ID: >Number: 88793 >Category: kern >Synopsis: wlan(4) broken, sends corrupted packets with iwi(4) or ral(4) >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Nov 10 14:50:23 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Matthias Andree >Release: FreeBSD 6.0-RELEASE i386 >Organization: >Environment: System: FreeBSD libertas.emma.line.org 6.0-RELEASE FreeBSD 6.0-RELEASE #0: Mon Nov 7 16:10:51 CET 2005 toor@libertas.emma.line.org:/usr/obj/usr/src/sys/MA5L i386 >Description: Greetings, the FreeBSD 6.0 WLAN stack or ral(4) driver appears to be broken. After sending some amount of data, it starts sending out corrupted data, including broken MAC, packet length and similar. Soeren Schmidt confirmed a similar problem for iwi, so it may not be driver related. See this thread for details, excerpts below http://lists.freebsd.org/pipermail/freebsd-current/2005-October/057105.html | I have an oldish computer VIA KT333/Athlon XP board (i386) that I | recently upgraded from FreeBSD 5.4 (was rock solid) to 6.0-BETA3 and | today to 6.0-RC1 (I rebuilt everything from scratch). | | I had to upgrade because there was no ral(4) driver for FreeBSD 5.4 but | only for 6.0, which I needed after I had switched from 3C900 Combo | (802.3 whatever 10Base2) to Edimax EW-7128g (802.11b/g). The latter card | is based on RT2525 and RT2560 chips/modules. I'm using WPA-TKIP to | connect it to an AVM Fritz!Box Fon WLAN. | | The computer is dual boot with SUSE Linux 9.3, where RA card is | absolutely stable and does 48 Mbps without trouble. And Soeren replied: | Yes I see the same thing with iwi, it looses connection now and then. Heavy | traffic alone doesn't do it, but starting VNCviewer kills it every time. A | killall -1 wpa_supplicant gets the connection back on track... Other end here | is a Dlink DI624+ so the mix is totally different from yours... >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From tinguely at casselton.net Thu Nov 10 07:00:25 2005 From: tinguely at casselton.net (Mark Tinguely) Date: Thu Nov 10 07:00:37 2005 Subject: kern/88725: /usr/sbin/ppp panic with 2005.10.21 netinet6 changes Message-ID: <200511101500.jAAF0PJN041654@freefall.freebsd.org> The following reply was made to PR kern/88725; it has been noted by GNATS. From: Mark Tinguely To: bug-followup@freebsd.org, snezhko@indorsoft.ru Cc: freebsd-current@freebsd.org, Max@freebsd.org, max@love2party.net Subject: Re: kern/88725: /usr/sbin/ppp panic with 2005.10.21 netinet6 changes Date: Thu, 10 Nov 2005 08:50:37 -0600 (CST) As a postscript: The problem was a dynamic timer was freed without being stopped first. Obviously, the printf() should be removed from the final fix. After this discovery, I went through all of the callout_init() calls in the kernel and looked at those that may be freed before possibly being stopped. Beside the one in netinet6/mld6.c, I have 5 more that initially look like the memory for the callout struction could also be freed and still not have been stopped. These paths are problably not traveled much (detaches for less mainstream components), but stopping the callout is cheap and not at all risky. I will look at the 5 cases again and suggest all of these callout at risk be stopped under the same fix. --Mark Tinguely From suz at freebsd.org Thu Nov 10 07:50:24 2005 From: suz at freebsd.org (SUZUKI Shinsuke) Date: Thu Nov 10 07:50:35 2005 Subject: kern/88725: /usr/sbin/ppp panic with 2005.10.21 netinet6 changes Message-ID: <200511101550.jAAFoNFh049884@freefall.freebsd.org> The following reply was made to PR kern/88725; it has been noted by GNATS. From: SUZUKI Shinsuke To: snezhko@indorsoft.ru Cc: bug-followup@freebsd.org, freebsd-current@freebsd.org, vkushnir@i.kiev.ua, max@love2party.net, suz@freebsd.org Subject: Re: kern/88725: /usr/sbin/ppp panic with 2005.10.21 netinet6 changes Date: Thu, 10 Nov 2005 07:40:49 -0800 >>>>> On Thu, 10 Nov 2005 16:54:34 +0600 >>>>> snezhko@indorsoft.ru(Victor Snezhko) said: > Mark Tinguely has found the offending timer. > The following patch fixes the problem for me: Thanks. sounds right for me. So please commit it if when you've finished the test with fresh -current. From jhb at freebsd.org Thu Nov 10 08:50:16 2005 From: jhb at freebsd.org (John Baldwin) Date: Thu Nov 10 08:50:28 2005 Subject: kern/88725: /usr/sbin/ppp panic with 2005.10.21 netinet6 changes Message-ID: <200511101650.jAAGoFlZ058379@freefall.freebsd.org> The following reply was made to PR kern/88725; it has been noted by GNATS. From: John Baldwin To: freebsd-current@freebsd.org Cc: SUZUKI Shinsuke , snezhko@indorsoft.ru, max@love2party.net, bug-followup@freebsd.org Subject: Re: kern/88725: /usr/sbin/ppp panic with 2005.10.21 netinet6 changes Date: Thu, 10 Nov 2005 11:40:13 -0500 On Thursday 10 November 2005 10:40 am, SUZUKI Shinsuke wrote: > >>>>> On Thu, 10 Nov 2005 16:54:34 +0600 > >>>>> snezhko@indorsoft.ru(Victor Snezhko) said: > > > > Mark Tinguely has found the offending timer. > > The following patch fixes the problem for me: > > Thanks. sounds right for me. > So please commit it if when you've finished the test with fresh -current. As a general rule you should be using callout_drain() before freeing a callout to handle the race condition where the callout is running on another CPU (so callout_stop can't stop it) while you are freeing it. Note that you can not use callout_drain() if you are holding any locks, though. In those cases you will need to defer the callout_drain() and free() until you have dropped the locks. Here's one example fix: Index: nd6.c =================================================================== RCS file: /usr/cvs/src/sys/netinet6/nd6.c,v retrieving revision 1.62 diff -u -r1.62 nd6.c --- nd6.c 22 Oct 2005 05:07:16 -0000 1.62 +++ nd6.c 3 Nov 2005 19:56:42 -0000 @@ -398,7 +398,7 @@ if (tick < 0) { ln->ln_expire = 0; ln->ln_ntick = 0; - callout_stop(&ln->ln_timer_ch); + callout_drain(&ln->ln_timer_ch); } else { ln->ln_expire = time_second + tick / hz; if (tick > INT_MAX) { -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From snezhko at indorsoft.ru Thu Nov 10 09:10:30 2005 From: snezhko at indorsoft.ru (Victor Snezhko) Date: Thu Nov 10 09:22:00 2005 Subject: kern/88725: /usr/sbin/ppp panic with 2005.10.21 netinet6 changes Message-ID: <200511101710.jAAHAOoE064165@freefall.freebsd.org> The following reply was made to PR kern/88725; it has been noted by GNATS. From: Victor Snezhko To: Mark Tinguely Cc: bug-followup@freebsd.org, max@love2party.net, freebsd-current@freebsd.org, Max@freebsd.org Subject: Re: kern/88725: /usr/sbin/ppp panic with 2005.10.21 netinet6 changes Date: Thu, 10 Nov 2005 23:02:47 +0600 Mark Tinguely writes: > As a postscript: > > The problem was a dynamic timer was freed without being stopped first. > Obviously, the printf() should be removed from the final fix. > > After this discovery, I went through all of the callout_init() calls > in the kernel and looked at those that may be freed before possibly > being stopped. Beside the one in netinet6/mld6.c, I have 5 more > that initially look like the memory for the callout struction could > also be freed and still not have been stopped. These paths are problably > not traveled much (detaches for less mainstream components), but stopping > the callout is cheap and not at all risky. Not risky? I'm not an expert, but I think there might be issues when callout is stopped at the moment when on-timer function is executed (I see the following bad scenario: timer function begins to execute, then we call callout_stop(), then free all the necessary data structures and then control returns to the timer proc which could depend on the structures that are already freed) I.e. in each case we should check if callout_stop don't harm. On the other hand, callout_drain could introduce lock order issues (as John Baldwin pointed). > I will look at the 5 cases again and suggest all of these callout at > risk be stopped under the same fix. -- WBR, Victor V. Snezhko EMail: snezhko@indorsoft.ru From ucsaba at freemail.hu Thu Nov 10 10:20:17 2005 From: ucsaba at freemail.hu (Csaba Urban) Date: Thu Nov 10 10:20:30 2005 Subject: kern/88803: if_bridge + vlan + ipfw (or PF) panic Message-ID: <200511101815.jAAIFZ1p035454@www.freebsd.org> >Number: 88803 >Category: kern >Synopsis: if_bridge + vlan + ipfw (or PF) panic >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Nov 10 18:20:16 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Csaba Urban >Release: 6.0-RELEASE >Organization: >Environment: FreeBSD richfield 6.0-RELEASE FreeBSD 6.0-RELEASE #3: Sat Nov 5 19:22:54 CET 2005 csabi@richfield:/usr/obj/usr/src/sys/RICHFIELD i386 >Description: if_bridge interface with vlan members panic if kernel is built with ipfw or pf. For a few minutes it is forwarding packets but suddenly crash. Without ipfw and PF it seems to work fine. ifconfig: em0: flags=8843 mtu 1500 options=b inet xxx.xxx.48.131 netmask 0xffffff80 broadcast xxx.xxx.48.255 ether 00:30:48:82:78:02 media: Ethernet autoselect (100baseTX ) status: active em1: flags=8943 mtu 1500 options=b ether 00:30:48:82:78:03 media: Ethernet autoselect status: no carrier lo0: flags=8049 mtu 16384 inet 127.0.0.1 netmask 0xff000000 vlan1: flags=8943 mtu 1500 ether 00:30:48:82:78:03 media: Ethernet autoselect status: no carrier vlan: 101 parent interface: em1 vlan2: flags=8943 mtu 1500 ether 00:30:48:82:78:03 media: Ethernet autoselect status: no carrier vlan: 102 parent interface: em1 vlan3: flags=8943 mtu 1500 ether 00:30:48:82:78:03 media: Ethernet autoselect status: no carrier vlan: 103 parent interface: em1 bridge0: flags=8041 mtu 1500 inet xxx.xxx.49.65 netmask 0xffffffe0 ether ac:de:48:9f:9a:b5 priority 32768 hellotime 2 fwddelay 15 maxage 20 member: vlan3 flags=3 member: vlan2 flags=3 member: vlan1 flags=3 ipfw: 65535 1330 197783 allow ip from any to any here are 2 backtraces: richfield# cd /usr/obj/usr/src/sys/RICHFIELD richfield# kgdb kernel.debug /var/crash/vmcore.13 [GDB will not be able to debug user-mode threads: /usr/lib/libthread_db.so: Undefined symbol "ps_pglobal_lookup"] GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-marcel-freebsd". Unread portion of the kernel message buffer: em0: discard frame w/o packet header Fatal trap 12: page fault while in kernel mode fault virtual address = 0xbfc06478 fault code = supervisor read, page not present instruction pointer = 0x20:0xc05ea5e5 stack pointer = 0x28:0xd4235c00 frame pointer = 0x28:0xd4235c50 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 = 22 (irq11: em0) trap number = 12 panic: page fault Uptime: 5m48s Dumping 510 MB (2 chunks) chunk 0: 1MB (159 pages) ... ok chunk 1: 510MB (130528 pages) 494 478 462 446 430 414 398 382 366 350 334 318 302 286 270 254 238 222 206 190 174 158 142 126 110 94 78 62 46 30 14 #0 doadump () at pcpu.h:165 165 __asm __volatile("movl %%fs:0,%0" : "=r" (td)); (kgdb) bt #0 doadump () at pcpu.h:165 #1 0xc04c6326 in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:399 #2 0xc04c65bc in panic (fmt=0xc0618cbc "%s") at /usr/src/sys/kern/kern_shutdown.c:555 #3 0xc05fa1f8 in trap_fatal (frame=0xd4235bc0, eva=3217056888) at /usr/src/sys/i386/i386/trap.c:831 #4 0xc05f9f63 in trap_pfault (frame=0xd4235bc0, usermode=0, eva=3217056888) at /usr/src/sys/i386/i386/trap.c:742 #5 0xc05f9bc1 in trap (frame= {tf_fs = -1061027832, tf_es = -735903704, tf_ds = -1050935256, tf_edi = -1050531712, tf_esi = -1049086912, tf_ebp = -735880112, tf_isp = -735880212, tf_ebx = -1047088896, tf_edx = 0, tf_ecx = 26337282, tf_eax = 6430, tf_trapno = 12, tf_err = 0, tf_eip = -1067538971, tf_cs = 32, tf_eflags = 590342, tf_esp = 4, tf_ss = -1051155712}) at /usr/src/sys/i386/i386/trap.c:432 #6 0xc05ecbda in calltrap () at /usr/src/sys/i386/i386/exception.s:139 #7 0xc05ea5e5 in bus_dmamap_load (dmat=0xc17d8280, map=0x191e, buf=0x191e002, buflen=2046, callback=0xc0454ca0 , callback_arg=0xd4235c74, flags=0) at pmap.h:200 #8 0xc045558a in em_get_buf (i=136, adapter=0xc165c800, nmp=0x0) at /usr/src/sys/dev/em/if_em.c:2474 #9 0xc0455d5b in em_process_receive_interrupts (adapter=0xc165c800, count=-2) at /usr/src/sys/dev/em/if_em.c:2797 #10 0xc0452fb5 in em_intr (arg=0xc165c800) at /usr/src/sys/dev/em/if_em.c:992 #11 0xc04b1f1d in ithread_loop (arg=0xc1581700) at /usr/src/sys/kern/kern_intr.c:547 #12 0xc04b11a4 in fork_exit (callout=0xc04b1dc4 , arg=0xc1581700, frame=0xd4235d38) at /usr/src/sys/kern/kern_fork.c:789 #13 0xc05ecc3c in fork_trampoline () at /usr/src/sys/i386/i386/exception.s:208 (kgdb)quit richfield# kgdb kernel.debug /var/crash/vmcore.14 [GDB will not be able to debug user-mode threads: /usr/lib/libthread_db.so: Undefined symbol "ps_pglobal_lookup"] GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-marcel-freebsd". Unread portion of the kernel message buffer: Fatal trap 12: page fault while in kernel mode fault virtual address = 0x5dc004b fault code = supervisor read, page not present instruction pointer = 0x20:0xc04fd487 stack pointer = 0x28:0xd544099c frame pointer = 0x28:0xd54409a8 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 = 27 (swi1: net) trap number = 12 panic: page fault Uptime: 2m24s Dumping 510 MB (2 chunks) chunk 0: 1MB (159 pages) ... ok chunk 1: 510MB (130528 pages) 494 478 462 446 430 414 398 382 366 350 334 318 302 286 270 254 238 222 206 190 174 158 142 126 110 94 78 62 46 30 14 #0 doadump () at pcpu.h:165 165 __asm __volatile("movl %%fs:0,%0" : "=r" (td)); (kgdb) bt #0 doadump () at pcpu.h:165 #1 0xc04c6326 in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:399 #2 0xc04c65bc in panic (fmt=0xc0618cbc "%s") at /usr/src/sys/kern/kern_shutdown.c:555 #3 0xc05fa1f8 in trap_fatal (frame=0xd544095c, eva=98304075) at /usr/src/sys/i386/i386/trap.c:831 #4 0xc05f9f63 in trap_pfault (frame=0xd544095c, usermode=0, eva=98304075) at /usr/src/sys/i386/i386/trap.c:742 #5 0xc05f9bc1 in trap (frame= {tf_fs = 8, tf_es = -1066860504, tf_ds = -1050410968, tf_edi = -1049449728, tf_esi = 98304069, tf_ebp = -716961368, tf_isp = -716961400, tf_ebx = 98304069, tf_edx = 0, tf_ecx = 0, tf_eax = -1049448448, tf_trapno = 12, tf_err = 0, tf_eip = -1068510073, tf_cs = 32, tf_eflags = 590338, tf_esp = 1, tf_ss = 98304069}) at /usr/src/sys/i386/i386/trap.c:432 #6 0xc05ecbda in calltrap () at /usr/src/sys/i386/i386/exception.s:139 #7 0xc04fd487 in m_tag_copy (t=0x5dc0045, how=1) at /usr/src/sys/kern/uipc_mbuf2.c:405 #8 0xc04fd4f1 in m_tag_copy_chain (to=0xc172ab00, from=0xc172b000, how=1) at /usr/src/sys/kern/uipc_mbuf2.c:442 #9 0xc04fb8c1 in m_dup_pkthdr (to=0xc172ab00, from=0xc172b000, how=1) at /usr/src/sys/kern/uipc_mbuf.c:333 #10 0xc04fbbb4 in m_copypacket (m=0xc172b000, how=1) at /usr/src/sys/kern/uipc_mbuf.c:461 #11 0xc0535150 in bridge_broadcast (sc=0xc17a6200, src_if=0xc1745400, m=0xc172b000, runfilt=0) at /usr/src/sys/net/if_bridge.c:1871 #12 0xc053459a in bridge_start (ifp=0xc1745400) at /usr/src/sys/net/if_bridge.c:1491 #13 0xc0532967 in if_start (ifp=0x0) at /usr/src/sys/net/if.c:2212 #14 0xc05372e3 in ether_output_frame (ifp=0xc1745400, m=0xc172b000) at /usr/src/sys/net/if_ethersubr.c:408 #15 0xc05370c8 in ether_output (ifp=0xc1745400, m=0xc172b000, dst=0xd5440b18, rt0=0x0) at /usr/src/sys/net/if_ethersubr.c:361 #16 0xc0543080 in arprequest (ifp=0xc1745400, sip=0xd5440b50, tip=0xd5440bf4, enaddr=0xc157f6af "ŹŢHF@\227") at /usr/src/sys/netinet/if_ether.c:372 #17 0xc0543462 in arpresolve (ifp=0xc1745400, rt0=0xc17f87bc, m=0xc17fda00, dst=0xd5440bf0, desten=0xd5440b94 "") at /usr/src/sys/netinet/if_ether.c:499 #18 0xc0536d94 in ether_output (ifp=0xc1745400, m=0xc17fda00, dst=0xd5440bf0, rt0=0xc17f87bc) at /usr/src/sys/net/if_ethersubr.c:176 #19 0xc0556464 in ip_output (m=0xc17fda00, opt=0xc1745400, ro=0xd5440bec, flags=1, imo=0x0, inp=0x0) at /usr/src/sys/netinet/ip_output.c:776 #20 0xc05559b8 in ip_forward (m=0xc17fda00, srcrt=0) at /usr/src/sys/netinet/ip_input.c:1840 #21 0xc05545a3 in ip_input (m=0xc17fda00) at /usr/src/sys/netinet/ip_input.c:681 #22 0xc053c817 in netisr_processqueue (ni=0xc0679058) at /usr/src/sys/net/netisr.c:236 #23 0xc053ca12 in swi_net (dummy=0x0) at /usr/src/sys/net/netisr.c:349 #24 0xc04b1f1d in ithread_loop (arg=0xc1581480) at /usr/src/sys/kern/kern_intr.c:547 #25 0xc04b11a4 in fork_exit (callout=0xc04b1dc4 , arg=0xc1581480, frame=0xd5440d38) at /usr/src/sys/kern/kern_fork.c:789 #26 0xc05ecc3c in fork_trampoline () at /usr/src/sys/i386/i386/exception.s:208 >How-To-Repeat: Set up an environment like this: -x.x.2.1 [FreeBSD]x.x.1.1/24--tagged--[Cisco 2950] | | vlan1 vlan2 | | x.x.1.2/24 x.x.1.3/24 Send traffic through the bridge from x.x.1.2 and x.x.1.3 at the same time. FreeBSD will crash after a few minutes. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From ceri at FreeBSD.org Thu Nov 10 11:20:13 2005 From: ceri at FreeBSD.org (Ceri Davies) Date: Thu Nov 10 11:20:24 2005 Subject: misc/88807: Test PR Message-ID: <200511101916.jAAJGHEM072120@www.freebsd.org> >Number: 88807 >Category: misc >Synopsis: Test PR >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 Nov 10 19:20:11 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Ceri Davies >Release: Windows, unfortunately >Organization: The FreeBSD Project >Environment: 'uname' is not recognisable... blah, blah >Description: Test PR >How-To-Repeat: >Fix: Have no bugs ever >Release-Note: >Audit-Trail: >Unformatted: From ceri at FreeBSD.org Thu Nov 10 11:21:23 2005 From: ceri at FreeBSD.org (Ceri Davies) Date: Thu Nov 10 11:21:34 2005 Subject: junk/88807: Test PR Message-ID: <200511101921.jAAJLMir081257@freefall.freebsd.org> Synopsis: Test PR State-Changed-From-To: open->closed State-Changed-By: ceri State-Changed-When: Thu Nov 10 19:21:06 GMT 2005 State-Changed-Why: It works. http://www.freebsd.org/cgi/query-pr.cgi?pr=88807 From roberto at spock.cl Thu Nov 10 13:20:15 2005 From: roberto at spock.cl (Roberto de Iriarte) Date: Thu Nov 10 13:20:26 2005 Subject: kern/87248: [iwi] Data-corruption while using WEP on if_iwi Message-ID: <200511102120.jAALKE9R097247@freefall.freebsd.org> The following reply was made to PR kern/87248; it has been noted by GNATS. From: Roberto de Iriarte To: bug-followup@FreeBSD.org, svmaris@madline.net, roberto@spock.cl Cc: Subject: Re: kern/87248: [iwi] Data-corruption while using WEP on if_iwi Date: Thu, 10 Nov 2005 18:17:24 -0300 The very same happens under 6.0-STABLE (as of Nov 9), with a 40 bit wep key. (i have not tried 104 bit wep iwi0@pci2:2:0: class=0x028000 card=0x27518086 chip=0x42208086 rev=0x05 hdr=0x00 vendor = 'Intel Corporation' device = 'PRO/Wireless 2200BG Network Connection' class = network Firmware version [ibmito /home/roberto] % pkg_info |grep iwi iwi-firmware-2.3_3 Intel PRO/Wireless 2200 Driver Firmware From josh at elsasser.org Thu Nov 10 14:20:17 2005 From: josh at elsasser.org (Josh Elsasser) Date: Thu Nov 10 14:20:29 2005 Subject: bin/88813: PATCH: cd builtin in sh can cd to wrong directory Message-ID: <1131660509.0@anubis> >Number: 88813 >Category: bin >Synopsis: PATCH: cd builtin in sh can cd to wrong directory >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 Nov 10 22:20:16 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Josh Elsasser >Release: FreeBSD 6.0-STABLE i386 >Organization: >Environment: System: FreeBSD 6.0-STABLE #0: Fri Nov 4 13:20:22 EST 2005 joshe@anubis:/usr/obj/usr/src/sys/ANUBIS >Description: The cd builtin in sh removes a leading ./ from the directory but does not check for additional / characters. This is done after the stat() but before the actual chdir(), so the directory must exist in the working directory for the bug to be exhibited. >How-To-Repeat: cd mkdir usr cd .//usr pwd >Fix: There is probably a better way to fix this but I am just interested in fixing my shell script. --- sh-cd.diff begins here --- --- /usr/src/bin/sh/cd.c Tue Apr 6 16:06:51 2004 +++ cd.c Thu Nov 10 16:40:14 2005 @@ -123,8 +123,12 @@ /* * XXX - rethink */ - if (p[0] == '.' && p[1] == '/' && p[2] != '\0') - p += 2; + if (p[0] == '.') { + for (ch = 1; p[ch] == '/'; ch++) + ; + if (p[ch] != '\0') + p += ch; + } print = strcmp(p, dest); } if (docd(p, print, phys) >= 0) --- sh-cd.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From aschleichmd at t-online.de Thu Nov 10 17:10:17 2005 From: aschleichmd at t-online.de (Arno Schleich) Date: Thu Nov 10 17:10:42 2005 Subject: kern/88820: Erratic recognition of sound card by 6.0 kernel Message-ID: <200511110108.jAB18hBR022634@www.freebsd.org> >Number: 88820 >Category: kern >Synopsis: Erratic recognition of sound card by 6.0 kernel >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 Nov 11 01:10:15 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Arno Schleich >Release: FreeBSD 6.0 >Organization: >Environment: >Description: VIA 8285 sound card works in an erratic fashion; at times reboot brings it back; was unproblematic under FreeBSD 5.4; kernel compiled with device sound device "snd_via82C686" which is unchanged from the working 5.4 configuration output of env is SSH_AGENT_PID=583 TERM=xterm DESKTOP_STARTUP_ID= SHELL=/usr/local/bin/bash GTK_RC_FILES=/usr/X11R6/etc/gtk/gtkrc:/home/arno/.gtkrc-1.2-gnome2 WINDOWID=25166503 USER=arno ENV=/home/arno/.shrc GNOME_KEYRING_SOCKET=/var/tmp/keyring-aW8NCr/socket SSH_AUTH_SOCK=/tmp/ssh-wZmUD9u2K5/agent.570 SESSION_MANAGER=local/mushin:/tmp/.ICE-unix/570 USERNAME=arno PAGER=more FTP_PASSIVE_MODE=YES PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin:/home/arno/bin DESKTOP_SESSION=gnome MAIL=/var/mail/arno BLOCKSIZE=K GDM_XSERVER_LOCATION=local PWD=/home/arno EDITOR=vi GDMSESSION=gnome SHLVL=1 HOME=/home/arno GNOME_DESKTOP_SESSION_ID=Default LOGNAME=arno DISPLAY=:0.0 COLORTERM=gnome-terminal XAUTHORITY=/home/arno/.Xauthority _=/usr/bin/env This is a snippet from dmesg pcm0: port 0x1000-0x10ff,0x1c54-0x1c57,0x1c50-0x1c53 irq 5 at device 7.5 on pci0 pcm0: [GIANT-LOCKED] pcm0: pci0: at device 7.6 (no driver attached) it appears like this idependent of whether the sound card worked or not I am not sure if I am doing something wrong or there is actually a problem in the way the 6.0 kernel handels that sound card or its own boot sequence >How-To-Repeat: The problem is erratic, some boots bring up the sound card and it is then accessible to applications, at other times cat /dev/sndstat does not show a configured sound card and there is no /dev/dsp. >Fix: none >Release-Note: >Audit-Trail: >Unformatted: From craig at tobuj.gank.org Thu Nov 10 17:10:17 2005 From: craig at tobuj.gank.org (Craig Boston) Date: Thu Nov 10 17:10:44 2005 Subject: bin/88821: [PATCH] IPv6 support for ggate Message-ID: <20051111010811.1E7032D2D3@ion.gank.org> >Number: 88821 >Category: bin >Synopsis: [PATCH] IPv6 support for ggate >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: Fri Nov 11 01:10:16 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Craig Boston >Release: FreeBSD 6.0-STABLE i386 >Organization: I wish I had some >Environment: System: FreeBSD hostname.gank.org 6.0-STABLE FreeBSD 6.0-STABLE #0: Sat Nov 5 20:59:05 CST 2005 root@hostname.gank.org:/compile/obj/compile/src/sys/HOSTNAME i386 >Description: Adds full IPv6 support to ggated and complete address family independence to ggatec. >How-To-Repeat: n/a >Fix: --- ggate_ipv6_2.patch begins here --- diff -ruN ggate.orig/ggatec/ggatec.c ggate/ggatec/ggatec.c --- ggate.orig/ggatec/ggatec.c Thu Nov 10 18:53:21 2005 +++ ggate/ggatec/ggatec.c Thu Nov 10 18:53:25 2005 @@ -50,6 +50,7 @@ #include #include #include +#include #include #include "ggate.h" @@ -63,7 +64,7 @@ static unsigned flags = 0; static int force = 0; static unsigned queue_size = G_GATE_QUEUE_SIZE; -static unsigned port = G_GATE_PORT; +static const char *port = G_GATE_PORT_STR; static off_t mediasize; static unsigned sectorsize = 0; static unsigned timeout = G_GATE_TIMEOUT; @@ -244,37 +245,55 @@ struct g_gate_version ver; struct g_gate_cinit cinit; struct g_gate_sinit sinit; - struct sockaddr_in serv; + struct addrinfo hints; + struct addrinfo *res, *p; int sfd; /* * Do the network stuff. */ - bzero(&serv, sizeof(serv)); - serv.sin_family = AF_INET; - serv.sin_addr.s_addr = g_gate_str2ip(host); - if (serv.sin_addr.s_addr == INADDR_NONE) { - g_gate_log(LOG_DEBUG, "Invalid IP/host name: %s.", host); + bzero(&hints, sizeof(hints)); + hints.ai_family = PF_UNSPEC; + hints.ai_socktype = SOCK_STREAM; + sfd = -1; + if (getaddrinfo(host, port, &hints, &res) != 0) { + g_gate_log(LOG_DEBUG, "Invalid IP/host name or port: %s (%s).", + host, port); return (-1); - } - serv.sin_port = htons(port); - sfd = socket(AF_INET, SOCK_STREAM, 0); - if (sfd == -1) { - g_gate_log(LOG_DEBUG, "Cannot open socket: %s.", - strerror(errno)); - return (-1); - } + } else { + p = res; + while (p) { + sfd = socket(p->ai_family, p->ai_socktype, 0); + if (sfd == -1) { + g_gate_log(LOG_DEBUG, "Cannot open socket: %s.", + strerror(errno)); + freeaddrinfo(res); + return (-1); + } - g_gate_socket_settings(sfd); + g_gate_socket_settings(sfd); - if (connect(sfd, (struct sockaddr *)&serv, sizeof(serv)) == -1) { - g_gate_log(LOG_DEBUG, "Cannot connect to server: %s.", - strerror(errno)); - close(sfd); + if (connect(sfd, p->ai_addr, p->ai_addrlen) == 0) + break; + + /* Non-critical error, try next address */ + g_gate_log(LOG_DEBUG, "Cannot connect to server: %s.", + strerror(errno)); + close(sfd); + sfd = -1; + + p = p->ai_next; + } + } + freeaddrinfo(res); + + if (sfd == -1) { + g_gate_log(LOG_DEBUG, "Invalid IP/host name or port: %s (%s).", + host, port); return (-1); } - g_gate_log(LOG_INFO, "Connected to the server: %s:%d.", host, port); + g_gate_log(LOG_INFO, "Connected to the server: %s (%s).", host, port); /* * Create and send version packet. @@ -454,7 +473,7 @@ ggioc.gctl_maxcount = queue_size; ggioc.gctl_timeout = timeout; ggioc.gctl_unit = unit; - snprintf(ggioc.gctl_info, sizeof(ggioc.gctl_info), "%s:%u %s", host, + snprintf(ggioc.gctl_info, sizeof(ggioc.gctl_info), "%s (%s) %s", host, port, path); g_gate_ioctl(G_GATE_CMD_CREATE, &ggioc); if (unit == -1) @@ -535,9 +554,7 @@ if (action != CREATE && action != RESCUE) usage(); errno = 0; - port = strtoul(optarg, NULL, 10); - if (port == 0 && errno != 0) - errx(EXIT_FAILURE, "Invalid port."); + port = optarg; break; case 'q': if (action != CREATE) diff -ruN ggate.orig/ggated/ggated.8 ggate/ggated/ggated.8 --- ggate.orig/ggated/ggated.8 Thu Nov 10 18:53:21 2005 +++ ggate/ggated/ggated.8 Thu Nov 10 18:53:25 2005 @@ -55,7 +55,10 @@ Available options: .Bl -tag -width ".Ar exports\ file" .It Fl a Ar address -Specifies an IP address to bind to. +Specifies an IP address to bind to. To bind to multiple addresses, +specify each address with a separate +.Fl a +option. .It Fl h Print available options. .It Fl n @@ -74,7 +77,7 @@ Size of send buffer to use. Default is 131072 (128kB). .It Fl v -Do not fork, run in foreground and print debug informations on standard +Do not fork, run in foreground and print debug information on standard output. .It Ar "exports file" An alternate location for the exports file. @@ -82,9 +85,10 @@ .Pp The format of an exports file is as follows: .Bd -literal -offset indent -1.2.3.4 RO /dev/acd0 -1.2.3.0/24 RW /tmp/test.img -hostname WO /tmp/image +1.2.3.4 RO /dev/acd0 +1.2.3.0/24 RW /tmp/test.img +2001:DB8:17C0::/64 RW /tmp/foo +hostname WO /tmp/image .Ed .Sh EXIT STATUS Exit status is 0 on success, or 1 if the command fails. diff -ruN ggate.orig/ggated/ggated.c ggate/ggated/ggated.c --- ggate.orig/ggated/ggated.c Thu Nov 10 18:53:21 2005 +++ ggate/ggated/ggated.c Thu Nov 10 18:53:25 2005 @@ -44,6 +44,7 @@ #include #include #include +#include #include #include #include @@ -68,7 +69,7 @@ time_t c_birthtime; char *c_path; uint64_t c_token; - in_addr_t c_srcip; + struct sockaddr_storage c_srcaddr; LIST_ENTRY(ggd_connection) c_next; }; @@ -83,16 +84,22 @@ #define r_error r_hdr.gh_error struct ggd_export { - char *e_path; /* path to device/file */ - in_addr_t e_ip; /* remote IP address */ - in_addr_t e_mask; /* IP mask */ - unsigned e_flags; /* flags (RO/RW) */ - SLIST_ENTRY(ggd_export) e_next; + char *e_path; /* path to device/file */ + struct sockaddr_storage e_addr; /* remote IP address */ + struct sockaddr_storage e_mask; /* IP mask */ + unsigned e_flags; /* flags (RO/RW) */ + SLIST_ENTRY(ggd_export) e_next; +}; + +struct ggd_listen { + const char *l_name; /* host name / address */ + struct sockaddr_storage l_addr; /* bind address & port */ + int l_fd; /* socket */ + SLIST_ENTRY(ggd_listen) l_next; }; static const char *exports_file = GGATED_EXPORT_FILE; static int got_sighup = 0; -in_addr_t bindaddr; static TAILQ_HEAD(, ggd_request) inqueue = TAILQ_HEAD_INITIALIZER(inqueue); static TAILQ_HEAD(, ggd_request) outqueue = TAILQ_HEAD_INITIALIZER(outqueue); @@ -115,71 +122,88 @@ exit(EXIT_FAILURE); } -static char * -ip2str(in_addr_t ip) +static const char * +ip2str(struct sockaddr *addr) { - static char sip[16]; + static char sip[64]; + + if (getnameinfo(addr, addr->sa_len, sip, sizeof(sip), + NULL, 0, NI_NUMERICHOST) == 0) + return (sip); - snprintf(sip, sizeof(sip), "%u.%u.%u.%u", - ((ip >> 24) & 0xff), - ((ip >> 16) & 0xff), - ((ip >> 8) & 0xff), - (ip & 0xff)); - return (sip); + return ("Unknown"); } -static in_addr_t -countmask(unsigned m) +static struct sockaddr_storage +countmask(struct sockaddr* addr, int mask) /* also normalizes addr */ { - in_addr_t mask; + struct sockaddr_storage ss; + int i, alen; + unsigned char *mp, *ap; - if (m == 0) { - mask = 0x0; - } else { - mask = 1 << (32 - m); - mask--; - mask = ~mask; + bzero(&ss, sizeof(ss)); + ss.ss_family = addr->sa_family; + ss.ss_len = addr->sa_len; + + switch (addr->sa_family) { + case AF_INET: + alen = 4; /* 32 bits */ + ap = (unsigned char*)&((struct sockaddr_in*)addr)->sin_addr.s_addr; + mp = (unsigned char*)&((struct sockaddr_in*)&ss)->sin_addr.s_addr; + break; + case AF_INET6: + alen = 16; /* 128 bits */ + ap = (unsigned char*)&((struct sockaddr_in6*)addr)->sin6_addr.s6_addr; + mp = (unsigned char*)&((struct sockaddr_in6*)&ss)->sin6_addr.s6_addr; + break; + default: + g_gate_xlog("Unknown address family in countmask"); + } + + i = 0; + while (mask > 0 && i < alen) { + if (mask < 8) { + mp[i] = ~(0xff >> mask); + ap[i] &= mp[i]; + } else + mp[i] = 0xff; + i++; + mask -= 8; } - return (mask); + while (i < alen) { /* zero out remaining bits of addr */ + ap[i] = 0; + i++; + } + + return (ss); } static void line_parse(char *line, unsigned lineno) { struct ggd_export *ex; - char *word, *path, *sflags; - unsigned flags, i, vmask; - in_addr_t ip, mask; + char *pmask, *word, *path, *sflags; + unsigned flags, i; + int vmask; + struct addrinfo hints, *res, *p; - ip = mask = flags = vmask = 0; + flags = vmask = 0; path = NULL; sflags = NULL; + pmask = NULL; for (i = 0, word = strtok(line, " \t"); word != NULL; i++, word = strtok(NULL, " \t")) { switch (i) { case 0: /* IP address or host name */ - ip = g_gate_str2ip(strsep(&word, "/")); - if (ip == INADDR_NONE) { + bzero(&hints, sizeof(hints)); + hints.ai_family = PF_UNSPEC; + hints.ai_socktype = SOCK_STREAM; + if (getaddrinfo(strsep(&word, "/"), NULL, &hints, + &res) != 0) g_gate_xlog("Invalid IP/host name at line %u.", lineno); - } - ip = ntohl(ip); - if (word == NULL) - vmask = 32; - else { - errno = 0; - vmask = strtoul(word, NULL, 10); - if (vmask == 0 && errno != 0) { - g_gate_xlog("Invalid IP mask value at " - "line %u.", lineno); - } - if ((unsigned)vmask > 32) { - g_gate_xlog("Invalid IP mask value at line %u.", - lineno); - } - } - mask = countmask(vmask); + pmask = word; break; case 1: /* flags */ if (strcasecmp("rd", word) == 0 || @@ -209,22 +233,46 @@ if (i != 3) g_gate_xlog("Too few arguments at line %u.", lineno); - ex = malloc(sizeof(*ex)); - if (ex == NULL) - g_gate_xlog("No enough memory."); - ex->e_path = strdup(path); - if (ex->e_path == NULL) - g_gate_xlog("No enough memory."); - - /* Made 'and' here. */ - ex->e_ip = (ip & mask); - ex->e_mask = mask; - ex->e_flags = flags; + p = res; + while (p) { + ex = malloc(sizeof(*ex)); + if (ex == NULL) + g_gate_xlog("Not enough memory."); + ex->e_path = strdup(path); + if (ex->e_path == NULL) + g_gate_xlog("Not enough memory."); + + if (pmask == NULL && p->ai_family == AF_INET6) + vmask = 128; + else if (pmask == NULL) + vmask = 32; + else { + errno = 0; + vmask = strtoul(pmask, NULL, 10); + if (vmask == 0 && errno != 0) { + g_gate_xlog("Invalid IP mask value at " + "line %u.", lineno); + } + } + + if ((vmask > 32 && p->ai_family == AF_INET) || + (vmask > 128 && p->ai_family == AF_INET6)) + g_gate_xlog("Invalid IP mask value at line %u", + lineno); + + memcpy(&ex->e_addr, p->ai_addr, p->ai_addrlen); + ex->e_mask = countmask((struct sockaddr*)&ex->e_addr, vmask); + ex->e_flags = flags; + + SLIST_INSERT_HEAD(&exports, ex, e_next); - SLIST_INSERT_HEAD(&exports, ex, e_next); + g_gate_log(LOG_DEBUG, "Added %s/%u %s %s to exports list.", + ip2str((struct sockaddr*)&ex->e_addr), vmask, path, sflags); - g_gate_log(LOG_DEBUG, "Added %s/%u %s %s to exports list.", - ip2str(ex->e_ip), vmask, path, sflags); + p = p->ai_next; + } + + freeaddrinfo(res); } static void @@ -302,12 +350,12 @@ exports_check(struct ggd_export *ex, struct g_gate_cinit *cinit, struct ggd_connection *conn) { - char ipmask[32]; /* 32 == strlen("xxx.xxx.xxx.xxx/xxx.xxx.xxx.xxx")+1 */ + char ipmask[80]; /* 80 == strlen("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx")+1 */ int error = 0, flags; - strlcpy(ipmask, ip2str(ex->e_ip), sizeof(ipmask)); + strlcpy(ipmask, ip2str((struct sockaddr*)&ex->e_addr), sizeof(ipmask)); strlcat(ipmask, "/", sizeof(ipmask)); - strlcat(ipmask, ip2str(ex->e_mask), sizeof(ipmask)); + strlcat(ipmask, ip2str((struct sockaddr*)&ex->e_mask), sizeof(ipmask)); if ((cinit->gc_flags & GGATE_FLAG_RDONLY) != 0) { if (ex->e_flags == O_WRONLY) { g_gate_log(LOG_WARNING, "Read-only access requested, " @@ -355,17 +403,53 @@ return (0); } +static int +mask_compare(struct sockaddr *a, struct sockaddr *b, struct sockaddr *m) { + unsigned char *ap, *bp, *mp; + int alen; + if (a->sa_family != m->sa_family || b->sa_family != m->sa_family) + return (0); + + switch (m->sa_family) { + case AF_INET: + alen = 4; + ap = (unsigned char*)&((struct sockaddr_in*)a)->sin_addr.s_addr; + bp = (unsigned char*)&((struct sockaddr_in*)b)->sin_addr.s_addr; + mp = (unsigned char*)&((struct sockaddr_in*)m)->sin_addr.s_addr; + break; + case AF_INET6: + alen = 16; + ap = (unsigned char*)&((struct sockaddr_in6*)a)->sin6_addr.s6_addr; + bp = (unsigned char*)&((struct sockaddr_in6*)b)->sin6_addr.s6_addr; + mp = (unsigned char*)&((struct sockaddr_in6*)m)->sin6_addr.s6_addr; + break; + default: + return (0); + } + + while (alen > 0) { + if ((*ap & *mp) != (*bp & *mp)) + return (0); + + ap++; + bp++; + mp++; + alen--; + } + + return (1); +} + static struct ggd_export * exports_find(struct sockaddr *s, struct g_gate_cinit *cinit, struct ggd_connection *conn) { struct ggd_export *ex; - in_addr_t ip; int error; - ip = htonl(((struct sockaddr_in *)(void *)s)->sin_addr.s_addr); SLIST_FOREACH(ex, &exports, e_next) { - if ((ip & ex->e_mask) != ex->e_ip) { + if (!mask_compare(s, (struct sockaddr*)&ex->e_addr, + (struct sockaddr*)&ex->e_mask)) { g_gate_log(LOG_DEBUG, "exports[%s]: IP mismatch.", ex->e_path); continue; @@ -384,7 +468,7 @@ } } g_gate_log(LOG_WARNING, "Unauthorized connection from: %s.", - ip2str(ip)); + ip2str(s)); errno = EPERM; return (NULL); } @@ -404,7 +488,8 @@ LIST_REMOVE(conn, c_next); g_gate_log(LOG_NOTICE, "Connection from %s [%s] removed.", - ip2str(conn->c_srcip), conn->c_path); + ip2str((struct sockaddr*)&conn->c_srcaddr), + conn->c_path); close(conn->c_diskfd); close(conn->c_sendfd); close(conn->c_recvfd); @@ -430,7 +515,6 @@ connection_new(struct g_gate_cinit *cinit, struct sockaddr *s, int sfd) { struct ggd_connection *conn; - in_addr_t ip; /* * First, look for old connections. @@ -449,8 +533,7 @@ return (NULL); } conn->c_token = cinit->gc_token; - ip = htonl(((struct sockaddr_in *)(void *)s)->sin_addr.s_addr); - conn->c_srcip = ip; + memcpy(&conn->c_srcaddr, s, s->sa_len); conn->c_sendfd = conn->c_recvfd = -1; if ((cinit->gc_flags & GGATE_FLAG_SEND) != 0) conn->c_sendfd = sfd; @@ -461,7 +544,7 @@ time(&conn->c_birthtime); conn->c_flags = cinit->gc_flags; LIST_INSERT_HEAD(&connections, conn, c_next); - g_gate_log(LOG_DEBUG, "Connection created [%s, %s].", ip2str(ip), + g_gate_log(LOG_DEBUG, "Connection created [%s, %s].", ip2str(s), conn->c_path); return (conn); } @@ -470,13 +553,10 @@ connection_add(struct ggd_connection *conn, struct g_gate_cinit *cinit, struct sockaddr *s, int sfd) { - in_addr_t ip; - - ip = htonl(((struct sockaddr_in *)(void *)s)->sin_addr.s_addr); if ((cinit->gc_flags & GGATE_FLAG_SEND) != 0) { if (conn->c_sendfd != -1) { g_gate_log(LOG_WARNING, - "Send socket already exists [%s, %s].", ip2str(ip), + "Send socket already exists [%s, %s].", ip2str(s), conn->c_path); return (EEXIST); } @@ -485,12 +565,12 @@ if (conn->c_recvfd != -1) { g_gate_log(LOG_WARNING, "Receive socket already exists [%s, %s].", - ip2str(ip), conn->c_path); + ip2str(s), conn->c_path); return (EEXIST); } conn->c_recvfd = sfd; } - g_gate_log(LOG_DEBUG, "Connection added [%s, %s].", ip2str(ip), + g_gate_log(LOG_DEBUG, "Connection added [%s, %s].", ip2str(s), conn->c_path); return (0); } @@ -505,7 +585,7 @@ LIST_REMOVE(conn, c_next); g_gate_log(LOG_DEBUG, "Connection removed [%s %s].", - ip2str(conn->c_srcip), conn->c_path); + ip2str((struct sockaddr*)&conn->c_srcaddr), conn->c_path); if (conn->c_sendfd != -1) close(conn->c_sendfd); if (conn->c_recvfd != -1) @@ -815,10 +895,7 @@ static void log_connection(struct sockaddr *from) { - in_addr_t ip; - - ip = htonl(((struct sockaddr_in *)(void *)from)->sin_addr.s_addr); - g_gate_log(LOG_INFO, "Connection from: %s.", ip2str(ip)); + g_gate_log(LOG_INFO, "Connection from: %s.", ip2str(from)); } static int @@ -940,14 +1017,16 @@ int main(int argc, char *argv[]) { - struct sockaddr_in serv; - struct sockaddr from; + SLIST_HEAD(, ggd_listen) listens = SLIST_HEAD_INITIALIZER(&listens); + struct ggd_listen *cl, *nl; + struct addrinfo hints, *res, *p; + struct sockaddr_storage from; socklen_t fromlen; - int sfd, tmpsfd; - unsigned port; + int maxfd, tmpsfd; + fd_set listenfds; + const char *port; - bindaddr = htonl(INADDR_ANY); - port = G_GATE_PORT; + port = G_GATE_PORT_STR; for (;;) { int ch; @@ -956,20 +1035,17 @@ break; switch (ch) { case 'a': - bindaddr = g_gate_str2ip(optarg); - if (bindaddr == INADDR_NONE) { - errx(EXIT_FAILURE, - "Invalid IP/host name to bind to."); - } + nl = malloc(sizeof(*nl)); + bzero(nl, sizeof(*nl)); + nl->l_name = optarg; + /* delay resolution until we know port number */ + SLIST_INSERT_HEAD(&listens, nl, l_next); break; case 'n': nagle = 0; break; case 'p': - errno = 0; - port = strtoul(optarg, NULL, 10); - if (port == 0 && errno != 0) - errx(EXIT_FAILURE, "Invalid port."); + port = optarg; break; case 'R': errno = 0; @@ -998,6 +1074,79 @@ exports_file = argv[0]; exports_get(); + if (SLIST_EMPTY(&listens)) { + /* Bind to all address families */ + bzero(&hints, sizeof(hints)); + hints.ai_family = PF_UNSPEC; + hints.ai_flags = AI_PASSIVE; + hints.ai_socktype = SOCK_STREAM; + if (getaddrinfo(NULL, port, &hints, &res)) + g_gate_xlog("Cannot get passive address: %s", + strerror(errno)); + + p = res; + while (p) { + nl = malloc(sizeof(*nl)); + bzero(nl, sizeof(*nl)); + memcpy(&nl->l_addr, p->ai_addr, p->ai_addrlen); + SLIST_INSERT_HEAD(&listens, nl, l_next); + + p = p->ai_next; + } + freeaddrinfo(res); + } else { + /* Bind to some specific addresses */ + SLIST_FOREACH(cl, &listens, l_next) { + bzero(&hints, sizeof(hints)); + hints.ai_family = PF_UNSPEC; + hints.ai_socktype = SOCK_STREAM; + if (getaddrinfo(cl->l_name, port, &hints, &res)) + g_gate_xlog("Invalid IP/host name to bind to: " + "%s", cl->l_name); + + /* Re-use current list entry for first match, add + * new ones after that */ + p = res; + nl = cl; + while (p) { + if (p != res) { + nl = malloc(sizeof(*nl)); + bzero(nl, sizeof(*nl)); + } + + memcpy(&nl->l_addr, p->ai_addr, p->ai_addrlen); + + if (p != res) { + SLIST_INSERT_HEAD(&listens, nl, l_next); + } + p = p->ai_next; + } + freeaddrinfo(res); + } + } + + /* Actually create sockets and bind to them */ + maxfd = 0; + SLIST_FOREACH(cl, &listens, l_next) { + cl->l_fd = socket(cl->l_addr.ss_family, SOCK_STREAM, 0); + if (cl->l_fd == -1) + g_gate_xlog("Cannot open stream socket: %s.", + strerror(errno)); + g_gate_socket_settings(cl->l_fd); + + if (bind(cl->l_fd, (struct sockaddr *)&cl->l_addr, + cl->l_addr.ss_len) == -1) + g_gate_xlog("bind(): %s.", strerror(errno)); + if (listen(cl->l_fd, 5) == -1) + g_gate_xlog("listen(): %s.", strerror(errno)); + + if (maxfd <= cl->l_fd) + maxfd = cl->l_fd + 1; + + g_gate_log(LOG_INFO, "Listen on address: %s (%s).", + ip2str((struct sockaddr *)&cl->l_addr), port); + } + if (!g_gate_verbose) { /* Run in daemon mode. */ if (daemon(0, 0) == -1) @@ -1005,40 +1154,44 @@ } signal(SIGCHLD, SIG_IGN); - - sfd = socket(AF_INET, SOCK_STREAM, 0); - if (sfd == -1) - g_gate_xlog("Cannot open stream socket: %s.", strerror(errno)); - bzero(&serv, sizeof(serv)); - serv.sin_family = AF_INET; - serv.sin_addr.s_addr = bindaddr; - serv.sin_port = htons(port); - - g_gate_socket_settings(sfd); - - if (bind(sfd, (struct sockaddr *)&serv, sizeof(serv)) == -1) - g_gate_xlog("bind(): %s.", strerror(errno)); - if (listen(sfd, 5) == -1) - g_gate_xlog("listen(): %s.", strerror(errno)); - - g_gate_log(LOG_INFO, "Listen on port: %d.", port); - signal(SIGHUP, huphandler); for (;;) { - fromlen = sizeof(from); - tmpsfd = accept(sfd, &from, &fromlen); - if (tmpsfd == -1) - g_gate_xlog("accept(): %s.", strerror(errno)); + FD_ZERO(&listenfds); + SLIST_FOREACH(cl, &listens, l_next) { + FD_SET(cl->l_fd, &listenfds); + } + + select(maxfd, &listenfds, NULL, NULL, NULL); if (got_sighup) { got_sighup = 0; exports_get(); } - if (!handshake(&from, tmpsfd)) - close(tmpsfd); + SLIST_FOREACH(cl, &listens, l_next) { + if (!FD_ISSET(cl->l_fd, &listenfds)) + continue; + + fromlen = sizeof(from); + tmpsfd = accept(cl->l_fd, (struct sockaddr*)&from, + &fromlen); + + if (tmpsfd == -1) { + g_gate_log(LOG_WARNING, "accept(): %s.", + strerror(errno)); + continue; + } + + if (!handshake((struct sockaddr*)&from, tmpsfd)) + close(tmpsfd); + } + } + while (!SLIST_EMPTY(&listens)) { + cl = SLIST_FIRST(&listens); + close(cl->l_fd); + SLIST_REMOVE_HEAD(&listens, l_next); + free(cl); } - close(sfd); exit(EXIT_SUCCESS); } diff -ruN ggate.orig/shared/ggate.c ggate/shared/ggate.c --- ggate.orig/shared/ggate.c Thu Nov 10 18:53:21 2005 +++ ggate/shared/ggate.c Thu Nov 10 18:53:25 2005 @@ -375,21 +375,3 @@ exit(EXIT_SUCCESS); } #endif /* LIBGEOM */ - -in_addr_t -g_gate_str2ip(const char *str) -{ - struct hostent *hp; - in_addr_t ip; - - ip = inet_addr(str); - if (ip != INADDR_NONE) { - /* It is a valid IP address. */ - return (ip); - } - /* Check if it is a valid host name. */ - hp = gethostbyname(str); - if (hp == NULL) - return (INADDR_NONE); - return (((struct in_addr *)(void *)hp->h_addr)->s_addr); -} diff -ruN ggate.orig/shared/ggate.h ggate/shared/ggate.h --- ggate.orig/shared/ggate.h Thu Nov 10 18:53:21 2005 +++ ggate/shared/ggate.h Thu Nov 10 18:53:25 2005 @@ -33,6 +33,7 @@ #include #define G_GATE_PORT 3080 +#define G_GATE_PORT_STR "3080" #define G_GATE_RCVBUF 131072 #define G_GATE_SNDBUF 131072 @@ -110,7 +111,6 @@ #ifdef LIBGEOM void g_gate_list(int unit, int verbose); #endif -in_addr_t g_gate_str2ip(const char *str); /* * g_gate_swap2h_* - functions swap bytes to host byte order (from big endian). --- ggate_ipv6_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Thu Nov 10 17:28:44 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Thu Nov 10 17:29:07 2005 Subject: kern/88820: [sound] Erratic recognition of VIA 8285 sound card by 6.0 kernel Message-ID: <200511110128.jAB1ShHv032434@freefall.freebsd.org> Old Synopsis: Erratic recognition of sound card by 6.0 kernel New Synopsis: [sound] Erratic recognition of VIA 8285 sound card by 6.0 kernel Responsible-Changed-From-To: freebsd-bugs->freebsd-multimedia Responsible-Changed-By: linimon Responsible-Changed-When: Fri Nov 11 01:27:33 GMT 2005 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=88820 From per.qu at email.it Thu Nov 10 17:50:32 2005 From: per.qu at email.it (ale) Date: Thu Nov 10 17:50:44 2005 Subject: kern/88823: atapicam - kernel trap 12 Message-ID: <200511110143.jAB1hrAT040581@www.freebsd.org> >Number: 88823 >Category: kern >Synopsis: atapicam - kernel trap 12 >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 Nov 11 01:50:15 GMT 2005 >Closed-Date: >Last-Modified: >Originator: ale >Release: 6.0-RELEASE >Organization: >Environment: FreeBSD regulus.leo 6.0-RELEASE FreeBSD 6.0-RELEASE #0: Thu Nov 3 09:36:13 UTC 2005 root@x64.samsco.home:/usr/obj/usr/src/sys/GENERIC i386 >Description: Loading and unloading atapicam in a rapid seqeunce cause a kernel trap 12. This doesn't happen waiting some seconds between the to operations. >How-To-Repeat: kldload atapicam;kldunload atapicam >Fix: >Release-Note: >Audit-Trail: >Unformatted: From thompsa at FreeBSD.org Thu Nov 10 21:33:44 2005 From: thompsa at FreeBSD.org (Andrew Thompson) Date: Thu Nov 10 21:33:56 2005 Subject: kern/88803: [panic] if_bridge + vlan + ipfw (or PF) panic Message-ID: <200511110533.jAB5XhBU074139@freefall.freebsd.org> Synopsis: [panic] if_bridge + vlan + ipfw (or PF) panic Responsible-Changed-From-To: freebsd-bugs->thompsa Responsible-Changed-By: thompsa Responsible-Changed-When: Fri Nov 11 05:33:24 GMT 2005 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=88803 From 4ertus2 at mail.ru Thu Nov 10 21:40:15 2005 From: 4ertus2 at mail.ru (4ertus2) Date: Thu Nov 10 21:40:27 2005 Subject: misc/88826: sysinstall infinity wait for da0 Message-ID: <200511110536.jAB5aR1E062406@www.freebsd.org> >Number: 88826 >Category: misc >Synopsis: sysinstall infinity wait for da0 >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 Nov 11 05:40:14 GMT 2005 >Closed-Date: >Last-Modified: >Originator: 4ertus2 >Release: 6.0 >Organization: >Environment: >Description: While starting sysinstall look for a card in usb card reader (da0 - da3) but there is no card in it. If I try to detach the device, the kernel panic reboots the system. >How-To-Repeat: Start sysinstall with attached usb card reader. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Thu Nov 10 22:05:35 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Thu Nov 10 22:05:47 2005 Subject: bin/88826: [sysinstall] sysinstall infinity wait for da0 Message-ID: <200511110605.jAB65Yml078966@freefall.freebsd.org> Old Synopsis: sysinstall infinity wait for da0 New Synopsis: [sysinstall] sysinstall infinity wait for da0 Responsible-Changed-From-To: freebsd-bugs->freebsd-qa Responsible-Changed-By: linimon Responsible-Changed-When: Fri Nov 11 06:04:48 GMT 2005 Responsible-Changed-Why: Make this a sysinstall bug. http://www.freebsd.org/cgi/query-pr.cgi?pr=88826 From davidxu at FreeBSD.org Fri Nov 11 00:24:44 2005 From: davidxu at FreeBSD.org (David Xu) Date: Fri Nov 11 00:24:56 2005 Subject: kern/34017: The siginfo_t passed to the signal handling routine is not filled out for AIO Message-ID: <200511110824.jAB8OicB001874@freefall.freebsd.org> Synopsis: The siginfo_t passed to the signal handling routine is not filled out for AIO State-Changed-From-To: open->closed State-Changed-By: davidxu State-Changed-When: Fri Nov 11 08:23:07 GMT 2005 State-Changed-Why: The support is in -CURRENT, there is no plan to backport it to ealier versions, there is too much difference in signal code. http://www.freebsd.org/cgi/query-pr.cgi?pr=34017 From joao at matik.com.br Fri Nov 11 01:00:30 2005 From: joao at matik.com.br (JoЦo) Date: Fri Nov 11 01:03:25 2005 Subject: kern/88830: cd drive access erro with 6.0-R Message-ID: <200511110857.jAB8v57o039085@www.freebsd.org> >Number: 88830 >Category: kern >Synopsis: cd drive access erro with 6.0-R >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Nov 11 09:00:27 GMT 2005 >Closed-Date: >Last-Modified: >Originator: JoЦo >Release: 6.0-R >Organization: Infomatik >Environment: FreeBSD anb.matik.com.br 6.0-RELEASE FreeBSD 6.0-RELEASE #5: Thu Nov 10 22:30:42 BRST 2005 hmm@anb.matik.com.br:/usr/src/sys/i386/compile/anb i386 >Description: Since I upgraded to 6.0-Release the cdr failes acd0: WARNING - SEND_OPC_INFO recovered error Nov 11 06:50:39 anb kernel: acd0: req=0xc194d4b0 SETFEATURES SET TRANSFER MODE semaphore timeout !! DANGER Will Robinson !! Nov 11 06:51:11 anb last message repeated 8 times all worked fine under 6.0-RC1 >How-To-Repeat: >Fix: no >Release-Note: >Audit-Trail: >Unformatted: From stefanf at FreeBSD.org Fri Nov 11 01:02:48 2005 From: stefanf at FreeBSD.org (Stefan Farfeleder) Date: Fri Nov 11 01:07:44 2005 Subject: bin/88813: [patch] cd builtin in sh(1) can cd to wrong directory Message-ID: <200511110902.jAB92mH9004427@freefall.freebsd.org> Synopsis: [patch] cd builtin in sh(1) can cd to wrong directory Responsible-Changed-From-To: freebsd-bugs->stefanf Responsible-Changed-By: stefanf Responsible-Changed-When: Fri Nov 11 09:02:27 GMT 2005 Responsible-Changed-Why: I'll handle it. http://www.freebsd.org/cgi/query-pr.cgi?pr=88813 From snezhko at indorsoft.ru Fri Nov 11 01:10:16 2005 From: snezhko at indorsoft.ru (Victor Snezhko) Date: Fri Nov 11 01:12:40 2005 Subject: kern/88725: /usr/sbin/ppp panic with 2005.10.21 netinet6 changes Message-ID: <200511110910.jAB9AGmQ009429@freefall.freebsd.org> The following reply was made to PR kern/88725; it has been noted by GNATS. From: Victor Snezhko To: John Baldwin Cc: freebsd-current@freebsd.org, SUZUKI Shinsuke , snezhko@indorsoft.ru, max@love2party.net, bug-followup@freebsd.org Subject: Re: kern/88725: /usr/sbin/ppp panic with 2005.10.21 netinet6 changes Date: Fri, 11 Nov 2005 15:09:36 +0600 John Baldwin writes: >>> Mark Tinguely has found the offending timer. >>> The following patch fixes the problem for me: >> >> Thanks. sounds right for me. >> So please commit it if when you've finished the test with fresh -current. > > As a general rule you should be using callout_drain() before freeing a callout > to handle the race condition where the callout is running on another CPU (so > callout_stop can't stop it) while you are freeing it. Note that you can not > use callout_drain() if you are holding any locks, though. In those cases you > will need to defer the callout_drain() and free() until you have dropped the > locks. Here's one example fix: > > Index: nd6.c > =================================================================== > RCS file: /usr/cvs/src/sys/netinet6/nd6.c,v > retrieving revision 1.62 > diff -u -r1.62 nd6.c > --- nd6.c 22 Oct 2005 05:07:16 -0000 1.62 > +++ nd6.c 3 Nov 2005 19:56:42 -0000 > @@ -398,7 +398,7 @@ > if (tick < 0) { > ln->ln_expire = 0; > ln->ln_ntick = 0; > - callout_stop(&ln->ln_timer_ch); > + callout_drain(&ln->ln_timer_ch); > } else { > ln->ln_expire = time_second + tick / hz; > if (tick > INT_MAX) { The code that was committed (and introduced armed timer that was freed) is full of callout_stops and contains not a single callout_drain. So I think in order to be consistent we shouldn't fix two problems at once. The right way would be to commit the fix with callout stop at first (and close the PR) and then investigate whether we can replace stops with drains without introducing a deadlock (for each timer separately). In this case we will at least have a working system to cvsdown to it if there will be issues with callout_drain. I have tested the patch by Mark Tinguely (that fixes mld6.c) on the fresh -current (cvsupped ~2 days ago), it works there too (unsurprisingly). So it may be committed, I suppose (without the debug printf, of course). -- WBR, Victor V. Snezhko EMail: snezhko@indorsoft.ru From davidxu at freebsd.org Fri Nov 11 01:20:21 2005 From: davidxu at freebsd.org (David Xu) Date: Fri Nov 11 01:20:55 2005 Subject: kern/72979: unkillable process(es) stuck in `STOP' state Message-ID: <200511110920.jAB9KIWr009848@freefall.freebsd.org> The following reply was made to PR kern/72979; it has been noted by GNATS. From: David Xu To: bug-followup@freebsd.org, mi@aldan.algebra.com Cc: Subject: Re: kern/72979: unkillable process(es) stuck in `STOP' state Date: Fri, 11 Nov 2005 17:10:33 +0800 You should find and kill zoombie process's parent process, if the parent process is also a zoombie, you should find its grandfather, ... it is a UNIX behavior that you can not kill a zoombie process, but should kill its ancestor. I would think that you have encoutered some buggy programs which forgot to recycle its children. David Xu From davidxu at freebsd.org Fri Nov 11 01:20:25 2005 From: davidxu at freebsd.org (David Xu) Date: Fri Nov 11 01:20:56 2005 Subject: kern/72979: unkillable process(es) stuck in `STOP' state Message-ID: <200511110920.jAB9KLgw009858@freefall.freebsd.org> The following reply was made to PR kern/72979; it has been noted by GNATS. From: David Xu To: bug-followup@freebsd.org, mi@aldan.algebra.com Cc: Subject: Re: kern/72979: unkillable process(es) stuck in `STOP' state Date: Fri, 11 Nov 2005 17:16:14 +0800 I think I should close the PR. the problem was fixed. From joao at matik.com.br Fri Nov 11 01:20:28 2005 From: joao at matik.com.br (JoЦo) Date: Fri Nov 11 01:20:57 2005 Subject: kern/88831: nextboot.conf not deleted Message-ID: <200511110917.jAB9H6OD047048@www.freebsd.org> >Number: 88831 >Category: kern >Synopsis: nextboot.conf not deleted >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 Nov 11 09:20:22 GMT 2005 >Closed-Date: >Last-Modified: >Originator: JoЦo >Release: 6.0-R >Organization: Infomatik >Environment: FreeBSD anb.matik.com.br 6.0-RELEASE FreeBSD 6.0-RELEASE #5: Thu Nov 10 22:30:42 BRST 2005 hmm@anb.matik.com.br:/usr/src/sys/i386/compile/anb i386 >Description: after reboot -k kernel the system boot the desirede kernel but nextboot.conf is not deleted and the wrong kernel is booted >How-To-Repeat: reboot -k kernel >Fix: delete /boot/nextboot.conf manually after using reboot -k >Release-Note: >Audit-Trail: >Unformatted: From davidxu at freebsd.org Fri Nov 11 01:30:48 2005 From: davidxu at freebsd.org (David Xu) Date: Fri Nov 11 01:31:01 2005 Subject: kern/72979: unkillable process(es) stuck in `STOP' state In-Reply-To: <200511110920.jAB9KIWr009848@freefall.freebsd.org> References: <200511110920.jAB9KIWr009848@freefall.freebsd.org> Message-ID: <437464C6.9070404@freebsd.org> David Xu wrote: > The following reply was made to PR kern/72979; it has been noted by GNATS. > > From: David Xu > To: bug-followup@freebsd.org, mi@aldan.algebra.com > Cc: > Subject: Re: kern/72979: unkillable process(es) stuck in `STOP' state > Date: Fri, 11 Nov 2005 17:10:33 +0800 > > You should find and kill zoombie process's parent process, if the parent > process is also a zoombie, you should find its grandfather, ... > it is a UNIX behavior that you can not kill a zoombie process, but > should kill its ancestor. I would think that you have encoutered > some buggy programs which forgot to recycle its children. > > David Xu > > Sorry, I am obviously reading some out-of-date text, please ignore it. From romanp at unshadow.net Fri Nov 11 02:10:20 2005 From: romanp at unshadow.net (Roman V. Palagin) Date: Fri Nov 11 02:22:25 2005 Subject: kern/88833: NFS mounts stuck Message-ID: >Number: 88833 >Category: kern >Synopsis: NFS mounts stuck >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 Nov 11 10:10:18 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Roman V. Palagin >Release: FreeBSD 6.0-20051108-STABLE i386 >Organization: N/A >Environment: System: FreeBSD kreator6.wuppy.net.ru 6.0-20051108-STABLE FreeBSD 6.0-20051108-STABLE #0: Tue Nov 8 12:43:38 UTC 2005 romanp@kreator5.wuppy.net.ru:/usr/obj/u00/sys-releng_6/KREATOR6 i386 NFS server: Solaris 10/IA32 >Description: Same as described in http://lists.freebsd.org/pipermail/freebsd-current/2005-November/057815.html but for "simple" mounts. Solaris NFS server tends to close connection after some period of inactivity, but FreeBSD NFS client doesn't close local socket and try to send data over existing half-closed connection. >How-To-Repeat: Mount fs via NFS-TCP from Solaris server, wait some time and you will see connection to server in CLOSE_WAIT state. From now all ops on mounted fs will stuck. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From pnorcott at aol.com Fri Nov 11 02:20:22 2005 From: pnorcott at aol.com (Paul Norcott) Date: Fri Nov 11 02:27:39 2005 Subject: misc/88835: FreeBSD/amd64 Project -- motherboards Message-ID: <200511111014.jABAE5cb022745@www.freebsd.org> >Number: 88835 >Category: misc >Synopsis: FreeBSD/amd64 Project -- motherboards >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Nov 11 10:20:19 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Paul Norcott >Release: Version 6 >Organization: >Environment: >Description: Version 6.0 installed ok on an Asrock K8Upgrade-1689 The processor is an AMD64 2800+ The system run ok but there is a message 'acpi_perf0: invalid _PSS package' in dmesg. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From thomas at FreeBSD.ORG Fri Nov 11 02:20:24 2005 From: thomas at FreeBSD.ORG (Thomas Quinot) Date: Fri Nov 11 02:27:41 2005 Subject: kern/88823: atapicam - kernel trap 12 Message-ID: <200511111020.jABAKNAX017538@freefall.freebsd.org> The following reply was made to PR kern/88823; it has been noted by GNATS. From: Thomas Quinot To: ale Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/88823: atapicam - kernel trap 12 Date: Fri, 11 Nov 2005 11:18:33 +0100 * ale, 2005-11-11 : > >Description: > Loading and unloading atapicam in a rapid seqeunce cause a kernel trap 12. This doesn't happen waiting some seconds between the to operations. > >How-To-Repeat: > kldload atapicam;kldunload atapicam Please provide a backtrace of the trap. Thomas. From pjd at FreeBSD.org Fri Nov 11 03:55:53 2005 From: pjd at FreeBSD.org (Pawel Jakub Dawidek) Date: Fri Nov 11 03:56:04 2005 Subject: bin/88821: [PATCH] IPv6 support for ggate Message-ID: <200511111155.jABBtqKJ029674@freefall.freebsd.org> Synopsis: [PATCH] IPv6 support for ggate Responsible-Changed-From-To: freebsd-bugs->pjd Responsible-Changed-By: pjd Responsible-Changed-When: Fri Nov 11 11:54:22 GMT 2005 Responsible-Changed-Why: This one is for me. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=88821 From luca at morettoni.net Fri Nov 11 04:40:15 2005 From: luca at morettoni.net (Luca Morettoni) Date: Fri Nov 11 04:41:34 2005 Subject: misc/88840: Enable use of CVSROOT variable into src Makefile (for update target) Message-ID: <200511111232.jABCWksn084270@www.freebsd.org> >Number: 88840 >Category: misc >Synopsis: Enable use of CVSROOT variable into src Makefile (for update target) >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: Fri Nov 11 12:40:14 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Luca Morettoni >Release: 5.4-STABLE >Organization: >Environment: FreeBSD home.morettoni.local 5.4-STABLE FreeBSD 5.4-STABLE #162: Tue Oct 11 01:01:40 CEST 2005 luca@home.morettoni.local:/usr/obj/usr/src/sys/HOME i386 >Description: If you set CVS_UPDATE in make.conf you can update system source files by CVS system. If you want to change the CVS server you can set the CVSROOT, but the code in Makefile.inc1 did not take that parameter. >How-To-Repeat: cd /usr/src; make -DCVS_UPDATE -DCVSROOT=xxx the new XXX server is ignored. >Fix: Apply this little patch and now (if you define CVSROOT var) cvs use new server address, otherwise it update from the default server! --- Makefile.inc1.original Fri Nov 11 13:14:40 2005 +++ Makefile.inc1 Fri Nov 11 13:17:42 2005 @@ -765,7 +765,11 @@ @echo "--------------------------------------------------------------" @echo ">>> Updating ${.CURDIR} from CVS repository" ${CVSROOT} @echo "--------------------------------------------------------------" +.if defined(CVSROOT) + cd ${.CURDIR}; ${CVS} -R -q -d ${CVSROOT} update ${CVSFLAGS} +.else cd ${.CURDIR}; ${CVS} -R -q update ${CVSFLAGS} +.endif .endif # >Release-Note: >Audit-Trail: >Unformatted: From jepalv at yahoo.es Fri Nov 11 05:10:14 2005 From: jepalv at yahoo.es (JesЗs) Date: Fri Nov 11 05:10:26 2005 Subject: =?iso-8859-1?q?misc/88841=3A_No_funciona_Link_gu=EDa_de_instalac?= =?iso-8859-1?q?i=F3n?= Message-ID: <200511111300.jABD0uXw091591@www.freebsd.org> >Number: 88841 >Category: misc >Synopsis: No funciona Link guМa de instalaciСn >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 Nov 11 13:10:13 GMT 2005 >Closed-Date: >Last-Modified: >Originator: JesЗs >Release: >Organization: >Environment: >Description: No funciona el link de la guМa de instalaciСn Gracias >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From davidxu at FreeBSD.org Fri Nov 11 05:14:27 2005 From: davidxu at FreeBSD.org (David Xu) Date: Fri Nov 11 05:14:38 2005 Subject: kern/72979: unkillable process(es) stuck in `STOP' state Message-ID: <200511111314.jABDEQ4u044044@freefall.freebsd.org> Synopsis: unkillable process(es) stuck in `STOP' state State-Changed-From-To: open->closed State-Changed-By: davidxu State-Changed-When: Fri Nov 11 13:12:25 GMT 2005 State-Changed-Why: Fixed. http://www.freebsd.org/cgi/query-pr.cgi?pr=72979 From ru at FreeBSD.org Fri Nov 11 06:16:47 2005 From: ru at FreeBSD.org (Ruslan Ermilov) Date: Fri Nov 11 06:17:27 2005 Subject: misc/88840: Enable use of CVSROOT variable into src Makefile (for update target) Message-ID: <200511111416.jABEGk3r052948@freefall.freebsd.org> Synopsis: Enable use of CVSROOT variable into src Makefile (for update target) State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Fri Nov 11 14:04:53 GMT 2005 State-Changed-Why: CVSROOT is special environment variable that is already set in environment for many people, and enforcing it through the -d option may upset some of them. What you want is already possible by doing make -DCVS_UPDATE CVS="cvs -d xxx" http://www.freebsd.org/cgi/query-pr.cgi?pr=88840 From apivovarov at gmail.com Fri Nov 11 06:57:25 2005 From: apivovarov at gmail.com (Alex Pivovarov) Date: Fri Nov 11 06:57:37 2005 Subject: #cat /dev/ulpt0 -- causes fatal trap 12 Message-ID: <426b510c0511110657w12a24dffu9471fd85328e7436@mail.gmail.com> running #cat /dev/ulpt0 causes fatal trap 12 printer HP LaserJet 1010 USB #uname -a FreeBSD st1.fqdn 6.0-RELEASE FreeBSD 6.0-RELEASE #0: Thu Nov 10 16:04:32 MSK 2005 root@:/usr/obj/usr/src/sys/st1 i386 From emaste at FreeBSD.org Fri Nov 11 07:00:27 2005 From: emaste at FreeBSD.org (Ed Maste) Date: Fri Nov 11 07:00:41 2005 Subject: bin/88845: Sh(1) aborts if builtin echo redirection fails Message-ID: <200511111453.jABErKbq006914@www.freebsd.org> >Number: 88845 >Category: bin >Synopsis: Sh(1) aborts if builtin echo redirection fails >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 Nov 11 15:00:25 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Ed Maste >Release: 7.0-CURRENT >Organization: >Environment: >Description: A failed redirection of builtin echo from sh(1) causes sh to abort after printing the error message. I would expect the script below to output "done" but it does not. >How-To-Repeat: Run this script: #!/bin/sh touch /tmp/foo chmod 000 /tmp/foo echo > /tmp/foo echo done >Fix: This patch works around the problem but a better fix is needed to be POSIX compliant I'm told. --- eval.c.orig Tue Apr 6 19:06:51 2004 +++ eval.c Wed Nov 9 08:40:56 2005 @@ -807,7 +807,6 @@ memout.bufsize = 64; mode |= REDIR_BACKQ; } - redirect(cmd->ncmd.redirect, mode); savecmdname = commandname; cmdenviron = varlist.list; e = -1; @@ -818,6 +817,7 @@ } savehandler = handler; handler = &jmploc; + redirect(cmd->ncmd.redirect, mode); commandname = argv[0]; argptr = argv + 1; optptr = NULL; /* initialize nextopt */ >Release-Note: >Audit-Trail: >Unformatted: From emaste at FreeBSD.org Fri Nov 11 07:03:16 2005 From: emaste at FreeBSD.org (Ed Maste) Date: Fri Nov 11 07:03:35 2005 Subject: bin/88845: Sh(1) aborts if builtin echo redirection fails Message-ID: <200511111503.jABF3GUN057899@freefall.freebsd.org> Synopsis: Sh(1) aborts if builtin echo redirection fails Responsible-Changed-From-To: freebsd-bugs->stefanf Responsible-Changed-By: emaste Responsible-Changed-When: Fri Nov 11 15:01:19 GMT 2005 Responsible-Changed-Why: Stefan said he'll take cere of it. http://www.freebsd.org/cgi/query-pr.cgi?pr=88845 From tinguely at casselton.net Fri Nov 11 07:10:25 2005 From: tinguely at casselton.net (Mark Tinguely) Date: Fri Nov 11 07:10:38 2005 Subject: kern/88725: /usr/sbin/ppp panic with 2005.10.21 netinet6 changes Message-ID: <200511111510.jABFAM5M062936@freefall.freebsd.org> The following reply was made to PR kern/88725; it has been noted by GNATS. From: Mark Tinguely To: bug-followup@freebsd.org, snezhko@indorsoft.ru Cc: Subject: Re: kern/88725: /usr/sbin/ppp panic with 2005.10.21 netinet6 changes Date: Fri, 11 Nov 2005 09:04:50 -0600 (CST) I think this patch should be applied. The other callouts that I flagged are too inconclusive to make any modification at this time. I am working with another person with a callout panic that is simular to this panic, but he does not use IPv6. --- netinet6/mld6.c Wed Nov 9 08:27:14 2005 *************** *** 640,645 **** --- 640,649 ---- mld6_stop_listening(in6m); ifma->ifma_protospec = NULL; LIST_REMOVE(in6m, in6m_entry); + if (in6m->in6m_timer != IN6M_TIMER_UNDEF) + mld_stoptimer(in6m); free(in6m->in6m_timer_ch, M_IP6MADDR); free(in6m, M_IP6MADDR); } --Mark Tinguely From linimon at FreeBSD.org Fri Nov 11 08:02:19 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Fri Nov 11 08:02:47 2005 Subject: www/88835: FreeBSD/amd64 Project -- motherboards Message-ID: <200511111602.jABG2JBP066636@freefall.freebsd.org> Synopsis: FreeBSD/amd64 Project -- motherboards Responsible-Changed-From-To: freebsd-bugs->pav Responsible-Changed-By: linimon Responsible-Changed-When: Fri Nov 11 16:01:12 GMT 2005 Responsible-Changed-Why: I think pav was looking at these. http://www.freebsd.org/cgi/query-pr.cgi?pr=88835 From linimon at FreeBSD.org Fri Nov 11 08:03:34 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Fri Nov 11 08:03:45 2005 Subject: =?iso-8859-1?q?Re=3A_misc/88841=3A_No_funciona_Link_gu=EDa_de_in?= =?iso-8859-1?q?stalaci=F3n?= Message-ID: <200511111603.jABG3XpQ066697@freefall.freebsd.org> Synopsis: No funciona Link guМa de instalaciСn State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Fri Nov 11 16:02:55 GMT 2005 State-Changed-Why: This isn't enough information for us to go on. http://www.freebsd.org/cgi/query-pr.cgi?pr=88841 From amistry at am-productions.biz Fri Nov 11 08:10:19 2005 From: amistry at am-productions.biz (Anish Mistry) Date: Fri Nov 11 08:11:14 2005 Subject: conf/73799: Move the last stuff out of usbd.conf Message-ID: <200511111610.jABGAJcg072005@freefall.freebsd.org> The following reply was made to PR conf/73799; it has been noted by GNATS. From: Anish Mistry To: bug-followup@freebsd.org Cc: iedowse@freebsd.org Subject: Re: conf/73799: Move the last stuff out of usbd.conf Date: Fri, 11 Nov 2005 11:05:09 -0500 --nextPart16200523.fpqHn6IxQX Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline I don't have the hardware mentioned in your previous PR, but those=20 remaining entries should be able to be transferred now that the=20 release field is honored (in HEAD). This is also a good MFC=20 candidate all the way back to 5.x. =2D-=20 Anish Mistry amistry@am-productions.biz AM Productions http://am-productions.biz/ --nextPart16200523.fpqHn6IxQX Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQBDdME9xqA5ziudZT0RAmHzAJ9PoV9//VWgc/3DbGxLaLU6YDgtggCgglDT 6Xe8UJ0kDdSDMi0qld2azwQ= =+253 -----END PGP SIGNATURE----- --nextPart16200523.fpqHn6IxQX-- From linimon at FreeBSD.org Fri Nov 11 08:29:57 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Fri Nov 11 08:30:09 2005 Subject: kern/88830: [ata] cd drive access error (regression in 6.0-R) Message-ID: <200511111629.jABGTuUv073327@freefall.freebsd.org> Old Synopsis: cd drive access erro with 6.0-R New Synopsis: [ata] cd drive access error (regression in 6.0-R) Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: linimon Responsible-Changed-When: Fri Nov 11 16:28:48 GMT 2005 Responsible-Changed-Why: Over to ata maintainer for evaluation. http://www.freebsd.org/cgi/query-pr.cgi?pr=88830 From john at kozubik.com Fri Nov 11 09:28:13 2005 From: john at kozubik.com (John Kozubik) Date: Fri Nov 11 09:28:25 2005 Subject: mounted snapshots still writeable 1.5 years later (RE: kern/68576) Message-ID: <20051111091807.J95949@kozubik.com> In July of 2004 (circa 5.2.1-RELEASE) I filed kern/68576 which described how snapshot files can be mounted read/write and altered. New files can be added to them, existing files can be deleted or altered, and the snapshot file can be returned to read-only state and still be used. It was generally agreed that this was a bad thing - it is unexpected behavior that contradicts the technical requirements of UFS2 snapshots as well as the behavior that the FreeBSD documentation provides. It is also potentially dangerous. It is now Nov. 2005, circa 5.4-RELEASE, and the behavior described in this PR has not changed. ----- John Kozubik - john@kozubik.com - http://www.kozubik.com From rwatson at FreeBSD.org Fri Nov 11 11:01:16 2005 From: rwatson at FreeBSD.org (Robert Watson) Date: Fri Nov 11 11:01:31 2005 Subject: mounted snapshots still writeable 1.5 years later (RE: kern/68576) In-Reply-To: <20051111091807.J95949@kozubik.com> References: <20051111091807.J95949@kozubik.com> Message-ID: <20051111185927.Q33260@fledge.watson.org> On Fri, 11 Nov 2005, John Kozubik wrote: > In July of 2004 (circa 5.2.1-RELEASE) I filed kern/68576 which described > how snapshot files can be mounted read/write and altered. New files can > be added to them, existing files can be deleted or altered, and the > snapshot file can be returned to read-only state and still be used. > > It was generally agreed that this was a bad thing - it is unexpected > behavior that contradicts the technical requirements of UFS2 snapshots > as well as the behavior that the FreeBSD documentation provides. It is > also potentially dangerous. > > It is now Nov. 2005, circa 5.4-RELEASE, and the behavior described in > this PR has not changed. Could you try it on 6.x? There have been a number of changes relating to writable mounting and md devices in 6.x in order to correct related problems, and my understand was they should also fix this one. FYI, locally, I get: peppercorn# mdconfig -a -t vnode -f test WARNING: opening backing store: /mnt/.snap/test readonly md1 peppercorn# mount /dev/md1 /mnt2 mount: /dev/md1: Read-only file system peppercorn# mount -o rdonly /dev/md1 /mnt2 peppercorn# ls -l total 2 drwxrwxr-x 2 root operator 512 Nov 11 18:56 .snap peppercorn# mount -uw /mnt2 mount: /dev/md1: Read-only file system Robert N M Watson From john at kozubik.com Fri Nov 11 11:03:50 2005 From: john at kozubik.com (John Kozubik) Date: Fri Nov 11 11:04:02 2005 Subject: mounted snapshots still writeable 1.5 years later (RE: kern/68576) In-Reply-To: <20051111185927.Q33260@fledge.watson.org> References: <20051111091807.J95949@kozubik.com> <20051111185927.Q33260@fledge.watson.org> Message-ID: <20051111110253.U95949@kozubik.com> On Fri, 11 Nov 2005, Robert Watson wrote: > Could you try it on 6.x? There have been a number of changes relating to > writable mounting and md devices in 6.x in order to correct related > problems, and my understand was they should also fix this one. FYI, > locally, I get: I don't have a 6.x system running, but I could this weekend. > peppercorn# mdconfig -a -t vnode -f test > WARNING: opening backing store: /mnt/.snap/test readonly > md1 > peppercorn# mount /dev/md1 /mnt2 > mount: /dev/md1: Read-only file system > peppercorn# mount -o rdonly /dev/md1 /mnt2 > peppercorn# ls -l > total 2 > drwxrwxr-x 2 root operator 512 Nov 11 18:56 .snap > peppercorn# mount -uw /mnt2 > mount: /dev/md1: Read-only file system Was this ^^^ on a 6.x system ? Thanks. ----- John Kozubik - john@kozubik.com - http://www.kozubik.com From rwatson at FreeBSD.org Fri Nov 11 11:09:03 2005 From: rwatson at FreeBSD.org (Robert Watson) Date: Fri Nov 11 11:09:18 2005 Subject: mounted snapshots still writeable 1.5 years later (RE: kern/68576) In-Reply-To: <20051111110253.U95949@kozubik.com> References: <20051111091807.J95949@kozubik.com> <20051111185927.Q33260@fledge.watson.org> <20051111110253.U95949@kozubik.com> Message-ID: <20051111190806.V33260@fledge.watson.org> On Fri, 11 Nov 2005, John Kozubik wrote: > On Fri, 11 Nov 2005, Robert Watson wrote: > >> peppercorn# mdconfig -a -t vnode -f test >> WARNING: opening backing store: /mnt/.snap/test readonly >> md1 >> peppercorn# mount /dev/md1 /mnt2 >> mount: /dev/md1: Read-only file system >> peppercorn# mount -o rdonly /dev/md1 /mnt2 >> peppercorn# ls -l >> total 2 >> drwxrwxr-x 2 root operator 512 Nov 11 18:56 .snap >> peppercorn# mount -uw /mnt2 >> mount: /dev/md1: Read-only file system > > Was this ^^^ on a 6.x system ? Sorry, should have been more clear -- that's a 7.x system from just after the branch, and I believe no significant changes from 6-beta1 or so. Thanks, Robert N M Watson From sue at sleepycat.com Fri Nov 11 11:20:17 2005 From: sue at sleepycat.com (Susan LoVerso) Date: Fri Nov 11 11:20:39 2005 Subject: misc/88856: XDR/RPC breaks when sending msgs > 9000 bytes Message-ID: <200511111911.jABJBDgk032341@www.freebsd.org> >Number: 88856 >Category: misc >Synopsis: XDR/RPC breaks when sending msgs > 9000 bytes >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Nov 11 19:20:15 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Susan LoVerso >Release: 5.4 >Organization: Sleepycat Software >Environment: FreeBSD tiffany.bostic.com 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Sun May 8 07:00:26 UTC 2005 root@portnoy.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The addition of the non-blocking code to XDR/RPC breaks some operations, in particular those that have a message that exceeds 9000 bytes (RPC_MAXDATASIZE) when being sent from the client to the server. Sending from the server to the client large messages does not have this problem and succeeds. The client is sending the full amount and the server is returning XPRT_DIED from __xdrrec_getrec because fraglen is the full message size and it is > in_maxrec. This results in the server closing its end and the client getting ECONNRESET. >How-To-Repeat: There is a simple program that simulates what our software is doing. You can retrieve it from ftp://ftp.sleepycat.com/hidden/rpcbug.tar.gz. This contains sources and some ktrace output from an earlier failed run from both client and server halves. After unpacking it you should just be able to: % make % ./file_svc& % ./rls localhost test/* The server outputs messages like this : SVC: Sending file test/file1: size 85 SVC: Received file test/file1: size 85 .. The client program outputs messages like this: % ./rls localhost test/* Recv test/file1: 85 bytes Sent test/file1: 85 bytes Recv test/file2: 1360 bytes Sent test/file2: 1360 bytes Recv test/file3: 8925 bytes Sent test/file3: 8925 bytes Recv test/file4: 9010 bytes localhost: RPC: Unable to receive; errno = Connection reset by peer You can see that file4 is able to be transferred from server TO client, with size 9010, but when the client tries to send file4, it gets ECONNRESET. You can also use 'Makefile.dbg' which will build with local versions of instrumented copies of xdr_rec.c and clnt_vc.c which have print messages in interesting places. >Fix: no >Release-Note: >Audit-Trail: >Unformatted: From tedm at ipinc.net Fri Nov 11 12:40:19 2005 From: tedm at ipinc.net (Ted Mittelstaedt) Date: Fri Nov 11 12:40:42 2005 Subject: kern/88859: ACPI broken on Compaq DL360 Message-ID: <200511112032.jABKW5qC000633@www.bignow.com> >Number: 88859 >Category: kern >Synopsis: ACPI broken on Compaq DL360 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Nov 11 20:40:18 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Ted Mittelstaedt >Release: FreeBSD 6.0-RELEASE i386 >Organization: Internet Partners, Inc. >Environment: System: FreeBSD www.bignow.com 6.0-RELEASE FreeBSD 6.0-RELEASE #0: Thu Nov 3 09:36:13 UTC 2005 root@x64.samsco.home:/usr/obj/usr/src/sys/GENERIC i386 >Description: Machine will not boot unless the following is in /boot/loader.conf hint.acpi.0.disabled=1 The system is an original Compaq DL360, not the later G1, etc. It is running BIOS version P21 dated 11/15/2002 which is the latest version of the BIOS for this system. I have tried setting the Operating System type in the BIOS configuration to UNIX/LINUX and OTHER with no effect. There is only 1 CPU installed in this system. When ACPI is enabled the system halts during boot with the following message: Copyright (c) 1992-2005 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 6.0-RELEASE #0: Thu Nov 3 09:36:13 UTC 2005 root@x64.samsco.home:/usr/obj/usr/src/sys/GENERIC Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel Pentium III (996.85-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x68a Stepping = 10 Features=0x383f9ff real memory = 1073725440 (1023 MB) avail memory = 1041846272 (993 MB) npx0: [FAST] npx0: on motherboard npx0: INT 16 interface acpi0: on motherboard acpi0: Power Button (fixed) pci_link0: on acpi0 pci_link1: on acpi0 and it prints nothing further. Here is a dmesg output from when the system is booted with acpi disabled: Copyright (c) 1992-2005 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 6.0-RELEASE #0: Thu Nov 3 09:36:13 UTC 2005 root@x64.samsco.home:/usr/obj/usr/src/sys/GENERIC Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel Pentium III (996.85-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x68a Stepping = 10 Features=0x383f9ff real memory = 1073725440 (1023 MB) avail memory = 1041846272 (993 MB) npx0: [FAST] npx0: on motherboard npx0: INT 16 interface cpu0 on motherboard pcib0: pcibus 0 on motherboard pci0: on pcib0 ida0: port 0x2000-0x20ff mem 0xc5000000-0xc5ffffff,0xc4000000-0xc4ffffff irq 3 at device 1.0 on pci0 ida0: [GIANT-LOCKED] ida0: drives=1 firm_rev=1.50 idad0: on ida0 idad0: 70001MB (143363040 sectors), blocksize=512 pci0: at device 3.0 (no driver attached) pci0: at device 4.0 (no driver attached) isab0: at device 15.0 on pci0 isa0: on isab0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0x2800-0x280f at device 15.1 on pci0 ata0: on atapci0 ata1: on atapci0 pcib3: pcibus 3 on motherboard pci3: on pcib3 fxp0: port 0x3000-0x303f mem 0xc6fff000-0xc6ffffff,0xc6e00000-0xc6efffff irq 5 at device 4.0 on pci3 miibus0: on fxp0 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fxp0: Ethernet address: 00:50:8b:e0:4b:77 fxp1: port 0x3040-0x307f mem 0xc6dff000-0xc6dfffff,0xc6c00000-0xc6cfffff irq 7 at device 5.0 on pci3 miibus1: on fxp1 inphy1: on miibus1 inphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fxp1: Ethernet address: 00:50:8b:e0:4b:74 eisa0: on motherboard mainboard0: on eisa0 slot 0 pmtimer0 on isa0 orm0: at iomem 0xc0000-0xc7fff,0xc8000-0xcbfff,0xe8000-0xedfff,0xee000-0xeffff on isa0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: model Generic PS/2 mouse, device ID 0 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: [FAST] fd0: <1440-KB 3.5" drive> on fdc0 drive 0 ppc0: parallel port not found. sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Timecounter "TSC" frequency 996848440 Hz quality 800 Timecounters tick every 1.000 msec acd0: CDROM at ata1-master PIO4 Trying to mount root from ufs:/dev/idad0s1a >How-To-Repeat: >Fix: Disable ACPI >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Fri Nov 11 12:42:24 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Fri Nov 11 12:42:45 2005 Subject: kern/88859: ACPI broken on Compaq DL360 Message-ID: <200511112042.jABKgNT5009646@freefall.freebsd.org> Synopsis: ACPI broken on Compaq DL360 Responsible-Changed-From-To: freebsd-bugs->freebsd-acpi Responsible-Changed-By: linimon Responsible-Changed-When: Fri Nov 11 20:42:06 GMT 2005 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=88859 From mnag at FreeBSD.org Fri Nov 11 13:08:09 2005 From: mnag at FreeBSD.org (Marcus Alves Grando) Date: Fri Nov 11 13:08:20 2005 Subject: kern/84908: [reboot] filesystem full and reboot (crash) Message-ID: <200511112108.jABL881v015449@freefall.freebsd.org> Synopsis: [reboot] filesystem full and reboot (crash) State-Changed-From-To: patched->closed State-Changed-By: mnag State-Changed-When: Fri Nov 11 21:08:07 GMT 2005 State-Changed-Why: kris: This should be fixed in 6.0-BETA5, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=84908 From dpk at dpk.net Fri Nov 11 17:00:31 2005 From: dpk at dpk.net (David Kirchner) Date: Fri Nov 11 17:01:03 2005 Subject: bin/88872: [2TB] Error 36 while sysinstall tries to create / partition Message-ID: <200511120052.jAC0qZl4038631@www.freebsd.org> >Number: 88872 >Category: bin >Synopsis: [2TB] Error 36 while sysinstall tries to create / partition >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Nov 12 01:00:29 GMT 2005 >Closed-Date: >Last-Modified: >Originator: David Kirchner >Release: 6.0-RELEASE >Organization: >Environment: 6.0-RELEASE install from CD on a server with a 4TB RAID5. >Description: This server has a 3ware 9500S-12 card with 12 400GB SATA drives in a RAID5 configuration of approximately 4TB. sysinstall's slice editor and partition editor both properly recognize the size as ~800 billion blocks, however the slice editor complains about the geometry (constantly). The label configuration requested during sysinstall was: / 36GB swap 2048MB The remainder of the slice was unused. When sysinstall reaches the stage where it is to do the newfs, it fails with error 36. The console on Alt-F2 states: newfs: wtfs: 512 bytes at sector 67108863: Input/output error. Might be related to kern/79251 but as I'm not using GEOM (unless the installer is using GEOM) I'm filing a different bug. >How-To-Repeat: Try to install FreeBSD 6.0 from CD. At the slice editor screen choose "dangerously dedicated" (keys: F N S) At the disklabel editor create 1 36GB / partition and 1 2048MB swap partition Choose your install media (we use a local FTP server) After "Last Chance" screen you'll get the error. >Fix: No fix presents itself. It appears to be impossible to install on this system. It's been suggested that gpt can be used to partition the disk, but gpt gives "Unknown error: 0" when you try to run "gpt create". That'll go in a separate PR. >Release-Note: >Audit-Trail: >Unformatted: From dpk at dpk.net Fri Nov 11 17:00:32 2005 From: dpk at dpk.net (David Kirchner) Date: Fri Nov 11 17:01:05 2005 Subject: bin/88873: [2TB] gpt create fails "bogus map" "unknown error: 0" Message-ID: <200511120056.jAC0uAJG039226@www.freebsd.org> >Number: 88873 >Category: bin >Synopsis: [2TB] gpt create fails "bogus map" "unknown error: 0" >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Nov 12 01:00:30 GMT 2005 >Closed-Date: >Last-Modified: >Originator: David Kirchner >Release: 6.0-RELEASE >Organization: >Environment: 6.0-RELEASE on a server with a 4TB RAID5. >Description: This server has a 3ware 9500S-12 card with 12 400GB SATA drives in a RAID5 configuration of approximately 4TB. When you run "gpt create /dev/da0" it gives the error: "gpt create: error: bogus map" "gpt create: unable to open device `/dev/da0': Unknown error: 0" No combination of gpt flags appears to let you get past this. >How-To-Repeat: Run "gpt create /dev/da0" on a system with a >2TB RAID (4TB in this case). >Fix: Unknown. >Release-Note: >Audit-Trail: >Unformatted: From joao at matik.com.br Sat Nov 12 03:10:16 2005 From: joao at matik.com.br (JoЦo) Date: Sat Nov 12 03:10:28 2005 Subject: kern/88882: ndis IF tx/rx and other problems in 6.0-R Message-ID: <200511121103.jACB3Kxq080099@www.freebsd.org> >Number: 88882 >Category: kern >Synopsis: ndis IF tx/rx and other problems in 6.0-R >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Nov 12 11:10:15 GMT 2005 >Closed-Date: >Last-Modified: >Originator: JoЦo >Release: 6.0-R >Organization: Infomatik >Environment: FreeBSD anb.matik.com.br 6.0-RELEASE FreeBSD 6.0-RELEASE #5: Thu Nov 10 22:30:42 BRST 2005 hmm@anb.matik.com.br:/usr/src/sys/i386/compile/anb i386 >Description: ndis interface was working fine for me with 6.0RC1 In my case I use an Acer3002 with broadcom 11b+g, I can compile and load the .ko wo problems the serious problem is that the interface suddnely stops to rx/tx when high text throughput is processed as in sshing to another server and untarring the ports the interface simply stoppes after some seconds. Messages report anb kernel: ndis0: link state changed to DOWN. It is associated as 11g in OFDM/54Mbps To get it back I need to re-associate with ifconfig ssid xxx or sometimes only woth the complete ifconfig sequence I tried different protmodes but no change ndis0: flags=8843 mtu 1500 inet 192.168.2.2 netmask 0xfffffff8 broadcast 192.168.2.7 ether 00:14:a4:0e:b9:fc media: IEEE 802.11 Wireless Ethernet autoselect (OFDM/54Mbps) status: associated ssid casa11g channel 1 bssid 00:11:95:c2:2a:70 authmode OPEN privacy OFF txpowmax 100 protmode CTS I can download at high rates for hours normal data as an iso image and stay connected days with normal operations without any problem. Soon I [g]tar with -xvf option the interface stoppes Second problem that the Wlan-buuton led does not goes on anymore on 6.0R Third problem that ifconfig list scan mostly do not find any ssids anymore (it is already up) and I am not talking about outside environments, I am beside the APs I like to see. Soon I go back to the 6.0-RC1 ndis everything works fine. >How-To-Repeat: >Fix: none >Release-Note: >Audit-Trail: >Unformatted: From rwatson at FreeBSD.org Sat Nov 12 03:18:00 2005 From: rwatson at FreeBSD.org (Robert Watson) Date: Sat Nov 12 03:18:13 2005 Subject: kern/82682: [kernel] "Accounting resumed" while disk fills up due to sign extension problem Message-ID: <200511121117.jACBHwPj036282@freefall.freebsd.org> Synopsis: [kernel] "Accounting resumed" while disk fills up due to sign extension problem State-Changed-From-To: open->patched State-Changed-By: rwatson State-Changed-When: Sat Nov 12 11:15:30 GMT 2005 State-Changed-Why: I recently fixed at least part of this bug as part of kern_acct.c:1.76, as well as some other unrelated bugs. I did not fix the overflow issues described by bruce in this PR, however, as I just found the PR when doing a back search to see if I had closed any PRs with the various fixes committed. I'll MFC this patch in about two weeks, assuming there are no problems, and it should first appear in FreeBSD 5.5 or 6.1, whichever comes first. Responsible-Changed-From-To: freebsd-bugs->rwatson Responsible-Changed-By: rwatson Responsible-Changed-When: Sat Nov 12 11:15:30 GMT 2005 Responsible-Changed-Why: I recently fixed at least part of this bug as part of kern_acct.c:1.76, as well as some other unrelated bugs. I did not fix the overflow issues described by bruce in this PR, however, as I just found the PR when doing a back search to see if I had closed any PRs with the various fixes committed. I'll MFC this patch in about two weeks, assuming there are no problems, and it should first appear in FreeBSD 5.5 or 6.1, whichever comes first. http://www.freebsd.org/cgi/query-pr.cgi?pr=82682 From rwatson at FreeBSD.org Sat Nov 12 03:20:26 2005 From: rwatson at FreeBSD.org (Robert Watson) Date: Sat Nov 12 03:20:49 2005 Subject: kern/7722: Changes to acct format Message-ID: <200511121120.jACBKPnS036425@freefall.freebsd.org> The following reply was made to PR kern/7722; it has been noted by GNATS. From: Robert Watson To: kris@FreeBSD.org Cc: hsu@clinet.fi, bug-followup@FreeBSD.org Subject: Re: kern/7722: Changes to acct format Date: Sat, 12 Nov 2005 11:19:56 +0000 (GMT) On Thu, 24 May 2001 kris@FreeBSD.org wrote: > Synopsis: Changes to acct format > > State-Changed-From-To: open->suspended > State-Changed-By: kris > State-Changed-When: Thu May 24 12:58:23 PDT 2001 > State-Changed-Why: > This PR is unlikely to get addressed unless someone > submits patches. FYI, this requirement will be met by the new audit subsystem being introduced in the near future, which will provide detailed (and configurable) information about process interactions and tracing. Robert N M Watson From rwatson at FreeBSD.org Sat Nov 12 03:20:27 2005 From: rwatson at FreeBSD.org (Robert Watson) Date: Sat Nov 12 03:20:51 2005 Subject: kern/85816: maxproc=1 in login.conf causes kernel panic when logging into account via ssh Message-ID: <200511121120.jACBKLgA036418@freefall.freebsd.org> The following reply was made to PR kern/85816; it has been noted by GNATS. From: Robert Watson To: Gleb Smirnoff Cc: bug-followup@FreeBSD.org Subject: Re: kern/85816: maxproc=1 in login.conf causes kernel panic when logging into account via ssh Date: Sat, 12 Nov 2005 11:14:49 +0000 (GMT) On Wed, 14 Sep 2005, Gleb Smirnoff wrote: > #8 0xc05743c3 in unp_discard (fp=0xc1ca6e58) at > /usr/src/sys/kern/uipc_usrreq.c:1887 > No locals. > #9 0xc0572b2b in unp_freerights (rp=0xc1b4ad28, fdcount=1) > at /usr/src/sys/kern/uipc_usrreq.c:1272 > i = 0 > fp = (struct file *) 0x0 > #10 0xc0572df7 in unp_externalize (control=0xc1b4ad00, controlp=0xe1b7dc54) > at /usr/src/sys/kern/uipc_usrreq.c:1321 > td = (struct thread *) 0xc1c597d0 > cm = (struct cmsghdr *) 0xc1b4ad18 > i = -1068065433 > fdp = (int *) 0xe1b7dbc8 > rp = (struct file **) 0xc1b4ad24 > fp = (struct file *) 0xc1c70000 > data = (void *) 0xc1c70000 > clen = 16 This coulid well be related to the UNIX domain socket garbage collector bugs I fixed in HEAD a day or two ago. Could you try to reproduce this with uipc_usrreq.c:1.159? Likely, sshd's privsep (or some related notion) is resulting in closing of a UNIX domains socket while a descriptor is in flight, which turns out to be broken in several revisions of 5.x and 6.x (and with additional bugs in 4.x). I believe I've fixed most known bugs in this code with the above mentioned revision, so it may now work better. Robert N M Watson From rwatson at FreeBSD.org Sat Nov 12 03:29:14 2005 From: rwatson at FreeBSD.org (Robert Watson) Date: Sat Nov 12 03:29:30 2005 Subject: kern/7722: Changes to acct format Message-ID: <200511121129.jACBTDt5036782@freefall.freebsd.org> Synopsis: Changes to acct format State-Changed-From-To: suspended->closed State-Changed-By: rwatson State-Changed-When: Sat Nov 12 11:28:09 GMT 2005 State-Changed-Why: Close this PR as the submitter e-mail address bounces with User unknown. The feature request will be met by the upcoming audit feature. http://www.freebsd.org/cgi/query-pr.cgi?pr=7722 From barner at FreeBSD.org Sat Nov 12 05:00:32 2005 From: barner at FreeBSD.org (Simon Barner) Date: Sat Nov 12 05:00:45 2005 Subject: kern/53383 : [bktr] [patch] adding Terratec TValue to bktr driver Message-ID: <200511121300.jACD0UuW048393@freefall.freebsd.org> The following reply was made to PR kern/53383; it has been noted by GNATS. From: Simon Barner To: bug-followup@FreeBSD.org, tawi@gruft.de Cc: Subject: Re: kern/53383 : [bktr] [patch] adding Terratec TValue to bktr driver Date: Sat, 12 Nov 2005 13:23:47 +0100 Here is an updated version of the patch (against RELENG_6), which also detecteds TerraTValue cards with subid 0x1134: diff -ruN sys/dev/bktr.orig/bktr_card.c sys/dev/bktr/bktr_card.c --- sys/dev/bktr.orig/bktr_card.c Sat Nov 12 12:19:40 2005 +++ sys/dev/bktr/bktr_card.c Sat Nov 12 12:29:01 2005 @@ -391,6 +391,18 @@ { 0x20000, 0x80000, 0, 0xa8000, 1 }, /* audio MUX values */ 0xAA0000 }, /* GPIO mask */ + { CARD_TERRATVALUE, /* the card id */ + "TerraTec TValue", /* the 'name' */ + NULL, /* the tuner */ + 0, /* the tuner i2c address */ + 0, /* dbx is optional */ + 0, + 0, + 0, /* EEProm type */ + 0, /* EEProm size */ + /* Tuner, Extern, Intern, Mute, Enabled */ + { 0x500, 0x900, 0x300, 0x900, 1 }, /* audio MUX values */ + 0xffff00 }, /* GPIO mask */ }; struct bt848_card_sig bt848_card_signature[1]= { @@ -582,6 +594,7 @@ #define PCI_VENDOR_AVERMEDIA 0x1461 #define PCI_VENDOR_STB 0x10B4 #define PCI_VENDOR_ASKEY 0x144F +#define PCI_VENDOR_TERRATEC 0x153B #endif /* Following not confirmed with http://members.hyperlink.net.au/~chart, so not added to NetBSD's pcidevs */ @@ -595,6 +608,8 @@ #define PCI_VENDOR_PINNACLE_NEW 0x11BD #define MODEL_IODATA_GV_BCTV3_PCI 0x4020 +#define MODEL_TERRATVALUE_1118 0x1118 +#define MODEL_TERRATVALUE_1134 0x1134 void probeCard( bktr_ptr_t bktr, int verbose, int unit ) @@ -739,6 +754,15 @@ goto checkTuner; } + if ((subsystem_vendor_id == PCI_VENDOR_TERRATEC) && + (subsystem_id == MODEL_TERRATVALUE_1134 || + subsystem_id == MODEL_TERRATVALUE_1118)) { + bktr->card = cards[ (card = CARD_TERRATVALUE) ]; + bktr->card.eepromAddr = eeprom_i2c_address; + bktr->card.eepromSize = (u_char)(256 / EEPROMBLOCKSIZE); + goto checkTuner; + } + /* Vendor is unknown. We will use the standard probe code */ /* which may not give best results */ printf("%s: Warning - card vendor 0x%04x (model 0x%04x) unknown.\n", @@ -1162,6 +1186,11 @@ case CARD_IO_BCTV3: select_tuner( bktr, ALPS_TSCH5 ); /* ALPS_TSCH6, in fact. */ + goto checkDBX; + break; + + case CARD_TERRATVALUE: + select_tuner( bktr, PHILIPS_PAL); /* Phlips PAL tuner */ goto checkDBX; break; diff -ruN sys/dev/bktr.orig/bktr_card.h sys/dev/bktr/bktr_card.h --- sys/dev/bktr.orig/bktr_card.h Sat Nov 12 12:19:40 2005 +++ sys/dev/bktr/bktr_card.h Sat Nov 12 12:21:01 2005 @@ -80,8 +80,9 @@ #define CARD_AOPEN_VA1000 18 #define CARD_PINNACLE_PCTV_RAVE 19 #define CARD_PIXELVIEW_PLAYTV_PAK 20 -#define Bt848_MAX_CARD 21 - +#define CARD_TERRATVALUE 21 +#define Bt848_MAX_CARD 22 + #define CARD_IO_GV CARD_IO_BCTV2 int signCard( bktr_ptr_t bktr, int offset, int count, u_char* sig ); From apivovarov at gmail.com Sat Nov 12 05:34:06 2005 From: apivovarov at gmail.com (Alex Pivovarov) Date: Sat Nov 12 05:34:19 2005 Subject: (backtrace) cat /dev/ulpt0 -- causes fatal trap 12 Message-ID: <426b510c0511120534v65d07591j28e51290bf6aa0f8@mail.gmail.com> running #cat /dev/ulpt0 causes fatal trap 12 and system begins dumping. printer HP LaserJet 1010 USB ----------------------------------------------------------- Script started on Sat Nov 12 16:10:02 2005 alex@st1$ dmesg Copyright (c) 1992-2005 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 6.0-RELEASE #0: Sat Nov 12 15:02:22 MSK 2005 root@st1.fqdn:/usr/src/sys/i386/compile/st1deb Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: AMD Athlon(tm) XP 1800+ (1531.02-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x681 Stepping = 1 Features=0x383fbff AMD Features=0xc0400800 real memory = 536805376 (511 MB) avail memory = 520167424 (496 MB) mptable_probe: MP Config Table has bad signature: ACPI APIC Table: ioapic0 irqs 0-23 on motherboard acpi0: on motherboard acpi0: Power Button (fixed) pci_link0: on acpi0 pci_link1: irq 11 on acpi0 pci_link2: on acpi0 pci_link3: irq 12 on acpi0 pci_link4: on acpi0 pci_link5: irq 11 on acpi0 pci_link6: irq 9 on acpi0 pci_link7: on acpi0 pci_link8: on acpi0 pci_link9: on acpi0 pci_link10: on acpi0 pci_link11: irq 12 on acpi0 pci_link12: irq 5 on acpi0 pci_link13: on acpi0 pci_link14: on acpi0 pci_link15: on acpi0 pci_link16: irq 16 on acpi0 pci_link17: irq 17 on acpi0 pci_link18: irq 18 on acpi0 pci_link19: irq 19 on acpi0 pci_link20: irq 16 on acpi0 pci_link21: irq 0 on acpi0 pci_link22: irq 0 on acpi0 pci_link23: irq 0 on acpi0 pci_link24: irq 0 on acpi0 pci_link25: irq 0 on acpi0 pci_link26: irq 0 on acpi0 pci_link27: irq 23 on acpi0 pci_link28: irq 0 on acpi0 pci_link29: irq 0 on acpi0 pci_link30: irq 0 on acpi0 pci_link31: irq 0 on acpi0 Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x4008-0x400b on acpi0 cpu0: on acpi0 acpi_button0: on acpi0 acpi_button1: on acpi0 pcib0: port 0xcf8-0xcff,0xcf0-0xcf3 on acpi0 pci0: on pcib0 agp0: mem 0xd8000000-0xdbffffff at device 0.0 on pci0 pci0: at device 0.1 (no driver attached) pci0: at device 0.2 (no driver attached) pci0: at device 0.3 (no driver attached) pci0: at device 0.4 (no driver attached) pci0: at device 0.5 (no driver attached) isab0: at device 1.0 on pci0 isa0: on isab0 pci0: at device 1.1 (no driver attached) ohci0: mem 0xe0001000-0xe0001fff irq 20 at device 2.0 on pci0 ohci0: [GIANT-LOCKED] usb0: OHCI version 1.0, legacy support usb0: SMM does not respond, resetting usb0: on ohci0 usb0: USB revision 1.0 uhub0: nVidia OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 3 ports with 3 removable, self powered ohci1: mem 0xe0002000-0xe0002fff irq 21 at device 2.1 on pci0 ohci1: [GIANT-LOCKED] usb1: OHCI version 1.0, legacy support usb1: SMM does not respond, resetting usb1: on ohci1 usb1: USB revision 1.0 uhub1: nVidia OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 3 ports with 3 removable, self powered ehci0: mem 0xe0003000-0xe00030ff irq 22 at device 2.2 on pci0 ehci0: [GIANT-LOCKED] usb2: EHCI version 1.0 usb2: companion controllers, 4 ports each: usb0 usb1 usb2: on ehci0 usb2: USB revision 2.0 uhub2: nVidia EHCI root hub, class 9/0, rev 2.00/1.00, addr 1 uhub2: 6 ports with 6 removable, self powered pcib1: at device 8.0 on pci0 pci1: on pcib1 emu10kx0: port 0xd000-0xd01f irq 19 at device 9.0 on pci1 pcm0: on emu10kx0 pcm0: pci1:
Ruled out hardware issue:
 
1.  Ran memtest 86 -- 7 full = cycles (18 hours=20 +/-).
2.  Reduced memory from 512Mb to = 256Mb,=20 repeated with different memory chip.
3.  Ran full burncpu, = passed.
 
Power supplies operating at nominal=20 voltages.
 
System is apparently not using swap = space for this=20 process.
 
Replaced AMD K6  200 with old K6 = slow=20 processor
 
Same failure.  CPU temps are = <33C in all=20 cases.  I don't know the exact numbers, but it's typically around=20 28C.
 
This simply does not smell like a = hardware problem,=20 and I've been around these beasts for a long time....the first machine I = programmed used magnetic CORE memory and had a whopping 8K memory with = 12 bit=20 words in it.   When  I ran high energy physics codes = on=20 Intel processors quite a few years ago, I got inconsistant=20 answers using the same code (all fortran) between = the i386(Intel)=20 /unix and other machines (DEC, Cray, Tandem and i386(AMD)), and=20 finally said that was hardware but couldn't get INTEL to believe me = until=20 after several others of us discussed the issue, all running the = same code,=20 and INTEL finally admitted that their chips couldn't add (and = quickly=20 reported to the world that it only affected certain 'scientific' uses = which most=20 people don't use, so they were safe for balancing your checkbook).  =   I'm willing to believe you, but I'd like to know why you're = so=20 convinced this is a hardware issue. 
 
The factors pointing against a hardware = issue=20 are:  1.  The machine runs everything else without a = problem. =20 2.  The machine ran non-stop (non-reboot) on a UPS for over a half = a year=20 without a glitch, (take that NT), and it seems to run f90 ok, and most = cc's=20 ok.  3.  The system runs very compute/memory intenstive monte = carlo=20 high energy physics code that stores lots and lots of numbers to be = written to=20 files at the end of the day and works consistantly.  I would expect = that if=20 it weren't working properly, something would be amiss elsewhere and = would expect=20 a panic at some point, or the system to just plain stop working.  = 4. =20 From the archives it appears that more than one of us is havng a similar = problem.  5.  This exact = system ran for=20 years without a glitch running FreeBSD 2.2 and FreeBSD 3.2.  =
 
Is it safe to upgrade to GCC 4?  = Would that=20 solve the problem?  I'd be happy to get it from gnu and try it, if = it won't=20 break anything.  I don't have the time I used to have to go messing = in=20 operating system innards, much as I'd like to.
 
It is certainly possible that a pointer = is=20 misprogrammed (or perhaps the fixed point  register in the AMD chip = doesn't=20 work right??) and picks up something funny that causes the compiler to = have the=20 "segementation fault  11"  That fault is = consistent!
 
Thanks
 
 
 
------=_NextPart_000_0007_01C5EBDA.C0C39C10-- From mplekos at physics.upatras.gr Fri Nov 18 02:00:19 2005 From: mplekos at physics.upatras.gr (eelvex) Date: Fri Nov 18 02:00:40 2005 Subject: misc/89220: src/contrib/groff does not compile. Message-ID: <200511180819.jAI8JhsH085214@www.freebsd.org> >Number: 89220 >Category: misc >Synopsis: src/contrib/groff does not compile. >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 Nov 18 10:00:17 GMT 2005 >Closed-Date: >Last-Modified: >Originator: eelvex >Release: 5.4 >Organization: >Environment: FreeBSD gradus.home.net 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Sun May 8 10:21:06 UTC 2005 root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: src/contrib/groff does not compile from source. Some files are missing. >How-To-Repeat: cd /usr/src/contrib/groff && make >Fix: Copy the following files: /usr/src/contrib/cvs/lib/getopt.c to /usr/src/contrib/groff/src/libs/libgroff/getopt.c , /usr/src/contrib/cvs/lib/getopt1.c to /usr/src/contrib/groff/src/libs/libgroff/getopt1.c , /usr/src/gnu/usr.bin/groff/tmac/mdoc.local to /usr/src/contrib/groff/tmac/mdoc.local >Release-Note: >Audit-Trail: >Unformatted: From vladvic_r at mail.ru Fri Nov 18 02:40:14 2005 From: vladvic_r at mail.ru (Vladimir V. Pavluk) Date: Fri Nov 18 02:40:36 2005 Subject: kern/89224: [sound]kernel panic after kldunload snd_maestro3 Message-ID: <200511181036.jAIAa5bd077269@www.freebsd.org> >Number: 89224 >Category: kern >Synopsis: [sound]kernel panic after kldunload snd_maestro3 >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 Nov 18 10:40:13 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Vladimir V. Pavluk >Release: FreeBSD 5.4-RELEASE-p8 >Organization: Digital Service, LLC >Environment: FreeBSD vvp-nb.dgs.ru 5.4-RELEASE-p8 FreeBSD 5.4-RELEASE-p8 #9: Mon Nov 14 16:08:05 NOVT 2005 root@vvp-nb.dgs.ru:/usr/src/sys/i386/compile/VVP-NB i386 >Description: kldunload snd_maestro3 causes kernel panic. This happens only after kmix (KDE mixer program) have been ran. This is an output of dmesg after such panic: (kldunload while kmix is running) pcm0: unregister: mixer busy (kldunload after exit kmix) WARNING: Driver mistake: destroy_dev on 0/0 panic: don't do that Uptime: 52m31s Cannot dump. No dump device defined. Automatic reboot in 15 seconds - press a key on the console to abort Rebooting... I'm running on Compaq Evo N600c. This happens both with and without maestro3 patch [pr 89046]. >How-To-Repeat: 1) kldload snd_maestro3 (if not already loaded) 2) run kmix 3) try to kldunload snd_maestro3 (should say that device busy) 4) exit kmix 5) kldunload snd_maestro3 >Fix: >Release-Note: >Audit-Trail: >Unformatted: From rdg at bzerk.org Fri Nov 18 03:30:16 2005 From: rdg at bzerk.org (Ruben de Groot) Date: Fri Nov 18 03:30:28 2005 Subject: kern/89227: [patch] Intel ICH6-M SATA controller on Vaio VGN-S5M/S Message-ID: <200511181134.jAIBY00V023440@ei.bzerk.org> >Number: 89227 >Category: kern >Synopsis: [patch] Intel ICH6-M SATA controller on Vaio VGN-S5M/S >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 Nov 18 11:30:14 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Ruben de Groot >Release: FreeBSD 5.4-RELEASE i386 >Organization: bzerk.org >Environment: System: FreeBSD bentobox.lan 5.4-RELEASE FreeBSD 5.4-RELEASE #2: Tue Nov 15 21:51:19 CET 2005 rdg@bzerk.org:/usr/obj/usr/src/sys/GENERIC i386 >Description: The sony vaio has a sata disk connected to the second controller in the laptop. However this controller is not recognized and falls back to a GENERIC ATA controller with UDMA33 >How-To-Repeat: dmesg snippet: atapci0: port 0x1880-0x188f,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 31.1 on pci0 ata0: channel #0 on atapci0 ata1: channel #1 on atapci0 atapci1: port 0x18a0-0x18af,0x1894-0x1897,0x18b0-0x18b7,0x18b8-0x18bb,0x18c0-0x18c7 irq 18 at device 31.2 on pci0 ata2: channel #0 on atapci1 ata3: channel #1 on atapci1 acd0: DVDR at ata0-master PIO4 Interrupt storm detected on "irq18: atapci1"; throttling interrupt source ad4: 76319MB [155061/16/63] at ata2-master UDMA33 pciconf -lv snippet: atapci0@pci0:31:1: class=0x01018a card=0x81b9104d chip=0x266f8086 rev=0x03 hdr=0x00 vendor = 'Intel Corporation' device = '82801FB ICH6 Ultra ATA Storage Controller' class = mass storage subclass = ATA atapci1@pci0:31:2: class=0x01018f card=0x81ba104d chip=0x26538086 rev=0x03 hdr=0x00 vendor = 'Intel Corporation' device = '82801FBM ICH6M SATA Controller' class = mass storage subclass = ATA >Fix: Apply the following patch to 5.4-RELEASE; rebuild kernel and reboot Afterwards, controller and drive are correctly detected: atapci1: port 0x18a0-0x18af,0x1894-0x1897,0x18b0-0x18b7,0x18b8-0x18bb,0x18c0-0 x18c7 irq 18 at device 31.2 on pci0 ad4: 76319MB [155061/16/63] at ata2-master SATA150 --- vaio-sata.patch begins here --- diff -u sys/dev/ata.orig/ata-chipset.c sys/dev/ata/ata-chipset.c --- sys/dev/ata.orig/ata-chipset.c Wed Mar 23 06:14:11 2005 +++ sys/dev/ata/ata-chipset.c Tue Nov 15 21:39:17 2005 @@ -838,6 +838,7 @@ { ATA_I82801FB, 0, 0, 0x00, ATA_UDMA5, "Intel ICH6" }, { ATA_I82801FB_S1,0, 0, 0x00, ATA_SA150, "Intel ICH6" }, { ATA_I82801FB_R1,0, 0, 0x00, ATA_SA150, "Intel ICH6" }, + { ATA_I82801FBM, 0, 0, 0x00, ATA_SA150, "Intel ICH6-M" }, { 0, 0, 0, 0, 0, 0}}; char buffer[64]; diff -u sys/dev/ata.orig/ata-pci.h sys/dev/ata/ata-pci.h --- sys/dev/ata.orig/ata-pci.h Wed Mar 23 06:14:11 2005 +++ sys/dev/ata/ata-pci.h Tue Nov 15 21:41:07 2005 @@ -127,6 +127,7 @@ #define ATA_I82801FB 0x266f8086 #define ATA_I82801FB_S1 0x26518086 #define ATA_I82801FB_R1 0x26528086 +#define ATA_I82801FBM 0x26538086 #define ATA_ITE_ID 0x1283 #define ATA_IT8212F 0x82121283 --- vaio-sata.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From ru at FreeBSD.org Fri Nov 18 06:25:42 2005 From: ru at FreeBSD.org (Ruslan Ermilov) Date: Fri Nov 18 06:25:54 2005 Subject: misc/89220: src/contrib/groff does not compile. Message-ID: <200511181425.jAIEPfFv024090@freefall.freebsd.org> Synopsis: src/contrib/groff does not compile. State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Fri Nov 18 14:24:50 GMT 2005 State-Changed-Why: It's not supposed to be compiled in this way; please compile it from src/gnu/usr.bin/groff/ instead, or better yet, automatically as part of `buildworld'. http://www.freebsd.org/cgi/query-pr.cgi?pr=89220 From linimon at FreeBSD.org Fri Nov 18 07:37:51 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Fri Nov 18 07:38:50 2005 Subject: kern/89224: [sound] [panic] kernel panic after kldunload snd_maestro3 Message-ID: <200511181537.jAIFboRM036570@freefall.freebsd.org> Synopsis: [sound] [panic] kernel panic after kldunload snd_maestro3 Responsible-Changed-From-To: freebsd-bugs->freebsd-multimedia Responsible-Changed-By: linimon Responsible-Changed-When: Fri Nov 18 15:37:38 GMT 2005 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=89224 From tinguely at casselton.net Fri Nov 18 10:50:27 2005 From: tinguely at casselton.net (Mark Tinguely) Date: Fri Nov 18 10:50:40 2005 Subject: kern/89247: QUOTA in 6.0/7.0-current leak Message-ID: <200511181847.jAIIlBF4086162@www.freebsd.org> >Number: 89247 >Category: kern >Synopsis: QUOTA in 6.0/7.0-current leak >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Nov 18 18:50:25 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Mark Tinguely >Release: FreeBSD -6.0 and 7-current >Organization: >Environment: FreeBSD markie 6.0-RELEASE FreeBSD 6.0-RELEASE #2: Fri Nov 18 12:12:33 CST 2005 tinguely@markie:/usr/src/sys/i386/compile/markie i386 >Description: In FreeBSD 6.0 and 7.0 -current /sys/ufs/ffs/ffs_alloc.c ffs_alloc() QUOTA is set before checking if the allocation can be met. Either the quota check should be after checking if there is available disk space or when determining there is no space, the reserved quota should be removed. I like option 2 - see below patch. >How-To-Repeat: 1) fill a partition that has QUOTA enabled 2) quota -v 3) try to write a chunk of data (it will fail because the partition is full) 4) quota -v and notice the quota keep increasing by the attempted chunk amount 5) delete all the data owned by this user in this partition 6) quota -v and notice the quota is still off by the attempted chunk amount or visually look at code and see the chkdq() don't match >Fix: move the noswap: label above the chkdq() that readjusts the allocated quota: *** ffs_alloc.c.orig Fri Nov 18 12:37:38 2005 --- ffs_alloc.c Fri Nov 18 12:38:35 2005 *************** *** 185,190 **** --- 185,191 ---- *bnp = bno; return (0); } + nospace: #ifdef QUOTA UFS_UNLOCK(ump); /* *************** *** 193,199 **** (void) chkdq(ip, -btodb(size), cred, FORCE); UFS_LOCK(ump); #endif - nospace: if (fs->fs_pendingblocks > 0 && reclaimed == 0) { reclaimed = 1; softdep_request_cleanup(fs, ITOV(ip)); --- 194,199 ---- >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Fri Nov 18 13:38:19 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Fri Nov 18 13:38:31 2005 Subject: kern/89227: [ata] [patch] Intel ICH6-M SATA controller on Vaio VGN-S5M/S Message-ID: <200511182138.jAILcFIk085995@freefall.freebsd.org> Synopsis: [ata] [patch] Intel ICH6-M SATA controller on Vaio VGN-S5M/S Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: linimon Responsible-Changed-When: Fri Nov 18 21:38:05 GMT 2005 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=89227 From who at me.com Fri Nov 18 14:20:03 2005 From: who at me.com (Me) Date: Fri Nov 18 14:20:15 2005 Subject: misc/89257: Previous version compatibility in 6.0 Message-ID: <200511182214.jAIMEwtQ060064@www.freebsd.org> >Number: 89257 >Category: misc >Synopsis: Previous version compatibility in 6.0 >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Nov 18 22:20:02 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Me >Release: FreeBSD 6.0 >Organization: My Co >Environment: >Description: It seems apps compiled against version 5.0 of FreeBSD are not compatible with 6.0 out of the box and to me this isn't good. I can still run windows applications written well over 15 years ago unmodified on my PC out of the box and without running through hoops. The "recompile defense" is unacceptable as the source code is not always avaliable and more importantly users must not be expected to care. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From jboisvert at gmail.com Fri Nov 18 14:50:25 2005 From: jboisvert at gmail.com (Jason Boisvert) Date: Fri Nov 18 14:50:36 2005 Subject: misc/89258: synaptic touchpad support "worse" with hw.psm.synaptics_support="1" than without Message-ID: <200511182241.jAIMfwJs088054@www.freebsd.org> >Number: 89258 >Category: misc >Synopsis: synaptic touchpad support "worse" with hw.psm.synaptics_support="1" than without >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Nov 18 22:50:24 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Jason Boisvert >Release: 6.0-release >Organization: personal user >Environment: FreeBSD kailash 6.0-RELEASE FreeBSD 6.0-RELEASE #6: Thu Nov 17 09:58:52 MST 2005 root@kailash:/usr/obj/usr/src/sys/kailash i386 >Description: The synaptics touchpad that I am using (a newer version) has many features: tap and drag, horiz and vert scroll bars, a scroll ball and multifinger sensitivity -- to make two-finger tapping give the middle mouse button, for example. When hw.psm.synaptics_support="1" is set in loader.conf only the scroll ball works (buttons 4 and 5 mapped to z axis). I.e. no other features work. Moreover, xev shows all kinds of sporatic output that seems to be related to multifinger tapping and other features. In general, this makes the mouse very annoying. If you leave syn_sup off, then you get tap-and-drag but no other features. >How-To-Repeat: set hw.psm.synaptics_support="1" in loader.conf, reboot. comment that hint out, reboot. The "support" consistently changes between the two types. >Fix: It seems that with support turned 'on' the mouse is reporting more events but they are not getting interpreted correctly. >Release-Note: >Audit-Trail: >Unformatted: From maxim at FreeBSD.org Fri Nov 18 14:57:44 2005 From: maxim at FreeBSD.org (Maxim Konovalov) Date: Fri Nov 18 14:57:55 2005 Subject: misc/89257: Previous version compatibility in 6.0 Message-ID: <200511182257.jAIMvgTc099157@freefall.freebsd.org> Synopsis: Previous version compatibility in 6.0 State-Changed-From-To: open->closed State-Changed-By: maxim State-Changed-When: Fri Nov 18 22:56:15 GMT 2005 State-Changed-Why: It seems your PR has now technical details. http://www.freebsd.org/cgi/query-pr.cgi?pr=89257 From garry at NetworkPhysics.COM Fri Nov 18 17:20:30 2005 From: garry at NetworkPhysics.COM (Garry Belka) Date: Fri Nov 18 17:20:43 2005 Subject: kern/89262: multi-threaded process hangs in kernel in fork() Message-ID: <200511190115.jAJ1Fxhg061478@focus5.fractal.networkphysics.com> >Number: 89262 >Category: kern >Synopsis: multi-threaded process hangs in kernel in fork() >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Nov 19 01:20:28 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Garry Belka >Release: FreeBSD 5.4-RELEASE and 6.0 RELEASE i386 >Organization: Network Physics >Environment: System: FreeBSD tempo 5.4-RELEASE SMP >Description: We see, not too often, that a Java process hangs and can't be killed even by SIGKILL. Apparently, one of the process threads forks. fork1() in kernel attempts to enter a single-threaded mode, but thread_single() fails to complete and hangs waiting until all threads but proc-> p_singlethread are suspended. One of the remaining threads is not suspended and has only SLEEP flag set. pid thread thid flags inhib pflags comm wchan 1982 0xcd150180 100351 00020c00 1 0088 java mi_switch + 426 in section .text thread_suspend_check + 298 in section .text userret + 58 in section .text fork_return + 18 in section .text fork_exit + 102 in section .text 1982 0xce120c00 100948 00000c00 1 0880 java mi_switch + 426 in section .text thread_suspend_check + 298 in section .text userret + 58 in section .text ast + 844 in section .text 1982 0xcd740900 100616 00000808 2 0080 java sbwait cd557320 mi_switch + 426 in section .text (SLEEPING, not SUSPENDED) sleepq_switch + 164 in section .text sleepq_wait_sig + 12 in section .text msleep + 566 in section .text sbwait + 56 in section .text soreceive + 572 in section .text soo_read + 65 in section .text dofileread + 173 in section .text read + 59 in section .text syscall + 551 in section .text 1982 0xc3ae7900 100906 00000808 1 0080 java mi_switch + 426 in section .text sleepq_switch + 164 in section .text sleepq_wait_sig + 12 in section .text msleep + 566 in section .text sbwait + 56 in section .text soreceive + 572 in section .text soo_read + 65 in section .text dofileread + 173 in section .text read + 59 in section .text syscall + 551 in section .text 1982 0xcd719780 100605 00000c00 1 0880 java mi_switch + 426 in section .text thread_suspend_check + 298 in section .text userret + 58 in section .text ast + 844 in section .text 1982 0xcd6d9000 100830 00000000 1 0880 java (p_singlethread) mi_switch + 426 in section .text - line 355 thread_single + 497 in section .text - line 863 fork1 + 169 in section .text - line 257 fork + 24 in section .text syscall + 551 in section .text Signals in singlethread state are not really delivered, SIGKILL stays with the first thread in the queue, and so we got a deadlock. I think that we got into this state because the non-suspended thread was running when singlethread was attempting to put every thread to sleep. All threads were marked TDF_ASTPENDING. However, a bit later ast() failed to deal correctly with a thread that had non-null td->td_mailbox. sys/kern/subr_trap.c:ast() if ((p->p_flag & P_SA) && (td->td_mailbox == NULL)) thread_user_enter(td); >How-To-Repeat: start multiple threads in java on an SMP machine and keep on calling system() in those threads. it will take some time >Fix: --- single_suspend.patch begins here --- Index: kern/kern_thread.c =================================================================== RCS file: /u1/Repo/FreeBSD/sys/kern/kern_thread.c,v retrieving revision 1.3 diff -u -r1.3 kern_thread.c --- kern/kern_thread.c 9 Jul 2005 01:27:18 -0000 1.3 +++ kern/kern_thread.c 15 Nov 2005 03:01:22 -0000 @@ -1001,6 +1001,18 @@ } void +thread_check_single_suspend(struct thread *td) +{ + struct proc *p = td->td_proc; + + if (__predict_false(P_SHOULDSTOP(p))) { + PROC_LOCK(p); + thread_suspend_check(0); + PROC_UNLOCK(p); + } +} + +void thread_unsuspend_one(struct thread *td) { struct proc *p = td->td_proc; Index: kern/subr_trap.c =================================================================== RCS file: /u1/Repo/FreeBSD/sys/kern/subr_trap.c,v retrieving revision 1.1.1.2 diff -u -r1.1.1.2 subr_trap.c --- kern/subr_trap.c 8 Jul 2005 03:01:08 -0000 1.1.1.2 +++ kern/subr_trap.c 15 Nov 2005 03:01:23 -0000 @@ -171,6 +171,8 @@ if ((p->p_flag & P_SA) && (td->td_mailbox == NULL)) thread_user_enter(td); + else + thread_check_single_suspend(td); /* * This updates the p_sflag's for the checks below in one * "atomic" operation with turning off the astpending flag. Index: sys/proc.h =================================================================== RCS file: /u1/Repo/FreeBSD/sys/sys/proc.h,v retrieving revision 1.1.1.5 diff -u -r1.1.1.5 proc.h --- sys/proc.h 8 Jul 2005 03:07:51 -0000 1.1.1.5 +++ sys/proc.h 15 Nov 2005 03:01:28 -0000 @@ -887,6 +887,7 @@ void ksegrp_unlink(struct ksegrp *kg); void thread_signal_add(struct thread *td, int sig); struct thread *thread_alloc(void); +void thread_check_single_suspend(struct thread *td); void thread_exit(void) __dead2; int thread_export_context(struct thread *td, int willexit); void thread_free(struct thread *td); --- single_suspend.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From garry at NetworkPhysics.COM Fri Nov 18 17:40:38 2005 From: garry at NetworkPhysics.COM (Garry Belka) Date: Fri Nov 18 17:41:10 2005 Subject: kern/89264: crash dump not implemented for RAID (ar) in 6.0 Message-ID: <200511190133.jAJ1XoCN061610@focus5.fractal.networkphysics.com> >Number: 89264 >Category: kern >Synopsis: crash dump not implemented for RAID (ar) in 6.0 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Nov 19 01:40:35 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Garry Belka >Release: FreeBSD 6.0-RELEASE i386 >Organization: Network Physics >Environment: System: FreeBSD tempo 6.0-RELEASE i386 with ATA RAID1 configured: ar0 consists of ad4 and ad6 >Description: dumpon /dev/ar0s1b fails because dump support is not implemented in sys/dev/ata/ata-raid.c >How-To-Repeat: configure ar0 and do dumpon /dev/ar0s1b >Fix: implement and enable ata_raid_dump() patch below is an ar_dump() implementation from an older ATA code, modified for 6.0 --- ata_raid_dump.patch begins here --- Index: ata-raid.c =================================================================== RCS file: /u1/Repo/FreeBSD/sys/dev/ata/ata-raid.c,v retrieving revision 1.11 diff -u -r1.11 ata-raid.c --- ata-raid.c 5 Nov 2005 03:24:59 -0000 1.11 +++ ata-raid.c 19 Nov 2005 01:20:53 -0000 @@ -108,7 +108,7 @@ /* device structures */ static disk_strategy_t ata_raid_strategy; -//static dumper_t ata_raid_dump; +static dumper_t ata_raid_dump; static void ata_raid_attach(struct ar_softc *rdp, int writeback) @@ -138,7 +138,7 @@ buffer[0] = '\0'; rdp->disk = disk_alloc(); rdp->disk->d_strategy = ata_raid_strategy; - //rdp->disk->d_dump = ata_raid_dump; + rdp->disk->d_dump = ata_raid_dump; rdp->disk->d_name = "ar"; rdp->disk->d_sectorsize = DEV_BSIZE; rdp->disk->d_mediasize = (off_t)rdp->total_sectors * DEV_BSIZE; @@ -228,6 +228,135 @@ break; } return error; +} +static int +ata_raid_dump(void *arg, void *virtual, vm_offset_t physical, + off_t offset, size_t length) +{ +# define AD_SOFTC(ar_disk) ((struct ad_softc *)device_get_ivars((ar_disk).dev)) + + struct disk *dp = arg; + struct ar_softc *rdp = dp->d_drv1; + + struct disk *ap; + vm_offset_t pdata; + caddr_t vdata; + int blkno, count, chunk, error1, error2, lba, lbs, tmplba; + int drv = 0; + + if (!rdp || !(rdp->status & AR_S_READY)) + return ENXIO; + + if (length == 0) { + for (drv = 0; drv < rdp->total_disks; drv++) { + if (rdp->disks[drv].flags & AR_DF_ONLINE) { + ap = AD_SOFTC(rdp->disks[drv])->disk; + (void) ap->d_dump(ap, NULL, 0, 0, 0); + } + } + return 0; + } + + blkno = offset / DEV_BSIZE; + vdata = virtual; + pdata = physical; + + for (count = howmany(length, DEV_BSIZE); count > 0; + count -= chunk, blkno += chunk, vdata += (chunk * DEV_BSIZE), + pdata += (chunk * DEV_BSIZE)) { + + switch (rdp->type) { + case AR_T_SPAN: + lba = blkno; + while (lba >= rdp->disks[drv].sectors) + lba -= rdp->disks[drv++].sectors; + chunk = min(rdp->disks[drv].sectors - lba, count); + break; + + case AR_T_RAID0: + case AR_T_RAID01: + tmplba = blkno / rdp->interleave; + chunk = blkno % rdp->interleave; + if (blkno >= (rdp->total_sectors / (rdp->interleave * rdp->width)) * + (rdp->interleave * rdp->width) ) { + lbs = (rdp->total_sectors - + ((rdp->total_sectors / (rdp->interleave * rdp->width)) * + (rdp->interleave * rdp->width))) / rdp->width; + drv = (blkno - + ((rdp->total_sectors / (rdp->interleave * rdp->width)) * + (rdp->interleave * rdp->width))) / lbs; + lba = ((tmplba / rdp->width) * rdp->interleave) + + (blkno - ((tmplba / rdp->width) * rdp->interleave)) % lbs; + chunk = min(count, lbs); + } + else { + drv = tmplba % rdp->width; + lba = ((tmplba / rdp->width) * rdp->interleave) + chunk; + chunk = min(count, rdp->interleave - chunk); + } + break; + + case AR_T_JBOD: + case AR_T_RAID1: + drv = 0; + lba = blkno; + chunk = count; + break; + + default: + printf("ar%d: unknown array type in ata_raid_dump\n", rdp->lun); + return EIO; + } + + /* offset on all but "first on HPTv2" */ + if (!(drv == 0 && rdp->format == AR_F_HPTV2_RAID)) + lba += rdp->offset_sectors; + + switch (rdp->type) { + case AR_T_JBOD: + case AR_T_SPAN: + case AR_T_RAID0: + if (rdp->disks[drv].flags & AR_DF_ONLINE) { + ap = AD_SOFTC(rdp->disks[drv])->disk; + error1 = ap->d_dump(ap, vdata, pdata, + (off_t) lba * DEV_BSIZE, + chunk * DEV_BSIZE); + } else + error1 = EIO; + if (error1) + return error1; + break; + + case AR_T_RAID1: + case AR_T_RAID01: + if ((rdp->disks[drv].flags & AR_DF_ONLINE) || + ((rdp->status & AR_S_REBUILDING) && + (rdp->disks[drv].flags & AR_DF_SPARE))) { + ap = AD_SOFTC(rdp->disks[drv])->disk; + error1 = ap->d_dump(ap, vdata, pdata, + (off_t) lba * DEV_BSIZE, + chunk * DEV_BSIZE); + } else + error1 = EIO; + if ((rdp->disks[drv + rdp->width].flags & AR_DF_ONLINE) || + ((rdp->status & AR_S_REBUILDING) && + (rdp->disks[drv + rdp->width].flags & AR_DF_SPARE))) { + ap = AD_SOFTC(rdp->disks[drv + rdp->width])->disk; + error2 = ap->d_dump(ap, vdata, pdata, + (off_t) lba * DEV_BSIZE, + chunk * DEV_BSIZE); + } else + error2 = EIO; + if (error1 && error2) + return error1; + break; + + default: + printf("ar%d: unknown array type in ata_raid_dump\n", rdp->lun); + return EIO; + } + } + return 0; } static void --- ata_raid_dump.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From garry at NetworkPhysics.COM Fri Nov 18 17:40:41 2005 From: garry at NetworkPhysics.COM (Garry Belka) Date: Fri Nov 18 17:41:13 2005 Subject: kern/89262: multi-threaded process hangs in kernel in fork() Message-ID: <200511190140.jAJ1ee7u022815@freefall.freebsd.org> The following reply was made to PR kern/89262; it has been noted by GNATS. From: Garry Belka To: bug-followup@FreeBSD.org, garry@NetworkPhysics.COM Cc: Subject: Re: kern/89262: multi-threaded process hangs in kernel in fork() Date: Fri, 18 Nov 2005 17:39:40 -0800 Btw, the same bug is present in FreeBSD 6.0. From linimon at FreeBSD.org Fri Nov 18 22:30:26 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Fri Nov 18 22:30:38 2005 Subject: kern/89264: [ata] [panic] crash dump not implemented for RAID (ar) in 6.0 Message-ID: <200511190630.jAJ6UPmb062652@freefall.freebsd.org> Synopsis: [ata] [panic] crash dump not implemented for RAID (ar) in 6.0 Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: linimon Responsible-Changed-When: Sat Nov 19 06:30:16 GMT 2005 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=89264 From ale at FreeBSD.org Sat Nov 19 01:30:28 2005 From: ale at FreeBSD.org (Alex Dupre) Date: Sat Nov 19 01:30:40 2005 Subject: kern/89271: [radeon][agp][hang] X.org hangs when heavily using Radeon dri features Message-ID: <200511190922.jAJ9MCpl002748@thunder.alexdupre.com> >Number: 89271 >Category: kern >Synopsis: [radeon][agp][hang] X.org hangs when heavily using Radeon dri features >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Nov 19 09:30:18 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Alex Dupre >Release: FreeBSD 6.0-STABLE i386 >Organization: >Environment: System: FreeBSD thunder.alexdupre.com 6.0-STABLE FreeBSD 6.0-STABLE #2: Sun Nov 13 13:29:04 CET 2005 alex@thunder.alexdupre.com:/usr/obj/usr/src/sys/THUNDER i386 Scenario: FreeBSD 6-STABLE, ATI Radeon 32MB SDR (first serie), X.org 6.8.2 and 6.8.99.16 (as in ports with relative dri and dri-devel). agp0: mem 0xd0000000-0xd3 ffffff at device 0.0 on pci0 agp0@pci0:0:0: class=0x060000 card=0x00000000 chip=0x03051106 rev=0x02 hdr=0x00 vendor = 'VIA Technologies Inc' device = 'VT8363/5 KT133/KM133 System Controller' class = bridge subclass = HOST-PCI pci bus 0x0000 cardnum 0x00 function 0x00: vendor 0x1106 device 0x0305 VIA Technologies, Inc. VT8363/8365 [KT133/KM133] STATUS 0xa210 COMMAND 0x0006 CLASS 0x06 0x00 0x00 REVISION 0x02 BIST 0x00 HEADER 0x00 LATENCY 0x00 CACHE 0x00 BASE0 0xd0000008 addr 0xd0000000 MEM PREFETCHABLE pci bus 0x0000 cardnum 0x01 function 0x00: vendor 0x1106 device 0x8305 VIA Technologies, Inc. VT8363/8365 [KT133/KM133 AGP] STATUS 0x2230 COMMAND 0x0007 CLASS 0x06 0x04 0x00 REVISION 0x00 HEADER 0x01 LATENCY 0x00 PRIBUS 0x00 SECBUS 0x01 SUBBUS 0x01 SECLT 0x00 SECSTATUS 0x0000 IOBASE 0xc000 IOLIM 0xcfff NOPREFETCH_MEMBASE 0xd8000000 MEMLIM 0xd9ffffff PREFETCH_MEMBASE 0xd4000000 MEMLIM 0xd7ffffff NO_FAST_B2B NO_SEC_BUS_RST NO_M_ABRT VGA_EN ISA_EN NO_SERR_EN NO_PERR_EN drm0: port 0xc000-0xc0ff mem 0xd4000000-0xd7ffffff,0xd90000 00-0xd907ffff irq 12 at device 0.0 on pci1 info: [drm] AGP at 0xd0000000 64MB info: [drm] Initialized radeon 1.16.0 20050311 on minor 0 drm0@pci1:0:0: class=0x030000 card=0x00081002 chip=0x51441002 rev=0x00 hdr=0x00 vendor = 'ATI Technologies Inc' device = 'Radeon 7200 QD SDR/DDR Radeon 7200 QD SDR/DDR' class = display subclass = VGA pci bus 0x0001 cardnum 0x00 function 0x00: vendor 0x1002 device 0x5144 ATI Technologies Inc Radeon R100 QD [Radeon 7200] CardVendor 0x1002 card 0x0008 (ATI Technologies Inc Radeon 7000/Radeon VE) STATUS 0x02b0 COMMAND 0x0087 CLASS 0x03 0x00 0x00 REVISION 0x00 BIST 0x00 HEADER 0x00 LATENCY 0x20 CACHE 0x08 BASE0 0xd4000008 addr 0xd4000000 MEM PREFETCHABLE BASE1 0x0000c001 addr 0x0000c000 I/O BASE2 0xd9000000 addr 0xd9000000 MEM MAX_LAT 0x00 MIN_GNT 0x08 INT_PIN 0x01 INT_LINE 0x0c >Description: X starts and seems to work OK, until I try to play a video. After a few minutes of playback with mplayer, the system hangs: my LCD monitor enters in power state sleep mode, the audio hangs and I cannot close X via keyboard. I can access the system only via ssh and I see the Xorg process eating all the CPU. Xorg cannot be killed (even with -9) and the only solution is rebooting the system. The hang occurs even with other less intensive applications (like xmms) but after hours of playback; with mplayer only a few minutes are needed. >How-To-Repeat: >Fix: Disabling DRI solves the problem, but that's not a great fix ;-) >Release-Note: >Audit-Trail: >Unformatted: From ale at FreeBSD.org Sat Nov 19 02:10:25 2005 From: ale at FreeBSD.org (Alex Dupre) Date: Sat Nov 19 02:11:25 2005 Subject: kern/89271: [radeon][agp][hang] X.org hangs when heavily using Radeon dri features Message-ID: <200511191010.jAJAAO4E091467@freefall.freebsd.org> The following reply was made to PR kern/89271; it has been noted by GNATS. From: Alex Dupre To: bug-followup@FreeBSD.org, anholt@FreeBSD.org Cc: Subject: Re: kern/89271: [radeon][agp][hang] X.org hangs when heavily using Radeon dri features Date: Sat, 19 Nov 2005 11:00:59 +0100 xorg.conf and Xorg.0.log: http://www.alexdupre.com/xorg.conf http://www.alexdupre.com/Xorg.0.log -- Alex Dupre From gabor.kovesdan at t-hosting.hu Sat Nov 19 04:30:46 2005 From: gabor.kovesdan at t-hosting.hu (=?ISO-8859-1?Q?K=F6vesd=E1n_G=E1bor?=) Date: Sat Nov 19 04:31:10 2005 Subject: misc/83287: [patch] EXTPORTSDIR feature for src/release/Makefile Message-ID: <200511191230.jAJCUjuH007521@freefall.freebsd.org> The following reply was made to PR misc/83287; it has been noted by GNATS. From: =?ISO-8859-1?Q?K=F6vesd=E1n_G=E1bor?= To: bug-followup@FreeBSD.org, gabor.kovesdan@t-hosting.hu Cc: Subject: Re: misc/83287: [patch] EXTPORTSDIR feature for src/release/Makefile Date: Sat, 19 Nov 2005 13:24:19 +0100 I sent this more than 4 months ago. Since then FreeBSD 6 has come out. Does somebody now have time to take a look at and maybe commit it or if that's not possible close this PR? Thanks in advance, Gabor Kovesdan From gabor.kovesdan at t-hosting.hu Sat Nov 19 04:30:51 2005 From: gabor.kovesdan at t-hosting.hu (=?ISO-8859-1?Q?K=F6vesd=E1n_G=E1bor?=) Date: Sat Nov 19 04:31:12 2005 Subject: kern/83943: [nve] [panic] FreeBSD 6.0-BETA1 with nve Message-ID: <200511191230.jAJCUoqB007569@freefall.freebsd.org> The following reply was made to PR kern/83943; it has been noted by GNATS. From: =?ISO-8859-1?Q?K=F6vesd=E1n_G=E1bor?= To: bug-followup@FreeBSD.org, gabor.kovesdan@t-hosting.hu Cc: Subject: Re: kern/83943: [nve] [panic] FreeBSD 6.0-BETA1 with nve Date: Sat, 19 Nov 2005 13:25:34 +0100 It can be closed now, FreeBSD 6.0 is fine for me. Thanks, Gabor Kovesdan From linimon at FreeBSD.org Sat Nov 19 10:13:11 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Sat Nov 19 10:13:23 2005 Subject: kern/83943: [nve] [panic] FreeBSD 6.0-BETA1 with nve Message-ID: <200511191813.jAJIDACV056683@freefall.freebsd.org> Synopsis: [nve] [panic] FreeBSD 6.0-BETA1 with nve State-Changed-From-To: feedback->closed State-Changed-By: linimon State-Changed-When: Sat Nov 19 18:12:51 GMT 2005 State-Changed-Why: Submitter notes this is fixed in 6.0-R. http://www.freebsd.org/cgi/query-pr.cgi?pr=83943 From tony at clevershark.com Sat Nov 19 10:22:20 2005 From: tony at clevershark.com (Tony A. Emond) Date: Sat Nov 19 10:22:32 2005 Subject: 6.0 SMP support Message-ID: <7e16b3af0511191022l685b595eyacb797211198dbc5@mail.gmail.com> I've been unable to enable SMP while using a kernel that includes ACPI. This is not a problem that occurs if ACPI is excluded from the kernel but loaded as a module. Therefore I'd like to propose that the /usr/src/sys/i386/conf/SMP file have a comment added to specify that the kernel should not be compiled with ACPI if SMP is to be enabled. From acardenas at bsd.org.pe Sat Nov 19 10:50:21 2005 From: acardenas at bsd.org.pe (Jose Alonso Cardenas Marquez) Date: Sat Nov 19 10:51:08 2005 Subject: misc/89291: [NEW PORT] graphics/crystalspace: Free and portable 3D Game Development Kit Message-ID: <200511191844.jAJIi8IV001138@www.freebsd.org> >Number: 89291 >Category: misc >Synopsis: [NEW PORT] graphics/crystalspace: Free and portable 3D Game Development Kit >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: Sat Nov 19 18:50:08 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Jose Alonso Cardenas Marquez >Release: FreeBSD 6.0-STABLE i386 >Organization: BSDPeru (http://www.bsd.org.pe) >Environment: FreeBSD HellFire.BSD.org.pe 6.0-STABLE FreeBSD 6.0-STABLE #1: Sun Nov 13 21:15:57 PET 2005 >Description: - Replace ports/86394 - Correct dependencies with new ports cal3d-devel, ode-devel - Corrected MASTER_SITES - Respect CC,CXX and CFLAGS Crystal Space is a free (LGPL) and portable 3D Game Development Kit written in C++. It supports: true six degrees of freedom, colored lighting, lightmapped and stencil based lighting, shader support (CG, vertex programs, fragment programs, ...), mipmapping, portals, mirrors, alpha transparency, reflective surfaces, 3D sprites (frame based or with skeletal animation using cal3d animation library), procedural textures, particle systems, halos, volumetric fog, scripting (using Python, Perl, Java, or potentially other languages), 16-bit and 32-bit display support, OpenGL, and software renderer, font support (also with freetype), hierarchical transformations, physics plugin based on ODE WWW: http://www.crystalspace3d.org >How-To-Repeat: >Fix: --- crystalspace-0.99.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # crystalspace # crystalspace/pkg-plist # crystalspace/pkg-descr # crystalspace/distinfo # crystalspace/Makefile # echo c - crystalspace mkdir -p crystalspace > /dev/null 2>&1 echo x - crystalspace/pkg-plist sed 's/^X//' >crystalspace/pkg-plist << 'END-of-crystalspace/pkg-plist' Xbin/python.cex Xbin/csdemo Xbin/3ds2lev Xbin/map2cs Xbin/maya2spr Xbin/md32spr Xbin/md22spr Xbin/csbench Xbin/csfgen Xbin/cslight Xbin/docconv Xbin/heightmapgen Xbin/levtool Xbin/lighter Xbin/lighter2 Xbin/partedit Xbin/pvscalc Xbin/viewmesh Xbin/vsh Xbin/walktest Xbin/cs-config Xetc/crystalspace/asciiart.cfg Xetc/crystalspace/autoexec.cfg Xetc/crystalspace/awstest.cfg Xetc/crystalspace/awstut.cfg Xetc/crystalspace/bugplug.cfg Xetc/crystalspace/bugplug.key Xetc/crystalspace/cacacanvas.cfg Xetc/crystalspace/csdemo.cfg Xetc/crystalspace/dynavis.cfg Xetc/crystalspace/engine.cfg Xetc/crystalspace/fancycon.cfg Xetc/crystalspace/fontplex.cfg Xetc/crystalspace/freetype.cfg Xetc/crystalspace/g2dtest.cfg Xetc/crystalspace/gldrivers.xml Xetc/crystalspace/heightmapgen.cfg Xetc/crystalspace/joystick.cfg Xetc/crystalspace/lighter.xml Xetc/crystalspace/macosx.cfg Xetc/crystalspace/map2cs.cfg Xetc/crystalspace/mouse.cfg Xetc/crystalspace/movierecorder.cfg Xetc/crystalspace/null3d.cfg Xetc/crystalspace/r3dopengl.cfg Xetc/crystalspace/shadermgr.cfg Xetc/crystalspace/simpcon.cfg Xetc/crystalspace/simpvs.cfg Xetc/crystalspace/soft3d.cfg Xetc/crystalspace/sound.cfg Xetc/crystalspace/sprcal3d.cfg Xetc/crystalspace/standardcon.cfg Xetc/crystalspace/system.cfg Xetc/crystalspace/thing.cfg Xetc/crystalspace/video.cfg Xetc/crystalspace/walktest.cfg Xetc/crystalspace/waterdemo.cfg Xetc/crystalspace/vfs.cfg Xinclude/crystalspace/crystalspace.h Xinclude/crystalspace/csdef.h Xinclude/crystalspace/csextern.h Xinclude/crystalspace/csgeom.h Xinclude/crystalspace/csgfx.h Xinclude/crystalspace/csplatform.h Xinclude/crystalspace/csplugincommon.h Xinclude/crystalspace/csqint.h Xinclude/crystalspace/csqsqrt.h Xinclude/crystalspace/cssysdef.h Xinclude/crystalspace/cstool.h Xinclude/crystalspace/cstypes.h Xinclude/crystalspace/csutil.h Xinclude/crystalspace/csver.h Xinclude/crystalspace/iaws.h Xinclude/crystalspace/iengine.h Xinclude/crystalspace/igeom.h Xinclude/crystalspace/igraphic.h Xinclude/crystalspace/imap.h Xinclude/crystalspace/imesh.h Xinclude/crystalspace/inetwork.h Xinclude/crystalspace/isound.h Xinclude/crystalspace/itexture.h Xinclude/crystalspace/iutil.h Xinclude/crystalspace/ivaria.h Xinclude/crystalspace/ivideo.h Xinclude/crystalspace/csgeom/bsptree.h Xinclude/crystalspace/csgeom/box.h Xinclude/crystalspace/csgeom/chainhull2d.h Xinclude/crystalspace/csgeom/cspoint.h Xinclude/crystalspace/csgeom/csrect.h Xinclude/crystalspace/csgeom/csrectrg.h Xinclude/crystalspace/csgeom/fastsqrt.h Xinclude/crystalspace/csgeom/frustum.h Xinclude/crystalspace/csgeom/kdtree.h Xinclude/crystalspace/csgeom/math.h Xinclude/crystalspace/csgeom/math2d.h Xinclude/crystalspace/csgeom/math3d.h Xinclude/crystalspace/csgeom/math3d_d.h Xinclude/crystalspace/csgeom/matrix2.h Xinclude/crystalspace/csgeom/matrix3.h Xinclude/crystalspace/csgeom/obb.h Xinclude/crystalspace/csgeom/objmodel.h Xinclude/crystalspace/csgeom/path.h Xinclude/crystalspace/csgeom/plane2.h Xinclude/crystalspace/csgeom/plane3.h Xinclude/crystalspace/csgeom/pmtools.h Xinclude/crystalspace/csgeom/poly2d.h Xinclude/crystalspace/csgeom/poly3d.h Xinclude/crystalspace/csgeom/polyaa.h Xinclude/crystalspace/csgeom/polyclip.h Xinclude/crystalspace/csgeom/polyedge.h Xinclude/crystalspace/csgeom/polyidx.h Xinclude/crystalspace/csgeom/polymesh.h Xinclude/crystalspace/csgeom/polypool.h Xinclude/crystalspace/csgeom/quaterni.h Xinclude/crystalspace/csgeom/segment.h Xinclude/crystalspace/csgeom/solidspace.h Xinclude/crystalspace/csgeom/sphere.h Xinclude/crystalspace/csgeom/spline.h Xinclude/crystalspace/csgeom/subrec.h Xinclude/crystalspace/csgeom/subrec2.h Xinclude/crystalspace/csgeom/tcovbuf.h Xinclude/crystalspace/csgeom/textrans.h Xinclude/crystalspace/csgeom/transfrm.h Xinclude/crystalspace/csgeom/tri.h Xinclude/crystalspace/csgeom/trimesh.h Xinclude/crystalspace/csgeom/trimeshlod.h Xinclude/crystalspace/csgeom/vector2.h Xinclude/crystalspace/csgeom/vector3.h Xinclude/crystalspace/csgeom/vector4.h Xinclude/crystalspace/csgfx/bakekeycolor.h Xinclude/crystalspace/csgfx/csimgvec.h Xinclude/crystalspace/csgfx/csrgbvct.h Xinclude/crystalspace/csgfx/gradient.h Xinclude/crystalspace/csgfx/imagebase.h Xinclude/crystalspace/csgfx/imagecubemapmaker.h Xinclude/crystalspace/csgfx/imagemanipulate.h Xinclude/crystalspace/csgfx/imagetools.h Xinclude/crystalspace/csgfx/imagevolumemaker.h Xinclude/crystalspace/csgfx/inv_cmap.h Xinclude/crystalspace/csgfx/lightsvcache.h Xinclude/crystalspace/csgfx/memimage.h Xinclude/crystalspace/csgfx/normalmaptools.h Xinclude/crystalspace/csgfx/packrgb.h Xinclude/crystalspace/csgfx/quantize.h Xinclude/crystalspace/csgfx/renderbuffer.h Xinclude/crystalspace/csgfx/rgbpixel.h Xinclude/crystalspace/csgfx/shaderexp.h Xinclude/crystalspace/csgfx/shaderexpaccessor.h Xinclude/crystalspace/csgfx/shadervar.h Xinclude/crystalspace/csgfx/xorpat.h Xinclude/crystalspace/csgfx/shadervarblockalloc.h Xinclude/crystalspace/csgfx/shadervarcontext.h Xinclude/crystalspace/csgfx/shadervarframeholder.h Xinclude/crystalspace/csgfx/vertexlight.h Xinclude/crystalspace/csgfx/vertexlistwalker.h Xinclude/crystalspace/csplugincommon/canvas/cursorconvert.h Xinclude/crystalspace/csplugincommon/canvas/draw_box.h Xinclude/crystalspace/csplugincommon/canvas/draw_common.h Xinclude/crystalspace/csplugincommon/canvas/draw_line.h Xinclude/crystalspace/csplugincommon/canvas/draw_text.h Xinclude/crystalspace/csplugincommon/canvas/fontcache.h Xinclude/crystalspace/csplugincommon/canvas/graph2d.h Xinclude/crystalspace/csplugincommon/canvas/scancode.h Xinclude/crystalspace/csplugincommon/canvas/scrshot.h Xinclude/crystalspace/csplugincommon/canvas/softfontcache.h Xinclude/crystalspace/csplugincommon/canvas/softfontcacheimpl.h Xinclude/crystalspace/csplugincommon/directx/csextern_dx.h Xinclude/crystalspace/csplugincommon/directx/directdetection.h Xinclude/crystalspace/csplugincommon/directx/guids.h Xinclude/crystalspace/csplugincommon/imageloader/commonimagefile.h Xinclude/crystalspace/csplugincommon/imageloader/optionsparser.h Xinclude/crystalspace/csplugincommon/iopengl/driverdb.h Xinclude/crystalspace/csplugincommon/iopengl/openglinterface.h Xinclude/crystalspace/csplugincommon/macosx/OSXDelegate2D.h Xinclude/crystalspace/csplugincommon/macosx/OSXDriver2D.h Xinclude/crystalspace/csplugincommon/macosx/OSXView.h Xinclude/crystalspace/csplugincommon/macosx/OSXWindow.h Xinclude/crystalspace/csplugincommon/macosx/csextern_osx.h Xinclude/crystalspace/csplugincommon/opengl/csextern_gl.h Xinclude/crystalspace/csplugincommon/opengl/driverdb.h Xinclude/crystalspace/csplugincommon/opengl/driverdb.tok Xinclude/crystalspace/csplugincommon/opengl/glcommon2d.h Xinclude/crystalspace/csplugincommon/opengl/glenum_identstrs.h Xinclude/crystalspace/csplugincommon/opengl/glextmanager.h Xinclude/crystalspace/csplugincommon/opengl/glfontcache.h Xinclude/crystalspace/csplugincommon/opengl/glhelper.h Xinclude/crystalspace/csplugincommon/opengl/glss.h Xinclude/crystalspace/csplugincommon/opengl/glstates.h Xinclude/crystalspace/csplugincommon/particlesys/partgen.h Xinclude/crystalspace/csplugincommon/particlesys/particle.h Xinclude/crystalspace/csplugincommon/render3d/normalizationcube.h Xinclude/crystalspace/csplugincommon/render3d/pixfmt.h Xinclude/crystalspace/csplugincommon/render3d/txtmgr.h Xinclude/crystalspace/csplugincommon/renderstep/basesteploader.h Xinclude/crystalspace/csplugincommon/renderstep/basesteptype.h Xinclude/crystalspace/csplugincommon/renderstep/parserenderstep.h Xinclude/crystalspace/csplugincommon/shader/shaderplugin.h Xinclude/crystalspace/csplugincommon/shader/shaderprogram.h Xinclude/crystalspace/csplugincommon/shader/shaderprogram.tok Xinclude/crystalspace/csplugincommon/soundloader/sndload.h Xinclude/crystalspace/csplugincommon/soundloader/soundraw.h Xinclude/crystalspace/csplugincommon/soundrenderer/shdl.h Xinclude/crystalspace/csplugincommon/soundrenderer/slstn.h Xinclude/crystalspace/csplugincommon/win32/csextern_win.h Xinclude/crystalspace/csplugincommon/win32/customcursor.h Xinclude/crystalspace/cstool/basetexfact.h Xinclude/crystalspace/cstool/bitmasktostr.h Xinclude/crystalspace/cstool/collider.h Xinclude/crystalspace/cstool/csanim2d.h Xinclude/crystalspace/cstool/csapplicationframework.h Xinclude/crystalspace/cstool/csfxscr.h Xinclude/crystalspace/cstool/cspixmap.h Xinclude/crystalspace/cstool/csview.h Xinclude/crystalspace/cstool/debugimagewriter.h Xinclude/crystalspace/cstool/enginetools.h Xinclude/crystalspace/cstool/fogmath.h Xinclude/crystalspace/cstool/framedataholder.h Xinclude/crystalspace/cstool/gentrtex.h Xinclude/crystalspace/cstool/identstrings.h Xinclude/crystalspace/cstool/importkit.h Xinclude/crystalspace/cstool/initapp.h Xinclude/crystalspace/cstool/keyval.h Xinclude/crystalspace/cstool/mapnode.h Xinclude/crystalspace/cstool/mdldata.h Xinclude/crystalspace/cstool/mdltool.h Xinclude/crystalspace/cstool/meshobjtmpl.h Xinclude/crystalspace/cstool/pen.h Xinclude/crystalspace/cstool/proctex.h Xinclude/crystalspace/cstool/proctxtanim.h Xinclude/crystalspace/cstool/rbuflock.h Xinclude/crystalspace/cstool/rendermeshholder.h Xinclude/crystalspace/cstool/rendermeshlist.h Xinclude/crystalspace/cstool/sndwrap.h Xinclude/crystalspace/cstool/sprbuild.h Xinclude/crystalspace/cstool/tokenlist.h Xinclude/crystalspace/cstool/userrndbuf.h Xinclude/crystalspace/cstool/vfsdirchange.h Xinclude/crystalspace/cstool/vidprefs.h Xinclude/crystalspace/csutil/macosx/OSXAssistant.h Xinclude/crystalspace/csutil/macosx/csosdefs.h Xinclude/crystalspace/csutil/algorithms.h Xinclude/crystalspace/csutil/ansicolor.h Xinclude/crystalspace/csutil/ansiparse.h Xinclude/crystalspace/csutil/archive.h Xinclude/crystalspace/csutil/array.h Xinclude/crystalspace/csutil/binder.h Xinclude/crystalspace/csutil/bintree.h Xinclude/crystalspace/csutil/bitarray.h Xinclude/crystalspace/csutil/blockallocator.h Xinclude/crystalspace/csutil/callstack.h Xinclude/crystalspace/csutil/cfgacc.h Xinclude/crystalspace/csutil/cfgdoc.h Xinclude/crystalspace/csutil/cfgfile.h Xinclude/crystalspace/csutil/cfgmgr.h Xinclude/crystalspace/csutil/cmdhelp.h Xinclude/crystalspace/csutil/cmdline.h Xinclude/crystalspace/csutil/comparator.h Xinclude/crystalspace/csutil/csbaseeventh.h Xinclude/crystalspace/csutil/cscolor.h Xinclude/crystalspace/csutil/csendian.h Xinclude/crystalspace/csutil/csevcord.h Xinclude/crystalspace/csutil/csevent.h Xinclude/crystalspace/csutil/csmd5.h Xinclude/crystalspace/csutil/cseventflattener.h Xinclude/crystalspace/csutil/cseventq.h Xinclude/crystalspace/csutil/csinput.h Xinclude/crystalspace/csutil/csobject.h Xinclude/crystalspace/csutil/csosdefs.h Xinclude/crystalspace/csutil/csperlxs_fallback.inc Xinclude/crystalspace/csutil/cspmeter.h Xinclude/crystalspace/csutil/csppulse.h Xinclude/crystalspace/csutil/csprocessorcap.h Xinclude/crystalspace/csutil/csshlib.h Xinclude/crystalspace/csutil/csstring.h Xinclude/crystalspace/csutil/csuctransform.h Xinclude/crystalspace/csutil/csunicode.h Xinclude/crystalspace/csutil/databuf.h Xinclude/crystalspace/csutil/datastrm.h Xinclude/crystalspace/csutil/debug.h Xinclude/crystalspace/csutil/dirtyaccessarray.h Xinclude/crystalspace/csutil/documentcommon.h Xinclude/crystalspace/csutil/documenthelper.h Xinclude/crystalspace/csutil/event.h Xinclude/crystalspace/csutil/evoutlet.h Xinclude/crystalspace/csutil/fifo.h Xinclude/crystalspace/csutil/flags.h Xinclude/crystalspace/csutil/floatrand.h Xinclude/crystalspace/csutil/formatter.h Xinclude/crystalspace/csutil/fpu80x86.h Xinclude/crystalspace/csutil/garray.h Xinclude/crystalspace/csutil/getopt.h Xinclude/crystalspace/csutil/hash.h Xinclude/crystalspace/csutil/hashhandlers.h Xinclude/crystalspace/csutil/hashr.h Xinclude/crystalspace/csutil/inputdef.h Xinclude/crystalspace/csutil/leakguard.h Xinclude/crystalspace/csutil/list.h Xinclude/crystalspace/csutil/memdebug.h Xinclude/crystalspace/csutil/memfile.h Xinclude/crystalspace/csutil/mempool.h Xinclude/crystalspace/csutil/mmap_dummy.h Xinclude/crystalspace/csutil/mmap_posix.h Xinclude/crystalspace/csutil/mmapio.h Xinclude/crystalspace/csutil/nobjvec.h Xinclude/crystalspace/csutil/nulcache.h Xinclude/crystalspace/csutil/objiter.h Xinclude/crystalspace/csutil/objpool.h Xinclude/crystalspace/csutil/objreg.h Xinclude/crystalspace/csutil/parasiticdatabuffer.h Xinclude/crystalspace/csutil/parray.h Xinclude/crystalspace/csutil/physfile.h Xinclude/crystalspace/csutil/plugldr.h Xinclude/crystalspace/csutil/plugmgr.h Xinclude/crystalspace/csutil/pooledscfclass.h Xinclude/crystalspace/csutil/prfxcfg.h Xinclude/crystalspace/csutil/profile.h Xinclude/crystalspace/csutil/radixsort.h Xinclude/crystalspace/csutil/randomgen.h Xinclude/crystalspace/csutil/redblacktree.h Xinclude/crystalspace/csutil/ref.h Xinclude/crystalspace/csutil/refarr.h Xinclude/crystalspace/csutil/refcount.h Xinclude/crystalspace/csutil/reftrackeraccess.h Xinclude/crystalspace/csutil/regexp.h Xinclude/crystalspace/csutil/scanstr.h Xinclude/crystalspace/csutil/scf.h Xinclude/crystalspace/csutil/scf_impl.h Xinclude/crystalspace/csutil/scf_implementation.h Xinclude/crystalspace/csutil/scf_interface.h Xinclude/crystalspace/csutil/scfstr.h Xinclude/crystalspace/csutil/scfstringarray.h Xinclude/crystalspace/csutil/scfstrset.h Xinclude/crystalspace/csutil/schedule.h Xinclude/crystalspace/csutil/set.h Xinclude/crystalspace/csutil/snprintf.h Xinclude/crystalspace/csutil/scopedmutexlock.h Xinclude/crystalspace/csutil/sparse3d.h Xinclude/crystalspace/csutil/strhash.h Xinclude/crystalspace/csutil/stringarray.h Xinclude/crystalspace/csutil/stringreader.h Xinclude/crystalspace/csutil/strset.h Xinclude/crystalspace/csutil/sysfunc.h Xinclude/crystalspace/csutil/syspath.h Xinclude/crystalspace/csutil/thread.h Xinclude/crystalspace/csutil/threadjobqueue.h Xinclude/crystalspace/csutil/timer.h Xinclude/crystalspace/csutil/util.h Xinclude/crystalspace/csutil/verbosity.h Xinclude/crystalspace/csutil/vfscache.h Xinclude/crystalspace/csutil/vfsplat.h Xinclude/crystalspace/csutil/virtclk.h Xinclude/crystalspace/csutil/weakref.h Xinclude/crystalspace/csutil/weakrefarr.h Xinclude/crystalspace/csutil/xmltiny.h Xinclude/crystalspace/csutil/zip.h Xinclude/crystalspace/csutil/unix/csosdefs.h Xinclude/crystalspace/csutil/win32/APIdeclare.inc Xinclude/crystalspace/csutil/win32/DbgHelpAPI.fun Xinclude/crystalspace/csutil/win32/DbgHelpAPI.h Xinclude/crystalspace/csutil/win32/callstack.h Xinclude/crystalspace/csutil/win32/csconfig.h Xinclude/crystalspace/csutil/win32/csosdefs.h Xinclude/crystalspace/csutil/win32/minidump.h Xinclude/crystalspace/csutil/win32/mmap.h Xinclude/crystalspace/csutil/win32/psdk-compat.h Xinclude/crystalspace/csutil/win32/registrycfg.h Xinclude/crystalspace/csutil/win32/sanity.inc Xinclude/crystalspace/csutil/win32/win32.h Xinclude/crystalspace/csutil/win32/wintools.h Xinclude/crystalspace/iaws/awscnvs.h Xinclude/crystalspace/iaws/aws.h Xinclude/crystalspace/iaws/aws2.h Xinclude/crystalspace/iaws/awsdefs.h Xinclude/crystalspace/iaws/awsdock.h Xinclude/crystalspace/iaws/awsecomp.h Xinclude/crystalspace/iaws/awsparm.h Xinclude/crystalspace/iengine/rendersteps/icontainer.h Xinclude/crystalspace/iengine/rendersteps/igeneric.h Xinclude/crystalspace/iengine/rendersteps/ilightiter.h Xinclude/crystalspace/iengine/rendersteps/irenderstep.h Xinclude/crystalspace/iengine/rendersteps/irsfact.h Xinclude/crystalspace/iengine/camera.h Xinclude/crystalspace/iengine/campos.h Xinclude/crystalspace/iengine/collectn.h Xinclude/crystalspace/iengine/engine.h Xinclude/crystalspace/iengine/fview.h Xinclude/crystalspace/iengine/halo.h Xinclude/crystalspace/iengine/imposter.h Xinclude/crystalspace/iengine/light.h Xinclude/crystalspace/iengine/lightmgr.h Xinclude/crystalspace/iengine/lod.h Xinclude/crystalspace/iengine/material.h Xinclude/crystalspace/iengine/mesh.h Xinclude/crystalspace/iengine/movable.h Xinclude/crystalspace/iengine/objwatch.h Xinclude/crystalspace/iengine/portal.h Xinclude/crystalspace/iengine/portalcontainer.h Xinclude/crystalspace/iengine/region.h Xinclude/crystalspace/iengine/renderloop.h Xinclude/crystalspace/iengine/rview.h Xinclude/crystalspace/iengine/sector.h Xinclude/crystalspace/iengine/shadcast.h Xinclude/crystalspace/iengine/shadows.h Xinclude/crystalspace/iengine/sharevar.h Xinclude/crystalspace/iengine/texture.h Xinclude/crystalspace/iengine/viscull.h Xinclude/crystalspace/igeom/clip2d.h Xinclude/crystalspace/igeom/objmodel.h Xinclude/crystalspace/igeom/path.h Xinclude/crystalspace/igeom/polymesh.h Xinclude/crystalspace/igraphic/animimg.h Xinclude/crystalspace/igraphic/image.h Xinclude/crystalspace/igraphic/imageio.h Xinclude/crystalspace/igraphic/imgvec.h Xinclude/crystalspace/imap/ldrctxt.h Xinclude/crystalspace/imap/loader.h Xinclude/crystalspace/imap/parser.h Xinclude/crystalspace/imap/reader.h Xinclude/crystalspace/imap/saver.h Xinclude/crystalspace/imap/services.h Xinclude/crystalspace/imap/writer.h Xinclude/crystalspace/imesh/bezier.h Xinclude/crystalspace/imesh/ball.h Xinclude/crystalspace/imesh/crossbld.h Xinclude/crystalspace/imesh/emit.h Xinclude/crystalspace/imesh/explode.h Xinclude/crystalspace/imesh/fire.h Xinclude/crystalspace/imesh/foliage.h Xinclude/crystalspace/imesh/fountain.h Xinclude/crystalspace/imesh/genmesh.h Xinclude/crystalspace/imesh/gmeshanim.h Xinclude/crystalspace/imesh/gmeshskel.h Xinclude/crystalspace/imesh/haze.h Xinclude/crystalspace/imesh/lghtng.h Xinclude/crystalspace/imesh/lighting.h Xinclude/crystalspace/imesh/mdlconv.h Xinclude/crystalspace/imesh/mdldata.h Xinclude/crystalspace/imesh/nullmesh.h Xinclude/crystalspace/imesh/object.h Xinclude/crystalspace/imesh/particle.h Xinclude/crystalspace/imesh/particles.h Xinclude/crystalspace/imesh/partsys.h Xinclude/crystalspace/imesh/protomesh.h Xinclude/crystalspace/imesh/rain.h Xinclude/crystalspace/imesh/snow.h Xinclude/crystalspace/imesh/spiral.h Xinclude/crystalspace/imesh/sprite2d.h Xinclude/crystalspace/imesh/sprite3d.h Xinclude/crystalspace/imesh/spritecal3d.h Xinclude/crystalspace/imesh/stars.h Xinclude/crystalspace/imesh/terrain.h Xinclude/crystalspace/imesh/thing.h Xinclude/crystalspace/inetwork/vosa3dl.h Xinclude/crystalspace/inetwork/vosapi.h Xinclude/crystalspace/isound/driver.h Xinclude/crystalspace/isound/data.h Xinclude/crystalspace/isound/handle.h Xinclude/crystalspace/isound/listener.h Xinclude/crystalspace/isound/loader.h Xinclude/crystalspace/isound/renderer.h Xinclude/crystalspace/isound/source.h Xinclude/crystalspace/isound/wrapper.h Xinclude/crystalspace/itexture/iproctex.h Xinclude/crystalspace/itexture/ifire.h Xinclude/crystalspace/itexture/itexfact.h Xinclude/crystalspace/itexture/itexloaderctx.h Xinclude/crystalspace/iutil/binder.h Xinclude/crystalspace/iutil/cache.h Xinclude/crystalspace/iutil/cfgfile.h Xinclude/crystalspace/iutil/cfgmgr.h Xinclude/crystalspace/iutil/cmdline.h Xinclude/crystalspace/iutil/comp.h Xinclude/crystalspace/iutil/csinput.h Xinclude/crystalspace/iutil/databuff.h Xinclude/crystalspace/iutil/dbghelp.h Xinclude/crystalspace/iutil/document.h Xinclude/crystalspace/iutil/evdefs.h Xinclude/crystalspace/iutil/event.h Xinclude/crystalspace/iutil/eventh.h Xinclude/crystalspace/iutil/eventq.h Xinclude/crystalspace/iutil/job.h Xinclude/crystalspace/iutil/memdebug.h Xinclude/crystalspace/iutil/object.h Xinclude/crystalspace/iutil/objreg.h Xinclude/crystalspace/iutil/plugin.h Xinclude/crystalspace/iutil/pluginconfig.h Xinclude/crystalspace/iutil/reftrack.h Xinclude/crystalspace/iutil/string.h Xinclude/crystalspace/iutil/stringarray.h Xinclude/crystalspace/iutil/strset.h Xinclude/crystalspace/iutil/timer.h Xinclude/crystalspace/iutil/verbositymanager.h Xinclude/crystalspace/iutil/vfs.h Xinclude/crystalspace/iutil/virtclk.h Xinclude/crystalspace/ivaria/bugplug.h Xinclude/crystalspace/ivaria/collider.h Xinclude/crystalspace/ivaria/conin.h Xinclude/crystalspace/ivaria/conout.h Xinclude/crystalspace/ivaria/cspace.i Xinclude/crystalspace/ivaria/dynamics.h Xinclude/crystalspace/ivaria/engseq.h Xinclude/crystalspace/ivaria/javapost.i Xinclude/crystalspace/ivaria/javapre.i Xinclude/crystalspace/ivaria/keyval.h Xinclude/crystalspace/ivaria/mapnode.h Xinclude/crystalspace/ivaria/movierecorder.h Xinclude/crystalspace/ivaria/ode.h Xinclude/crystalspace/ivaria/perl1st.i Xinclude/crystalspace/ivaria/perlpost.i Xinclude/crystalspace/ivaria/perlpre.i Xinclude/crystalspace/ivaria/pmeter.h Xinclude/crystalspace/ivaria/pvstree.h Xinclude/crystalspace/ivaria/pyeventh.i Xinclude/crystalspace/ivaria/pythpost.i Xinclude/crystalspace/ivaria/pythpre.i Xinclude/crystalspace/ivaria/pythvarg.i Xinclude/crystalspace/ivaria/reporter.h Xinclude/crystalspace/ivaria/script.h Xinclude/crystalspace/ivaria/sequence.h Xinclude/crystalspace/ivaria/simpleformer.h Xinclude/crystalspace/ivaria/stdrep.h Xinclude/crystalspace/ivaria/terraform.h Xinclude/crystalspace/ivaria/view.h Xinclude/crystalspace/ivideo/cursor.h Xinclude/crystalspace/ivideo/codec.h Xinclude/crystalspace/ivideo/custcursor.h Xinclude/crystalspace/ivideo/fontserv.h Xinclude/crystalspace/ivideo/gfxmem.h Xinclude/crystalspace/ivideo/graph2d.h Xinclude/crystalspace/ivideo/graph3d.h Xinclude/crystalspace/ivideo/halo.h Xinclude/crystalspace/ivideo/lighting.h Xinclude/crystalspace/ivideo/material.h Xinclude/crystalspace/ivideo/natwin.h Xinclude/crystalspace/ivideo/polyrender.h Xinclude/crystalspace/ivideo/rendermesh.h Xinclude/crystalspace/ivideo/rndbuf.h Xinclude/crystalspace/ivideo/texture.h Xinclude/crystalspace/ivideo/txtmgr.h Xinclude/crystalspace/ivideo/wxwin.h Xinclude/crystalspace/ivideo/shader/shader.h Xinclude/crystalspace/csconfig.h Xlib/crystalspace/aws.so Xlib/crystalspace/aws2.so Xlib/crystalspace/bugplug.so Xlib/crystalspace/opcode.so Xlib/crystalspace/csconin.so Xlib/crystalspace/fancycon.so Xlib/crystalspace/simpcon.so Xlib/crystalspace/csconout.so Xlib/crystalspace/cspython.so Xlib/crystalspace/csparser.so Xlib/crystalspace/cssynldr.so Xlib/crystalspace/cssaver.so Xlib/crystalspace/dynavis.so Xlib/crystalspace/frustvis.so Xlib/crystalspace/pvsvis.so Xlib/crystalspace/bindoc.so Xlib/crystalspace/dsplex.so Xlib/crystalspace/xmlread.so Xlib/crystalspace/xmltiny.so Xlib/crystalspace/engine.so Xlib/crystalspace/rendstep_fatrl.so Xlib/crystalspace/rendloop_loader.so Xlib/crystalspace/rendstep_std.so Xlib/crystalspace/vfs.so Xlib/crystalspace/rendstep_stencil.so Xlib/crystalspace/rendstep_stencil2.so Xlib/crystalspace/engseq.so Xlib/crystalspace/csfont.so Xlib/crystalspace/fontplex.so Xlib/crystalspace/freefnt2.so Xlib/crystalspace/ball.so Xlib/crystalspace/ballldr.so Xlib/crystalspace/bezier.so Xlib/crystalspace/bezierldr.so Xlib/crystalspace/crossbld.so Xlib/crystalspace/emit.so Xlib/crystalspace/emitldr.so Xlib/crystalspace/explo.so Xlib/crystalspace/exploldr.so Xlib/crystalspace/fire.so Xlib/crystalspace/fireldr.so Xlib/crystalspace/foliage.so Xlib/crystalspace/foliageldr.so Xlib/crystalspace/fountain.so Xlib/crystalspace/fountldr.so Xlib/crystalspace/genmesh.so Xlib/crystalspace/gmeshldr.so Xlib/crystalspace/gmeshanim.so Xlib/crystalspace/gmeshskelanim.so Xlib/crystalspace/haze.so Xlib/crystalspace/hazeldr.so Xlib/crystalspace/ie3ds.so Xlib/crystalspace/aseie.so Xlib/crystalspace/ieplex.so Xlib/crystalspace/md2ie.so Xlib/crystalspace/mdlie.so Xlib/crystalspace/objie.so Xlib/crystalspace/povie.so Xlib/crystalspace/sprie.so Xlib/crystalspace/lghtng.so Xlib/crystalspace/lghtngldr.so Xlib/crystalspace/nullmesh.so Xlib/crystalspace/nullmeshldr.so Xlib/crystalspace/particles.so Xlib/crystalspace/particlesldr.so Xlib/crystalspace/partphys_simple.so Xlib/crystalspace/partphys_ode.so Xlib/crystalspace/rain.so Xlib/crystalspace/rainldr.so Xlib/crystalspace/snow.so Xlib/crystalspace/snowldr.so Xlib/crystalspace/spiral.so Xlib/crystalspace/spirldr.so Xlib/crystalspace/spr2d.so Xlib/crystalspace/spr2dldr.so Xlib/crystalspace/spr3d.so Xlib/crystalspace/spr3dbin.so Xlib/crystalspace/spr3dldr.so Xlib/crystalspace/sprcal3d.so Xlib/crystalspace/sprcal3dldr.so Xlib/crystalspace/stars.so Xlib/crystalspace/starldr.so Xlib/crystalspace/bruteblock.so Xlib/crystalspace/terrainldr.so Xlib/crystalspace/thing.so Xlib/crystalspace/thingldr.so Xlib/crystalspace/protomesh.so Xlib/crystalspace/protomeshldr.so Xlib/crystalspace/movierecorder.so Xlib/crystalspace/physldr.so Xlib/crystalspace/odedynam.so Xlib/crystalspace/stdpt.so Xlib/crystalspace/ptanimimg.so Xlib/crystalspace/tlfunc.so Xlib/crystalspace/reporter.so Xlib/crystalspace/sequence.so Xlib/crystalspace/ossdrv.so Xlib/crystalspace/sndaiff.so Xlib/crystalspace/sndau.so Xlib/crystalspace/sndiff.so Xlib/crystalspace/sndmod.so Xlib/crystalspace/sndplex.so Xlib/crystalspace/sndogg.so Xlib/crystalspace/sndwav.so Xlib/crystalspace/sndoal.so Xlib/crystalspace/sndsoft.so Xlib/crystalspace/stdrep.so Xlib/crystalspace/simpleformer.so Xlib/crystalspace/simpleformerldr.so Xlib/crystalspace/cacacanvas.so Xlib/crystalspace/memory2d.so Xlib/crystalspace/null2d.so Xlib/crystalspace/glx2d.so Xlib/crystalspace/sdl2d.so Xlib/crystalspace/x2d.so Xlib/crystalspace/xext86vm.so Xlib/crystalspace/xextshm.so Xlib/crystalspace/xwin.so Xlib/crystalspace/csavi.so Xlib/crystalspace/csbmpimg.so Xlib/crystalspace/csddsimg.so Xlib/crystalspace/csgifimg.so Xlib/crystalspace/csjngimg.so Xlib/crystalspace/csjpgimg.so Xlib/crystalspace/imgplex.so Xlib/crystalspace/cspngimg.so Xlib/crystalspace/cssgiimg.so Xlib/crystalspace/cstgaimg.so Xlib/crystalspace/cswalimg.so Xlib/crystalspace/gl3d.so Xlib/crystalspace/soft3d.so Xlib/crystalspace/shadermgr.so Xlib/crystalspace/glshader_arb.so Xlib/crystalspace/glshader_fixed.so Xlib/crystalspace/glshader_ps1.so Xlib/crystalspace/softshader.so Xlib/crystalspace/vproc_std.so Xlib/crystalspace/xmlshader.so Xlib/crystalspace/null3d.so Xlib/crystalspace/cscursor.so Xlib/libcrystalspace.a Xlib/libcrystalspace_opengl.a Xlib/libcrystalspace_python.a X%%DOCSDIR%%/README X%%DOCSDIR%%/LICENSE X%%DOCSDIR%%/history.txt X%%DOCSDIR%%/history.old X%%DOCSDIR%%/html/manual/build/platform/win32/cygwin/cygshot1.jpg X%%DOCSDIR%%/html/manual/build/platform/win32/cygwin/cygshot2.jpg X%%DOCSDIR%%/html/manual/build/platform/win32/cygwin/cygshot3.jpg X%%DOCSDIR%%/html/manual/build/platform/win32/cygwin/cygshot4.jpg X%%DOCSDIR%%/html/manual/build/platform/win32/cygwin/cygshot5.jpg X%%DOCSDIR%%/html/manual/build/platform/win32/cygwin/cygshot6.jpg X%%DOCSDIR%%/html/manual/build/platform/win32/cygwin/cygshot7.jpg X%%DOCSDIR%%/html/manual/build/platform/win32/cygwin/cygshot8.jpg X%%DOCSDIR%%/html/manual/build/platform/win32/cygwin/cygshot9.jpg X%%DOCSDIR%%/html/manual/build/wincvs/wincvs01.jpg X%%DOCSDIR%%/html/manual/build/wincvs/wincvs02.jpg X%%DOCSDIR%%/html/manual/build/wincvs/wincvs03.jpg X%%DOCSDIR%%/html/manual/build/wincvs/wincvs04.jpg X%%DOCSDIR%%/html/manual/build/wincvs/wincvs05.jpg X%%DOCSDIR%%/html/manual/build/wincvs/wincvs06.jpg X%%DOCSDIR%%/html/manual/build/wincvs/wincvs07.jpg X%%DOCSDIR%%/html/manual/build/wincvs/wincvs08.jpg X%%DOCSDIR%%/html/manual/build/wincvs/wincvs09.jpg X%%DOCSDIR%%/html/manual/build/wincvs/wincvs10.jpg X%%DOCSDIR%%/html/manual/build/wincvs/wincvs11.jpg X%%DOCSDIR%%/html/manual/build/wincvs/wincvs12.jpg X%%DOCSDIR%%/html/manual/build/wincvs/wincvs13.jpg X%%DOCSDIR%%/html/manual/cs_1.1.html X%%DOCSDIR%%/html/manual/cs_1.10.html X%%DOCSDIR%%/html/manual/cs_1.11.html X%%DOCSDIR%%/html/manual/cs_1.12.html X%%DOCSDIR%%/html/manual/cs_1.2.html X%%DOCSDIR%%/html/manual/cs_1.3.html X%%DOCSDIR%%/html/manual/cs_1.4.html X%%DOCSDIR%%/html/manual/cs_1.5.html X%%DOCSDIR%%/html/manual/cs_1.6.html X%%DOCSDIR%%/html/manual/cs_1.7.html X%%DOCSDIR%%/html/manual/cs_1.8.html X%%DOCSDIR%%/html/manual/cs_1.9.html X%%DOCSDIR%%/html/manual/cs_1.html X%%DOCSDIR%%/html/manual/cs_2.1.1.html X%%DOCSDIR%%/html/manual/cs_2.1.2.html X%%DOCSDIR%%/html/manual/cs_2.1.3.html X%%DOCSDIR%%/html/manual/cs_2.1.4.html X%%DOCSDIR%%/html/manual/cs_2.1.5.html X%%DOCSDIR%%/html/manual/cs_2.1.6.html X%%DOCSDIR%%/html/manual/cs_2.1.7.html X%%DOCSDIR%%/html/manual/cs_2.1.html X%%DOCSDIR%%/html/manual/cs_2.2.html X%%DOCSDIR%%/html/manual/cs_2.3.html X%%DOCSDIR%%/html/manual/cs_2.4.html X%%DOCSDIR%%/html/manual/cs_2.5.1.html X%%DOCSDIR%%/html/manual/cs_2.5.2.1.html X%%DOCSDIR%%/html/manual/cs_2.5.2.2.html X%%DOCSDIR%%/html/manual/cs_2.5.2.html X%%DOCSDIR%%/html/manual/cs_2.5.3.html X%%DOCSDIR%%/html/manual/cs_2.5.4.html X%%DOCSDIR%%/html/manual/cs_2.5.5.1.html X%%DOCSDIR%%/html/manual/cs_2.5.5.2.html X%%DOCSDIR%%/html/manual/cs_2.5.5.3.html X%%DOCSDIR%%/html/manual/cs_2.5.5.4.html X%%DOCSDIR%%/html/manual/cs_2.5.5.html X%%DOCSDIR%%/html/manual/cs_2.5.html X%%DOCSDIR%%/html/manual/cs_2.6.html X%%DOCSDIR%%/html/manual/cs_2.7.html X%%DOCSDIR%%/html/manual/cs_2.html X%%DOCSDIR%%/html/manual/cs_3.1.1.html X%%DOCSDIR%%/html/manual/cs_3.1.2.html X%%DOCSDIR%%/html/manual/cs_3.1.3.html X%%DOCSDIR%%/html/manual/cs_3.1.4.1.html X%%DOCSDIR%%/html/manual/cs_3.1.4.2.html X%%DOCSDIR%%/html/manual/cs_3.1.4.3.html X%%DOCSDIR%%/html/manual/cs_3.1.4.4.html X%%DOCSDIR%%/html/manual/cs_3.1.4.5.html X%%DOCSDIR%%/html/manual/cs_3.1.4.6.html X%%DOCSDIR%%/html/manual/cs_3.1.4.7.html X%%DOCSDIR%%/html/manual/cs_3.1.4.8.html X%%DOCSDIR%%/html/manual/cs_3.1.4.9.html X%%DOCSDIR%%/html/manual/cs_3.1.4.html X%%DOCSDIR%%/html/manual/cs_3.1.5.html X%%DOCSDIR%%/html/manual/cs_3.1.6.html X%%DOCSDIR%%/html/manual/cs_3.1.html X%%DOCSDIR%%/html/manual/cs_3.2.html X%%DOCSDIR%%/html/manual/cs_3.html X%%DOCSDIR%%/html/manual/cs_4.1.1.html X%%DOCSDIR%%/html/manual/cs_4.1.2.html X%%DOCSDIR%%/html/manual/cs_4.1.3.html X%%DOCSDIR%%/html/manual/cs_4.1.html X%%DOCSDIR%%/html/manual/cs_4.10.1.html X%%DOCSDIR%%/html/manual/cs_4.10.10.html X%%DOCSDIR%%/html/manual/cs_4.10.11.html X%%DOCSDIR%%/html/manual/cs_4.10.12.html X%%DOCSDIR%%/html/manual/cs_4.10.13.html X%%DOCSDIR%%/html/manual/cs_4.10.14.html X%%DOCSDIR%%/html/manual/cs_4.10.15.html X%%DOCSDIR%%/html/manual/cs_4.10.16.html X%%DOCSDIR%%/html/manual/cs_4.10.17.html X%%DOCSDIR%%/html/manual/cs_4.10.18.html X%%DOCSDIR%%/html/manual/cs_4.10.19.html X%%DOCSDIR%%/html/manual/cs_4.10.2.html X%%DOCSDIR%%/html/manual/cs_4.10.20.html X%%DOCSDIR%%/html/manual/cs_4.10.21.html X%%DOCSDIR%%/html/manual/cs_4.10.22.html X%%DOCSDIR%%/html/manual/cs_4.10.23.html X%%DOCSDIR%%/html/manual/cs_4.10.24.html X%%DOCSDIR%%/html/manual/cs_4.10.3.html X%%DOCSDIR%%/html/manual/cs_4.10.4.html X%%DOCSDIR%%/html/manual/cs_4.10.5.html X%%DOCSDIR%%/html/manual/cs_4.10.6.html X%%DOCSDIR%%/html/manual/cs_4.10.7.html X%%DOCSDIR%%/html/manual/cs_4.10.8.html X%%DOCSDIR%%/html/manual/cs_4.10.9.html X%%DOCSDIR%%/html/manual/cs_4.10.html X%%DOCSDIR%%/html/manual/cs_4.11.1.html X%%DOCSDIR%%/html/manual/cs_4.11.2.html X%%DOCSDIR%%/html/manual/cs_4.11.html X%%DOCSDIR%%/html/manual/cs_4.12.1.html X%%DOCSDIR%%/html/manual/cs_4.12.2.1.html X%%DOCSDIR%%/html/manual/cs_4.12.2.2.html X%%DOCSDIR%%/html/manual/cs_4.12.2.3.html X%%DOCSDIR%%/html/manual/cs_4.12.2.4.html X%%DOCSDIR%%/html/manual/cs_4.12.2.5.html X%%DOCSDIR%%/html/manual/cs_4.12.2.6.html X%%DOCSDIR%%/html/manual/cs_4.12.2.html X%%DOCSDIR%%/html/manual/cs_4.12.3.1.html X%%DOCSDIR%%/html/manual/cs_4.12.3.2.html X%%DOCSDIR%%/html/manual/cs_4.12.3.3.html X%%DOCSDIR%%/html/manual/cs_4.12.3.html X%%DOCSDIR%%/html/manual/cs_4.12.html X%%DOCSDIR%%/html/manual/cs_4.13.1.html X%%DOCSDIR%%/html/manual/cs_4.13.2.html X%%DOCSDIR%%/html/manual/cs_4.13.html X%%DOCSDIR%%/html/manual/cs_4.2.html X%%DOCSDIR%%/html/manual/cs_4.14.1.html X%%DOCSDIR%%/html/manual/cs_4.14.2.html X%%DOCSDIR%%/html/manual/cs_4.14.html X%%DOCSDIR%%/html/manual/cs_4.15.1.html X%%DOCSDIR%%/html/manual/cs_4.15.2.html X%%DOCSDIR%%/html/manual/cs_4.15.3.html X%%DOCSDIR%%/html/manual/cs_4.15.4.html X%%DOCSDIR%%/html/manual/cs_4.15.5.html X%%DOCSDIR%%/html/manual/cs_4.15.6.html X%%DOCSDIR%%/html/manual/cs_4.15.html X%%DOCSDIR%%/html/manual/cs_4.16.1.html X%%DOCSDIR%%/html/manual/cs_4.16.html X%%DOCSDIR%%/html/manual/cs_4.17.1.html X%%DOCSDIR%%/html/manual/cs_4.17.2.1.html X%%DOCSDIR%%/html/manual/cs_4.17.2.2.html X%%DOCSDIR%%/html/manual/cs_4.17.2.3.html X%%DOCSDIR%%/html/manual/cs_4.17.2.4.html X%%DOCSDIR%%/html/manual/cs_4.17.2.html X%%DOCSDIR%%/html/manual/cs_4.17.3.1.html X%%DOCSDIR%%/html/manual/cs_4.17.3.2.html X%%DOCSDIR%%/html/manual/cs_4.17.3.3.html X%%DOCSDIR%%/html/manual/cs_4.17.3.html X%%DOCSDIR%%/html/manual/cs_4.17.4.html X%%DOCSDIR%%/html/manual/cs_4.17.html X%%DOCSDIR%%/html/manual/cs_4.18.1.html X%%DOCSDIR%%/html/manual/cs_4.18.2.html X%%DOCSDIR%%/html/manual/cs_4.18.html X%%DOCSDIR%%/html/manual/cs_4.19.1.html X%%DOCSDIR%%/html/manual/cs_4.19.2.html X%%DOCSDIR%%/html/manual/cs_4.19.3.html X%%DOCSDIR%%/html/manual/cs_4.19.4.html X%%DOCSDIR%%/html/manual/cs_4.19.html X%%DOCSDIR%%/html/manual/cs_4.20.1.html X%%DOCSDIR%%/html/manual/cs_4.20.10.html X%%DOCSDIR%%/html/manual/cs_4.20.2.html X%%DOCSDIR%%/html/manual/cs_4.20.3.1.html X%%DOCSDIR%%/html/manual/cs_4.20.3.2.html X%%DOCSDIR%%/html/manual/cs_4.20.3.3.html X%%DOCSDIR%%/html/manual/cs_4.20.3.html X%%DOCSDIR%%/html/manual/cs_4.20.4.html X%%DOCSDIR%%/html/manual/content/map2cs/csmap1.jpg X%%DOCSDIR%%/html/manual/content/map2cs/csmap2.jpg X%%DOCSDIR%%/html/manual/content/map2cs/csmap3.jpg X%%DOCSDIR%%/html/manual/content/map2cs/csmap4.jpg X%%DOCSDIR%%/html/manual/content/map2cs/csmap5a.jpg X%%DOCSDIR%%/html/manual/content/map2cs/csmap5b.jpg X%%DOCSDIR%%/html/manual/content/map2cs/terra1.png X%%DOCSDIR%%/html/manual/content/map2cs/terra2.png X%%DOCSDIR%%/html/manual/content/map2cs/wcblock.png X%%DOCSDIR%%/html/manual/content/map2cs/wcconf1.png X%%DOCSDIR%%/html/manual/content/map2cs/wcconf2.png X%%DOCSDIR%%/html/manual/content/map2cs/wcconf3.png X%%DOCSDIR%%/html/manual/content/map2cs/wcconf4.png X%%DOCSDIR%%/html/manual/content/map2cs/wcconf5.png X%%DOCSDIR%%/html/manual/content/map2cs/wcconf6.png X%%DOCSDIR%%/html/manual/content/map2cs/wcentity.png X%%DOCSDIR%%/html/manual/content/map2cs/wclight.png X%%DOCSDIR%%/html/manual/content/map2cs/wclight2.png X%%DOCSDIR%%/html/manual/content/map2cs/wcmap1.png X%%DOCSDIR%%/html/manual/content/map2cs/wcmap2.png X%%DOCSDIR%%/html/manual/content/map2cs/wcsel.png X%%DOCSDIR%%/html/manual/content/map2cs/wcstep7a.png X%%DOCSDIR%%/html/manual/content/map2cs/wcstep7b.png X%%DOCSDIR%%/html/manual/content/map2cs/wctex.png X%%DOCSDIR%%/html/manual/content/map2cs/wctex2.jpg X%%DOCSDIR%%/html/manual/content/map2cs/wctexap.png X%%DOCSDIR%%/html/manual/content/sprites/cylinder.jpg X%%DOCSDIR%%/html/manual/content/sprites/skin.jpg X%%DOCSDIR%%/html/manual/content/sprites/split.jpg X%%DOCSDIR%%/html/manual/content/sprites/unseamly.jpg X%%DOCSDIR%%/html/manual/cs_4.20.5.1.html X%%DOCSDIR%%/html/manual/cs_4.20.5.10.html X%%DOCSDIR%%/html/manual/cs_4.20.5.11.html X%%DOCSDIR%%/html/manual/cs_4.20.5.12.html X%%DOCSDIR%%/html/manual/cs_4.20.5.13.html X%%DOCSDIR%%/html/manual/cs_4.20.5.14.html X%%DOCSDIR%%/html/manual/cs_4.20.5.2.html X%%DOCSDIR%%/html/manual/cs_4.20.5.3.html X%%DOCSDIR%%/html/manual/cs_4.20.5.4.html X%%DOCSDIR%%/html/manual/cs_4.20.5.5.html X%%DOCSDIR%%/html/manual/cs_4.20.5.6.html X%%DOCSDIR%%/html/manual/cs_4.20.5.7.html X%%DOCSDIR%%/html/manual/cs_4.20.5.8.html X%%DOCSDIR%%/html/manual/cs_4.20.5.9.html X%%DOCSDIR%%/html/manual/cs_4.20.5.html X%%DOCSDIR%%/html/manual/cs_4.20.6.html X%%DOCSDIR%%/html/manual/cs_4.20.7.html X%%DOCSDIR%%/html/manual/cs_4.20.8.html X%%DOCSDIR%%/html/manual/cs_4.20.9.html X%%DOCSDIR%%/html/manual/cs_4.20.html X%%DOCSDIR%%/html/manual/cs_4.21.1.html X%%DOCSDIR%%/html/manual/cs_4.21.2.html X%%DOCSDIR%%/html/manual/cs_4.21.3.html X%%DOCSDIR%%/html/manual/cs_4.21.4.html X%%DOCSDIR%%/html/manual/cs_4.21.5.html X%%DOCSDIR%%/html/manual/cs_4.21.6.html X%%DOCSDIR%%/html/manual/cs_4.21.7.html X%%DOCSDIR%%/html/manual/cs_4.21.html X%%DOCSDIR%%/html/manual/cs_4.22.1.html X%%DOCSDIR%%/html/manual/cs_4.22.2.html X%%DOCSDIR%%/html/manual/cs_4.22.3.html X%%DOCSDIR%%/html/manual/cs_4.22.html X%%DOCSDIR%%/html/manual/cs_4.3.1.1.html X%%DOCSDIR%%/html/manual/cs_4.3.1.2.html X%%DOCSDIR%%/html/manual/cs_4.3.1.3.html X%%DOCSDIR%%/html/manual/cs_4.3.1.4.html X%%DOCSDIR%%/html/manual/cs_4.3.1.5.html X%%DOCSDIR%%/html/manual/cs_4.3.1.html X%%DOCSDIR%%/html/manual/cs_4.3.2.1.html X%%DOCSDIR%%/html/manual/cs_4.3.2.2.html X%%DOCSDIR%%/html/manual/cs_4.3.2.3.html X%%DOCSDIR%%/html/manual/cs_4.3.2.html X%%DOCSDIR%%/html/manual/cs_4.3.3.1.html X%%DOCSDIR%%/html/manual/cs_4.3.3.2.html X%%DOCSDIR%%/html/manual/cs_4.3.3.3.html X%%DOCSDIR%%/html/manual/cs_4.3.3.html X%%DOCSDIR%%/html/manual/cs_4.3.html X%%DOCSDIR%%/html/manual/cs_4.4.1.1.html X%%DOCSDIR%%/html/manual/cs_4.4.1.10.html X%%DOCSDIR%%/html/manual/cs_4.4.1.2.html X%%DOCSDIR%%/html/manual/cs_4.4.1.3.html X%%DOCSDIR%%/html/manual/cs_4.4.1.4.html X%%DOCSDIR%%/html/manual/cs_4.4.1.5.html X%%DOCSDIR%%/html/manual/cs_4.4.1.6.html X%%DOCSDIR%%/html/manual/cs_4.4.1.7.html X%%DOCSDIR%%/html/manual/cs_4.4.1.8.html X%%DOCSDIR%%/html/manual/cs_4.4.1.9.html X%%DOCSDIR%%/html/manual/cs_4.4.1.html X%%DOCSDIR%%/html/manual/cs_4.4.2.html X%%DOCSDIR%%/html/manual/cs_4.4.3.html X%%DOCSDIR%%/html/manual/cs_4.4.html X%%DOCSDIR%%/html/manual/cs_4.5.1.html X%%DOCSDIR%%/html/manual/cs_4.5.2.html X%%DOCSDIR%%/html/manual/cs_4.5.3.html X%%DOCSDIR%%/html/manual/cs_4.5.4.1.html X%%DOCSDIR%%/html/manual/cs_4.5.4.2.html X%%DOCSDIR%%/html/manual/cs_4.5.4.3.html X%%DOCSDIR%%/html/manual/cs_4.5.4.4.html X%%DOCSDIR%%/html/manual/cs_4.5.4.5.html X%%DOCSDIR%%/html/manual/cs_4.5.4.6.html X%%DOCSDIR%%/html/manual/cs_4.5.4.html X%%DOCSDIR%%/html/manual/cs_4.5.html X%%DOCSDIR%%/html/manual/cs_4.6.1.html X%%DOCSDIR%%/html/manual/cs_4.6.2.1.html X%%DOCSDIR%%/html/manual/cs_4.6.2.html X%%DOCSDIR%%/html/manual/cs_4.6.html X%%DOCSDIR%%/html/manual/cs_4.7.1.html X%%DOCSDIR%%/html/manual/cs_4.7.2.html X%%DOCSDIR%%/html/manual/cs_4.7.html X%%DOCSDIR%%/html/manual/cs_4.8.1.html X%%DOCSDIR%%/html/manual/cs_4.8.2.html X%%DOCSDIR%%/html/manual/cs_4.8.3.html X%%DOCSDIR%%/html/manual/cs_4.8.html X%%DOCSDIR%%/html/manual/cs_4.9.1.html X%%DOCSDIR%%/html/manual/cs_4.9.2.html X%%DOCSDIR%%/html/manual/cs_4.9.3.html X%%DOCSDIR%%/html/manual/cs_4.9.4.html X%%DOCSDIR%%/html/manual/cs_4.9.5.html X%%DOCSDIR%%/html/manual/cs_4.9.6.html X%%DOCSDIR%%/html/manual/cs_4.9.7.1.html X%%DOCSDIR%%/html/manual/cs_4.9.7.2.html X%%DOCSDIR%%/html/manual/cs_4.9.7.3.html X%%DOCSDIR%%/html/manual/cs_4.9.7.4.html X%%DOCSDIR%%/html/manual/cs_4.9.7.5.html X%%DOCSDIR%%/html/manual/cs_4.9.7.6.html X%%DOCSDIR%%/html/manual/cs_4.9.7.7.html X%%DOCSDIR%%/html/manual/cs_4.9.7.8.html X%%DOCSDIR%%/html/manual/cs_4.9.7.html X%%DOCSDIR%%/html/manual/cs_4.9.8.html X%%DOCSDIR%%/html/manual/cs_4.9.9.html X%%DOCSDIR%%/html/manual/cs_4.9.html X%%DOCSDIR%%/html/manual/cs_4.html X%%DOCSDIR%%/html/manual/cs_5.1.html X%%DOCSDIR%%/html/manual/cs_5.2.html X%%DOCSDIR%%/html/manual/cs_5.3.html X%%DOCSDIR%%/html/manual/cs_5.4.html X%%DOCSDIR%%/html/manual/cs_5.5.1.html X%%DOCSDIR%%/html/manual/cs_5.5.2.html X%%DOCSDIR%%/html/manual/cs_5.5.3.html X%%DOCSDIR%%/html/manual/cs_5.5.4.html X%%DOCSDIR%%/html/manual/cs_5.5.html X%%DOCSDIR%%/html/manual/cs_5.6.1.html X%%DOCSDIR%%/html/manual/cs_5.6.10.html X%%DOCSDIR%%/html/manual/cs_5.6.11.html X%%DOCSDIR%%/html/manual/cs_5.6.2.html X%%DOCSDIR%%/html/manual/cs_5.6.3.html X%%DOCSDIR%%/html/manual/cs_5.6.4.html X%%DOCSDIR%%/html/manual/cs_5.6.5.html X%%DOCSDIR%%/html/manual/cs_5.6.6.html X%%DOCSDIR%%/html/manual/cs_5.6.7.html X%%DOCSDIR%%/html/manual/cs_5.6.8.html X%%DOCSDIR%%/html/manual/cs_5.6.9.html X%%DOCSDIR%%/html/manual/cs_5.6.html X%%DOCSDIR%%/html/manual/cs_5.7.html X%%DOCSDIR%%/html/manual/cs_5.8.html X%%DOCSDIR%%/html/manual/cs_5.9.1.html X%%DOCSDIR%%/html/manual/cs_5.9.2.html X%%DOCSDIR%%/html/manual/cs_5.9.3.html X%%DOCSDIR%%/html/manual/cs_5.9.html X%%DOCSDIR%%/html/manual/cs_5.html X%%DOCSDIR%%/html/manual/cs_6.1.1.1.html X%%DOCSDIR%%/html/manual/cs_6.1.1.2.html X%%DOCSDIR%%/html/manual/cs_6.1.1.3.html X%%DOCSDIR%%/html/manual/cs_6.1.1.html X%%DOCSDIR%%/html/manual/cs_6.1.html X%%DOCSDIR%%/html/manual/cs_6.2.html X%%DOCSDIR%%/html/manual/cs_6.3.html X%%DOCSDIR%%/html/manual/cs_6.4.html X%%DOCSDIR%%/html/manual/cs_6.html X%%DOCSDIR%%/html/manual/cs_7.1.html X%%DOCSDIR%%/html/manual/cs_7.2.html X%%DOCSDIR%%/html/manual/cs_7.3.html X%%DOCSDIR%%/html/manual/cs_7.4.html X%%DOCSDIR%%/html/manual/cs_7.5.html X%%DOCSDIR%%/html/manual/cs_7.html X%%DOCSDIR%%/html/manual/cs_A.html X%%DOCSDIR%%/html/manual/cs_B.html X%%DOCSDIR%%/html/manual/cs_C.1.html X%%DOCSDIR%%/html/manual/cs_C.2.html X%%DOCSDIR%%/html/manual/cs_C.3.html X%%DOCSDIR%%/html/manual/cs_C.4.html X%%DOCSDIR%%/html/manual/cs_C.5.html X%%DOCSDIR%%/html/manual/cs_C.6.html X%%DOCSDIR%%/html/manual/cs_C.7.html X%%DOCSDIR%%/html/manual/cs_C.8.html X%%DOCSDIR%%/html/manual/cs_C.html X%%DOCSDIR%%/html/manual/cs_D.1.1.html X%%DOCSDIR%%/html/manual/cs_D.1.2.html X%%DOCSDIR%%/html/manual/cs_D.1.3.html X%%DOCSDIR%%/html/manual/cs_D.1.html X%%DOCSDIR%%/html/manual/cs_D.2.html X%%DOCSDIR%%/html/manual/cs_D.3.1.html X%%DOCSDIR%%/html/manual/cs_D.3.2.html X%%DOCSDIR%%/html/manual/cs_D.3.3.html X%%DOCSDIR%%/html/manual/cs_D.3.html X%%DOCSDIR%%/html/manual/cs_D.html X%%DOCSDIR%%/html/manual/cs_INDEX0.html X%%DOCSDIR%%/html/manual/cs_INDEX1.html X%%DOCSDIR%%/html/manual/cs_INDEX2.html X%%DOCSDIR%%/html/manual/cs_INDEX3.html X%%DOCSDIR%%/html/manual/cs_Index.html X%%DOCSDIR%%/html/manual/cs_abt.html X%%DOCSDIR%%/html/manual/cs_ovr.html X%%DOCSDIR%%/html/manual/cs_toc.html X%%DOCSDIR%%/html/manual/index.html X%%DOCSDIR%%/html/manual/usingcs/engine/portal1.png X%%DOCSDIR%%/html/manual/usingcs/engine/portal2.png X%%DOCSDIR%%/html/manual/usingcs/engine/thing.png X%%DOCSDIR%%/html/manual/usingcs/lighting/light1.png X%%DOCSDIR%%/html/manual/usingcs/lighting/light2.png X%%DOCSDIR%%/html/manual/usingcs/ownprojects/kdevproj/snap0.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/kdevproj/snap1.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/kdevproj/snap2.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/kdevproj/snap3.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/kdevproj/snap4.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/kdevproj/snap5.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/kdevproj/snap6.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/kdevproj/snap7.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/kdevproj/snap8.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc6proj/snap0.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc6proj/snap1.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc6proj/snap10.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc6proj/snap11.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc6proj/snap12.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc6proj/snap13.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc6proj/snap14.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc6proj/snap15.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc6proj/snap16.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc6proj/snap2.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc6proj/snap3.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc6proj/snap4.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc6proj/snap5.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc6proj/snap6.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc6proj/snap7.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc6proj/snap8.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc6proj/snap9.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap0.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap1.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap10.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap11.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap12.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap13.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap14.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap15.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap16.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap2.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap3.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap4.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap5.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap6.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap7.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap8.jpg X%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap9.jpg X%%DOCSDIR%%/html/api/DbgHelpAPI_8h-source.html X%%DOCSDIR%%/html/api/OSXAssistant_8h-source.html X%%DOCSDIR%%/html/api/OSXAssistant_8h.html X%%DOCSDIR%%/html/api/OSXDelegate2D_8h-source.html X%%DOCSDIR%%/html/api/OSXDriver2D_8h-source.html X%%DOCSDIR%%/html/api/OSXView_8h-source.html X%%DOCSDIR%%/html/api/OSXWindow_8h-source.html X%%DOCSDIR%%/html/api/algorithms_8h-source.html X%%DOCSDIR%%/html/api/animimg_8h-source.html X%%DOCSDIR%%/html/api/animimg_8h.html X%%DOCSDIR%%/html/api/annotated.html X%%DOCSDIR%%/html/api/ansicolor_8h-source.html X%%DOCSDIR%%/html/api/ansicolor_8h.html X%%DOCSDIR%%/html/api/ansiparse_8h-source.html X%%DOCSDIR%%/html/api/archive_8h.html X%%DOCSDIR%%/html/api/ansiparse_8h.html X%%DOCSDIR%%/html/api/archive_8h-source.html X%%DOCSDIR%%/html/api/array_8h-source.html X%%DOCSDIR%%/html/api/array_8h.html X%%DOCSDIR%%/html/api/aws2_8h-source.html X%%DOCSDIR%%/html/api/aws2_8h.html X%%DOCSDIR%%/html/api/aws_8h-source.html X%%DOCSDIR%%/html/api/aws_8h.html X%%DOCSDIR%%/html/api/awscnvs_8h-source.html X%%DOCSDIR%%/html/api/awsdefs_8h-source.html X%%DOCSDIR%%/html/api/awsdefs_8h.html X%%DOCSDIR%%/html/api/awsdock_8h-source.html X%%DOCSDIR%%/html/api/awsecomp_8h-source.html X%%DOCSDIR%%/html/api/awsparm_8h-source.html X%%DOCSDIR%%/html/api/bakekeycolor_8h-source.html X%%DOCSDIR%%/html/api/bakekeycolor_8h.html X%%DOCSDIR%%/html/api/box_8h.html X%%DOCSDIR%%/html/api/bug.html X%%DOCSDIR%%/html/api/ball_8h-source.html X%%DOCSDIR%%/html/api/basesteploader_8h-source.html X%%DOCSDIR%%/html/api/basesteptype_8h-source.html X%%DOCSDIR%%/html/api/basetexfact_8h-source.html X%%DOCSDIR%%/html/api/basetexfact_8h.html X%%DOCSDIR%%/html/api/bezier_8h-source.html X%%DOCSDIR%%/html/api/bintree_8h-source.html X%%DOCSDIR%%/html/api/bitarray_8h-source.html X%%DOCSDIR%%/html/api/bitarray_8h.html X%%DOCSDIR%%/html/api/bitmasktostr_8h-source.html X%%DOCSDIR%%/html/api/bitmasktostr_8h.html X%%DOCSDIR%%/html/api/blockallocator_8h-source.html X%%DOCSDIR%%/html/api/blockallocator_8h.html X%%DOCSDIR%%/html/api/box_8h-source.html X%%DOCSDIR%%/html/api/bsptree_8h-source.html X%%DOCSDIR%%/html/api/csblur.png X%%DOCSDIR%%/html/api/bugplug_8h-source.html X%%DOCSDIR%%/html/api/cache_8h-source.html X%%DOCSDIR%%/html/api/cache_8h.html X%%DOCSDIR%%/html/api/callstack_8h-source.html X%%DOCSDIR%%/html/api/callstack_8h.html X%%DOCSDIR%%/html/api/camera_8h-source.html X%%DOCSDIR%%/html/api/camera_8h.html X%%DOCSDIR%%/html/api/campos_8h-source.html X%%DOCSDIR%%/html/api/campos_8h.html X%%DOCSDIR%%/html/api/cfgacc_8h-source.html X%%DOCSDIR%%/html/api/cfgacc_8h.html X%%DOCSDIR%%/html/api/cfgdoc_8h-source.html X%%DOCSDIR%%/html/api/cfgdoc_8h.html X%%DOCSDIR%%/html/api/chainhull2d_8h-source.html X%%DOCSDIR%%/html/api/classCrystalSpace_1_1DocumentHelper_1_1Implementation_1_1FilterDocumentNodeIterator.html X%%DOCSDIR%%/html/api/classCrystalSpace_1_1DocumentHelper_1_1Implementation_1_1FilterDocumentNodeIterator-members.html X%%DOCSDIR%%/html/api/classCrystalSpace_1_1ImportKit-members.html X%%DOCSDIR%%/html/api/classCrystalSpace_1_1ImportKit.html X%%DOCSDIR%%/html/api/classCrystalSpace_1_1ImportKit_1_1Container-members.html X%%DOCSDIR%%/html/api/classCrystalSpace_1_1ImportKit_1_1Container.html X%%DOCSDIR%%/html/api/classCrystalSpace_1_1ImportKit_1_1Container_1_1Material-members.html X%%DOCSDIR%%/html/api/classCrystalSpace_1_1ImportKit_1_1Container_1_1Material.html X%%DOCSDIR%%/html/api/classcsArchive.html X%%DOCSDIR%%/html/api/classCrystalSpace_1_1ImportKit_1_1Container_1_1Model-members.html X%%DOCSDIR%%/html/api/classCrystalSpace_1_1ImportKit_1_1Container_1_1Model.html X%%DOCSDIR%%/html/api/classCrystalSpace_1_1ImportKit_1_1Container_1_1Model_1_1Mesh-members.html X%%DOCSDIR%%/html/api/classCrystalSpace_1_1ImportKit_1_1Container_1_1Model_1_1Mesh.html X%%DOCSDIR%%/html/api/classDirectDetection-members.html X%%DOCSDIR%%/html/api/classDirectDetection.html X%%DOCSDIR%%/html/api/classDirectDetectionDevice-members.html X%%DOCSDIR%%/html/api/classDirectDetectionDevice.html X%%DOCSDIR%%/html/api/classSCF__IMPL__NAME.html X%%DOCSDIR%%/html/api/classSCF__IMPL__NAME-members.html X%%DOCSDIR%%/html/api/classawsEmbeddedComponent-members.html X%%DOCSDIR%%/html/api/classawsEmbeddedComponent.html X%%DOCSDIR%%/html/api/classawsEmbeddedComponent.png X%%DOCSDIR%%/html/api/classawsEmbeddedComponentFactory-members.html X%%DOCSDIR%%/html/api/classawsEmbeddedComponentFactory.html X%%DOCSDIR%%/html/api/classawsEmbeddedComponentFactory.png X%%DOCSDIR%%/html/api/classcsAnimatedPixmap-members.html X%%DOCSDIR%%/html/api/classcsAnimatedPixmap.html X%%DOCSDIR%%/html/api/classcsAnimatedPixmap.png X%%DOCSDIR%%/html/api/classcsAnimationTemplate-members.html X%%DOCSDIR%%/html/api/classcsBox3.png X%%DOCSDIR%%/html/api/classcsAnimationTemplate.html X%%DOCSDIR%%/html/api/classcsAnsiParser-members.html X%%DOCSDIR%%/html/api/classcsAnsiParser.html X%%DOCSDIR%%/html/api/classcsApplicationFramework-members.html X%%DOCSDIR%%/html/api/classcsApplicationFramework.html X%%DOCSDIR%%/html/api/classcsApplicationFramework.png X%%DOCSDIR%%/html/api/classcsApplicationRunner-members.html X%%DOCSDIR%%/html/api/classcsApplicationRunner.html X%%DOCSDIR%%/html/api/classcsArchive-members.html X%%DOCSDIR%%/html/api/classcsArray-members.html X%%DOCSDIR%%/html/api/classcsArray.html X%%DOCSDIR%%/html/api/classcsArrayCmp-members.html X%%DOCSDIR%%/html/api/classcsArrayCmp.html X%%DOCSDIR%%/html/api/classcsArrayElementHandler-members.html X%%DOCSDIR%%/html/api/classcsArrayElementHandler.html X%%DOCSDIR%%/html/api/classcsBSPTree.html X%%DOCSDIR%%/html/api/classcsArrayMemoryAllocator-members.html X%%DOCSDIR%%/html/api/classcsArrayMemoryAllocator.html X%%DOCSDIR%%/html/api/classcsArray_1_1Iterator-members.html X%%DOCSDIR%%/html/api/classcsArray_1_1Iterator.html X%%DOCSDIR%%/html/api/classcsBSPTree-members.html X%%DOCSDIR%%/html/api/classcsBSpline-members.html X%%DOCSDIR%%/html/api/classcsBSpline.html X%%DOCSDIR%%/html/api/classcsBSpline.png X%%DOCSDIR%%/html/api/classcsBakeKeyColor-members.html X%%DOCSDIR%%/html/api/classcsBakeKeyColor.html X%%DOCSDIR%%/html/api/classcsBaseEventHandler-members.html X%%DOCSDIR%%/html/api/classcsBaseEventHandler.html X%%DOCSDIR%%/html/api/classcsBaseEventHandler.png X%%DOCSDIR%%/html/api/classcsBaseRenderStepLoader-members.html X%%DOCSDIR%%/html/api/classcsBaseRenderStepLoader.html X%%DOCSDIR%%/html/api/classcsBaseRenderStepLoader.png X%%DOCSDIR%%/html/api/classcsBaseRenderStepType-members.html X%%DOCSDIR%%/html/api/classcsBaseRenderStepType.html X%%DOCSDIR%%/html/api/classcsBaseRenderStepType.png X%%DOCSDIR%%/html/api/classcsBaseTextureFactory-members.html X%%DOCSDIR%%/html/api/classcsBaseTextureFactory.html X%%DOCSDIR%%/html/api/classcsBitArray.html X%%DOCSDIR%%/html/api/classcsBaseTextureFactory.png X%%DOCSDIR%%/html/api/classcsBitArray-members.html X%%DOCSDIR%%/html/api/classcsBitArray_1_1BitProxy-members.html X%%DOCSDIR%%/html/api/classcsBitArray_1_1BitProxy.html X%%DOCSDIR%%/html/api/classcsBitmaskToString-members.html X%%DOCSDIR%%/html/api/classcsBitmaskToString.html X%%DOCSDIR%%/html/api/classcsBlockAllocator-members.html X%%DOCSDIR%%/html/api/classcsBlockAllocator.html X%%DOCSDIR%%/html/api/classcsBlockAllocatorAlignPolicy-members.html X%%DOCSDIR%%/html/api/classcsBlockAllocatorAlignPolicy.html X%%DOCSDIR%%/html/api/classcsBlockAllocatorNormalBlockPolicy-members.html X%%DOCSDIR%%/html/api/classcsBlockAllocatorNormalBlockPolicy.html X%%DOCSDIR%%/html/api/classcsBox2-members.html X%%DOCSDIR%%/html/api/classcsBox2.html X%%DOCSDIR%%/html/api/classcsBox2Int-members.html X%%DOCSDIR%%/html/api/classcsBox2Int.html X%%DOCSDIR%%/html/api/classcsBox3-members.html X%%DOCSDIR%%/html/api/classcsBox3.html X%%DOCSDIR%%/html/api/classcsBoxClipper-members.html X%%DOCSDIR%%/html/api/classcsBoxClipper.html X%%DOCSDIR%%/html/api/classcsBoxClipper.png X%%DOCSDIR%%/html/api/classcsCallStack-members.html X%%DOCSDIR%%/html/api/classcsCallStack.html X%%DOCSDIR%%/html/api/classcsCallStackHelper-members.html X%%DOCSDIR%%/html/api/classcsCallStackHelper.html X%%DOCSDIR%%/html/api/classcsCatmullRomSpline-members.html X%%DOCSDIR%%/html/api/classcsCatmullRomSpline.html X%%DOCSDIR%%/html/api/classcsCatmullRomSpline.png X%%DOCSDIR%%/html/api/classcsChainHull2D-members.html X%%DOCSDIR%%/html/api/classcsChainHull2D.html X%%DOCSDIR%%/html/api/classcsClipper-members.html X%%DOCSDIR%%/html/api/classcsClipper.html X%%DOCSDIR%%/html/api/classcsClipper.png X%%DOCSDIR%%/html/api/classcsColliderActor-members.html X%%DOCSDIR%%/html/api/classcsColliderActor.html X%%DOCSDIR%%/html/api/classcsColliderHelper-members.html X%%DOCSDIR%%/html/api/classcsColliderHelper.html X%%DOCSDIR%%/html/api/classcsColliderWrapper-members.html X%%DOCSDIR%%/html/api/csblurb.png X%%DOCSDIR%%/html/api/classcsColliderWrapper.html X%%DOCSDIR%%/html/api/classcsColliderWrapper.png X%%DOCSDIR%%/html/api/classcsColor-members.html X%%DOCSDIR%%/html/api/classcsColor.html X%%DOCSDIR%%/html/api/classcsColor.png X%%DOCSDIR%%/html/api/classcsColor4-members.html X%%DOCSDIR%%/html/api/classcsColor4.html X%%DOCSDIR%%/html/api/classcsColor4.png X%%DOCSDIR%%/html/api/classcsColorQuantizer-members.html X%%DOCSDIR%%/html/api/classcsColorQuantizer.html X%%DOCSDIR%%/html/api/classcsCommandEventHelper-members.html X%%DOCSDIR%%/html/api/classcsCommandEventHelper.html X%%DOCSDIR%%/html/api/classcsCommandLineHelper-members.html X%%DOCSDIR%%/html/api/classcsCommandLineHelper.html X%%DOCSDIR%%/html/api/classcsCommandLineParser-members.html X%%DOCSDIR%%/html/api/classcsCommandLineParser.html X%%DOCSDIR%%/html/api/classcsCommandLineParser.png X%%DOCSDIR%%/html/api/classcsCommonImageFile-members.html X%%DOCSDIR%%/html/api/classcsCommonImageFile.html X%%DOCSDIR%%/html/api/classcsCommonImageFile.png X%%DOCSDIR%%/html/api/classcsCommonImageFileLoader-members.html X%%DOCSDIR%%/html/api/classcsCommonImageFileLoader.html X%%DOCSDIR%%/html/api/classcsCommonImageFileLoader.png X%%DOCSDIR%%/html/api/classcsCommonImageFile_1_1LoaderJob-members.html X%%DOCSDIR%%/html/api/classcsCommonImageFile_1_1LoaderJob.html X%%DOCSDIR%%/html/api/classcsCommonImageFile_1_1LoaderJob.png X%%DOCSDIR%%/html/api/classcsComparator-members.html X%%DOCSDIR%%/html/api/classcsComparator.html X%%DOCSDIR%%/html/api/classcsComparatorString-members.html X%%DOCSDIR%%/html/api/classcsComparatorString.html X%%DOCSDIR%%/html/api/classcsComparatorStruct-members.html X%%DOCSDIR%%/html/api/classcsComparatorStruct.html X%%DOCSDIR%%/html/api/classcsComparator_3_01const_01char_01_5_00_01const_01char_01_5_01_4-members.html X%%DOCSDIR%%/html/api/classcsComparator_3_01const_01char_01_5_00_01const_01char_01_5_01_4.html X%%DOCSDIR%%/html/api/classcsCondition-members.html X%%DOCSDIR%%/html/api/classcsComparator_3_01const_01char_01_5_00_01const_01char_01_5_01_4.png X%%DOCSDIR%%/html/api/classcsComparator_3_01csBitArray_00_01csBitArray_01_4-members.html X%%DOCSDIR%%/html/api/classcsComparator_3_01csBitArray_00_01csBitArray_01_4.html X%%DOCSDIR%%/html/api/classcsComparator_3_01csInputDefinition_00_01csInputDefinition_01_4-members.html X%%DOCSDIR%%/html/api/classcsComparator_3_01csInputDefinition_00_01csInputDefinition_01_4.html X%%DOCSDIR%%/html/api/classcsComparator_3_01csStrKey_00_01csStrKey_01_4-members.html X%%DOCSDIR%%/html/api/classcsCondition.html X%%DOCSDIR%%/html/api/classcsComparator_3_01csStrKey_00_01csStrKey_01_4.html X%%DOCSDIR%%/html/api/classcsComparator_3_01csStrKey_00_01csStrKey_01_4.png X%%DOCSDIR%%/html/api/classcsComparator_3_01csStringBase_00_01csStringBase_01_4-members.html X%%DOCSDIR%%/html/api/classcsComparator_3_01csStringBase_00_01csStringBase_01_4.html X%%DOCSDIR%%/html/api/classcsComparator_3_01csStringBase_00_01csStringBase_01_4.png X%%DOCSDIR%%/html/api/classcsComparator_3_01csString_00_01csString_01_4-members.html X%%DOCSDIR%%/html/api/classcsComparator_3_01csString_00_01csString_01_4.html X%%DOCSDIR%%/html/api/classcsHash.png X%%DOCSDIR%%/html/api/classcsComparator_3_01csString_00_01csString_01_4.png X%%DOCSDIR%%/html/api/classcsCondition.png X%%DOCSDIR%%/html/api/classcsConfigAccess-members.html X%%DOCSDIR%%/html/api/classcsConfigAccess.html X%%DOCSDIR%%/html/api/classcsConfigDocument-members.html X%%DOCSDIR%%/html/api/classcsConfigDocument.html X%%DOCSDIR%%/html/api/classcsConfigDocument.png X%%DOCSDIR%%/html/api/classcsConfigFile-members.html X%%DOCSDIR%%/html/api/classcsConfigFile.html X%%DOCSDIR%%/html/api/classcsConfigFile.png X%%DOCSDIR%%/html/api/classcsConfigManager-members.html X%%DOCSDIR%%/html/api/classcsConfigManager.html X%%DOCSDIR%%/html/api/classcsConfigManager.png X%%DOCSDIR%%/html/api/classcsCoverageTile-members.html X%%DOCSDIR%%/html/api/classcsCoverageTile.html X%%DOCSDIR%%/html/api/classcsCubicSpline-members.html X%%DOCSDIR%%/html/api/classcsCubicSpline.html X%%DOCSDIR%%/html/api/classcsCubicSpline.png X%%DOCSDIR%%/html/api/classcsCursorConverter-members.html X%%DOCSDIR%%/html/api/classcsCursorConverter.html X%%DOCSDIR%%/html/api/classcsDIntersect3-members.html X%%DOCSDIR%%/html/api/classcsDIntersect3.html X%%DOCSDIR%%/html/api/classcsDMath3-members.html X%%DOCSDIR%%/html/api/classcsDMath3.html X%%DOCSDIR%%/html/api/classcsDMatrix3-members.html X%%DOCSDIR%%/html/api/classcsDMatrix3.html X%%DOCSDIR%%/html/api/classcsDPlane-members.html X%%DOCSDIR%%/html/api/classcsDPlane.html X%%DOCSDIR%%/html/api/classcsDSquaredDist-members.html X%%DOCSDIR%%/html/api/classcsDSquaredDist.html X%%DOCSDIR%%/html/api/classcsDVector3-members.html X%%DOCSDIR%%/html/api/classcsDVector3.html X%%DOCSDIR%%/html/api/classcsDVector4-members.html X%%DOCSDIR%%/html/api/classcsDVector4.html X%%DOCSDIR%%/html/api/classcsDataBuffer-members.html X%%DOCSDIR%%/html/api/classcsDataBuffer.html X%%DOCSDIR%%/html/api/classcsDataBuffer.png X%%DOCSDIR%%/html/api/classcsDataStream-members.html X%%DOCSDIR%%/html/api/classcsDataStream.html X%%DOCSDIR%%/html/api/classcsDebugImageWriter-members.html X%%DOCSDIR%%/html/api/classcsDebuggingGraph.html X%%DOCSDIR%%/html/api/classcsDebugImageWriter.html X%%DOCSDIR%%/html/api/classcsDebuggingGraph-members.html X%%DOCSDIR%%/html/api/classcsDirectionalLightProc-members.html X%%DOCSDIR%%/html/api/classcsDirectionalLightProc.html X%%DOCSDIR%%/html/api/classcsDirtyAccessArray-members.html X%%DOCSDIR%%/html/api/classcsDirtyAccessArray.html X%%DOCSDIR%%/html/api/classcsDirtyAccessArray.png X%%DOCSDIR%%/html/api/classcsDocumentAttributeCommon-members.html X%%DOCSDIR%%/html/api/classcsDocumentAttributeCommon.html X%%DOCSDIR%%/html/api/classcsDocumentAttributeCommon.png X%%DOCSDIR%%/html/api/classcsDocumentNodeCommon-members.html X%%DOCSDIR%%/html/api/dirs.html X%%DOCSDIR%%/html/api/classcsDocumentNodeCommon.html X%%DOCSDIR%%/html/api/classcsDocumentNodeCommon.png X%%DOCSDIR%%/html/api/classcsDocumentNodeReadOnly-members.html X%%DOCSDIR%%/html/api/classcsDocumentNodeReadOnly.html X%%DOCSDIR%%/html/api/classcsDocumentNodeReadOnly.png X%%DOCSDIR%%/html/api/classcsEllipsoid-members.html X%%DOCSDIR%%/html/api/classcsEllipsoid.html X%%DOCSDIR%%/html/api/classcsEmptyDocumentAttributeIterator-members.html X%%DOCSDIR%%/html/api/classcsEmptyDocumentAttributeIterator.html X%%DOCSDIR%%/html/api/classcsEmptyDocumentAttributeIterator.png X%%DOCSDIR%%/html/api/classcsEmptyDocumentNodeIterator-members.html X%%DOCSDIR%%/html/api/classcsEmptyDocumentNodeIterator.html X%%DOCSDIR%%/html/api/classcsEmptyDocumentNodeIterator.png X%%DOCSDIR%%/html/api/classcsEngineTools-members.html X%%DOCSDIR%%/html/api/classcsEngineTools.html X%%DOCSDIR%%/html/api/classcsEvent-members.html X%%DOCSDIR%%/html/api/classcsEvent.html X%%DOCSDIR%%/html/api/classcsEvent.png X%%DOCSDIR%%/html/api/classcsEventAttributeIterator-members.html X%%DOCSDIR%%/html/api/classcsEventAttributeIterator.html X%%DOCSDIR%%/html/api/classcsEventAttributeIterator.png X%%DOCSDIR%%/html/api/classcsEventCord-members.html X%%DOCSDIR%%/html/api/classcsEventCord.html X%%DOCSDIR%%/html/api/classcsEventCord.png X%%DOCSDIR%%/html/api/classcsEventFlattener-members.html X%%DOCSDIR%%/html/api/classcsEventFlattener.html X%%DOCSDIR%%/html/api/classcsEventOutlet-members.html X%%DOCSDIR%%/html/api/classcsEventOutlet.html X%%DOCSDIR%%/html/api/classcsEventOutlet.png X%%DOCSDIR%%/html/api/classcsEventQueue-members.html X%%DOCSDIR%%/html/api/classcsEventQueue.html X%%DOCSDIR%%/html/api/classcsEventQueue.png X%%DOCSDIR%%/html/api/classcsEventTimer-members.html X%%DOCSDIR%%/html/api/classcsEventTimer.html X%%DOCSDIR%%/html/api/classcsEventTimer.png X%%DOCSDIR%%/html/api/classcsFIFO-members.html X%%DOCSDIR%%/html/api/classcsFIFO.html X%%DOCSDIR%%/html/api/classcsFlags-members.html X%%DOCSDIR%%/html/api/doxygen.css X%%DOCSDIR%%/html/api/classcsFlags.html X%%DOCSDIR%%/html/api/classcsFmtDefaultReader-members.html X%%DOCSDIR%%/html/api/classcsFmtDefaultReader.html X%%DOCSDIR%%/html/api/classcsFmtDefaultWriter-members.html X%%DOCSDIR%%/html/api/classcsFmtDefaultWriter.html X%%DOCSDIR%%/html/api/classcsFogInfo-members.html X%%DOCSDIR%%/html/api/classcsFogInfo.html X%%DOCSDIR%%/html/api/classcsFogMath-members.html X%%DOCSDIR%%/html/api/classcsFogMath.html X%%DOCSDIR%%/html/api/classcsFontCache-members.html X%%DOCSDIR%%/html/api/classcsFontCache.html X%%DOCSDIR%%/html/api/classcsFontCache.png X%%DOCSDIR%%/html/api/classcsFontCache_1_1PlaneGlyphElementHandler-members.html X%%DOCSDIR%%/html/api/classcsFontCache_1_1PlaneGlyphElementHandler.html X%%DOCSDIR%%/html/api/classcsFontCache_1_1PlaneGlyphElementHandler.png X%%DOCSDIR%%/html/api/classcsFrameDataHolder-members.html X%%DOCSDIR%%/html/api/classcsFrameDataHolder.html X%%DOCSDIR%%/html/api/classcsFrustum-members.html X%%DOCSDIR%%/html/api/classcsFrustum.html X%%DOCSDIR%%/html/api/classcsFrustumContext-members.html X%%DOCSDIR%%/html/api/classcsFrustumContext.html X%%DOCSDIR%%/html/api/classcsG2DDrawBox-members.html X%%DOCSDIR%%/html/api/classcsG2DDrawBox.html X%%DOCSDIR%%/html/api/classcsG2DDrawLine-members.html X%%DOCSDIR%%/html/api/classcsG2DDrawLine.html X%%DOCSDIR%%/html/api/classcsMD5.html X%%DOCSDIR%%/html/api/classcsG2DDrawText-members.html X%%DOCSDIR%%/html/api/classcsG2DDrawText.html X%%DOCSDIR%%/html/api/classcsGLDriverDatabase-members.html X%%DOCSDIR%%/html/api/classcsGLDriverDatabase.html X%%DOCSDIR%%/html/api/classcsGLFontCache-members.html X%%DOCSDIR%%/html/api/classcsGLFontCache.html X%%DOCSDIR%%/html/api/classcsGLFontCache.png X%%DOCSDIR%%/html/api/classcsGLScreenShot-members.html X%%DOCSDIR%%/html/api/classcsGLScreenShot.html X%%DOCSDIR%%/html/api/classcsGLScreenShot.png X%%DOCSDIR%%/html/api/classcsGLStateCache-members.html X%%DOCSDIR%%/html/api/classcsGLStateCache.html X%%DOCSDIR%%/html/api/classcsGLStateCacheContext-members.html X%%DOCSDIR%%/html/api/classcsGLStateCacheContext.html X%%DOCSDIR%%/html/api/classcsGenerateImage-members.html X%%DOCSDIR%%/html/api/classcsGenerateImage.html X%%DOCSDIR%%/html/api/classcsGenerateImageLayer-members.html X%%DOCSDIR%%/html/api/classcsGenerateImageLayer.html X%%DOCSDIR%%/html/api/classcsGenerateImageTexture-members.html X%%DOCSDIR%%/html/api/classcsGenerateImageTexture.html X%%DOCSDIR%%/html/api/classcsGenerateImageTexture.png X%%DOCSDIR%%/html/api/classcsGenerateImageTextureBlend-members.html X%%DOCSDIR%%/html/api/classcsGenerateImageTextureBlend.html X%%DOCSDIR%%/html/api/classcsGenerateImageTextureBlend.png X%%DOCSDIR%%/html/api/classcsGenerateImageTextureSingle-members.html X%%DOCSDIR%%/html/api/classcsGenerateImageTextureSingle.html X%%DOCSDIR%%/html/api/classcsGenerateImageTextureSingle.png X%%DOCSDIR%%/html/api/classcsGenerateImageTextureSolid-members.html X%%DOCSDIR%%/html/api/classcsGenerateImageTextureSolid.html X%%DOCSDIR%%/html/api/classcsGenerateImageTextureSolid.png X%%DOCSDIR%%/html/api/classcsGenerateImageValue-members.html X%%DOCSDIR%%/html/api/classcsGenerateImageValue.html X%%DOCSDIR%%/html/api/classcsGenerateImageValue.png X%%DOCSDIR%%/html/api/classcsGenerateImageValueFunc-members.html X%%DOCSDIR%%/html/api/classcsHash.html X%%DOCSDIR%%/html/api/classcsGenerateImageValueFunc.html X%%DOCSDIR%%/html/api/classcsGenerateImageValueFunc.png X%%DOCSDIR%%/html/api/classcsGenerateImageValueFuncConst-members.html X%%DOCSDIR%%/html/api/classcsGenerateImageValueFuncConst.html X%%DOCSDIR%%/html/api/classcsGenerateImageValueFuncConst.png X%%DOCSDIR%%/html/api/classcsGenerateImageValueFuncTex-members.html X%%DOCSDIR%%/html/api/classcsGenerateImageValueFuncTex.html X%%DOCSDIR%%/html/api/classcsGenerateImageValueFuncTex.png X%%DOCSDIR%%/html/api/classcsGeomDebugHelper-members.html X%%DOCSDIR%%/html/api/classcsGeomDebugHelper.html X%%DOCSDIR%%/html/api/classcsGradient-members.html X%%DOCSDIR%%/html/api/classcsGradient.html X%%DOCSDIR%%/html/api/classcsGraphics2D-members.html X%%DOCSDIR%%/html/api/classcsGraphics2D.html X%%DOCSDIR%%/html/api/classcsGraphics2DGLCommon-members.html X%%DOCSDIR%%/html/api/classcsGraphics2DGLCommon.html X%%DOCSDIR%%/html/api/classcsGraphics2DGLCommon_1_1csGLPixelFormatPicker-members.html X%%DOCSDIR%%/html/api/classcsGraphics2DGLCommon_1_1csGLPixelFormatPicker.html X%%DOCSDIR%%/html/api/classcsHash-members.html X%%DOCSDIR%%/html/api/classcsHashComputer-members.html X%%DOCSDIR%%/html/api/classcsHashComputer.html X%%DOCSDIR%%/html/api/classcsHashComputerIntegral-members.html X%%DOCSDIR%%/html/api/classcsHashComputerIntegral.html X%%DOCSDIR%%/html/api/classcsHashComputerString-members.html X%%DOCSDIR%%/html/api/classcsHashComputerString.html X%%DOCSDIR%%/html/api/classcsHashComputerStruct-members.html X%%DOCSDIR%%/html/api/classcsHashComputerStruct.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01const_01char_01_5_01_4-members.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01const_01char_01_5_01_4.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01const_01char_01_5_01_4.png X%%DOCSDIR%%/html/api/classcsHashComputer_3_01csBitArray_01_4-members.html X%%DOCSDIR%%/html/api/classcsHashReversible.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01csBitArray_01_4.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01csInputDefinition_01_4-members.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01csInputDefinition_01_4.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01double_01_4-members.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01double_01_4.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01float_01_4-members.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01float_01_4.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01int_01_4-members.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01int_01_4.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01int_01_4.png X%%DOCSDIR%%/html/api/classcsHashComputer_3_01long_01_4-members.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01long_01_4.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01long_01_4.png X%%DOCSDIR%%/html/api/classcsHashComputer_3_01longlong_01_4-members.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01longlong_01_4.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01longlong_01_4.png X%%DOCSDIR%%/html/api/classcsHashComputer_3_01ulonglong_01_4-members.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01ulonglong_01_4.html X%%DOCSDIR%%/html/api/classcsHashReversible.png X%%DOCSDIR%%/html/api/classcsHashComputer_3_01ulonglong_01_4.png X%%DOCSDIR%%/html/api/classcsHashComputer_3_01unsigned_01int_01_4-members.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01unsigned_01int_01_4.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01unsigned_01int_01_4.png X%%DOCSDIR%%/html/api/classcsHashComputer_3_01unsigned_01long_01_4-members.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01unsigned_01long_01_4.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01unsigned_01long_01_4.png X%%DOCSDIR%%/html/api/classcsHashComputer_3_01void_01_5_01_4-members.html X%%DOCSDIR%%/html/api/classcsKDTree.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01void_01_5_01_4.html X%%DOCSDIR%%/html/api/classcsHashComputer_3_01void_01_5_01_4.png X%%DOCSDIR%%/html/api/classcsHashReversible-members.html X%%DOCSDIR%%/html/api/classcsHash_1_1GlobalIterator-members.html X%%DOCSDIR%%/html/api/classcsHash_1_1GlobalIterator.html X%%DOCSDIR%%/html/api/classcsHash_1_1Iterator-members.html X%%DOCSDIR%%/html/api/classcsHash_1_1Iterator.html X%%DOCSDIR%%/html/api/classcsIdentStrings-members.html X%%DOCSDIR%%/html/api/classcsIdentStrings.html X%%DOCSDIR%%/html/api/classcsImageBase-members.html X%%DOCSDIR%%/html/api/classcsImageBase.html X%%DOCSDIR%%/html/api/classcsList.html X%%DOCSDIR%%/html/api/classcsImageBase.png X%%DOCSDIR%%/html/api/classcsImageCubeMapMaker-members.html X%%DOCSDIR%%/html/api/classcsImageCubeMapMaker.html X%%DOCSDIR%%/html/api/classcsImageCubeMapMaker.png X%%DOCSDIR%%/html/api/classcsImageLoaderOptionsParser-members.html X%%DOCSDIR%%/html/api/classcsImageLoaderOptionsParser.html X%%DOCSDIR%%/html/api/classcsImageManipulate-members.html X%%DOCSDIR%%/html/api/classcsImageManipulate.html X%%DOCSDIR%%/html/api/classcsImageMemory-members.html X%%DOCSDIR%%/html/api/classcsImageMemory.html X%%DOCSDIR%%/html/api/classcsImageMemory.png X%%DOCSDIR%%/html/api/classcsImageTools-members.html X%%DOCSDIR%%/html/api/classcsOBB.html X%%DOCSDIR%%/html/api/classcsImageTools.html X%%DOCSDIR%%/html/api/classcsImageVolumeMaker-members.html X%%DOCSDIR%%/html/api/classcsImageVolumeMaker.html X%%DOCSDIR%%/html/api/classcsImageVolumeMaker.png X%%DOCSDIR%%/html/api/classcsInitializer-members.html X%%DOCSDIR%%/html/api/classcsInitializer.html X%%DOCSDIR%%/html/api/classcsInitializer.png X%%DOCSDIR%%/html/api/classcsInputBinder-members.html X%%DOCSDIR%%/html/api/classcsInputBinder.html X%%DOCSDIR%%/html/api/classcsInputBinder.png X%%DOCSDIR%%/html/api/classcsInputDefinition-members.html X%%DOCSDIR%%/html/api/classcsInputDefinition.html X%%DOCSDIR%%/html/api/classcsInputDriver-members.html X%%DOCSDIR%%/html/api/classcsMapNode.html X%%DOCSDIR%%/html/api/classcsInputDriver.html X%%DOCSDIR%%/html/api/classcsInputDriver.png X%%DOCSDIR%%/html/api/classcsInstallationPathsHelper-members.html X%%DOCSDIR%%/html/api/classcsInstallationPathsHelper.html X%%DOCSDIR%%/html/api/classcsIntersect2-members.html X%%DOCSDIR%%/html/api/classcsIntersect2.html X%%DOCSDIR%%/html/api/classcsIntersect3-members.html X%%DOCSDIR%%/html/api/classcsIntersect3.html X%%DOCSDIR%%/html/api/classcsJoystickDriver-members.html X%%DOCSDIR%%/html/api/classcsJoystickDriver.html X%%DOCSDIR%%/html/api/classcsJoystickDriver.png X%%DOCSDIR%%/html/api/classcsJoystickEventHelper-members.html X%%DOCSDIR%%/html/api/classcsJoystickEventHelper.html X%%DOCSDIR%%/html/api/classcsKDTree-members.html X%%DOCSDIR%%/html/api/classcsKDTreeChild-members.html X%%DOCSDIR%%/html/api/classcsKDTreeChild.html X%%DOCSDIR%%/html/api/classcsKeyComposer-members.html X%%DOCSDIR%%/html/api/classcsKeyComposer.html X%%DOCSDIR%%/html/api/classcsKeyComposer.png X%%DOCSDIR%%/html/api/classcsKeyEventHelper-members.html X%%DOCSDIR%%/html/api/classcsKeyEventHelper.html X%%DOCSDIR%%/html/api/classcsKeyValuePair-members.html X%%DOCSDIR%%/html/api/classcsKeyValuePair.html X%%DOCSDIR%%/html/api/classcsKeyValuePair.png X%%DOCSDIR%%/html/api/classcsKeyboardDriver-members.html X%%DOCSDIR%%/html/api/classcsKeyboardDriver.html X%%DOCSDIR%%/html/api/classcsMapNode.png X%%DOCSDIR%%/html/api/classcsKeyboardDriver.png X%%DOCSDIR%%/html/api/classcsLightShaderVarCache-members.html X%%DOCSDIR%%/html/api/classcsLightShaderVarCache.html X%%DOCSDIR%%/html/api/classcsList-members.html X%%DOCSDIR%%/html/api/classcsList_1_1Iterator-members.html X%%DOCSDIR%%/html/api/classcsList_1_1Iterator.html X%%DOCSDIR%%/html/api/classcsMD5-members.html X%%DOCSDIR%%/html/api/classcsMapNode-members.html X%%DOCSDIR%%/html/api/classcsMath2-members.html X%%DOCSDIR%%/html/api/classcsMath2.html X%%DOCSDIR%%/html/api/classcsMath3-members.html X%%DOCSDIR%%/html/api/classcsMath3.html X%%DOCSDIR%%/html/api/classcsMatrix2-members.html X%%DOCSDIR%%/html/api/classcsMatrix2.html X%%DOCSDIR%%/html/api/classcsMatrix3-members.html X%%DOCSDIR%%/html/api/classcsMatrix3.html X%%DOCSDIR%%/html/api/classcsMatrix3.png X%%DOCSDIR%%/html/api/classcsMemFile-members.html X%%DOCSDIR%%/html/api/classcsMemFile.html X%%DOCSDIR%%/html/api/classcsMemFile.png X%%DOCSDIR%%/html/api/classcsMemoryMappedIO-members.html X%%DOCSDIR%%/html/api/classcsMemoryMappedIO.html X%%DOCSDIR%%/html/api/classcsMemoryMappedIO.png X%%DOCSDIR%%/html/api/classcsMemoryMapping-members.html X%%DOCSDIR%%/html/api/classcsMemoryMapping.html X%%DOCSDIR%%/html/api/classcsMemoryMapping.png X%%DOCSDIR%%/html/api/classcsMemoryPool-members.html X%%DOCSDIR%%/html/api/classcsMemoryPool.html X%%DOCSDIR%%/html/api/classcsOBB.png X%%DOCSDIR%%/html/api/classcsMeshFactory-members.html X%%DOCSDIR%%/html/api/classcsMeshFactory.html X%%DOCSDIR%%/html/api/classcsMeshFactory.png X%%DOCSDIR%%/html/api/classcsMeshObject-members.html X%%DOCSDIR%%/html/api/classcsMeshObject.html X%%DOCSDIR%%/html/api/classcsMeshObject.png X%%DOCSDIR%%/html/api/classcsMeshType-members.html X%%DOCSDIR%%/html/api/classcsMeshType.html X%%DOCSDIR%%/html/api/classcsMeshType.png X%%DOCSDIR%%/html/api/classcsModelData-members.html X%%DOCSDIR%%/html/api/classcsModelData.html X%%DOCSDIR%%/html/api/classcsModelData.png X%%DOCSDIR%%/html/api/classcsModelDataAction-members.html X%%DOCSDIR%%/html/api/classcsModelDataAction.html X%%DOCSDIR%%/html/api/doxygen.png X%%DOCSDIR%%/html/api/classcsModelDataAction.png X%%DOCSDIR%%/html/api/classcsModelDataCamera-members.html X%%DOCSDIR%%/html/api/classcsModelDataCamera.html X%%DOCSDIR%%/html/api/classcsModelDataCamera.png X%%DOCSDIR%%/html/api/classcsModelDataLight-members.html X%%DOCSDIR%%/html/api/classcsModelDataLight.html X%%DOCSDIR%%/html/api/classcsModelDataLight.png X%%DOCSDIR%%/html/api/classcsModelDataMaterial-members.html X%%DOCSDIR%%/html/api/classcsModelDataMaterial.html X%%DOCSDIR%%/html/api/classcsModelDataMaterial.png X%%DOCSDIR%%/html/api/classcsModelDataObject-members.html X%%DOCSDIR%%/html/api/classcsModelDataObject.html X%%DOCSDIR%%/html/api/classcsModelDataObject.png X%%DOCSDIR%%/html/api/classcsModelDataPolygon-members.html X%%DOCSDIR%%/html/api/classcsModelDataPolygon.html X%%DOCSDIR%%/html/api/classcsModelDataPolygon.png X%%DOCSDIR%%/html/api/classcsModelDataTexture-members.html X%%DOCSDIR%%/html/api/classcsModelDataTexture.html X%%DOCSDIR%%/html/api/classcsModelDataTexture.png X%%DOCSDIR%%/html/api/classcsModelDataVertices-members.html X%%DOCSDIR%%/html/api/classcsModelDataVertices.html X%%DOCSDIR%%/html/api/classcsModelDataVertices.png X%%DOCSDIR%%/html/api/classcsMouseDriver-members.html X%%DOCSDIR%%/html/api/classcsMouseDriver.html X%%DOCSDIR%%/html/api/classcsMouseDriver.png X%%DOCSDIR%%/html/api/classcsMutex.html X%%DOCSDIR%%/html/api/classcsMouseEventHelper-members.html X%%DOCSDIR%%/html/api/classcsMouseEventHelper.html X%%DOCSDIR%%/html/api/classcsMutex-members.html X%%DOCSDIR%%/html/api/classcsMutex.png X%%DOCSDIR%%/html/api/classcsNewParticleSystem-members.html X%%DOCSDIR%%/html/api/classcsNewParticleSystem.html X%%DOCSDIR%%/html/api/classcsNewParticleSystem.png X%%DOCSDIR%%/html/api/classcsNewtonianParticleSystem-members.html X%%DOCSDIR%%/html/api/classcsNewtonianParticleSystem.html X%%DOCSDIR%%/html/api/classcsNewtonianParticleSystem.png X%%DOCSDIR%%/html/api/classcsNodeIterator-members.html X%%DOCSDIR%%/html/api/classcsNodeIterator.html X%%DOCSDIR%%/html/api/classcsNormalMappingTools-members.html X%%DOCSDIR%%/html/api/classcsNormalMappingTools.html X%%DOCSDIR%%/html/api/classcsNormalizationCubeAccessor-members.html X%%DOCSDIR%%/html/api/classcsNormalizationCubeAccessor.html X%%DOCSDIR%%/html/api/classcsNormalizationCubeAccessor.png X%%DOCSDIR%%/html/api/classcsNullCacheManager-members.html X%%DOCSDIR%%/html/api/classcsNullCacheManager.html X%%DOCSDIR%%/html/api/classcsNullCacheManager.png X%%DOCSDIR%%/html/api/classcsOBB-members.html X%%DOCSDIR%%/html/api/classcsOBBFrozen-members.html X%%DOCSDIR%%/html/api/classcsOBBFrozen.html X%%DOCSDIR%%/html/api/classcsObject-members.html X%%DOCSDIR%%/html/api/classcsObject.html X%%DOCSDIR%%/html/api/classcsObject.png X%%DOCSDIR%%/html/api/classcsObjectModel-members.html X%%DOCSDIR%%/html/api/classcsObjectModel.html X%%DOCSDIR%%/html/api/classcsObjectModel.png X%%DOCSDIR%%/html/api/classcsObjectRegistry-members.html X%%DOCSDIR%%/html/api/classcsObjectRegistry.html X%%DOCSDIR%%/html/api/classcsObjectRegistry.png X%%DOCSDIR%%/html/api/classcsOrthoTransform-members.html X%%DOCSDIR%%/html/api/classcsOrthoTransform.html X%%DOCSDIR%%/html/api/classcsOrthoTransform.png X%%DOCSDIR%%/html/api/classcsPDelArray-members.html X%%DOCSDIR%%/html/api/classcsPDelArray.html X%%DOCSDIR%%/html/api/classcsPDelArray.png X%%DOCSDIR%%/html/api/classcsPDelArrayElementHandler-members.html X%%DOCSDIR%%/html/api/classcsPDelArrayElementHandler.html X%%DOCSDIR%%/html/api/classcsParasiticDataBuffer-members.html X%%DOCSDIR%%/html/api/classcsParasiticDataBuffer.html X%%DOCSDIR%%/html/api/classcsParasiticDataBuffer.png X%%DOCSDIR%%/html/api/classcsParasiticDataBufferBase-members.html X%%DOCSDIR%%/html/api/classcsParasiticDataBufferBase.html X%%DOCSDIR%%/html/api/classcsPath.html X%%DOCSDIR%%/html/api/classcsParasiticDataBufferBase.png X%%DOCSDIR%%/html/api/classcsParasiticDataBufferPooled-members.html X%%DOCSDIR%%/html/api/classcsParasiticDataBufferPooled.html X%%DOCSDIR%%/html/api/classcsParasiticDataBufferPooled.png X%%DOCSDIR%%/html/api/classcsParticleSystem-members.html X%%DOCSDIR%%/html/api/classcsParticleSystem.html X%%DOCSDIR%%/html/api/classcsParticleSystem.png X%%DOCSDIR%%/html/api/classcsParticleSystem_1_1ObjectModel-members.html X%%DOCSDIR%%/html/api/classcsParticleSystem_1_1ObjectModel.html X%%DOCSDIR%%/html/api/classcsParticleSystem_1_1ObjectModel.png X%%DOCSDIR%%/html/api/classcsParticleSystem_1_1ParticleState-members.html X%%DOCSDIR%%/html/api/classcsParticleSystem_1_1ParticleState.html X%%DOCSDIR%%/html/api/classcsParticleSystem_1_1ParticleState.png X%%DOCSDIR%%/html/api/files.html X%%DOCSDIR%%/html/api/classcsPath-members.html X%%DOCSDIR%%/html/api/classcsPathsList-members.html X%%DOCSDIR%%/html/api/classcsPathsList.html X%%DOCSDIR%%/html/api/classcsPathsUtilities-members.html X%%DOCSDIR%%/html/api/classcsPathsUtilities.html X%%DOCSDIR%%/html/api/classcsPen-members.html X%%DOCSDIR%%/html/api/classcsPen.html X%%DOCSDIR%%/html/api/classcsPen.png X%%DOCSDIR%%/html/api/classcsPhysicalFile-members.html X%%DOCSDIR%%/html/api/classcsPhysicalFile.html X%%DOCSDIR%%/html/api/classcsPhysicalFile.png X%%DOCSDIR%%/html/api/classcsPixMixerCopy-members.html X%%DOCSDIR%%/html/api/classcsPixMixerCopy.html X%%DOCSDIR%%/html/api/classcsPixMixerNoop-members.html X%%DOCSDIR%%/html/api/classcsPixMixerNoop.html X%%DOCSDIR%%/html/api/classcsPixMixerRGBA-members.html X%%DOCSDIR%%/html/api/classcsPixMixerRGBA.html X%%DOCSDIR%%/html/api/classcsPixmap-members.html X%%DOCSDIR%%/html/api/classcsPixmap.html X%%DOCSDIR%%/html/api/classcsPixmap.png X%%DOCSDIR%%/html/api/classcsPlane2-members.html X%%DOCSDIR%%/html/api/classcsPlane2.html X%%DOCSDIR%%/html/api/classcsPlane3-members.html X%%DOCSDIR%%/html/api/classcsPlane3.html X%%DOCSDIR%%/html/api/classcsPlatformMemoryMappingDummy-members.html X%%DOCSDIR%%/html/api/classcsPlatformMemoryMappingDummy.html X%%DOCSDIR%%/html/api/classcsPlatformMemoryMappingPosix-members.html X%%DOCSDIR%%/html/api/classcsPlatformMemoryMappingPosix.html X%%DOCSDIR%%/html/api/classcsPlatformMemoryMappingWin32-members.html X%%DOCSDIR%%/html/api/classcsPlatformMemoryMappingWin32.html X%%DOCSDIR%%/html/api/classcsPluginList-members.html X%%DOCSDIR%%/html/api/classcsPluginList.html X%%DOCSDIR%%/html/api/classcsPluginList.png X%%DOCSDIR%%/html/api/classcsPluginLoader-members.html X%%DOCSDIR%%/html/api/classcsPluginLoader.html X%%DOCSDIR%%/html/api/classcsPluginManager-members.html X%%DOCSDIR%%/html/api/classcsPluginManager.html X%%DOCSDIR%%/html/api/classcsPluginManager.png X%%DOCSDIR%%/html/api/classcsPluginRequest-members.html X%%DOCSDIR%%/html/api/classcsPluginRequest.html X%%DOCSDIR%%/html/api/classcsPointLightProc-members.html X%%DOCSDIR%%/html/api/classcsPointLightProc.html X%%DOCSDIR%%/html/api/classcsPoly2D-members.html X%%DOCSDIR%%/html/api/classcsPoly2D.html X%%DOCSDIR%%/html/api/classcsPoly2DEdges-members.html X%%DOCSDIR%%/html/api/classcsPoly2DEdges.html X%%DOCSDIR%%/html/api/classcsPoly2DEdgesPool-members.html X%%DOCSDIR%%/html/api/classcsPoly2DEdgesPool.html X%%DOCSDIR%%/html/api/classcsPoly2DFactory-members.html X%%DOCSDIR%%/html/api/classcsPoly2DFactory.html X%%DOCSDIR%%/html/api/classcsPoly2DPool-members.html X%%DOCSDIR%%/html/api/classcsPoly2DPool.html X%%DOCSDIR%%/html/api/classcsPoly3D.html X%%DOCSDIR%%/html/api/classcsPoly3D-members.html X%%DOCSDIR%%/html/api/classcsPoly3D.png X%%DOCSDIR%%/html/api/classcsPolyIndexed-members.html X%%DOCSDIR%%/html/api/classcsPolyIndexed.html X%%DOCSDIR%%/html/api/classcsPolygonClipper-members.html X%%DOCSDIR%%/html/api/classcsPolygonClipper.html X%%DOCSDIR%%/html/api/classcsPolygonClipper.png X%%DOCSDIR%%/html/api/classcsPolygonMesh-members.html X%%DOCSDIR%%/html/api/classcsPolygonMesh.html X%%DOCSDIR%%/html/api/classcsPolygonMeshBox-members.html X%%DOCSDIR%%/html/api/classcsPolygonMeshBox.html X%%DOCSDIR%%/html/api/classcsPolygonMeshTools-members.html X%%DOCSDIR%%/html/api/classcsPolygonMeshTools.html X%%DOCSDIR%%/html/api/index.html X%%DOCSDIR%%/html/api/classcsPoolEvent-members.html X%%DOCSDIR%%/html/api/classcsPoolEvent.html X%%DOCSDIR%%/html/api/classcsPoolEvent.png X%%DOCSDIR%%/html/api/classcsPrefixConfig-members.html X%%DOCSDIR%%/html/api/classcsPrefixConfig.html X%%DOCSDIR%%/html/api/classcsPrefixConfig.png X%%DOCSDIR%%/html/api/classcsPrintfFormatter-members.html X%%DOCSDIR%%/html/api/classcsPrintfFormatter.html X%%DOCSDIR%%/html/api/classcsProcAnimated-members.html X%%DOCSDIR%%/html/api/classcsProcAnimated.html X%%DOCSDIR%%/html/api/classcsProcAnimated.png X%%DOCSDIR%%/html/api/classcsProcTexture-members.html X%%DOCSDIR%%/html/api/classcsProcTexture.html X%%DOCSDIR%%/html/api/classcsProcTexture.png X%%DOCSDIR%%/html/api/classcsProcessorCapability-members.html X%%DOCSDIR%%/html/api/classcsProcessorCapability.html X%%DOCSDIR%%/html/api/classcsProgressPulse-members.html X%%DOCSDIR%%/html/api/classcsProgressPulse.html X%%DOCSDIR%%/html/api/classcsPtr-members.html X%%DOCSDIR%%/html/api/classcsPtr.html X%%DOCSDIR%%/html/api/classcsPtrKey-members.html X%%DOCSDIR%%/html/api/classcsPtrKey.html X%%DOCSDIR%%/html/api/classcsQuaternion-members.html X%%DOCSDIR%%/html/api/classcsQuaternion.html X%%DOCSDIR%%/html/api/classcsRGBVector-members.html X%%DOCSDIR%%/html/api/classcsRGBVector.html X%%DOCSDIR%%/html/api/classcsRGBVector.png X%%DOCSDIR%%/html/api/classcsRadixSorter-members.html X%%DOCSDIR%%/html/api/classcsRect.html X%%DOCSDIR%%/html/api/classcsRadixSorter.html X%%DOCSDIR%%/html/api/classcsRandomFloatGen-members.html X%%DOCSDIR%%/html/api/classcsRandomFloatGen.html X%%DOCSDIR%%/html/api/classcsRandomGen-members.html X%%DOCSDIR%%/html/api/classcsRandomGen.html X%%DOCSDIR%%/html/api/classcsRect-members.html X%%DOCSDIR%%/html/api/classcsRectRegion-members.html X%%DOCSDIR%%/html/api/classcsRectRegion.html X%%DOCSDIR%%/html/api/classcsRedBlackTree-members.html X%%DOCSDIR%%/html/api/classcsRedBlackTree.html X%%DOCSDIR%%/html/api/classcsRedBlackTreeMap-members.html X%%DOCSDIR%%/html/api/classcsRedBlackTreeMap.html X%%DOCSDIR%%/html/api/classcsRef-members.html X%%DOCSDIR%%/html/api/classcsRedBlackTreeMap.png X%%DOCSDIR%%/html/api/classcsRedBlackTreePayload-members.html X%%DOCSDIR%%/html/api/classcsRedBlackTreePayload.html X%%DOCSDIR%%/html/api/classcsRef.html X%%DOCSDIR%%/html/api/classcsRefArray-members.html X%%DOCSDIR%%/html/api/classcsRefArray.html X%%DOCSDIR%%/html/api/classcsRefArray.png X%%DOCSDIR%%/html/api/classcsRefArrayElementHandler-members.html X%%DOCSDIR%%/html/api/classcsRefArrayElementHandler.html X%%DOCSDIR%%/html/api/classcsRefArrayObject-members.html X%%DOCSDIR%%/html/api/classcsRefArrayObject.html X%%DOCSDIR%%/html/api/classcsRefArrayObject.png X%%DOCSDIR%%/html/api/classcsRefCount-members.html X%%DOCSDIR%%/html/api/classcsRefCount.html X%%DOCSDIR%%/html/api/classcsRefCount.png X%%DOCSDIR%%/html/api/classcsRefTrackerAccess-members.html X%%DOCSDIR%%/html/api/classcsRefTrackerAccess.html X%%DOCSDIR%%/html/api/classcsRegExpMatcher-members.html X%%DOCSDIR%%/html/api/classcsRegExpMatcher.html X%%DOCSDIR%%/html/api/classcsRenderBuffer-members.html X%%DOCSDIR%%/html/api/classcsRenderBuffer.html X%%DOCSDIR%%/html/api/classcsRenderBuffer.png X%%DOCSDIR%%/html/api/classcsRenderBufferHolder-members.html X%%DOCSDIR%%/html/api/classcsRenderBufferHolder.html X%%DOCSDIR%%/html/api/classcsRenderBufferHolder.png X%%DOCSDIR%%/html/api/classcsRenderBufferLock.html X%%DOCSDIR%%/html/api/classcsRenderBufferLock-members.html X%%DOCSDIR%%/html/api/classcsRenderContext-members.html X%%DOCSDIR%%/html/api/classcsRenderContext.html X%%DOCSDIR%%/html/api/classcsRenderMeshHolder-members.html X%%DOCSDIR%%/html/api/classcsRenderMeshHolder.html X%%DOCSDIR%%/html/api/classcsRenderMeshList-members.html X%%DOCSDIR%%/html/api/classcsRenderMeshList.html X%%DOCSDIR%%/html/api/classcsRenderStepParser-members.html X%%DOCSDIR%%/html/api/classcsRenderStepParser.html X%%DOCSDIR%%/html/api/classcsReporterHelper-members.html X%%DOCSDIR%%/html/api/classcsReporterHelper.html X%%DOCSDIR%%/html/api/classcsReversibleTransform-members.html X%%DOCSDIR%%/html/api/classcsReversibleTransform.html X%%DOCSDIR%%/html/api/classcsReversibleTransform.png X%%DOCSDIR%%/html/api/classcsRunnable-members.html X%%DOCSDIR%%/html/api/classcsRunnable.html X%%DOCSDIR%%/html/api/classcsSafeCopyArray-members.html X%%DOCSDIR%%/html/api/classcsSafeCopyArray.html X%%DOCSDIR%%/html/api/classcsSafeCopyArray.png X%%DOCSDIR%%/html/api/classcsSafeCopyArrayMemoryAllocator-members.html X%%DOCSDIR%%/html/api/classcsSafeCopyArrayMemoryAllocator.html X%%DOCSDIR%%/html/api/classcsScfStringSet-members.html X%%DOCSDIR%%/html/api/classcsScfStringSet.html X%%DOCSDIR%%/html/api/classcsScfStringSet.png X%%DOCSDIR%%/html/api/job_8h.html X%%DOCSDIR%%/html/api/classcsSchedule-members.html X%%DOCSDIR%%/html/api/classcsSchedule.html X%%DOCSDIR%%/html/api/classcsScopedMutexLock-members.html X%%DOCSDIR%%/html/api/classcsScopedMutexLock.html X%%DOCSDIR%%/html/api/classcsScreenShot-members.html X%%DOCSDIR%%/html/api/classcsScreenShot.html X%%DOCSDIR%%/html/api/classcsScreenShot.png X%%DOCSDIR%%/html/api/classcsSegment2-members.html X%%DOCSDIR%%/html/api/classcsSegment2.html X%%DOCSDIR%%/html/api/classcsSegment3-members.html X%%DOCSDIR%%/html/api/classcsSegment3.html X%%DOCSDIR%%/html/api/classcsSemaphore-members.html X%%DOCSDIR%%/html/api/classcsSemaphore.html X%%DOCSDIR%%/html/api/classcsSemaphore.png X%%DOCSDIR%%/html/api/classcsSet-members.html X%%DOCSDIR%%/html/api/classcsSet.html X%%DOCSDIR%%/html/api/classcsSet_1_1GlobalIterator-members.html X%%DOCSDIR%%/html/api/classcsSet_1_1GlobalIterator.html X%%DOCSDIR%%/html/api/classcsShaderExpression-members.html X%%DOCSDIR%%/html/api/classcsShaderExpression.html X%%DOCSDIR%%/html/api/classcsShaderExpressionAccessor-members.html X%%DOCSDIR%%/html/api/classcsShaderExpressionAccessor.html X%%DOCSDIR%%/html/api/classcsShaderExpressionAccessor.png X%%DOCSDIR%%/html/api/classcsShaderProgram-members.html X%%DOCSDIR%%/html/api/classcsShaderProgram.html X%%DOCSDIR%%/html/api/classcsShaderProgram.png X%%DOCSDIR%%/html/api/classcsShaderVarBlockAlloc-members.html X%%DOCSDIR%%/html/api/classcsShaderVarBlockAlloc.html X%%DOCSDIR%%/html/api/classcsShaderVariable-members.html X%%DOCSDIR%%/html/api/classcsShaderVariable.html X%%DOCSDIR%%/html/api/classcsShaderVariable.png X%%DOCSDIR%%/html/api/classcsShaderVariableContext-members.html X%%DOCSDIR%%/html/api/classcsShaderVariableContext.html X%%DOCSDIR%%/html/api/classcsShaderVariableContext.png X%%DOCSDIR%%/html/api/classcsShaderVariableFrameHolder-members.html X%%DOCSDIR%%/html/api/classcsShaderVariableFrameHolder.html X%%DOCSDIR%%/html/api/classcsSimplePixmap-members.html X%%DOCSDIR%%/html/api/lod_8h.html X%%DOCSDIR%%/html/api/classcsSimplePixmap.html X%%DOCSDIR%%/html/api/classcsSimplePixmap.png X%%DOCSDIR%%/html/api/classcsSingleIndexVertexSet-members.html X%%DOCSDIR%%/html/api/classcsSingleIndexVertexSet.html X%%DOCSDIR%%/html/api/classcsSndFunc-members.html X%%DOCSDIR%%/html/api/classcsSndFunc.html X%%DOCSDIR%%/html/api/classcsSoftFontCache.html X%%DOCSDIR%%/html/api/classcsSoftFontCache-members.html X%%DOCSDIR%%/html/api/classcsSoftFontCache.png X%%DOCSDIR%%/html/api/classcsSoftFontCacheImpl-members.html X%%DOCSDIR%%/html/api/classcsSoftFontCacheImpl.html X%%DOCSDIR%%/html/api/classcsSoftFontCacheImpl.png X%%DOCSDIR%%/html/api/classcsSolidSpace-members.html X%%DOCSDIR%%/html/api/classcsSolidSpace.html X%%DOCSDIR%%/html/api/classcsSoundDataRaw-members.html X%%DOCSDIR%%/html/api/classcsSoundDataRaw.html X%%DOCSDIR%%/html/api/classcsSoundDataRaw.png X%%DOCSDIR%%/html/api/classcsSoundHandle-members.html X%%DOCSDIR%%/html/api/classcsSoundHandle.html X%%DOCSDIR%%/html/api/classcsSoundHandle.png X%%DOCSDIR%%/html/api/classcsSoundListener-members.html X%%DOCSDIR%%/html/api/classcsSoundListener.html X%%DOCSDIR%%/html/api/classcsSoundListener.png X%%DOCSDIR%%/html/api/classcsSoundWrapper-members.html X%%DOCSDIR%%/html/api/classcsSoundWrapper.html X%%DOCSDIR%%/html/api/classcsSoundWrapper.png X%%DOCSDIR%%/html/api/classcsSparse3D.html X%%DOCSDIR%%/html/api/classcsSparse3D-members.html X%%DOCSDIR%%/html/api/classcsSparse3D.png X%%DOCSDIR%%/html/api/classcsSphere-members.html X%%DOCSDIR%%/html/api/classcsSphere.html X%%DOCSDIR%%/html/api/classcsSpline-members.html X%%DOCSDIR%%/html/api/classcsSpline.html X%%DOCSDIR%%/html/api/classcsSpline.png X%%DOCSDIR%%/html/api/classcsSpotLightProc-members.html X%%DOCSDIR%%/html/api/classcsSpotLightProc.html X%%DOCSDIR%%/html/api/classcsSpriteBuilder-members.html X%%DOCSDIR%%/html/api/classcsSpriteBuilder.html X%%DOCSDIR%%/html/api/classcsSpriteBuilder.png X%%DOCSDIR%%/html/api/classcsSpriteBuilderFile-members.html X%%DOCSDIR%%/html/api/classcsSpriteBuilderFile.html X%%DOCSDIR%%/html/api/classcsSpriteBuilderFile.png X%%DOCSDIR%%/html/api/classcsSpriteBuilderMesh-members.html X%%DOCSDIR%%/html/api/classcsSpriteBuilderMesh.html X%%DOCSDIR%%/html/api/classcsSpriteBuilderMesh.png X%%DOCSDIR%%/html/api/classcsSquaredDist-members.html X%%DOCSDIR%%/html/api/classcsSquaredDist.html X%%DOCSDIR%%/html/api/classcsStrKey-members.html X%%DOCSDIR%%/html/api/classcsStrKey.html X%%DOCSDIR%%/html/api/classcsString-members.html X%%DOCSDIR%%/html/api/classcsString.html X%%DOCSDIR%%/html/api/classcsString.png X%%DOCSDIR%%/html/api/classcsStringArray-members.html X%%DOCSDIR%%/html/api/classcsStringArray.html X%%DOCSDIR%%/html/api/classcsStringArray.png X%%DOCSDIR%%/html/api/classcsStringArrayElementHandler-members.html X%%DOCSDIR%%/html/api/classcsStringArrayElementHandler.html X%%DOCSDIR%%/html/api/classcsStringBase-members.html X%%DOCSDIR%%/html/api/classcsStringBase.html X%%DOCSDIR%%/html/api/classcsStringBase.png X%%DOCSDIR%%/html/api/classcsStringFast-members.html X%%DOCSDIR%%/html/api/classcsStringFast.html X%%DOCSDIR%%/html/api/classcsStringFast.png X%%DOCSDIR%%/html/api/classcsStringFast_3_010_01_4-members.html X%%DOCSDIR%%/html/api/classcsStringFast_3_010_01_4.html X%%DOCSDIR%%/html/api/classcsStringFast_3_010_01_4.png X%%DOCSDIR%%/html/api/classcsStringHash-members.html X%%DOCSDIR%%/html/api/obb_8h.html X%%DOCSDIR%%/html/api/classcsStringHash.html X%%DOCSDIR%%/html/api/classcsStringReader-members.html X%%DOCSDIR%%/html/api/classcsStringReader.html X%%DOCSDIR%%/html/api/classcsStringSet-members.html X%%DOCSDIR%%/html/api/classcsStringSet.html X%%DOCSDIR%%/html/api/classcsSubRectangles-members.html X%%DOCSDIR%%/html/api/classcsSubRectangles.html X%%DOCSDIR%%/html/api/classcsSubRectangles_1_1SubRect-members.html X%%DOCSDIR%%/html/api/classcsSubRectangles_1_1SubRect.html X%%DOCSDIR%%/html/api/classcsTextProgressMeter-members.html X%%DOCSDIR%%/html/api/classcsTextProgressMeter.html X%%DOCSDIR%%/html/api/classcsTextProgressMeter.png X%%DOCSDIR%%/html/api/classcsTexture-members.html X%%DOCSDIR%%/html/api/classcsTexture.html X%%DOCSDIR%%/html/api/classcsTextureHandle-members.html X%%DOCSDIR%%/html/api/classcsTextureHandle.html X%%DOCSDIR%%/html/api/classcsTextureHandle.png X%%DOCSDIR%%/html/api/classcsTextureManager-members.html X%%DOCSDIR%%/html/api/classcsTextureManager.html X%%DOCSDIR%%/html/api/classcsTextureManager.png X%%DOCSDIR%%/html/api/classcsTextureTrans-members.html X%%DOCSDIR%%/html/api/classcsTextureTrans.html X%%DOCSDIR%%/html/api/classcsThread-members.html X%%DOCSDIR%%/html/api/classcsThread.html X%%DOCSDIR%%/html/api/classcsThread.png X%%DOCSDIR%%/html/api/classcsThreadJobQueue-members.html X%%DOCSDIR%%/html/api/classcsThreadJobQueue.html X%%DOCSDIR%%/html/api/classcsThreadJobQueue.png X%%DOCSDIR%%/html/api/classcsTiledCoverageBuffer-members.html X%%DOCSDIR%%/html/api/classcsTiledCoverageBuffer.html X%%DOCSDIR%%/html/api/classcsTinyDocumentSystem-members.html X%%DOCSDIR%%/html/api/classcsTinyDocumentSystem.html X%%DOCSDIR%%/html/api/classcsTinyDocumentSystem.png X%%DOCSDIR%%/html/api/classcsTransform-members.html X%%DOCSDIR%%/html/api/classcsTransform.html X%%DOCSDIR%%/html/api/classcsTransform.png X%%DOCSDIR%%/html/api/classcsTree-members.html X%%DOCSDIR%%/html/api/classcsTree.html X%%DOCSDIR%%/html/api/classcsTriangleLODAlgo-members.html X%%DOCSDIR%%/html/api/classcsTriangleLODAlgo.html X%%DOCSDIR%%/html/api/classcsTriangleLODAlgo.png X%%DOCSDIR%%/html/api/classcsTriangleLODAlgoEdge-members.html X%%DOCSDIR%%/html/api/classcsTriangleLODAlgoEdge.html X%%DOCSDIR%%/html/api/classcsTriangleLODAlgoEdge.png X%%DOCSDIR%%/html/api/classcsTriangleMesh-members.html X%%DOCSDIR%%/html/api/classcsTriangleMesh.html X%%DOCSDIR%%/html/api/classcsTriangleMeshLOD-members.html X%%DOCSDIR%%/html/api/classcsTriangleMeshLOD.html X%%DOCSDIR%%/html/api/classcsTriangleVertex-members.html X%%DOCSDIR%%/html/api/classcsVector2.html X%%DOCSDIR%%/html/api/classcsTriangleVertex.html X%%DOCSDIR%%/html/api/classcsTriangleVertex.png X%%DOCSDIR%%/html/api/classcsTriangleVertexCost-members.html X%%DOCSDIR%%/html/api/classcsTriangleVertexCost.html X%%DOCSDIR%%/html/api/classcsTriangleVertexCost.png X%%DOCSDIR%%/html/api/classcsTriangleVertices-members.html X%%DOCSDIR%%/html/api/classcsTriangleVertices.html X%%DOCSDIR%%/html/api/classcsTriangleVerticesCost-members.html X%%DOCSDIR%%/html/api/classcsTriangleVerticesCost.html X%%DOCSDIR%%/html/api/classcsTriangleVerticesSorted-members.html X%%DOCSDIR%%/html/api/classcsTriangleVerticesSorted.html X%%DOCSDIR%%/html/api/classcsTypedObjectIterator-members.html X%%DOCSDIR%%/html/api/classcsTypedObjectIterator.html X%%DOCSDIR%%/html/api/classcsUnicodeTransform-members.html X%%DOCSDIR%%/html/api/classcsUnicodeTransform.html X%%DOCSDIR%%/html/api/classcsUserRenderBufferManager-members.html X%%DOCSDIR%%/html/api/classcsUserRenderBufferManager.html X%%DOCSDIR%%/html/api/classcsVector2-members.html X%%DOCSDIR%%/html/api/classcsVector3-members.html X%%DOCSDIR%%/html/api/classcsVector3.html X%%DOCSDIR%%/html/api/classcsVector3Array-members.html X%%DOCSDIR%%/html/api/classcsVector3Array.html X%%DOCSDIR%%/html/api/classcsVector3Array.png X%%DOCSDIR%%/html/api/classcsVector4-members.html X%%DOCSDIR%%/html/api/classcsVector4.html X%%DOCSDIR%%/html/api/classcsVerbosityManager-members.html X%%DOCSDIR%%/html/api/classcsVerbosityManager.html X%%DOCSDIR%%/html/api/classcsVerbosityManager.png X%%DOCSDIR%%/html/api/classcsVerbosityParser-members.html X%%DOCSDIR%%/html/api/classcsVerbosityParser.html X%%DOCSDIR%%/html/api/classcsVertexLightCalculator-members.html X%%DOCSDIR%%/html/api/classcsVertexLightCalculator.html X%%DOCSDIR%%/html/api/classcsVertexLightCalculator.png X%%DOCSDIR%%/html/api/classcsVertexListWalker-members.html X%%DOCSDIR%%/html/api/classcsVertexListWalker.html X%%DOCSDIR%%/html/api/classcsVfsCacheManager-members.html X%%DOCSDIR%%/html/api/classcsVfsCacheManager.html X%%DOCSDIR%%/html/api/classcsVfsCacheManager.png X%%DOCSDIR%%/html/api/classcsVfsDirectoryChanger-members.html X%%DOCSDIR%%/html/api/classcsVfsDirectoryChanger.html X%%DOCSDIR%%/html/api/classcsVideoPreferences-members.html X%%DOCSDIR%%/html/api/classcsVideoPreferences.html X%%DOCSDIR%%/html/api/classcsView-members.html X%%DOCSDIR%%/html/api/classcsView.html X%%DOCSDIR%%/html/api/classcsView.png X%%DOCSDIR%%/html/api/classcsVirtualClock-members.html X%%DOCSDIR%%/html/api/classcsVirtualClock.html X%%DOCSDIR%%/html/api/classcsVirtualClock.png X%%DOCSDIR%%/html/api/classcsWeakRef-members.html X%%DOCSDIR%%/html/api/classcsWeakRef.html X%%DOCSDIR%%/html/api/classcsWeakRefArray-members.html X%%DOCSDIR%%/html/api/classes.html X%%DOCSDIR%%/html/api/classcsWeakRefArray.html X%%DOCSDIR%%/html/api/classcsWeakRefArray.png X%%DOCSDIR%%/html/api/classcsWideSparse3D-members.html X%%DOCSDIR%%/html/api/classcsWideSparse3D.html X%%DOCSDIR%%/html/api/classcsWideSparse3D.png X%%DOCSDIR%%/html/api/classcsWin32CustomCursors-members.html X%%DOCSDIR%%/html/api/classcsWin32CustomCursors.html X%%DOCSDIR%%/html/api/classcsWin32RegistryConfig-members.html X%%DOCSDIR%%/html/api/classcsWin32RegistryConfig.html X%%DOCSDIR%%/html/api/classcsWin32RegistryConfig.png X%%DOCSDIR%%/html/api/classcsWin32RegistryIterator-members.html X%%DOCSDIR%%/html/api/classcsWin32RegistryIterator.html X%%DOCSDIR%%/html/api/pages.html X%%DOCSDIR%%/html/api/classcsWin32RegistryIterator.png X%%DOCSDIR%%/html/api/classcsXRotMatrix3-members.html X%%DOCSDIR%%/html/api/classcsXRotMatrix3.html X%%DOCSDIR%%/html/api/classcsXRotMatrix3.png X%%DOCSDIR%%/html/api/classcsXScaleMatrix3-members.html X%%DOCSDIR%%/html/api/classcsXScaleMatrix3.html X%%DOCSDIR%%/html/api/classcsXScaleMatrix3.png X%%DOCSDIR%%/html/api/classcsYRotMatrix3-members.html X%%DOCSDIR%%/html/api/classcsYRotMatrix3.html X%%DOCSDIR%%/html/api/classcsYRotMatrix3.png X%%DOCSDIR%%/html/api/classcsYScaleMatrix3-members.html X%%DOCSDIR%%/html/api/classcsYScaleMatrix3.html X%%DOCSDIR%%/html/api/classcsYScaleMatrix3.png X%%DOCSDIR%%/html/api/classscfString.html X%%DOCSDIR%%/html/api/classcsZRotMatrix3-members.html X%%DOCSDIR%%/html/api/classcsZRotMatrix3.html X%%DOCSDIR%%/html/api/classcsZRotMatrix3.png X%%DOCSDIR%%/html/api/classcsZScaleMatrix3-members.html X%%DOCSDIR%%/html/api/classcsZScaleMatrix3.html X%%DOCSDIR%%/html/api/classcsZScaleMatrix3.png X%%DOCSDIR%%/html/api/classcswinCallStackHelper-members.html X%%DOCSDIR%%/html/api/classcswinCallStackHelper.html X%%DOCSDIR%%/html/api/classcswinMinidumpWriter-members.html X%%DOCSDIR%%/html/api/classcswinMinidumpWriter.html X%%DOCSDIR%%/html/api/classscfFakeInterface.html X%%DOCSDIR%%/html/api/classscfImplementation-members.html X%%DOCSDIR%%/html/api/classscfImplementation.html X%%DOCSDIR%%/html/api/classscfImplementation.png X%%DOCSDIR%%/html/api/classscfInterfaceTraits-members.html X%%DOCSDIR%%/html/api/classscfInterfaceTraits.html X%%DOCSDIR%%/html/api/classscfString-members.html X%%DOCSDIR%%/html/api/classscfString.png X%%DOCSDIR%%/html/api/classscfStringArray-members.html X%%DOCSDIR%%/html/api/classscfStringArray.html X%%DOCSDIR%%/html/api/classscfStringArray.png X%%DOCSDIR%%/html/api/clip2d_8h-source.html X%%DOCSDIR%%/html/api/clip2d_8h.html X%%DOCSDIR%%/html/api/cmdhelp_8h-source.html X%%DOCSDIR%%/html/api/cmdhelp_8h.html X%%DOCSDIR%%/html/api/codec_8h-source.html X%%DOCSDIR%%/html/api/codec_8h.html X%%DOCSDIR%%/html/api/collectn_8h-source.html X%%DOCSDIR%%/html/api/collectn_8h.html X%%DOCSDIR%%/html/api/commonimagefile_8h-source.html X%%DOCSDIR%%/html/api/commonimagefile_8h.html X%%DOCSDIR%%/html/api/comp_8h-source.html X%%DOCSDIR%%/html/api/comp_8h.html X%%DOCSDIR%%/html/api/comparator_8h-source.html X%%DOCSDIR%%/html/api/comparator_8h.html X%%DOCSDIR%%/html/api/conin_8h-source.html X%%DOCSDIR%%/html/api/conout_8h-source.html X%%DOCSDIR%%/html/api/crossbld_8h-source.html X%%DOCSDIR%%/html/api/crystalspace_8h-source.html X%%DOCSDIR%%/html/api/crystalspace_8h.html X%%DOCSDIR%%/html/api/csanim2d_8h-source.html X%%DOCSDIR%%/html/api/csapplicationframework_8h-source.html X%%DOCSDIR%%/html/api/csapplicationframework_8h.html X%%DOCSDIR%%/html/api/csbaseeventh_8h-source.html X%%DOCSDIR%%/html/api/csbaseeventh_8h.html X%%DOCSDIR%%/html/api/cscolor_8h-source.html X%%DOCSDIR%%/html/api/csconfig_8h-source.html X%%DOCSDIR%%/html/api/csdef_8h-source.html X%%DOCSDIR%%/html/api/csendian_8h-source.html X%%DOCSDIR%%/html/api/csendian_8h.html X%%DOCSDIR%%/html/api/csevcord_8h-source.html X%%DOCSDIR%%/html/api/csevent_8h-source.html X%%DOCSDIR%%/html/api/csevent_8h.html X%%DOCSDIR%%/html/api/cseventflattener_8h-source.html X%%DOCSDIR%%/html/api/cseventflattener_8h.html X%%DOCSDIR%%/html/api/cseventq_8h-source.html X%%DOCSDIR%%/html/api/cseventq_8h.html X%%DOCSDIR%%/html/api/csextern_8h-source.html X%%DOCSDIR%%/html/api/csfxscr_8h-source.html X%%DOCSDIR%%/html/api/csextern__dx_8h-source.html X%%DOCSDIR%%/html/api/csextern__gl_8h-source.html X%%DOCSDIR%%/html/api/csextern__osx_8h-source.html X%%DOCSDIR%%/html/api/csextern__win_8h-source.html X%%DOCSDIR%%/html/api/csgeom_2objmodel_8h-source.html X%%DOCSDIR%%/html/api/csgeom_2objmodel_8h.html X%%DOCSDIR%%/html/api/csgeom_2path_8h-source.html X%%DOCSDIR%%/html/api/csgeom_2path_8h.html X%%DOCSDIR%%/html/api/csgeom_2polymesh_8h-source.html X%%DOCSDIR%%/html/api/csgeom_8h-source.html X%%DOCSDIR%%/html/api/csgeom_8h.html X%%DOCSDIR%%/html/api/csgfx_8h-source.html X%%DOCSDIR%%/html/api/csgfx_8h.html X%%DOCSDIR%%/html/api/csimgvec_8h-source.html X%%DOCSDIR%%/html/api/csmd5_8h-source.html X%%DOCSDIR%%/html/api/csmd5_8h.html X%%DOCSDIR%%/html/api/csobject_8h-source.html X%%DOCSDIR%%/html/api/csosdefs_8h-source.html X%%DOCSDIR%%/html/api/cspixmap_8h-source.html X%%DOCSDIR%%/html/api/csplatform_8h-source.html X%%DOCSDIR%%/html/api/csplugincommon_2canvas_2graph2d_8h-source.html X%%DOCSDIR%%/html/api/csplugincommon_2canvas_2graph2d_8h.html X%%DOCSDIR%%/html/api/csplugincommon_2particlesys_2particle_8h-source.html X%%DOCSDIR%%/html/api/csplugincommon_2particlesys_2particle_8h.html X%%DOCSDIR%%/html/api/csplugincommon_2render3d_2txtmgr_8h-source.html X%%DOCSDIR%%/html/api/csplugincommon_2render3d_2txtmgr_8h.html X%%DOCSDIR%%/html/api/cspoint_8h.html X%%DOCSDIR%%/html/api/csplugincommon_8h-source.html X%%DOCSDIR%%/html/api/csplugincommon_8h.html X%%DOCSDIR%%/html/api/cspmeter_8h-source.html X%%DOCSDIR%%/html/api/cspoint_8h-source.html X%%DOCSDIR%%/html/api/csppulse_8h-source.html X%%DOCSDIR%%/html/api/csprocessorcap_8h-source.html X%%DOCSDIR%%/html/api/csqint_8h-source.html X%%DOCSDIR%%/html/api/csqint_8h.html X%%DOCSDIR%%/html/api/csqsqrt_8h-source.html X%%DOCSDIR%%/html/api/csqsqrt_8h.html X%%DOCSDIR%%/html/api/csrect_8h-source.html X%%DOCSDIR%%/html/api/csrect_8h.html X%%DOCSDIR%%/html/api/csrectrg_8h-source.html X%%DOCSDIR%%/html/api/csrectrg_8h.html X%%DOCSDIR%%/html/api/csrgbvct_8h-source.html X%%DOCSDIR%%/html/api/csshadow.png X%%DOCSDIR%%/html/api/ref_8h.html X%%DOCSDIR%%/html/api/csshlib_8h-source.html X%%DOCSDIR%%/html/api/csshlib_8h.html X%%DOCSDIR%%/html/api/csstring_8h-source.html X%%DOCSDIR%%/html/api/csstring_8h.html X%%DOCSDIR%%/html/api/cssysdef_8h-source.html X%%DOCSDIR%%/html/api/cssysdef_8h.html X%%DOCSDIR%%/html/api/cstool_2collider_8h-source.html X%%DOCSDIR%%/html/api/cstool_2keyval_8h-source.html X%%DOCSDIR%%/html/api/cstool_2mapnode_8h-source.html X%%DOCSDIR%%/html/api/cstool_2mdldata_8h-source.html X%%DOCSDIR%%/html/api/cstool_8h-source.html X%%DOCSDIR%%/html/api/cstool_8h.html X%%DOCSDIR%%/html/api/cstypes_8h-source.html X%%DOCSDIR%%/html/api/cstypes_8h.html X%%DOCSDIR%%/html/api/csuctransform_8h-source.html X%%DOCSDIR%%/html/api/csutil_8h.html X%%DOCSDIR%%/html/api/csuctransform_8h.html X%%DOCSDIR%%/html/api/csunicode_8h-source.html X%%DOCSDIR%%/html/api/csunicode_8h.html X%%DOCSDIR%%/html/api/csutil_2binder_8h-source.html X%%DOCSDIR%%/html/api/csutil_2cfgfile_8h-source.html X%%DOCSDIR%%/html/api/csutil_2cfgfile_8h.html X%%DOCSDIR%%/html/api/csutil_2cfgmgr_8h-source.html X%%DOCSDIR%%/html/api/csutil_2cfgmgr_8h.html X%%DOCSDIR%%/html/api/csutil_2cmdline_8h-source.html X%%DOCSDIR%%/html/api/csutil_2cmdline_8h.html X%%DOCSDIR%%/html/api/csutil_2csinput_8h-source.html X%%DOCSDIR%%/html/api/csutil_2event_8h-source.html X%%DOCSDIR%%/html/api/csutil_2event_8h.html X%%DOCSDIR%%/html/api/csutil_2memdebug_8h-source.html X%%DOCSDIR%%/html/api/csutil_2objreg_8h-source.html X%%DOCSDIR%%/html/api/csutil_2stringarray_8h-source.html X%%DOCSDIR%%/html/api/csutil_2strset_8h-source.html X%%DOCSDIR%%/html/api/csutil_2strset_8h.html X%%DOCSDIR%%/html/api/csutil_2timer_8h-source.html X%%DOCSDIR%%/html/api/csutil_2virtclk_8h-source.html X%%DOCSDIR%%/html/api/csutil_8h-source.html X%%DOCSDIR%%/html/api/csver_8h-source.html X%%DOCSDIR%%/html/api/csver_8h.html X%%DOCSDIR%%/html/api/csview_8h-source.html X%%DOCSDIR%%/html/api/cursor_8h-source.html X%%DOCSDIR%%/html/api/cursor_8h.html X%%DOCSDIR%%/html/api/cursorconvert_8h-source.html X%%DOCSDIR%%/html/api/cursorconvert_8h.html X%%DOCSDIR%%/html/api/data_8h-source.html X%%DOCSDIR%%/html/api/custcursor_8h-source.html X%%DOCSDIR%%/html/api/customcursor_8h-source.html X%%DOCSDIR%%/html/api/databuf_8h-source.html X%%DOCSDIR%%/html/api/databuff_8h-source.html X%%DOCSDIR%%/html/api/databuff_8h.html X%%DOCSDIR%%/html/api/datastrm_8h-source.html X%%DOCSDIR%%/html/api/dbghelp_8h-source.html X%%DOCSDIR%%/html/api/dbghelp_8h.html X%%DOCSDIR%%/html/api/debug_8h-source.html X%%DOCSDIR%%/html/api/debugimagewriter_8h-source.html X%%DOCSDIR%%/html/api/debugimagewriter_8h.html X%%DOCSDIR%%/html/api/deprecated.html X%%DOCSDIR%%/html/api/dir_000000.html X%%DOCSDIR%%/html/api/dir_000001.html X%%DOCSDIR%%/html/api/dir_000002.html X%%DOCSDIR%%/html/api/dir_000003.html X%%DOCSDIR%%/html/api/dir_000004.html X%%DOCSDIR%%/html/api/dir_000005.html X%%DOCSDIR%%/html/api/dir_000006.html X%%DOCSDIR%%/html/api/dir_000007.html X%%DOCSDIR%%/html/api/dir_000008.html X%%DOCSDIR%%/html/api/dir_000009.html X%%DOCSDIR%%/html/api/dir_000010.html X%%DOCSDIR%%/html/api/dir_000011.html X%%DOCSDIR%%/html/api/dir_000012.html X%%DOCSDIR%%/html/api/dir_000013.html X%%DOCSDIR%%/html/api/dir_000014.html X%%DOCSDIR%%/html/api/dir_000015.html X%%DOCSDIR%%/html/api/dir_000016.html X%%DOCSDIR%%/html/api/dir_000017.html X%%DOCSDIR%%/html/api/dir_000018.html X%%DOCSDIR%%/html/api/dir_000019.html X%%DOCSDIR%%/html/api/dir_000020.html X%%DOCSDIR%%/html/api/dir_000021.html X%%DOCSDIR%%/html/api/dir_000022.html X%%DOCSDIR%%/html/api/dir_000023.html X%%DOCSDIR%%/html/api/dir_000024.html X%%DOCSDIR%%/html/api/dir_000025.html X%%DOCSDIR%%/html/api/dir_000026.html X%%DOCSDIR%%/html/api/dir_000027.html X%%DOCSDIR%%/html/api/dir_000028.html X%%DOCSDIR%%/html/api/dir_000029.html X%%DOCSDIR%%/html/api/dir_000030.html X%%DOCSDIR%%/html/api/dir_000031.html X%%DOCSDIR%%/html/api/dir_000032.html X%%DOCSDIR%%/html/api/dir_000033.html X%%DOCSDIR%%/html/api/dir_000034.html X%%DOCSDIR%%/html/api/dir_000035.html X%%DOCSDIR%%/html/api/dir_000036.html X%%DOCSDIR%%/html/api/directdetection_8h-source.html X%%DOCSDIR%%/html/api/dirtyaccessarray_8h-source.html X%%DOCSDIR%%/html/api/dirtyaccessarray_8h.html X%%DOCSDIR%%/html/api/document_8h-source.html X%%DOCSDIR%%/html/api/document_8h.html X%%DOCSDIR%%/html/api/documentcommon_8h-source.html X%%DOCSDIR%%/html/api/documentcommon_8h.html X%%DOCSDIR%%/html/api/documenthelper_8h-source.html X%%DOCSDIR%%/html/api/doxygrps-source.html X%%DOCSDIR%%/html/api/draw__box_8h-source.html X%%DOCSDIR%%/html/api/draw__box_8h.html X%%DOCSDIR%%/html/api/draw__common_8h-source.html X%%DOCSDIR%%/html/api/draw__common_8h.html X%%DOCSDIR%%/html/api/draw__line_8h-source.html X%%DOCSDIR%%/html/api/draw__line_8h.html X%%DOCSDIR%%/html/api/draw__text_8h-source.html X%%DOCSDIR%%/html/api/draw__text_8h.html X%%DOCSDIR%%/html/api/driver_8h-source.html X%%DOCSDIR%%/html/api/dynamics_8h-source.html X%%DOCSDIR%%/html/api/emit_8h-source.html X%%DOCSDIR%%/html/api/engine_8h-source.html X%%DOCSDIR%%/html/api/engine_8h.html X%%DOCSDIR%%/html/api/engseq_8h-source.html X%%DOCSDIR%%/html/api/enginetools_8h-source.html X%%DOCSDIR%%/html/api/engseq_8h.html X%%DOCSDIR%%/html/api/evdefs_8h-source.html X%%DOCSDIR%%/html/api/evdefs_8h.html X%%DOCSDIR%%/html/api/eventh_8h-source.html X%%DOCSDIR%%/html/api/eventh_8h.html X%%DOCSDIR%%/html/api/eventq_8h-source.html X%%DOCSDIR%%/html/api/eventq_8h.html X%%DOCSDIR%%/html/api/evoutlet_8h-source.html X%%DOCSDIR%%/html/api/explode_8h-source.html X%%DOCSDIR%%/html/api/fastsqrt_8h-source.html X%%DOCSDIR%%/html/api/fastsqrt_8h.html X%%DOCSDIR%%/html/api/fifo_8h-source.html X%%DOCSDIR%%/html/api/fifo_8h.html X%%DOCSDIR%%/html/api/fire_8h-source.html X%%DOCSDIR%%/html/api/flags_8h-source.html X%%DOCSDIR%%/html/api/floatrand_8h-source.html X%%DOCSDIR%%/html/api/fogmath_8h-source.html X%%DOCSDIR%%/html/api/fogmath_8h.html X%%DOCSDIR%%/html/api/foliage_8h-source.html X%%DOCSDIR%%/html/api/fontcache_8h-source.html X%%DOCSDIR%%/html/api/fontcache_8h.html X%%DOCSDIR%%/html/api/fontserv_8h-source.html X%%DOCSDIR%%/html/api/fontserv_8h.html X%%DOCSDIR%%/html/api/formatter_8h-source.html X%%DOCSDIR%%/html/api/formatter_8h.html X%%DOCSDIR%%/html/api/fountain_8h-source.html X%%DOCSDIR%%/html/api/fpu80x86_8h-source.html X%%DOCSDIR%%/html/api/framedataholder_8h-source.html X%%DOCSDIR%%/html/api/framedataholder_8h.html X%%DOCSDIR%%/html/api/frustum_8h-source.html X%%DOCSDIR%%/html/api/frustum_8h.html X%%DOCSDIR%%/html/api/functions.html X%%DOCSDIR%%/html/api/scf_8h.html X%%DOCSDIR%%/html/api/functions_0x61.html X%%DOCSDIR%%/html/api/functions_0x62.html X%%DOCSDIR%%/html/api/functions_0x63.html X%%DOCSDIR%%/html/api/functions_0x64.html X%%DOCSDIR%%/html/api/functions_0x65.html X%%DOCSDIR%%/html/api/functions_0x66.html X%%DOCSDIR%%/html/api/functions_0x67.html X%%DOCSDIR%%/html/api/functions_0x68.html X%%DOCSDIR%%/html/api/functions_0x69.html X%%DOCSDIR%%/html/api/functions_0x6a.html X%%DOCSDIR%%/html/api/functions_0x6b.html X%%DOCSDIR%%/html/api/functions_0x6c.html X%%DOCSDIR%%/html/api/functions_0x6d.html X%%DOCSDIR%%/html/api/functions_0x6e.html X%%DOCSDIR%%/html/api/functions_0x6f.html X%%DOCSDIR%%/html/api/functions_0x70.html X%%DOCSDIR%%/html/api/functions_0x71.html X%%DOCSDIR%%/html/api/functions_0x72.html X%%DOCSDIR%%/html/api/functions_0x73.html X%%DOCSDIR%%/html/api/functions_0x74.html X%%DOCSDIR%%/html/api/functions_0x75.html X%%DOCSDIR%%/html/api/functions_0x76.html X%%DOCSDIR%%/html/api/functions_0x77.html X%%DOCSDIR%%/html/api/functions_0x78.html X%%DOCSDIR%%/html/api/functions_0x79.html X%%DOCSDIR%%/html/api/functions_0x7a.html X%%DOCSDIR%%/html/api/functions_0x7e.html X%%DOCSDIR%%/html/api/functions_enum.html X%%DOCSDIR%%/html/api/functions_eval.html X%%DOCSDIR%%/html/api/functions_func.html X%%DOCSDIR%%/html/api/functions_func_0x62.html X%%DOCSDIR%%/html/api/functions_func_0x63.html X%%DOCSDIR%%/html/api/functions_func_0x64.html X%%DOCSDIR%%/html/api/functions_func_0x65.html X%%DOCSDIR%%/html/api/globals.html X%%DOCSDIR%%/html/api/functions_func_0x66.html X%%DOCSDIR%%/html/api/functions_func_0x67.html X%%DOCSDIR%%/html/api/functions_func_0x68.html X%%DOCSDIR%%/html/api/functions_func_0x69.html X%%DOCSDIR%%/html/api/functions_func_0x6a.html X%%DOCSDIR%%/html/api/functions_func_0x6b.html X%%DOCSDIR%%/html/api/functions_func_0x6c.html X%%DOCSDIR%%/html/api/functions_func_0x6d.html X%%DOCSDIR%%/html/api/functions_func_0x6e.html X%%DOCSDIR%%/html/api/functions_func_0x6f.html X%%DOCSDIR%%/html/api/functions_func_0x70.html X%%DOCSDIR%%/html/api/functions_func_0x71.html X%%DOCSDIR%%/html/api/functions_func_0x72.html X%%DOCSDIR%%/html/api/functions_func_0x73.html X%%DOCSDIR%%/html/api/functions_func_0x74.html X%%DOCSDIR%%/html/api/functions_func_0x75.html X%%DOCSDIR%%/html/api/functions_func_0x76.html X%%DOCSDIR%%/html/api/functions_func_0x77.html X%%DOCSDIR%%/html/api/functions_func_0x78.html X%%DOCSDIR%%/html/api/functions_func_0x79.html X%%DOCSDIR%%/html/api/functions_func_0x7a.html X%%DOCSDIR%%/html/api/functions_func_0x7e.html X%%DOCSDIR%%/html/api/functions_rela.html X%%DOCSDIR%%/html/api/functions_type.html X%%DOCSDIR%%/html/api/functions_vars.html X%%DOCSDIR%%/html/api/functions_vars_0x61.html X%%DOCSDIR%%/html/api/functions_vars_0x62.html X%%DOCSDIR%%/html/api/functions_vars_0x63.html X%%DOCSDIR%%/html/api/fview_8h-source.html X%%DOCSDIR%%/html/api/functions_vars_0x64.html X%%DOCSDIR%%/html/api/functions_vars_0x65.html X%%DOCSDIR%%/html/api/functions_vars_0x66.html X%%DOCSDIR%%/html/api/functions_vars_0x67.html X%%DOCSDIR%%/html/api/functions_vars_0x68.html X%%DOCSDIR%%/html/api/functions_vars_0x69.html X%%DOCSDIR%%/html/api/functions_vars_0x6a.html X%%DOCSDIR%%/html/api/functions_vars_0x6b.html X%%DOCSDIR%%/html/api/functions_vars_0x6c.html X%%DOCSDIR%%/html/api/functions_vars_0x6d.html X%%DOCSDIR%%/html/api/functions_vars_0x6e.html X%%DOCSDIR%%/html/api/functions_vars_0x6f.html X%%DOCSDIR%%/html/api/functions_vars_0x70.html X%%DOCSDIR%%/html/api/functions_vars_0x72.html X%%DOCSDIR%%/html/api/functions_vars_0x73.html X%%DOCSDIR%%/html/api/functions_vars_0x74.html X%%DOCSDIR%%/html/api/functions_vars_0x75.html X%%DOCSDIR%%/html/api/functions_vars_0x76.html X%%DOCSDIR%%/html/api/functions_vars_0x77.html X%%DOCSDIR%%/html/api/functions_vars_0x78.html X%%DOCSDIR%%/html/api/functions_vars_0x79.html X%%DOCSDIR%%/html/api/functions_vars_0x7a.html X%%DOCSDIR%%/html/api/fview_8h.html X%%DOCSDIR%%/html/api/garray_8h-source.html X%%DOCSDIR%%/html/api/genmesh_8h-source.html X%%DOCSDIR%%/html/api/gentrtex_8h-source.html X%%DOCSDIR%%/html/api/getopt_8h-source.html X%%DOCSDIR%%/html/api/getopt_8h.html X%%DOCSDIR%%/html/api/gfxmem_8h-source.html X%%DOCSDIR%%/html/api/gfxmem_8h.html X%%DOCSDIR%%/html/api/glcommon2d_8h-source.html X%%DOCSDIR%%/html/api/glenum__identstrs_8h-source.html X%%DOCSDIR%%/html/api/glextmanager_8h-source.html X%%DOCSDIR%%/html/api/glextmanager_8h.html X%%DOCSDIR%%/html/api/glfontcache_8h-source.html X%%DOCSDIR%%/html/api/glhelper_8h-source.html X%%DOCSDIR%%/html/api/globals_0x61.html X%%DOCSDIR%%/html/api/globals_0x62.html X%%DOCSDIR%%/html/api/globals_0x63.html X%%DOCSDIR%%/html/api/globals_0x64.html X%%DOCSDIR%%/html/api/globals_0x65.html X%%DOCSDIR%%/html/api/globals_0x66.html X%%DOCSDIR%%/html/api/globals_0x67.html X%%DOCSDIR%%/html/api/globals_0x69.html X%%DOCSDIR%%/html/api/globals_0x6c.html X%%DOCSDIR%%/html/api/set_8h.html X%%DOCSDIR%%/html/api/globals_0x6d.html X%%DOCSDIR%%/html/api/globals_0x6e.html X%%DOCSDIR%%/html/api/globals_0x6f.html X%%DOCSDIR%%/html/api/globals_0x70.html X%%DOCSDIR%%/html/api/globals_0x72.html X%%DOCSDIR%%/html/api/globals_0x73.html X%%DOCSDIR%%/html/api/globals_0x74.html X%%DOCSDIR%%/html/api/globals_0x75.html X%%DOCSDIR%%/html/api/globals_0x76.html X%%DOCSDIR%%/html/api/globals_0x77.html X%%DOCSDIR%%/html/api/globals_defs.html X%%DOCSDIR%%/html/api/globals_defs_0x61.html X%%DOCSDIR%%/html/api/globals_defs_0x62.html X%%DOCSDIR%%/html/api/globals_defs_0x63.html X%%DOCSDIR%%/html/api/globals_defs_0x64.html X%%DOCSDIR%%/html/api/globals_defs_0x65.html X%%DOCSDIR%%/html/api/globals_defs_0x66.html X%%DOCSDIR%%/html/api/globals_defs_0x67.html X%%DOCSDIR%%/html/api/globals_defs_0x6d.html X%%DOCSDIR%%/html/api/globals_defs_0x6e.html X%%DOCSDIR%%/html/api/globals_defs_0x6f.html X%%DOCSDIR%%/html/api/globals_defs_0x72.html X%%DOCSDIR%%/html/api/globals_defs_0x73.html X%%DOCSDIR%%/html/api/globals_defs_0x74.html X%%DOCSDIR%%/html/api/globals_defs_0x75.html X%%DOCSDIR%%/html/api/globals_defs_0x76.html X%%DOCSDIR%%/html/api/globals_defs_0x77.html X%%DOCSDIR%%/html/api/globals_enum.html X%%DOCSDIR%%/html/api/globals_eval.html X%%DOCSDIR%%/html/api/globals_eval_0x67.html X%%DOCSDIR%%/html/api/globals_eval_0x72.html X%%DOCSDIR%%/html/api/globals_eval_0x73.html X%%DOCSDIR%%/html/api/globals_eval_0x74.html X%%DOCSDIR%%/html/api/globals_func.html X%%DOCSDIR%%/html/api/globals_type.html X%%DOCSDIR%%/html/api/globals_type_0x67.html X%%DOCSDIR%%/html/api/globals_type_0x69.html X%%DOCSDIR%%/html/api/globals_type_0x6c.html X%%DOCSDIR%%/html/api/globals_type_0x6f.html X%%DOCSDIR%%/html/api/globals_type_0x70.html X%%DOCSDIR%%/html/api/globals_type_0x73.html X%%DOCSDIR%%/html/api/globals_type_0x75.html X%%DOCSDIR%%/html/api/globals_type_0x77.html X%%DOCSDIR%%/html/api/globals_vars.html X%%DOCSDIR%%/html/api/glss_8h-source.html X%%DOCSDIR%%/html/api/glstates_8h-source.html X%%DOCSDIR%%/html/api/gmeshanim_8h-source.html X%%DOCSDIR%%/html/api/gmeshskel_8h-source.html X%%DOCSDIR%%/html/api/gradient_8h-source.html X%%DOCSDIR%%/html/api/gradient_8h.html X%%DOCSDIR%%/html/api/graph3d_8h-source.html X%%DOCSDIR%%/html/api/graph3d_8h.html X%%DOCSDIR%%/html/api/group__appframe.html X%%DOCSDIR%%/html/api/group__aws.html X%%DOCSDIR%%/html/api/group__aws__comp__flags.html X%%DOCSDIR%%/html/api/group__aws__sink__errors.html X%%DOCSDIR%%/html/api/group__aws__sys__flags.html X%%DOCSDIR%%/html/api/group__aws__window__trans.html X%%DOCSDIR%%/html/api/group__engine3d.html X%%DOCSDIR%%/html/api/group__engine3d__light.html X%%DOCSDIR%%/html/api/group__engine3d__meshes.html X%%DOCSDIR%%/html/api/group__engine3d__rloop.html X%%DOCSDIR%%/html/api/group__engine3d__textures.html X%%DOCSDIR%%/html/api/group__geom__utils.html X%%DOCSDIR%%/html/api/group__engine3d__views.html X%%DOCSDIR%%/html/api/group__engine3d__vis.html X%%DOCSDIR%%/html/api/group__event__handling.html X%%DOCSDIR%%/html/api/group__floating__point.html X%%DOCSDIR%%/html/api/group__gfx.html X%%DOCSDIR%%/html/api/group__gfx2d.html X%%DOCSDIR%%/html/api/group__gfx3d.html X%%DOCSDIR%%/html/api/group__loadsave.html X%%DOCSDIR%%/html/api/group__meshplugins.html X%%DOCSDIR%%/html/api/group__plugincommon.html X%%DOCSDIR%%/html/api/group__scf.html X%%DOCSDIR%%/html/api/group__util.html X%%DOCSDIR%%/html/api/group__util__containers.html X%%DOCSDIR%%/html/api/group__vfs.html X%%DOCSDIR%%/html/api/guids_8h-source.html X%%DOCSDIR%%/html/api/handle_8h-source.html X%%DOCSDIR%%/html/api/hash_8h-source.html X%%DOCSDIR%%/html/api/hash_8h.html X%%DOCSDIR%%/html/api/hashhandlers_8h-source.html X%%DOCSDIR%%/html/api/hashr_8h-source.html X%%DOCSDIR%%/html/api/hashr_8h.html X%%DOCSDIR%%/html/api/haze_8h-source.html X%%DOCSDIR%%/html/api/hierarchy.html X%%DOCSDIR%%/html/api/iaws_8h-source.html X%%DOCSDIR%%/html/api/iaws_8h.html X%%DOCSDIR%%/html/api/icontainer_8h-source.html X%%DOCSDIR%%/html/api/icontainer_8h.html X%%DOCSDIR%%/html/api/identstrings_8h-source.html X%%DOCSDIR%%/html/api/identstrings_8h.html X%%DOCSDIR%%/html/api/iengine_2halo_8h-source.html X%%DOCSDIR%%/html/api/iengine_2halo_8h.html X%%DOCSDIR%%/html/api/iengine_2material_8h-source.html X%%DOCSDIR%%/html/api/iengine_2material_8h.html X%%DOCSDIR%%/html/api/iengine_2texture_8h-source.html X%%DOCSDIR%%/html/api/iengine_2texture_8h.html X%%DOCSDIR%%/html/api/iengine_8h-source.html X%%DOCSDIR%%/html/api/iengine_8h.html X%%DOCSDIR%%/html/api/ifire_8h-source.html X%%DOCSDIR%%/html/api/ifire_8h.html X%%DOCSDIR%%/html/api/igeneric_8h-source.html X%%DOCSDIR%%/html/api/igeneric_8h.html X%%DOCSDIR%%/html/api/igeom_2objmodel_8h-source.html X%%DOCSDIR%%/html/api/igeom_2objmodel_8h.html X%%DOCSDIR%%/html/api/igeom_2path_8h-source.html X%%DOCSDIR%%/html/api/igeom_2path_8h.html X%%DOCSDIR%%/html/api/igeom_2polymesh_8h-source.html X%%DOCSDIR%%/html/api/igeom_2polymesh_8h.html X%%DOCSDIR%%/html/api/todo.html X%%DOCSDIR%%/html/api/igeom_8h-source.html X%%DOCSDIR%%/html/api/igeom_8h.html X%%DOCSDIR%%/html/api/igraphic_8h-source.html X%%DOCSDIR%%/html/api/igraphic_8h.html X%%DOCSDIR%%/html/api/ilightiter_8h-source.html X%%DOCSDIR%%/html/api/ilightiter_8h.html X%%DOCSDIR%%/html/api/image_8h-source.html X%%DOCSDIR%%/html/api/image_8h.html X%%DOCSDIR%%/html/api/imagebase_8h-source.html X%%DOCSDIR%%/html/api/imagebase_8h.html X%%DOCSDIR%%/html/api/imagecubemapmaker_8h-source.html X%%DOCSDIR%%/html/api/imagecubemapmaker_8h.html X%%DOCSDIR%%/html/api/imageio_8h-source.html X%%DOCSDIR%%/html/api/imageio_8h.html X%%DOCSDIR%%/html/api/imagemanipulate_8h-source.html X%%DOCSDIR%%/html/api/imagemanipulate_8h.html X%%DOCSDIR%%/html/api/imagetools_8h-source.html X%%DOCSDIR%%/html/api/imagetools_8h.html X%%DOCSDIR%%/html/api/imagevolumemaker_8h-source.html X%%DOCSDIR%%/html/api/imagevolumemaker_8h.html X%%DOCSDIR%%/html/api/imap_2loader_8h-source.html X%%DOCSDIR%%/html/api/imap_2loader_8h.html X%%DOCSDIR%%/html/api/imap_8h-source.html X%%DOCSDIR%%/html/api/imap_8h.html X%%DOCSDIR%%/html/api/imesh_2lighting_8h-source.html X%%DOCSDIR%%/html/api/imesh_2mdldata_8h-source.html X%%DOCSDIR%%/html/api/imesh_2object_8h-source.html X%%DOCSDIR%%/html/api/imesh_2object_8h.html X%%DOCSDIR%%/html/api/imesh_2particle_8h-source.html X%%DOCSDIR%%/html/api/imesh_8h-source.html X%%DOCSDIR%%/html/api/imesh_8h.html X%%DOCSDIR%%/html/api/imgvec_8h-source.html X%%DOCSDIR%%/html/api/imgvec_8h.html X%%DOCSDIR%%/html/api/importkit_8h-source.html X%%DOCSDIR%%/html/api/importkit_8h.html X%%DOCSDIR%%/html/api/imposter_8h-source.html X%%DOCSDIR%%/html/api/imposter_8h.html X%%DOCSDIR%%/html/api/inetwork_8h-source.html X%%DOCSDIR%%/html/api/inetwork_8h.html X%%DOCSDIR%%/html/api/initapp_8h-source.html X%%DOCSDIR%%/html/api/initapp_8h.html X%%DOCSDIR%%/html/api/inputdef_8h-source.html X%%DOCSDIR%%/html/api/inputdef_8h.html X%%DOCSDIR%%/html/api/interfaceOSXDelegate2D-members.html X%%DOCSDIR%%/html/api/interfaceOSXDelegate2D.html X%%DOCSDIR%%/html/api/interfaceOSXView-members.html X%%DOCSDIR%%/html/api/interfaceOSXView.html X%%DOCSDIR%%/html/api/interfaceOSXWindow-members.html X%%DOCSDIR%%/html/api/interfaceOSXWindow.html X%%DOCSDIR%%/html/api/inv__cmap_8h-source.html X%%DOCSDIR%%/html/api/inv__cmap_8h.html X%%DOCSDIR%%/html/api/iopengl_2driverdb_8h-source.html X%%DOCSDIR%%/html/api/iopengl_2driverdb_8h.html X%%DOCSDIR%%/html/api/iproctex_8h-source.html X%%DOCSDIR%%/html/api/iproctex_8h.html X%%DOCSDIR%%/html/api/irenderstep_8h-source.html X%%DOCSDIR%%/html/api/irenderstep_8h.html X%%DOCSDIR%%/html/api/irsfact_8h-source.html X%%DOCSDIR%%/html/api/irsfact_8h.html X%%DOCSDIR%%/html/api/isound_2loader_8h-source.html X%%DOCSDIR%%/html/api/isound_8h-source.html X%%DOCSDIR%%/html/api/isound_8h.html X%%DOCSDIR%%/html/api/tri_8h.html X%%DOCSDIR%%/html/api/itexfact_8h-source.html X%%DOCSDIR%%/html/api/itexfact_8h.html X%%DOCSDIR%%/html/api/itexloaderctx_8h-source.html X%%DOCSDIR%%/html/api/itexloaderctx_8h.html X%%DOCSDIR%%/html/api/itexture_8h-source.html X%%DOCSDIR%%/html/api/itexture_8h.html X%%DOCSDIR%%/html/api/iutil_2binder_8h-source.html X%%DOCSDIR%%/html/api/iutil_2cfgfile_8h-source.html X%%DOCSDIR%%/html/api/iutil_2cfgfile_8h.html X%%DOCSDIR%%/html/api/iutil_2cfgmgr_8h-source.html X%%DOCSDIR%%/html/api/iutil_2cfgmgr_8h.html X%%DOCSDIR%%/html/api/iutil_2cmdline_8h-source.html X%%DOCSDIR%%/html/api/iutil_2cmdline_8h.html X%%DOCSDIR%%/html/api/iutil_2csinput_8h-source.html X%%DOCSDIR%%/html/api/iutil_8h.html X%%DOCSDIR%%/html/api/iutil_2csinput_8h.html X%%DOCSDIR%%/html/api/iutil_2event_8h-source.html X%%DOCSDIR%%/html/api/iutil_2event_8h.html X%%DOCSDIR%%/html/api/iutil_2memdebug_8h-source.html X%%DOCSDIR%%/html/api/iutil_2object_8h-source.html X%%DOCSDIR%%/html/api/iutil_2object_8h.html X%%DOCSDIR%%/html/api/iutil_2objreg_8h-source.html X%%DOCSDIR%%/html/api/iutil_2objreg_8h.html X%%DOCSDIR%%/html/api/iutil_8h-source.html X%%DOCSDIR%%/html/api/iutil_2stringarray_8h-source.html X%%DOCSDIR%%/html/api/iutil_2stringarray_8h.html X%%DOCSDIR%%/html/api/iutil_2strset_8h-source.html X%%DOCSDIR%%/html/api/iutil_2strset_8h.html X%%DOCSDIR%%/html/api/iutil_2timer_8h-source.html X%%DOCSDIR%%/html/api/iutil_2virtclk_8h-source.html X%%DOCSDIR%%/html/api/iutil_2virtclk_8h.html X%%DOCSDIR%%/html/api/ivaria_2collider_8h-source.html X%%DOCSDIR%%/html/api/ivaria_2keyval_8h-source.html X%%DOCSDIR%%/html/api/ivaria_2mapnode_8h-source.html X%%DOCSDIR%%/html/api/ivaria_8h-source.html X%%DOCSDIR%%/html/api/ivaria_8h.html X%%DOCSDIR%%/html/api/ivideo_2graph2d_8h-source.html X%%DOCSDIR%%/html/api/ivideo_2graph2d_8h.html X%%DOCSDIR%%/html/api/ivideo_2halo_8h-source.html X%%DOCSDIR%%/html/api/ivideo_2halo_8h.html X%%DOCSDIR%%/html/api/ivideo_2lighting_8h-source.html X%%DOCSDIR%%/html/api/ivideo_2material_8h-source.html X%%DOCSDIR%%/html/api/ivideo_2material_8h.html X%%DOCSDIR%%/html/api/ivideo_2texture_8h-source.html X%%DOCSDIR%%/html/api/ivideo_2texture_8h.html X%%DOCSDIR%%/html/api/ivideo_2txtmgr_8h-source.html X%%DOCSDIR%%/html/api/ivideo_2txtmgr_8h.html X%%DOCSDIR%%/html/api/ivideo_8h-source.html X%%DOCSDIR%%/html/api/ivideo_8h.html X%%DOCSDIR%%/html/api/job_8h-source.html X%%DOCSDIR%%/html/api/kdtree_8h-source.html X%%DOCSDIR%%/html/api/ldrctxt_8h-source.html X%%DOCSDIR%%/html/api/ldrctxt_8h.html X%%DOCSDIR%%/html/api/leakguard_8h-source.html X%%DOCSDIR%%/html/api/lghtng_8h-source.html X%%DOCSDIR%%/html/api/light_8h-source.html X%%DOCSDIR%%/html/api/light_8h.html X%%DOCSDIR%%/html/api/lightmgr_8h-source.html X%%DOCSDIR%%/html/api/lightmgr_8h.html X%%DOCSDIR%%/html/api/lightsvcache_8h-source.html X%%DOCSDIR%%/html/api/lightsvcache_8h.html X%%DOCSDIR%%/html/api/list_8h-source.html X%%DOCSDIR%%/html/api/listener_8h-source.html X%%DOCSDIR%%/html/api/lod_8h-source.html X%%DOCSDIR%%/html/api/macosx_2csosdefs_8h-source.html X%%DOCSDIR%%/html/api/math2d_8h-source.html X%%DOCSDIR%%/html/api/math2d_8h.html X%%DOCSDIR%%/html/api/math3d_8h-source.html X%%DOCSDIR%%/html/api/math3d_8h.html X%%DOCSDIR%%/html/api/math3d__d_8h-source.html X%%DOCSDIR%%/html/api/math3d__d_8h.html X%%DOCSDIR%%/html/api/math_8h-source.html X%%DOCSDIR%%/html/api/math_8h.html X%%DOCSDIR%%/html/api/matrix2_8h-source.html X%%DOCSDIR%%/html/api/matrix2_8h.html X%%DOCSDIR%%/html/api/matrix3_8h-source.html X%%DOCSDIR%%/html/api/matrix3_8h.html X%%DOCSDIR%%/html/api/mdlconv_8h-source.html X%%DOCSDIR%%/html/api/mdltool_8h-source.html X%%DOCSDIR%%/html/api/memfile_8h-source.html X%%DOCSDIR%%/html/api/memimage_8h-source.html X%%DOCSDIR%%/html/api/mempool_8h-source.html X%%DOCSDIR%%/html/api/mempool_8h.html X%%DOCSDIR%%/html/api/mesh_8h-source.html X%%DOCSDIR%%/html/api/mesh_8h.html X%%DOCSDIR%%/html/api/meshobjtmpl_8h-source.html X%%DOCSDIR%%/html/api/minidump_8h-source.html X%%DOCSDIR%%/html/api/minidump_8h.html X%%DOCSDIR%%/html/api/mmap_8h-source.html X%%DOCSDIR%%/html/api/mmap_8h.html X%%DOCSDIR%%/html/api/mmap__dummy_8h-source.html X%%DOCSDIR%%/html/api/mmap__dummy_8h.html X%%DOCSDIR%%/html/api/mmap__posix_8h-source.html X%%DOCSDIR%%/html/api/mmap__posix_8h.html X%%DOCSDIR%%/html/api/mmapio_8h-source.html X%%DOCSDIR%%/html/api/mmapio_8h.html X%%DOCSDIR%%/html/api/modules.html X%%DOCSDIR%%/html/api/movable_8h-source.html X%%DOCSDIR%%/html/api/movable_8h.html X%%DOCSDIR%%/html/api/movierecorder_8h-source.html X%%DOCSDIR%%/html/api/namespaceCrystalSpace.html X%%DOCSDIR%%/html/api/namespaceCrystalSpace_1_1DocumentHelper.html X%%DOCSDIR%%/html/api/namespaceCrystalSpace_1_1DocumentHelper_1_1Implementation.html X%%DOCSDIR%%/html/api/namespaceCrystalSpace_1_1ImportKitImpl.html X%%DOCSDIR%%/html/api/namespaceaws.html X%%DOCSDIR%%/html/api/namespaceaws_1_1autom.html X%%DOCSDIR%%/html/api/namespaces.html X%%DOCSDIR%%/html/api/namespacemembers.html X%%DOCSDIR%%/html/api/namespacemembers_func.html X%%DOCSDIR%%/html/api/natwin_8h-source.html X%%DOCSDIR%%/html/api/natwin_8h.html X%%DOCSDIR%%/html/api/nobjvec_8h-source.html X%%DOCSDIR%%/html/api/nobjvec_8h.html X%%DOCSDIR%%/html/api/normalizationcube_8h-source.html X%%DOCSDIR%%/html/api/normalizationcube_8h.html X%%DOCSDIR%%/html/api/normalmaptools_8h-source.html X%%DOCSDIR%%/html/api/normalmaptools_8h.html X%%DOCSDIR%%/html/api/nulcache_8h-source.html X%%DOCSDIR%%/html/api/nulcache_8h.html X%%DOCSDIR%%/html/api/nullmesh_8h-source.html X%%DOCSDIR%%/html/api/obb_8h-source.html X%%DOCSDIR%%/html/api/objiter_8h-source.html X%%DOCSDIR%%/html/api/objiter_8h.html X%%DOCSDIR%%/html/api/objpool_8h-source.html X%%DOCSDIR%%/html/api/objwatch_8h-source.html X%%DOCSDIR%%/html/api/objwatch_8h.html X%%DOCSDIR%%/html/api/ode_8h-source.html X%%DOCSDIR%%/html/api/opengl_2driverdb_8h-source.html X%%DOCSDIR%%/html/api/openglinterface_8h-source.html X%%DOCSDIR%%/html/api/openglinterface_8h.html X%%DOCSDIR%%/html/api/optionsparser_8h-source.html X%%DOCSDIR%%/html/api/optionsparser_8h.html X%%DOCSDIR%%/html/api/packrgb_8h-source.html X%%DOCSDIR%%/html/api/packrgb_8h.html X%%DOCSDIR%%/html/api/parasiticdatabuffer_8h-source.html X%%DOCSDIR%%/html/api/parasiticdatabuffer_8h.html X%%DOCSDIR%%/html/api/parray_8h-source.html X%%DOCSDIR%%/html/api/parray_8h.html X%%DOCSDIR%%/html/api/parser_8h-source.html X%%DOCSDIR%%/html/api/parserenderstep_8h-source.html X%%DOCSDIR%%/html/api/partgen_8h-source.html X%%DOCSDIR%%/html/api/partgen_8h.html X%%DOCSDIR%%/html/api/particles_8h-source.html X%%DOCSDIR%%/html/api/particles_8h.html X%%DOCSDIR%%/html/api/partsys_8h-source.html X%%DOCSDIR%%/html/api/pen_8h-source.html X%%DOCSDIR%%/html/api/physfile_8h-source.html X%%DOCSDIR%%/html/api/pixfmt_8h-source.html X%%DOCSDIR%%/html/api/pixfmt_8h.html X%%DOCSDIR%%/html/api/plane2_8h-source.html X%%DOCSDIR%%/html/api/plane2_8h.html X%%DOCSDIR%%/html/api/plane3_8h-source.html X%%DOCSDIR%%/html/api/plane3_8h.html X%%DOCSDIR%%/html/api/plugin_8h-source.html X%%DOCSDIR%%/html/api/plugin_8h.html X%%DOCSDIR%%/html/api/pluginconfig_8h-source.html X%%DOCSDIR%%/html/api/pluginconfig_8h.html X%%DOCSDIR%%/html/api/plugldr_8h-source.html X%%DOCSDIR%%/html/api/plugmgr_8h-source.html X%%DOCSDIR%%/html/api/pmeter_8h-source.html X%%DOCSDIR%%/html/api/pmtools_8h-source.html X%%DOCSDIR%%/html/api/pmtools_8h.html X%%DOCSDIR%%/html/api/poly2d_8h-source.html X%%DOCSDIR%%/html/api/poly2d_8h.html X%%DOCSDIR%%/html/api/poly3d_8h-source.html X%%DOCSDIR%%/html/api/poly3d_8h.html X%%DOCSDIR%%/html/api/polyaa_8h-source.html X%%DOCSDIR%%/html/api/polyaa_8h.html X%%DOCSDIR%%/html/api/polyclip_8h-source.html X%%DOCSDIR%%/html/api/polyclip_8h.html X%%DOCSDIR%%/html/api/polyedge_8h-source.html X%%DOCSDIR%%/html/api/polyedge_8h.html X%%DOCSDIR%%/html/api/polyidx_8h-source.html X%%DOCSDIR%%/html/api/polyidx_8h.html X%%DOCSDIR%%/html/api/polypool_8h-source.html X%%DOCSDIR%%/html/api/polypool_8h.html X%%DOCSDIR%%/html/api/polyrender_8h-source.html X%%DOCSDIR%%/html/api/polyrender_8h.html X%%DOCSDIR%%/html/api/pooledscfclass_8h-source.html X%%DOCSDIR%%/html/api/pooledscfclass_8h.html X%%DOCSDIR%%/html/api/portal_8h-source.html X%%DOCSDIR%%/html/api/portal_8h.html X%%DOCSDIR%%/html/api/portalcontainer_8h-source.html X%%DOCSDIR%%/html/api/portalcontainer_8h.html X%%DOCSDIR%%/html/api/prfxcfg_8h-source.html X%%DOCSDIR%%/html/api/proctex_8h-source.html X%%DOCSDIR%%/html/api/proctxtanim_8h-source.html X%%DOCSDIR%%/html/api/profile_8h-source.html X%%DOCSDIR%%/html/api/protomesh_8h-source.html X%%DOCSDIR%%/html/api/psdk-compat_8h-source.html X%%DOCSDIR%%/html/api/psdk-compat_8h.html X%%DOCSDIR%%/html/api/pvstree_8h-source.html X%%DOCSDIR%%/html/api/quantize_8h-source.html X%%DOCSDIR%%/html/api/quantize_8h.html X%%DOCSDIR%%/html/api/quaterni_8h-source.html X%%DOCSDIR%%/html/api/quaterni_8h.html X%%DOCSDIR%%/html/api/radixsort_8h-source.html X%%DOCSDIR%%/html/api/rain_8h-source.html X%%DOCSDIR%%/html/api/randomgen_8h-source.html X%%DOCSDIR%%/html/api/rbuflock_8h-source.html X%%DOCSDIR%%/html/api/rbuflock_8h.html X%%DOCSDIR%%/html/api/reader_8h-source.html X%%DOCSDIR%%/html/api/reader_8h.html X%%DOCSDIR%%/html/api/redblacktree_8h-source.html X%%DOCSDIR%%/html/api/redblacktree_8h.html X%%DOCSDIR%%/html/api/ref_8h-source.html X%%DOCSDIR%%/html/api/refarr_8h-source.html X%%DOCSDIR%%/html/api/refarr_8h.html X%%DOCSDIR%%/html/api/refcount_8h-source.html X%%DOCSDIR%%/html/api/refcount_8h.html X%%DOCSDIR%%/html/api/reftrack_8h-source.html X%%DOCSDIR%%/html/api/reftrackeraccess_8h-source.html X%%DOCSDIR%%/html/api/regexp_8h-source.html X%%DOCSDIR%%/html/api/regexp_8h.html X%%DOCSDIR%%/html/api/region_8h-source.html X%%DOCSDIR%%/html/api/region_8h.html X%%DOCSDIR%%/html/api/registrycfg_8h-source.html X%%DOCSDIR%%/html/api/registrycfg_8h.html X%%DOCSDIR%%/html/api/renderbuffer_8h-source.html X%%DOCSDIR%%/html/api/renderbuffer_8h.html X%%DOCSDIR%%/html/api/vfs_8h.html X%%DOCSDIR%%/html/api/renderer_8h-source.html X%%DOCSDIR%%/html/api/renderloop_8h-source.html X%%DOCSDIR%%/html/api/renderloop_8h.html X%%DOCSDIR%%/html/api/rendermesh_8h-source.html X%%DOCSDIR%%/html/api/rendermesh_8h.html X%%DOCSDIR%%/html/api/rendermeshholder_8h-source.html X%%DOCSDIR%%/html/api/rendermeshholder_8h.html X%%DOCSDIR%%/html/api/rendermeshlist_8h-source.html X%%DOCSDIR%%/html/api/reporter_8h-source.html X%%DOCSDIR%%/html/api/reporter_8h.html X%%DOCSDIR%%/html/api/rgbpixel_8h-source.html X%%DOCSDIR%%/html/api/rgbpixel_8h.html X%%DOCSDIR%%/html/api/rndbuf_8h-source.html X%%DOCSDIR%%/html/api/rndbuf_8h.html X%%DOCSDIR%%/html/api/rview_8h-source.html X%%DOCSDIR%%/html/api/rview_8h.html X%%DOCSDIR%%/html/api/saver_8h-source.html X%%DOCSDIR%%/html/api/scancode_8h-source.html X%%DOCSDIR%%/html/api/scancode_8h.html X%%DOCSDIR%%/html/api/scanstr_8h-source.html X%%DOCSDIR%%/html/api/scanstr_8h.html X%%DOCSDIR%%/html/api/scf_8h-source.html X%%DOCSDIR%%/html/api/scf__impl_8h-source.html X%%DOCSDIR%%/html/api/scf__implementation_8h-source.html X%%DOCSDIR%%/html/api/scf__implementation_8h.html X%%DOCSDIR%%/html/api/scf__interface_8h-source.html X%%DOCSDIR%%/html/api/scf__interface_8h.html X%%DOCSDIR%%/html/api/scfstr_8h-source.html X%%DOCSDIR%%/html/api/scfstringarray_8h-source.html X%%DOCSDIR%%/html/api/scfstrset_8h-source.html X%%DOCSDIR%%/html/api/schedule_8h-source.html X%%DOCSDIR%%/html/api/scopedmutexlock_8h-source.html X%%DOCSDIR%%/html/api/script_8h-source.html X%%DOCSDIR%%/html/api/scrshot_8h-source.html X%%DOCSDIR%%/html/api/scrshot_8h.html X%%DOCSDIR%%/html/api/sector_8h-source.html X%%DOCSDIR%%/html/api/sector_8h.html X%%DOCSDIR%%/html/api/segment_8h-source.html X%%DOCSDIR%%/html/api/segment_8h.html X%%DOCSDIR%%/html/api/sequence_8h-source.html X%%DOCSDIR%%/html/api/services_8h-source.html X%%DOCSDIR%%/html/api/services_8h.html X%%DOCSDIR%%/html/api/set_8h-source.html X%%DOCSDIR%%/html/api/shadcast_8h-source.html X%%DOCSDIR%%/html/api/shadcast_8h.html X%%DOCSDIR%%/html/api/shader_8h-source.html X%%DOCSDIR%%/html/api/shader_8h.html X%%DOCSDIR%%/html/api/shaderexp_8h-source.html X%%DOCSDIR%%/html/api/shaderexp_8h.html X%%DOCSDIR%%/html/api/shaderexpaccessor_8h-source.html X%%DOCSDIR%%/html/api/shaderexpaccessor_8h.html X%%DOCSDIR%%/html/api/shaderplugin_8h-source.html X%%DOCSDIR%%/html/api/shaderprogram_8h-source.html X%%DOCSDIR%%/html/api/shadervar_8h-source.html X%%DOCSDIR%%/html/api/shadervarblockalloc_8h-source.html X%%DOCSDIR%%/html/api/shadervarblockalloc_8h.html X%%DOCSDIR%%/html/api/shadervarcontext_8h-source.html X%%DOCSDIR%%/html/api/shadervarcontext_8h.html X%%DOCSDIR%%/html/api/shadervarframeholder_8h-source.html X%%DOCSDIR%%/html/api/shadervarframeholder_8h.html X%%DOCSDIR%%/html/api/shadows_8h-source.html X%%DOCSDIR%%/html/api/shadows_8h.html X%%DOCSDIR%%/html/api/sharevar_8h-source.html X%%DOCSDIR%%/html/api/sharevar_8h.html X%%DOCSDIR%%/html/api/shdl_8h-source.html X%%DOCSDIR%%/html/api/simpleformer_8h-source.html X%%DOCSDIR%%/html/api/slstn_8h-source.html X%%DOCSDIR%%/html/api/sndload_8h-source.html X%%DOCSDIR%%/html/api/sndwrap_8h-source.html X%%DOCSDIR%%/html/api/snow_8h-source.html X%%DOCSDIR%%/html/api/snprintf_8h-source.html X%%DOCSDIR%%/html/api/snprintf_8h.html X%%DOCSDIR%%/html/api/softfontcache_8h-source.html X%%DOCSDIR%%/html/api/softfontcache_8h.html X%%DOCSDIR%%/html/api/softfontcacheimpl_8h-source.html X%%DOCSDIR%%/html/api/softfontcacheimpl_8h.html X%%DOCSDIR%%/html/api/sphere_8h.html X%%DOCSDIR%%/html/api/solidspace_8h-source.html X%%DOCSDIR%%/html/api/soundraw_8h-source.html X%%DOCSDIR%%/html/api/source_8h-source.html X%%DOCSDIR%%/html/api/sparse3d_8h-source.html X%%DOCSDIR%%/html/api/sphere_8h-source.html X%%DOCSDIR%%/html/api/spiral_8h-source.html X%%DOCSDIR%%/html/api/spline_8h-source.html X%%DOCSDIR%%/html/api/spline_8h.html X%%DOCSDIR%%/html/api/sprbuild_8h-source.html X%%DOCSDIR%%/html/api/sprite2d_8h-source.html X%%DOCSDIR%%/html/api/sprite3d_8h-source.html X%%DOCSDIR%%/html/api/spritecal3d_8h-source.html X%%DOCSDIR%%/html/api/stars_8h-source.html X%%DOCSDIR%%/html/api/stdrep_8h-source.html X%%DOCSDIR%%/html/api/strhash_8h-source.html X%%DOCSDIR%%/html/api/strhash_8h.html X%%DOCSDIR%%/html/api/string_8h-source.html X%%DOCSDIR%%/html/api/string_8h.html X%%DOCSDIR%%/html/api/stringreader_8h-source.html X%%DOCSDIR%%/html/api/structADDRESS64-members.html X%%DOCSDIR%%/html/api/structADDRESS64.html X%%DOCSDIR%%/html/api/structCrystalSpace_1_1ConditionAdd-members.html X%%DOCSDIR%%/html/api/structCrystalSpace_1_1ConditionAdd.html X%%DOCSDIR%%/html/api/structCrystalSpace_1_1DocumentHelper_1_1NodeAttributeCompare-members.html X%%DOCSDIR%%/html/api/structCrystalSpace_1_1DocumentHelper_1_1NodeAttributeCompare.html X%%DOCSDIR%%/html/api/structCrystalSpace_1_1DocumentHelper_1_1NodeAttributeRegexpTest.html X%%DOCSDIR%%/html/api/structCrystalSpace_1_1DocumentHelper_1_1NodeAttributeRegexpTest-members.html X%%DOCSDIR%%/html/api/structCrystalSpace_1_1DocumentHelper_1_1NodeAttributeValueTest-members.html X%%DOCSDIR%%/html/api/structCrystalSpace_1_1DocumentHelper_1_1NodeAttributeValueTest.html X%%DOCSDIR%%/html/api/structCrystalSpace_1_1DocumentHelper_1_1NodeNameCompare-members.html X%%DOCSDIR%%/html/api/structCrystalSpace_1_1DocumentHelper_1_1NodeNameCompare.html X%%DOCSDIR%%/html/api/structCrystalSpace_1_1DocumentHelper_1_1NodeValueTest-members.html X%%DOCSDIR%%/html/api/structIMAGEHLP__LINE64.html X%%DOCSDIR%%/html/api/structCrystalSpace_1_1DocumentHelper_1_1NodeValueTest.html X%%DOCSDIR%%/html/api/structIMAGEHLP__LINE64-members.html X%%DOCSDIR%%/html/api/structIMAGEHLP__MODULE64-members.html X%%DOCSDIR%%/html/api/structIMAGEHLP__MODULE64.html X%%DOCSDIR%%/html/api/structIMAGEHLP__STACK__FRAME-members.html X%%DOCSDIR%%/html/api/structIMAGEHLP__STACK__FRAME.html X%%DOCSDIR%%/html/api/structKDHELP64-members.html X%%DOCSDIR%%/html/api/structKDHELP64.html X%%DOCSDIR%%/html/api/structMINIDUMP__CALLBACK__INFORMATION-members.html X%%DOCSDIR%%/html/api/structMINIDUMP__CALLBACK__INFORMATION.html X%%DOCSDIR%%/html/api/structMINIDUMP__DIRECTORY.html X%%DOCSDIR%%/html/api/structMINIDUMP__CALLBACK__INPUT-members.html X%%DOCSDIR%%/html/api/structMINIDUMP__CALLBACK__INPUT.html X%%DOCSDIR%%/html/api/structMINIDUMP__CALLBACK__OUTPUT-members.html X%%DOCSDIR%%/html/api/structMINIDUMP__CALLBACK__OUTPUT.html X%%DOCSDIR%%/html/api/structMINIDUMP__DIRECTORY-members.html X%%DOCSDIR%%/html/api/structMINIDUMP__EXCEPTION__INFORMATION-members.html X%%DOCSDIR%%/html/api/structMINIDUMP__EXCEPTION__INFORMATION.html X%%DOCSDIR%%/html/api/structMINIDUMP__HEADER-members.html X%%DOCSDIR%%/html/api/structMINIDUMP__HEADER.html X%%DOCSDIR%%/html/api/structMINIDUMP__INCLUDE__MODULE__CALLBACK-members.html X%%DOCSDIR%%/html/api/structMINIDUMP__INCLUDE__MODULE__CALLBACK.html X%%DOCSDIR%%/html/api/structMINIDUMP__INCLUDE__THREAD__CALLBACK-members.html X%%DOCSDIR%%/html/api/structMINIDUMP__INCLUDE__THREAD__CALLBACK.html X%%DOCSDIR%%/html/api/structMINIDUMP__LOCATION__DESCRIPTOR-members.html X%%DOCSDIR%%/html/api/structMINIDUMP__LOCATION__DESCRIPTOR.html X%%DOCSDIR%%/html/api/structMINIDUMP__MEMORY__DESCRIPTOR-members.html X%%DOCSDIR%%/html/api/structMINIDUMP__MEMORY__DESCRIPTOR.html X%%DOCSDIR%%/html/api/structMINIDUMP__MEMORY__LIST-members.html X%%DOCSDIR%%/html/api/structMINIDUMP__MEMORY__LIST.html X%%DOCSDIR%%/html/api/structiAws.html X%%DOCSDIR%%/html/api/structMINIDUMP__MODULE__CALLBACK-members.html X%%DOCSDIR%%/html/api/structMINIDUMP__MODULE__CALLBACK.html X%%DOCSDIR%%/html/api/structMINIDUMP__THREAD__CALLBACK-members.html X%%DOCSDIR%%/html/api/structMINIDUMP__THREAD__CALLBACK.html X%%DOCSDIR%%/html/api/structMINIDUMP__THREAD__EX__CALLBACK-members.html X%%DOCSDIR%%/html/api/structMINIDUMP__THREAD__EX__CALLBACK.html X%%DOCSDIR%%/html/api/structMINIDUMP__USER__STREAM-members.html X%%DOCSDIR%%/html/api/structMINIDUMP__USER__STREAM.html X%%DOCSDIR%%/html/api/structMINIDUMP__USER__STREAM__INFORMATION-members.html X%%DOCSDIR%%/html/api/structSTACKFRAME64.html X%%DOCSDIR%%/html/api/structMINIDUMP__USER__STREAM__INFORMATION.html X%%DOCSDIR%%/html/api/structSTACKFRAME64-members.html X%%DOCSDIR%%/html/api/structSYMBOL__INFO-members.html X%%DOCSDIR%%/html/api/structSYMBOL__INFO.html X%%DOCSDIR%%/html/api/structZIP__central__directory__file__header-members.html X%%DOCSDIR%%/html/api/structZIP__central__directory__file__header.html X%%DOCSDIR%%/html/api/structZIP__end__central__dir__record-members.html X%%DOCSDIR%%/html/api/structZIP__end__central__dir__record.html X%%DOCSDIR%%/html/api/structZIP__local__file__header-members.html X%%DOCSDIR%%/html/api/structZIP__local__file__header.html X%%DOCSDIR%%/html/api/struct__csKeyModifiers-members.html X%%DOCSDIR%%/html/api/struct__csKeyModifiers.html X%%DOCSDIR%%/html/api/structaws_1_1autom_1_1iObject-members.html X%%DOCSDIR%%/html/api/structaws_1_1autom_1_1iObject.html X%%DOCSDIR%%/html/api/structcsAlphaMode-members.html X%%DOCSDIR%%/html/api/structcsAlphaMode.html X%%DOCSDIR%%/html/api/structcsAnsiParser_1_1CommandParams-members.html X%%DOCSDIR%%/html/api/structcsAnsiParser_1_1CommandParams.html X%%DOCSDIR%%/html/api/structcsAudioStreamDescription-members.html X%%DOCSDIR%%/html/api/structcsAudioStreamDescription.html X%%DOCSDIR%%/html/api/structcsAudioStreamDescription.png X%%DOCSDIR%%/html/api/structcsBitmapMetrics-members.html X%%DOCSDIR%%/html/api/structcsBitmapMetrics.html X%%DOCSDIR%%/html/api/structcsBitmaskToString_1_1MaskNames-members.html X%%DOCSDIR%%/html/api/structcsBitmaskToString_1_1MaskNames.html X%%DOCSDIR%%/html/api/structcsBlockAllocator_1_1BlockKey-members.html X%%DOCSDIR%%/html/api/structcsBlockAllocator_1_1BlockKey.html X%%DOCSDIR%%/html/api/structcsBlockAllocator_1_1FreeNode-members.html X%%DOCSDIR%%/html/api/structcsBlockAllocator_1_1FreeNode.html X%%DOCSDIR%%/html/api/structcsBox3_1_1bEdge-members.html X%%DOCSDIR%%/html/api/structcsBox3_1_1bEdge.html X%%DOCSDIR%%/html/api/structcsClipInfo.html X%%DOCSDIR%%/html/api/structcsCLQAttenuation-members.html X%%DOCSDIR%%/html/api/structcsCLQAttenuation.html X%%DOCSDIR%%/html/api/structcsClipInfo-members.html X%%DOCSDIR%%/html/api/structcsCodecDescription-members.html X%%DOCSDIR%%/html/api/structcsCodecDescription.html X%%DOCSDIR%%/html/api/structcsCollisionPair-members.html X%%DOCSDIR%%/html/api/structcsCollisionPair.html X%%DOCSDIR%%/html/api/structcsCommandEventData-members.html X%%DOCSDIR%%/html/api/structcsCommandEventData.html X%%DOCSDIR%%/html/api/structcsCommandLineOption-members.html X%%DOCSDIR%%/html/api/structcsCommandLineOption.html X%%DOCSDIR%%/html/api/structcsCompressVertex-members.html X%%DOCSDIR%%/html/api/structcsCompressVertex.html X%%DOCSDIR%%/html/api/structcsCoreRenderMesh-members.html X%%DOCSDIR%%/html/api/structcsCoreRenderMesh.html X%%DOCSDIR%%/html/api/structcsCoreRenderMesh.png X%%DOCSDIR%%/html/api/structcsCtoW-members.html X%%DOCSDIR%%/html/api/structcsCtoW.html X%%DOCSDIR%%/html/api/structcsEndianSwap4-members.html X%%DOCSDIR%%/html/api/structcsEndianSwap4.html X%%DOCSDIR%%/html/api/structcsEndianSwap8-members.html X%%DOCSDIR%%/html/api/structcsEndianSwap8.html X%%DOCSDIR%%/html/api/structcsEventCord_1_1PluginData-members.html X%%DOCSDIR%%/html/api/structcsEventCord_1_1PluginData.html X%%DOCSDIR%%/html/api/structcsFileTime.html X%%DOCSDIR%%/html/api/structcsFileTime-members.html X%%DOCSDIR%%/html/api/structcsFog-members.html X%%DOCSDIR%%/html/api/structcsFog.html X%%DOCSDIR%%/html/api/structcsFoliageVertex-members.html X%%DOCSDIR%%/html/api/structcsFoliageVertex.html X%%DOCSDIR%%/html/api/structcsFontCache_1_1FontDeleteNotify-members.html X%%DOCSDIR%%/html/api/structcsFontCache_1_1FontDeleteNotify.html X%%DOCSDIR%%/html/api/structcsFontCache_1_1FontDeleteNotify.png X%%DOCSDIR%%/html/api/structcsFontCache_1_1GlyphCacheData-members.html X%%DOCSDIR%%/html/api/structcsFontCache_1_1GlyphCacheData.html X%%DOCSDIR%%/html/api/structcsFontCache_1_1GlyphCacheData.png X%%DOCSDIR%%/html/api/structcsFontCache_1_1KnownFont-members.html X%%DOCSDIR%%/html/api/structcsFontCache_1_1KnownFont.html X%%DOCSDIR%%/html/api/structcsFontCache_1_1LRUEntry-members.html X%%DOCSDIR%%/html/api/structcsFontCache_1_1LRUEntry.html X%%DOCSDIR%%/html/api/structcsFontCache_1_1PlaneGlyphs-members.html X%%DOCSDIR%%/html/api/structcsFontCache_1_1PlaneGlyphs.html X%%DOCSDIR%%/html/api/structcsGLExtensionFlags-members.html X%%DOCSDIR%%/html/api/structcsGLExtensionFlags.html X%%DOCSDIR%%/html/api/structcsGLExtensionFlags.png X%%DOCSDIR%%/html/api/structcsGLExtensionFunctions-members.html X%%DOCSDIR%%/html/api/structcsGlyphMetrics.html X%%DOCSDIR%%/html/api/structcsGLExtensionFunctions.html X%%DOCSDIR%%/html/api/structcsGLExtensionFunctions.png X%%DOCSDIR%%/html/api/structcsGLExtensionManager-members.html X%%DOCSDIR%%/html/api/structcsGLExtensionManager.html X%%DOCSDIR%%/html/api/structcsGLExtensionManager.png X%%DOCSDIR%%/html/api/structcsGlyphMetrics-members.html X%%DOCSDIR%%/html/api/structcsGradientShade-members.html X%%DOCSDIR%%/html/api/structcsGradientShade.html X%%DOCSDIR%%/html/api/structcsGraphics2D_1_1EventHandler-members.html X%%DOCSDIR%%/html/api/structcsGraphics2D_1_1EventHandler.html X%%DOCSDIR%%/html/api/structcsGraphics3DCaps-members.html X%%DOCSDIR%%/html/api/structiAws.png X%%DOCSDIR%%/html/api/structcsGraphics3DCaps.html X%%DOCSDIR%%/html/api/structcsHash_1_1Element-members.html X%%DOCSDIR%%/html/api/structcsHash_1_1Element.html X%%DOCSDIR%%/html/api/structcsHitBeamResult-members.html X%%DOCSDIR%%/html/api/structcsHitBeamResult.html X%%DOCSDIR%%/html/api/structcsIdentStrings_1_1csIdentString-members.html X%%DOCSDIR%%/html/api/structcsIdentStrings_1_1csIdentString.html X%%DOCSDIR%%/html/api/structcsImageArea-members.html X%%DOCSDIR%%/html/api/structcsImageArea.html X%%DOCSDIR%%/html/api/structcsImageIOFileFormatDescription-members.html X%%DOCSDIR%%/html/api/structcsImageIOFileFormatDescription.html X%%DOCSDIR%%/html/api/structcsImageVector-members.html X%%DOCSDIR%%/html/api/structcsImageVector.html X%%DOCSDIR%%/html/api/structcsImageVector.png X%%DOCSDIR%%/html/api/structcsInputBinder_1_1eiEventHandler-members.html X%%DOCSDIR%%/html/api/structcsInputBinder_1_1eiEventHandler.html X%%DOCSDIR%%/html/api/structcsInputBinder_1_1eiEventHandler.png X%%DOCSDIR%%/html/api/structcsInterleavedSubBufferOptions-members.html X%%DOCSDIR%%/html/api/structcsInterleavedSubBufferOptions.html X%%DOCSDIR%%/html/api/structcsIntersectingTriangle-members.html X%%DOCSDIR%%/html/api/structcsIntersectingTriangle.html X%%DOCSDIR%%/html/api/structcsWtoC.html X%%DOCSDIR%%/html/api/structcsInverseAttenuation-members.html X%%DOCSDIR%%/html/api/structcsInverseAttenuation.html X%%DOCSDIR%%/html/api/structcsJoystickDriver_1_1eiEventHandler-members.html X%%DOCSDIR%%/html/api/structcsJoystickDriver_1_1eiEventHandler.html X%%DOCSDIR%%/html/api/structcsJoystickDriver_1_1eiEventHandler.png X%%DOCSDIR%%/html/api/structcsJoystickEventData-members.html X%%DOCSDIR%%/html/api/structcsJoystickEventData.html X%%DOCSDIR%%/html/api/structcsKeyEventData-members.html X%%DOCSDIR%%/html/api/structcsKeyEventData.html X%%DOCSDIR%%/html/api/structcsKeyboardDriver_1_1eiEventHandler-members.html X%%DOCSDIR%%/html/api/structcsKeyboardDriver_1_1eiEventHandler.html X%%DOCSDIR%%/html/api/structcsKeyboardDriver_1_1eiEventHandler.png X%%DOCSDIR%%/html/api/structcsLightProperties-members.html X%%DOCSDIR%%/html/api/structcsLightProperties.html X%%DOCSDIR%%/html/api/structcsLineOperation-members.html X%%DOCSDIR%%/html/api/structcsLineOperation.html X%%DOCSDIR%%/html/api/structcsLinearAttenuation-members.html X%%DOCSDIR%%/html/api/structcsLinearAttenuation.html X%%DOCSDIR%%/html/api/structcsList_1_1csListElement-members.html X%%DOCSDIR%%/html/api/structcsList_1_1csListElement.html X%%DOCSDIR%%/html/api/structcsMD5_1_1Digest-members.html X%%DOCSDIR%%/html/api/structcsMD5_1_1Digest.html X%%DOCSDIR%%/html/api/structcsMD5_1_1md5__state__t-members.html X%%DOCSDIR%%/html/api/structcsMD5_1_1md5__state__t.html X%%DOCSDIR%%/html/api/structcsMeshObject_1_1eiObjectModel-members.html X%%DOCSDIR%%/html/api/structcsMeshObject_1_1eiObjectModel.html X%%DOCSDIR%%/html/api/structcsMeshObject_1_1eiObjectModel.png X%%DOCSDIR%%/html/api/structcsMeshType_1_1eiComponent-members.html X%%DOCSDIR%%/html/api/structcsMeshType_1_1eiComponent.html X%%DOCSDIR%%/html/api/structcsMeshType_1_1eiComponent.png X%%DOCSDIR%%/html/api/structcsMeshedPolygon-members.html X%%DOCSDIR%%/html/api/structdirent.html X%%DOCSDIR%%/html/api/structcsMeshedPolygon.html X%%DOCSDIR%%/html/api/structcsModelConverterFormat-members.html X%%DOCSDIR%%/html/api/structcsModelConverterFormat.html X%%DOCSDIR%%/html/api/structcsModelDataTools-members.html X%%DOCSDIR%%/html/api/structcsModelDataTools.html X%%DOCSDIR%%/html/api/structcsModelDataVertexMap-members.html X%%DOCSDIR%%/html/api/structcsModelDataVertexMap.html X%%DOCSDIR%%/html/api/structcsMouseDriver_1_1eiEventHandler-members.html X%%DOCSDIR%%/html/api/structcsMouseDriver_1_1eiEventHandler.html X%%DOCSDIR%%/html/api/structcsMouseDriver_1_1eiEventHandler.png X%%DOCSDIR%%/html/api/structcsMouseEventData-members.html X%%DOCSDIR%%/html/api/structcsMouseEventData.html X%%DOCSDIR%%/html/api/structcsNewParticleSystem_1_1PerFrameData-members.html X%%DOCSDIR%%/html/api/structcsNewParticleSystem_1_1PerFrameData.html X%%DOCSDIR%%/html/api/structcsNewParticleSystem_1_1eiParticleState-members.html X%%DOCSDIR%%/html/api/structcsNewParticleSystem_1_1eiParticleState.html X%%DOCSDIR%%/html/api/structcsNewParticleSystem_1_1eiParticleState.png X%%DOCSDIR%%/html/api/structcsNoAttenuation-members.html X%%DOCSDIR%%/html/api/structcsNoAttenuation.html X%%DOCSDIR%%/html/api/structcsOptionDescription-members.html X%%DOCSDIR%%/html/api/structcsOptionDescription.html X%%DOCSDIR%%/html/api/structcsPackRGB-members.html X%%DOCSDIR%%/html/api/structcsPackRGB.html X%%DOCSDIR%%/html/api/structcsPackRGBA-members.html X%%DOCSDIR%%/html/api/structcsPackRGBA.html X%%DOCSDIR%%/html/api/structcsParticleSystem_1_1PerFrameData-members.html X%%DOCSDIR%%/html/api/structcsParticleSystem_1_1PerFrameData.html X%%DOCSDIR%%/html/api/structcsParticlesData-members.html X%%DOCSDIR%%/html/api/structcsParticlesData.html X%%DOCSDIR%%/html/api/structcsPathsList_1_1Entry-members.html X%%DOCSDIR%%/html/api/structcsPathsList_1_1Entry.html X%%DOCSDIR%%/html/api/structcsPixelCoord-members.html X%%DOCSDIR%%/html/api/structcsPixelCoord.html X%%DOCSDIR%%/html/api/structcsPixelFormat-members.html X%%DOCSDIR%%/html/api/structcsPixelFormat.html X%%DOCSDIR%%/html/api/structcsPlatformMemoryMappingDummy_1_1PlatformMemoryMapping-members.html X%%DOCSDIR%%/html/api/structcsPlatformMemoryMappingDummy_1_1PlatformMemoryMapping.html X%%DOCSDIR%%/html/api/structcsPluginLoadRec-members.html X%%DOCSDIR%%/html/api/structcsPlatformMemoryMappingPosix_1_1PlatformMemoryMapping-members.html X%%DOCSDIR%%/html/api/structcsPlatformMemoryMappingPosix_1_1PlatformMemoryMapping.html X%%DOCSDIR%%/html/api/structcsPluginLoadRec.html X%%DOCSDIR%%/html/api/structcsRGBcolor.html X%%DOCSDIR%%/html/api/structcsPlatformMemoryMappingWin32_1_1PlatformMemoryMapping-members.html X%%DOCSDIR%%/html/api/structcsPlatformMemoryMappingWin32_1_1PlatformMemoryMapping.html X%%DOCSDIR%%/html/api/structcsPolyTextureMapping-members.html X%%DOCSDIR%%/html/api/structcsPolyTextureMapping.html X%%DOCSDIR%%/html/api/structcsPolygonMeshEdge-members.html X%%DOCSDIR%%/html/api/structcsPolygonMeshEdge.html X%%DOCSDIR%%/html/api/structcsPolygonRange-members.html X%%DOCSDIR%%/html/api/structcsPolygonRange.html X%%DOCSDIR%%/html/api/structcsPolygonRenderData-members.html X%%DOCSDIR%%/html/api/structcsPolygonRenderData.html X%%DOCSDIR%%/html/api/structcsProcTexture_1_1eiProcTexture-members.html X%%DOCSDIR%%/html/api/structcsProcTexture_1_1eiProcTexture.html X%%DOCSDIR%%/html/api/structcsProcTexture_1_1eiProcTexture.png X%%DOCSDIR%%/html/api/structcsProcTexture_1_1eiTextureWrapper-members.html X%%DOCSDIR%%/html/api/structcsProcTexture_1_1eiTextureWrapper.html X%%DOCSDIR%%/html/api/structcsProcTexture_1_1eiTextureWrapper.png X%%DOCSDIR%%/html/api/structcsRGBcolor-members.html X%%DOCSDIR%%/html/api/structcsRGBpixel-members.html X%%DOCSDIR%%/html/api/structcsRGBpixel.html X%%DOCSDIR%%/html/api/structcsRealisticAttenuation-members.html X%%DOCSDIR%%/html/api/structcsRealisticAttenuation.html X%%DOCSDIR%%/html/api/structcsRedBlackTree_1_1Node-members.html X%%DOCSDIR%%/html/api/structcsRedBlackTree_1_1Node.html X%%DOCSDIR%%/html/api/structcsRegExpMatch-members.html X%%DOCSDIR%%/html/api/structcsRegExpMatch.html X%%DOCSDIR%%/html/api/structcsRenderMesh-members.html X%%DOCSDIR%%/html/api/structcsRenderMesh.html X%%DOCSDIR%%/html/api/structcsRenderMesh.png X%%DOCSDIR%%/html/api/structcsRenderMeshModes-members.html X%%DOCSDIR%%/html/api/structcsRenderMeshModes.html X%%DOCSDIR%%/html/api/structcsRenderMeshModes.png X%%DOCSDIR%%/html/api/structcsScreenBoxResult-members.html X%%DOCSDIR%%/html/api/structcsScreenBoxResult.html X%%DOCSDIR%%/html/api/structcsSequenceOp-members.html X%%DOCSDIR%%/html/api/structcsSequenceOp.html X%%DOCSDIR%%/html/api/structcsShaderExpression_1_1oper-members.html X%%DOCSDIR%%/html/api/structcsShaderExpression_1_1oper.html X%%DOCSDIR%%/html/api/structcsShaderExpression_1_1oper__arg-members.html X%%DOCSDIR%%/html/api/structcsShaderExpression_1_1oper__arg.html X%%DOCSDIR%%/html/api/structcsShaderMetadata-members.html X%%DOCSDIR%%/html/api/structcsShaderMetadata.html X%%DOCSDIR%%/html/api/structcsShaderProgram_1_1ProgramParam-members.html X%%DOCSDIR%%/html/api/structcsShaderVarMapping.html X%%DOCSDIR%%/html/api/structcsShaderProgram_1_1ProgramParam.html X%%DOCSDIR%%/html/api/structcsShaderProgram_1_1VariableMapEntry-members.html X%%DOCSDIR%%/html/api/structcsShaderProgram_1_1VariableMapEntry.html X%%DOCSDIR%%/html/api/structcsShaderProgram_1_1VariableMapEntry.png X%%DOCSDIR%%/html/api/structcsShaderVarMapping-members.html X%%DOCSDIR%%/html/api/structcsShaderVarMapping.png X%%DOCSDIR%%/html/api/structcsSimpleRenderMesh-members.html X%%DOCSDIR%%/html/api/structcsSimpleRenderMesh.html X%%DOCSDIR%%/html/api/structcsSoftFontCache_1_1SoftGlyphCacheData-members.html X%%DOCSDIR%%/html/api/structcsSoundFormat.html X%%DOCSDIR%%/html/api/structcsSoftFontCache_1_1SoftGlyphCacheData.html X%%DOCSDIR%%/html/api/structcsSoftFontCache_1_1SoftGlyphCacheData.png X%%DOCSDIR%%/html/api/structcsSoundFormat-members.html X%%DOCSDIR%%/html/api/structcsSoundWrapper_1_1SoundWrapper-members.html X%%DOCSDIR%%/html/api/structcsSoundWrapper_1_1SoundWrapper.html X%%DOCSDIR%%/html/api/structcsSoundWrapper_1_1SoundWrapper.png X%%DOCSDIR%%/html/api/structcsSprite2DVertex-members.html X%%DOCSDIR%%/html/api/structcsSprite2DVertex.html X%%DOCSDIR%%/html/api/structcsSpriteCal3DActiveAnim-members.html X%%DOCSDIR%%/html/api/structcsSpriteCal3DActiveAnim.html X%%DOCSDIR%%/html/api/structcsStreamDescription-members.html X%%DOCSDIR%%/html/api/structcsStreamDescription.html X%%DOCSDIR%%/html/api/structcsStreamDescription.png X%%DOCSDIR%%/html/api/structcsSubRectangles_1_1SubRect_1_1AllocInfo-members.html X%%DOCSDIR%%/html/api/structcsSubRectangles_1_1SubRect_1_1AllocInfo.html X%%DOCSDIR%%/html/api/structcsTestRectData-members.html X%%DOCSDIR%%/html/api/structcsTestRectData.html X%%DOCSDIR%%/html/api/structcsTraceBeamResult-members.html X%%DOCSDIR%%/html/api/structcsTraceBeamResult.html X%%DOCSDIR%%/html/api/structcsTriangle-members.html X%%DOCSDIR%%/html/api/structcsTriangle.html X%%DOCSDIR%%/html/api/structcsTriangle.png X%%DOCSDIR%%/html/api/structcsTriangleMinMax-members.html X%%DOCSDIR%%/html/api/structcsTriangleMinMax.html X%%DOCSDIR%%/html/api/structcsTriangleMinMax.png X%%DOCSDIR%%/html/api/structcsVariant-members.html X%%DOCSDIR%%/html/api/structcsVariant.html X%%DOCSDIR%%/html/api/structcsVertexStatus-members.html X%%DOCSDIR%%/html/api/structcsVertexStatus.html X%%DOCSDIR%%/html/api/structcsVideoStreamDescription-members.html X%%DOCSDIR%%/html/api/structcsVideoStreamDescription.html X%%DOCSDIR%%/html/api/structcsVideoStreamDescription.png X%%DOCSDIR%%/html/api/structcsWtoC-members.html X%%DOCSDIR%%/html/api/structcswinCtoA.html X%%DOCSDIR%%/html/api/structcswinCtoA-members.html X%%DOCSDIR%%/html/api/structcswinWtoA-members.html X%%DOCSDIR%%/html/api/structcswinWtoA.html X%%DOCSDIR%%/html/api/structdirent-members.html X%%DOCSDIR%%/html/api/structgetopt__option-members.html X%%DOCSDIR%%/html/api/structgetopt__option.html X%%DOCSDIR%%/html/api/structiAnimTimeUpdateHandler-members.html X%%DOCSDIR%%/html/api/structiAnimTimeUpdateHandler.html X%%DOCSDIR%%/html/api/structiAnimTimeUpdateHandler.png X%%DOCSDIR%%/html/api/structiAnimatedImage-members.html X%%DOCSDIR%%/html/api/structiAnimatedImage.html X%%DOCSDIR%%/html/api/structiAnimatedImage.png X%%DOCSDIR%%/html/api/structiAwsKey.html X%%DOCSDIR%%/html/api/structiAudioStream-members.html X%%DOCSDIR%%/html/api/structiAudioStream.html X%%DOCSDIR%%/html/api/structiAudioStream.png X%%DOCSDIR%%/html/api/structiAws-members.html X%%DOCSDIR%%/html/api/structiAwsCanvas-members.html X%%DOCSDIR%%/html/api/structiAwsCanvas.html X%%DOCSDIR%%/html/api/structiAwsCanvas.png X%%DOCSDIR%%/html/api/structiAwsComponent-members.html X%%DOCSDIR%%/html/api/structiAwsComponent.html X%%DOCSDIR%%/html/api/structiAwsComponent.png X%%DOCSDIR%%/html/api/structiAwsComponentFactory-members.html X%%DOCSDIR%%/html/api/structiAwsComponentFactory.html X%%DOCSDIR%%/html/api/structiAwsComponentFactory.png X%%DOCSDIR%%/html/api/structiAwsDockSite.html X%%DOCSDIR%%/html/api/structiAwsComponentNode-members.html X%%DOCSDIR%%/html/api/structiAwsComponentNode.html X%%DOCSDIR%%/html/api/structiAwsComponentNode.png X%%DOCSDIR%%/html/api/structiAwsConnectionKey-members.html X%%DOCSDIR%%/html/api/structiAwsConnectionKey.html X%%DOCSDIR%%/html/api/structiAwsConnectionKey.png X%%DOCSDIR%%/html/api/structiAwsConnectionNodeFactory-members.html X%%DOCSDIR%%/html/api/structiAwsConnectionNodeFactory.html X%%DOCSDIR%%/html/api/structiAwsConnectionNodeFactory.png X%%DOCSDIR%%/html/api/structiAwsDockSite-members.html X%%DOCSDIR%%/html/api/structiAwsDockSite.png X%%DOCSDIR%%/html/api/structiAwsDockableWindow.html X%%DOCSDIR%%/html/api/structiAwsDockableWindow-members.html X%%DOCSDIR%%/html/api/structiAwsDockableWindow.png X%%DOCSDIR%%/html/api/structiAwsFloatKey-members.html X%%DOCSDIR%%/html/api/structiAwsFloatKey.html X%%DOCSDIR%%/html/api/structiAwsFloatKey.png X%%DOCSDIR%%/html/api/structiAwsIntKey-members.html X%%DOCSDIR%%/html/api/structiAwsIntKey.html X%%DOCSDIR%%/html/api/structiAwsIntKey.png X%%DOCSDIR%%/html/api/structiAwsKey-members.html X%%DOCSDIR%%/html/api/structiAwsKey.png X%%DOCSDIR%%/html/api/structiAwsKeyContainer-members.html X%%DOCSDIR%%/html/api/structiAwsKeyContainer.html X%%DOCSDIR%%/html/api/structiAwsKeyContainer.png X%%DOCSDIR%%/html/api/structiAwsKeyFactory.html X%%DOCSDIR%%/html/api/structiAwsKeyFactory-members.html X%%DOCSDIR%%/html/api/structiAwsKeyFactory.png X%%DOCSDIR%%/html/api/structiAwsLayoutManager-members.html X%%DOCSDIR%%/html/api/structiAwsLayoutManager.html X%%DOCSDIR%%/html/api/structiAwsLayoutManager.png X%%DOCSDIR%%/html/api/structiAwsParmList-members.html X%%DOCSDIR%%/html/api/structiAwsParmList.html X%%DOCSDIR%%/html/api/structiAwsParmList.png X%%DOCSDIR%%/html/api/structiAwsPointKey-members.html X%%DOCSDIR%%/html/api/structiAwsPointKey.html X%%DOCSDIR%%/html/api/structiAwsPointKey.png X%%DOCSDIR%%/html/api/structiAwsPrefManager-members.html X%%DOCSDIR%%/html/api/structiAwsPrefManager.html X%%DOCSDIR%%/html/api/structiAwsPrefManager.png X%%DOCSDIR%%/html/api/structiAwsRGBKey-members.html X%%DOCSDIR%%/html/api/structiAwsRGBKey.html X%%DOCSDIR%%/html/api/structiAwsRGBKey.png X%%DOCSDIR%%/html/api/structiAwsRGBKey_1_1RGB-members.html X%%DOCSDIR%%/html/api/structiAwsRGBKey_1_1RGB.html X%%DOCSDIR%%/html/api/structiAwsRectKey-members.html X%%DOCSDIR%%/html/api/structiAwsRectKey.html X%%DOCSDIR%%/html/api/structiAwsRectKey.png X%%DOCSDIR%%/html/api/structiAwsSink-members.html X%%DOCSDIR%%/html/api/structiAwsSink.html X%%DOCSDIR%%/html/api/structiAwsSink.png X%%DOCSDIR%%/html/api/structiAwsSinkManager-members.html X%%DOCSDIR%%/html/api/structiAwsSinkManager.html X%%DOCSDIR%%/html/api/structiAwsSinkManager.png X%%DOCSDIR%%/html/api/structiAwsSlot-members.html X%%DOCSDIR%%/html/api/structiAwsSlot.html X%%DOCSDIR%%/html/api/structiAwsSlot.png X%%DOCSDIR%%/html/api/structiAwsSource-members.html X%%DOCSDIR%%/html/api/structiAwsSource.html X%%DOCSDIR%%/html/api/structiAwsSource.png X%%DOCSDIR%%/html/api/structiAwsStringKey-members.html X%%DOCSDIR%%/html/api/structiAwsStringKey.html X%%DOCSDIR%%/html/api/structiAwsStringKey.png X%%DOCSDIR%%/html/api/structiAwsWindow-members.html X%%DOCSDIR%%/html/api/structiAwsWindow.html X%%DOCSDIR%%/html/api/structiAwsWindow.png X%%DOCSDIR%%/html/api/structiBallState-members.html X%%DOCSDIR%%/html/api/structiBase.png X%%DOCSDIR%%/html/api/structiBallState.html X%%DOCSDIR%%/html/api/structiBallState.png X%%DOCSDIR%%/html/api/structiBase-members.html X%%DOCSDIR%%/html/api/structiBase.html X%%DOCSDIR%%/html/api/structiBaseHalo-members.html X%%DOCSDIR%%/html/api/structiBaseHalo.html X%%DOCSDIR%%/html/api/structiBaseHalo.png X%%DOCSDIR%%/html/api/structiBezierFactoryState-members.html X%%DOCSDIR%%/html/api/structiBezierFactoryState.html X%%DOCSDIR%%/html/api/structiBezierFactoryState.png X%%DOCSDIR%%/html/api/structiBezierState-members.html X%%DOCSDIR%%/html/api/structiBezierState.html X%%DOCSDIR%%/html/api/structiBezierState.png X%%DOCSDIR%%/html/api/structiBinaryLoaderPlugin-members.html X%%DOCSDIR%%/html/api/structiBinaryLoaderPlugin.html X%%DOCSDIR%%/html/api/structiBinaryLoaderPlugin.png X%%DOCSDIR%%/html/api/structiBinarySaverPlugin-members.html X%%DOCSDIR%%/html/api/structiBinarySaverPlugin.html X%%DOCSDIR%%/html/api/structiBinarySaverPlugin.png X%%DOCSDIR%%/html/api/structiBodyGroup-members.html X%%DOCSDIR%%/html/api/structiBodyGroup.html X%%DOCSDIR%%/html/api/structiBodyGroup.png X%%DOCSDIR%%/html/api/structiBugPlug-members.html X%%DOCSDIR%%/html/api/structiBugPlug.html X%%DOCSDIR%%/html/api/structiBugPlug.png X%%DOCSDIR%%/html/api/structiBugPlugRenderObject-members.html X%%DOCSDIR%%/html/api/structiBugPlugRenderObject.html X%%DOCSDIR%%/html/api/structiBugPlugRenderObject.png X%%DOCSDIR%%/html/api/structiCacheManager-members.html X%%DOCSDIR%%/html/api/structiCacheManager.html X%%DOCSDIR%%/html/api/structiCacheManager.png X%%DOCSDIR%%/html/api/structiCamera-members.html X%%DOCSDIR%%/html/api/structiCamera.html X%%DOCSDIR%%/html/api/structiCamera.png X%%DOCSDIR%%/html/api/structiCameraPosition-members.html X%%DOCSDIR%%/html/api/structiCameraPosition.html X%%DOCSDIR%%/html/api/structiCameraPosition.png X%%DOCSDIR%%/html/api/structiCameraPositionList-members.html X%%DOCSDIR%%/html/api/structiCameraPositionList.html X%%DOCSDIR%%/html/api/structiCameraPositionList.png X%%DOCSDIR%%/html/api/structiFile.png X%%DOCSDIR%%/html/api/structiCameraSectorListener-members.html X%%DOCSDIR%%/html/api/structiCameraSectorListener.html X%%DOCSDIR%%/html/api/structiCameraSectorListener.png X%%DOCSDIR%%/html/api/structiClipper2D-members.html X%%DOCSDIR%%/html/api/structiClipper2D.html X%%DOCSDIR%%/html/api/structiClipper2D.png X%%DOCSDIR%%/html/api/structiCollection-members.html X%%DOCSDIR%%/html/api/structiCollection.html X%%DOCSDIR%%/html/api/structiCollection.png X%%DOCSDIR%%/html/api/structiCollectionList-members.html X%%DOCSDIR%%/html/api/structiCollectionList.html X%%DOCSDIR%%/html/api/structiCollectionList.png X%%DOCSDIR%%/html/api/structiCollideSystem-members.html X%%DOCSDIR%%/html/api/structiCollideSystem.html X%%DOCSDIR%%/html/api/structiCollideSystem.png X%%DOCSDIR%%/html/api/structiCollider-members.html X%%DOCSDIR%%/html/api/structiCollider.html X%%DOCSDIR%%/html/api/structiCollider.png X%%DOCSDIR%%/html/api/structiCommandLineParser-members.html X%%DOCSDIR%%/html/api/structiCommandLineParser.html X%%DOCSDIR%%/html/api/structiCommandLineParser.png X%%DOCSDIR%%/html/api/structiComponent-members.html X%%DOCSDIR%%/html/api/structiComponent.html X%%DOCSDIR%%/html/api/structiComponent.png X%%DOCSDIR%%/html/api/structiConfigFile-members.html X%%DOCSDIR%%/html/api/structiConfigFile.html X%%DOCSDIR%%/html/api/structiConfigFile.png X%%DOCSDIR%%/html/api/structiConfigIterator-members.html X%%DOCSDIR%%/html/api/structiConfigIterator.html X%%DOCSDIR%%/html/api/structiConfigIterator.png X%%DOCSDIR%%/html/api/structiConfigManager-members.html X%%DOCSDIR%%/html/api/structiConfigManager.html X%%DOCSDIR%%/html/api/structiConfigManager.png X%%DOCSDIR%%/html/api/structiConsoleExecCallback-members.html X%%DOCSDIR%%/html/api/structiConsoleExecCallback.html X%%DOCSDIR%%/html/api/structiConsoleExecCallback.png X%%DOCSDIR%%/html/api/structiConsoleInput-members.html X%%DOCSDIR%%/html/api/structiConsoleInput.html X%%DOCSDIR%%/html/api/structiConsoleInput.png X%%DOCSDIR%%/html/api/structiConsoleOutput.html X%%DOCSDIR%%/html/api/structiConsoleOutput-members.html X%%DOCSDIR%%/html/api/structiConsoleOutput.png X%%DOCSDIR%%/html/api/structiConsoleWatcher-members.html X%%DOCSDIR%%/html/api/structiConsoleWatcher.html X%%DOCSDIR%%/html/api/structiConsoleWatcher.png X%%DOCSDIR%%/html/api/structiCrossBuilder-members.html X%%DOCSDIR%%/html/api/structiCrossBuilder.html X%%DOCSDIR%%/html/api/structiCrossBuilder.png X%%DOCSDIR%%/html/api/structiCrossHalo-members.html X%%DOCSDIR%%/html/api/structiCrossHalo.html X%%DOCSDIR%%/html/api/structiCrossHalo.png X%%DOCSDIR%%/html/api/structiCursor-members.html X%%DOCSDIR%%/html/api/structiCursor.html X%%DOCSDIR%%/html/api/structiCursor.png X%%DOCSDIR%%/html/api/structiCurve-members.html X%%DOCSDIR%%/html/api/structiCurve.html X%%DOCSDIR%%/html/api/structiCurve.png X%%DOCSDIR%%/html/api/structiDataBuffer-members.html X%%DOCSDIR%%/html/api/structiDataBuffer.html X%%DOCSDIR%%/html/api/structiDataBuffer.png X%%DOCSDIR%%/html/api/structiDebugHelper-members.html X%%DOCSDIR%%/html/api/structiDebugHelper.html X%%DOCSDIR%%/html/api/structiDebugHelper.png X%%DOCSDIR%%/html/api/structiDocument-members.html X%%DOCSDIR%%/html/api/structiDocument.html X%%DOCSDIR%%/html/api/structiDocument.png X%%DOCSDIR%%/html/api/structiDocumentAttribute-members.html X%%DOCSDIR%%/html/api/structiDocumentAttribute.html X%%DOCSDIR%%/html/api/structiFont.png X%%DOCSDIR%%/html/api/structiDocumentAttribute.png X%%DOCSDIR%%/html/api/structiDocumentAttributeIterator-members.html X%%DOCSDIR%%/html/api/structiDocumentAttributeIterator.html X%%DOCSDIR%%/html/api/structiDocumentAttributeIterator.png X%%DOCSDIR%%/html/api/structiDocumentNode-members.html X%%DOCSDIR%%/html/api/structiDocumentNode.html X%%DOCSDIR%%/html/api/structiDocumentNode.png X%%DOCSDIR%%/html/api/structiDocumentNodeIterator-members.html X%%DOCSDIR%%/html/api/structiDocumentNodeIterator.html X%%DOCSDIR%%/html/api/structiDocumentNodeIterator.png X%%DOCSDIR%%/html/api/structiDocumentSystem-members.html X%%DOCSDIR%%/html/api/structiEvent.png X%%DOCSDIR%%/html/api/structiDocumentSystem.html X%%DOCSDIR%%/html/api/structiDocumentSystem.png X%%DOCSDIR%%/html/api/structiDynamicSystem-members.html X%%DOCSDIR%%/html/api/structiDynamicSystem.html X%%DOCSDIR%%/html/api/structiDynamicSystem.png X%%DOCSDIR%%/html/api/structiDynamics-members.html X%%DOCSDIR%%/html/api/structiDynamics.html X%%DOCSDIR%%/html/api/structiDynamics.png X%%DOCSDIR%%/html/api/structiDynamicsCollisionCallback-members.html X%%DOCSDIR%%/html/api/structiDynamicsCollisionCallback.html X%%DOCSDIR%%/html/api/structiDynamicsCollisionCallback.png X%%DOCSDIR%%/html/api/structiDynamicsMoveCallback-members.html X%%DOCSDIR%%/html/api/structiDynamicsMoveCallback.html X%%DOCSDIR%%/html/api/structiDynamicsMoveCallback.png X%%DOCSDIR%%/html/api/structiDynamicsSystemCollider-members.html X%%DOCSDIR%%/html/api/structiDynamicsSystemCollider.html X%%DOCSDIR%%/html/api/structiDynamicsSystemCollider.png X%%DOCSDIR%%/html/api/structiEmitBox-members.html X%%DOCSDIR%%/html/api/structiEmitBox.html X%%DOCSDIR%%/html/api/structiEmitBox.png X%%DOCSDIR%%/html/api/structiEmitCone-members.html X%%DOCSDIR%%/html/api/structiEmitCone.html X%%DOCSDIR%%/html/api/structiEmitCone.png X%%DOCSDIR%%/html/api/structiEmitCylinder-members.html X%%DOCSDIR%%/html/api/structiEmitCylinder.html X%%DOCSDIR%%/html/api/structiEmitCylinder.png X%%DOCSDIR%%/html/api/structiEmitCylinderTangent-members.html X%%DOCSDIR%%/html/api/structiEmitCylinderTangent.html X%%DOCSDIR%%/html/api/structiEmitCylinderTangent.png X%%DOCSDIR%%/html/api/structiEmitFactoryState-members.html X%%DOCSDIR%%/html/api/structiEmitFactoryState.html X%%DOCSDIR%%/html/api/structiEmitFactoryState.png X%%DOCSDIR%%/html/api/structiEmitFixed-members.html X%%DOCSDIR%%/html/api/structiEmitFixed.html X%%DOCSDIR%%/html/api/structiEmitFixed.png X%%DOCSDIR%%/html/api/structiEmitGen3D-members.html X%%DOCSDIR%%/html/api/structiEmitGen3D.html X%%DOCSDIR%%/html/api/structiEmitGen3D.png X%%DOCSDIR%%/html/api/structiEmitLine-members.html X%%DOCSDIR%%/html/api/structiEmitLine.html X%%DOCSDIR%%/html/api/structiEmitLine.png X%%DOCSDIR%%/html/api/structiEmitMix-members.html X%%DOCSDIR%%/html/api/structiEmitMix.html X%%DOCSDIR%%/html/api/structiEmitMix.png X%%DOCSDIR%%/html/api/structiEmitSphere-members.html X%%DOCSDIR%%/html/api/structiEmitSphere.html X%%DOCSDIR%%/html/api/structiEmitSphere.png X%%DOCSDIR%%/html/api/structiEmitSphereTangent-members.html X%%DOCSDIR%%/html/api/structiEmitSphereTangent.html X%%DOCSDIR%%/html/api/structiEmitSphereTangent.png X%%DOCSDIR%%/html/api/structiEmitState-members.html X%%DOCSDIR%%/html/api/structiEmitState.html X%%DOCSDIR%%/html/api/structiEmitState.png X%%DOCSDIR%%/html/api/structiEngine-members.html X%%DOCSDIR%%/html/api/structiEngine.html X%%DOCSDIR%%/html/api/structiEngine.png X%%DOCSDIR%%/html/api/structiEngineSectorCallback-members.html X%%DOCSDIR%%/html/api/structiEngineSectorCallback.html X%%DOCSDIR%%/html/api/structiEngineSectorCallback.png X%%DOCSDIR%%/html/api/structiEngineSequenceManager-members.html X%%DOCSDIR%%/html/api/structiEngineSequenceManager.html X%%DOCSDIR%%/html/api/structiEngineSequenceManager.png X%%DOCSDIR%%/html/api/structiEngineSequenceParameters-members.html X%%DOCSDIR%%/html/api/structiEngineSequenceParameters.html X%%DOCSDIR%%/html/api/structiEngineSequenceParameters.png X%%DOCSDIR%%/html/api/structiEvent-members.html X%%DOCSDIR%%/html/api/structiEvent.html X%%DOCSDIR%%/html/api/structiEventAttributeIterator-members.html X%%DOCSDIR%%/html/api/structiEventAttributeIterator.html X%%DOCSDIR%%/html/api/structiEventAttributeIterator.png X%%DOCSDIR%%/html/api/structiEventCord-members.html X%%DOCSDIR%%/html/api/structiEventCord.html X%%DOCSDIR%%/html/api/structiEventCord.png X%%DOCSDIR%%/html/api/structiEventHandler-members.html X%%DOCSDIR%%/html/api/structiEventHandler.html X%%DOCSDIR%%/html/api/structiEventHandler.png X%%DOCSDIR%%/html/api/structiEventOutlet-members.html X%%DOCSDIR%%/html/api/structiEventOutlet.html X%%DOCSDIR%%/html/api/structiEventOutlet.png X%%DOCSDIR%%/html/api/structiEventPlug-members.html X%%DOCSDIR%%/html/api/structiEventPlug.html X%%DOCSDIR%%/html/api/structiEventPlug.png X%%DOCSDIR%%/html/api/structiEventQueue-members.html X%%DOCSDIR%%/html/api/structiEventQueue.html X%%DOCSDIR%%/html/api/structiEventQueue.png X%%DOCSDIR%%/html/api/structiEventTimer-members.html X%%DOCSDIR%%/html/api/structiEventTimer.html X%%DOCSDIR%%/html/api/structiEventTimer.png X%%DOCSDIR%%/html/api/structiExplosionState-members.html X%%DOCSDIR%%/html/api/structiExplosionState.html X%%DOCSDIR%%/html/api/structiExplosionState.png X%%DOCSDIR%%/html/api/structiFactory-members.html X%%DOCSDIR%%/html/api/structiFactory.html X%%DOCSDIR%%/html/api/structiFactory.png X%%DOCSDIR%%/html/api/structiFile-members.html X%%DOCSDIR%%/html/api/structiFile.html X%%DOCSDIR%%/html/api/structiFireState-members.html X%%DOCSDIR%%/html/api/structiFireState.html X%%DOCSDIR%%/html/api/structiFireState.png X%%DOCSDIR%%/html/api/structiFireTexture-members.html X%%DOCSDIR%%/html/api/structiFireTexture.html X%%DOCSDIR%%/html/api/structiFireTexture.png X%%DOCSDIR%%/html/api/structiFlareHalo-members.html X%%DOCSDIR%%/html/api/structiFlareHalo.html X%%DOCSDIR%%/html/api/structiFlareHalo.png X%%DOCSDIR%%/html/api/structiFoliageFactoryState.html X%%DOCSDIR%%/html/api/structiFoliageFactoryState-members.html X%%DOCSDIR%%/html/api/structiFoliageFactoryState.png X%%DOCSDIR%%/html/api/structiFoliageGeometry-members.html X%%DOCSDIR%%/html/api/structiFoliageGeometry.html X%%DOCSDIR%%/html/api/structiFoliageGeometry.png X%%DOCSDIR%%/html/api/structiFoliageMeshState-members.html X%%DOCSDIR%%/html/api/structiFoliageMeshState.html X%%DOCSDIR%%/html/api/structiFoliageMeshState.png X%%DOCSDIR%%/html/api/structiFoliageObject-members.html X%%DOCSDIR%%/html/api/structiFoliageObject.html X%%DOCSDIR%%/html/api/structiFoliageObject.png X%%DOCSDIR%%/html/api/structiFont.html X%%DOCSDIR%%/html/api/structiFont-members.html X%%DOCSDIR%%/html/api/structiFontDeleteNotify-members.html X%%DOCSDIR%%/html/api/structiFontDeleteNotify.html X%%DOCSDIR%%/html/api/structiFontDeleteNotify.png X%%DOCSDIR%%/html/api/structiFontServer-members.html X%%DOCSDIR%%/html/api/structiFontServer.html X%%DOCSDIR%%/html/api/structiFontServer.png X%%DOCSDIR%%/html/api/structiFountainState-members.html X%%DOCSDIR%%/html/api/structiFountainState.html X%%DOCSDIR%%/html/api/structiFountainState.png X%%DOCSDIR%%/html/api/structiFrustumView-members.html X%%DOCSDIR%%/html/api/structiFrustumView.html X%%DOCSDIR%%/html/api/structiFrustumView.png X%%DOCSDIR%%/html/api/structiFrustumViewUserdata-members.html X%%DOCSDIR%%/html/api/structiFrustumViewUserdata.html X%%DOCSDIR%%/html/api/structiFrustumViewUserdata.png X%%DOCSDIR%%/html/api/structiGLDriverDatabase-members.html X%%DOCSDIR%%/html/api/structiGLDriverDatabase.html X%%DOCSDIR%%/html/api/structiGLDriverDatabase.png X%%DOCSDIR%%/html/api/structiGenMeshAnimationControl-members.html X%%DOCSDIR%%/html/api/structiGenMeshAnimationControl.html X%%DOCSDIR%%/html/api/structiGenMeshAnimationControl.png X%%DOCSDIR%%/html/api/structiGenMeshAnimationControlFactory-members.html X%%DOCSDIR%%/html/api/structiGenMeshAnimationControlFactory.html X%%DOCSDIR%%/html/api/structiGenMeshAnimationControlFactory.png X%%DOCSDIR%%/html/api/structiGenMeshAnimationControlState-members.html X%%DOCSDIR%%/html/api/structiGenMeshAnimationControlState.html X%%DOCSDIR%%/html/api/structiGenMeshAnimationControlState.png X%%DOCSDIR%%/html/api/structiGenMeshAnimationControlType-members.html X%%DOCSDIR%%/html/api/structiGenMeshAnimationControlType.html X%%DOCSDIR%%/html/api/structiGenMeshAnimationControlType.png X%%DOCSDIR%%/html/api/structiGenMeshSkeletonBone-members.html X%%DOCSDIR%%/html/api/structiGenMeshSkeletonBone.html X%%DOCSDIR%%/html/api/structiGenMeshSkeletonBone.png X%%DOCSDIR%%/html/api/structiGenMeshSkeletonBoneUpdateCallback-members.html X%%DOCSDIR%%/html/api/structiGenMeshSkeletonBoneUpdateCallback.html X%%DOCSDIR%%/html/api/structiGenMeshSkeletonBoneUpdateCallback.png X%%DOCSDIR%%/html/api/structiGenMeshSkeletonControlFactory-members.html X%%DOCSDIR%%/html/api/structiGenMeshSkeletonControlFactory.html X%%DOCSDIR%%/html/api/structiGenMeshSkeletonControlFactory.png X%%DOCSDIR%%/html/api/structiGenMeshSkeletonControlState-members.html X%%DOCSDIR%%/html/api/structiGenMeshSkeletonControlState.html X%%DOCSDIR%%/html/api/structiGenMeshSkeletonControlState.png X%%DOCSDIR%%/html/api/structiGenMeshSkeletonScript-members.html X%%DOCSDIR%%/html/api/structiGraphics2D.html X%%DOCSDIR%%/html/api/structiGenMeshSkeletonScript.html X%%DOCSDIR%%/html/api/structiGenMeshSkeletonScript.png X%%DOCSDIR%%/html/api/structiGeneralFactoryState-members.html X%%DOCSDIR%%/html/api/structiGeneralFactoryState.html X%%DOCSDIR%%/html/api/structiGeneralFactoryState.png X%%DOCSDIR%%/html/api/structiGeneralMeshCommonState-members.html X%%DOCSDIR%%/html/api/structiGeneralMeshCommonState.html X%%DOCSDIR%%/html/api/structiGeneralMeshCommonState.png X%%DOCSDIR%%/html/api/structiGeneralMeshState-members.html X%%DOCSDIR%%/html/api/structiGeneralMeshState.html X%%DOCSDIR%%/html/api/structiGeneralMeshState.png X%%DOCSDIR%%/html/api/structiGraphics2D.png X%%DOCSDIR%%/html/api/structiGenerateImageFunction-members.html X%%DOCSDIR%%/html/api/structiGenerateImageFunction.html X%%DOCSDIR%%/html/api/structiGenerateImageFunction.png X%%DOCSDIR%%/html/api/structiGenericRenderStep-members.html X%%DOCSDIR%%/html/api/structiGenericRenderStep.html X%%DOCSDIR%%/html/api/structiGenericRenderStep.png X%%DOCSDIR%%/html/api/structiGraphics2D-members.html X%%DOCSDIR%%/html/api/structiGraphics3D-members.html X%%DOCSDIR%%/html/api/structiGraphics3D.html X%%DOCSDIR%%/html/api/structiGraphics3D.png X%%DOCSDIR%%/html/api/structiGraphicsMemory-members.html X%%DOCSDIR%%/html/api/structiGraphicsMemory.html X%%DOCSDIR%%/html/api/structiGraphicsMemory.png X%%DOCSDIR%%/html/api/structiHalo-members.html X%%DOCSDIR%%/html/api/structiHalo.html X%%DOCSDIR%%/html/api/structiHalo.png X%%DOCSDIR%%/html/api/structiHazeFactoryState-members.html X%%DOCSDIR%%/html/api/structiHazeFactoryState.html X%%DOCSDIR%%/html/api/structiHazeFactoryState.png X%%DOCSDIR%%/html/api/structiHazeHull-members.html X%%DOCSDIR%%/html/api/structiHazeHull.html X%%DOCSDIR%%/html/api/structiHazeHull.png X%%DOCSDIR%%/html/api/structiHazeHullBox-members.html X%%DOCSDIR%%/html/api/structiHazeHullBox.html X%%DOCSDIR%%/html/api/structiHazeHullBox.png X%%DOCSDIR%%/html/api/structiHazeHullCone-members.html X%%DOCSDIR%%/html/api/structiHazeHullCone.html X%%DOCSDIR%%/html/api/structiHazeHullCone.png X%%DOCSDIR%%/html/api/structiHazeHullCreation-members.html X%%DOCSDIR%%/html/api/structiHazeHullCreation.html X%%DOCSDIR%%/html/api/structiHazeHullCreation.png X%%DOCSDIR%%/html/api/structiHazeState-members.html X%%DOCSDIR%%/html/api/structiHazeState.html X%%DOCSDIR%%/html/api/structiHazeState.png X%%DOCSDIR%%/html/api/structiImage-members.html X%%DOCSDIR%%/html/api/structiImage.html X%%DOCSDIR%%/html/api/structiImage.png X%%DOCSDIR%%/html/api/structiImageFileLoader-members.html X%%DOCSDIR%%/html/api/structiImageFileLoader.html X%%DOCSDIR%%/html/api/structiImageFileLoader.png X%%DOCSDIR%%/html/api/structiImageIO-members.html X%%DOCSDIR%%/html/api/structiImageIO.html X%%DOCSDIR%%/html/api/structiImageIO.png X%%DOCSDIR%%/html/api/structiImposter.html X%%DOCSDIR%%/html/api/structiImageVector-members.html X%%DOCSDIR%%/html/api/structiImageVector.html X%%DOCSDIR%%/html/api/structiImageVector.png X%%DOCSDIR%%/html/api/structiImposter-members.html X%%DOCSDIR%%/html/api/structiImposter.png X%%DOCSDIR%%/html/api/structiInputBinder-members.html X%%DOCSDIR%%/html/api/structiInputBinder.html X%%DOCSDIR%%/html/api/structiInputBinder.png X%%DOCSDIR%%/html/api/structiJob-members.html X%%DOCSDIR%%/html/api/structiJob.html X%%DOCSDIR%%/html/api/structiJob.png X%%DOCSDIR%%/html/api/structiJobQueue.html X%%DOCSDIR%%/html/api/structiJobQueue-members.html X%%DOCSDIR%%/html/api/structiJobQueue.png X%%DOCSDIR%%/html/api/structiJoint-members.html X%%DOCSDIR%%/html/api/structiJoint.html X%%DOCSDIR%%/html/api/structiJoint.png X%%DOCSDIR%%/html/api/structiJoystickDriver-members.html X%%DOCSDIR%%/html/api/structiJoystickDriver.html X%%DOCSDIR%%/html/api/structiJoystickDriver.png X%%DOCSDIR%%/html/api/structiKeyComposer-members.html X%%DOCSDIR%%/html/api/structiKeyComposer.html X%%DOCSDIR%%/html/api/structiKeyComposer.png X%%DOCSDIR%%/html/api/structiKeyValuePair-members.html X%%DOCSDIR%%/html/api/structiKeyValuePair.html X%%DOCSDIR%%/html/api/structiKeyValuePair.png X%%DOCSDIR%%/html/api/structiKeyboardDriver-members.html X%%DOCSDIR%%/html/api/structiKeyboardDriver.html X%%DOCSDIR%%/html/api/structiKeyboardDriver.png X%%DOCSDIR%%/html/api/structiLODControl-members.html X%%DOCSDIR%%/html/api/structiLODControl.html X%%DOCSDIR%%/html/api/structiLODControl.png X%%DOCSDIR%%/html/api/structiLight-members.html X%%DOCSDIR%%/html/api/structiLight.html X%%DOCSDIR%%/html/api/structiLight.png X%%DOCSDIR%%/html/api/structiLightCallback-members.html X%%DOCSDIR%%/html/api/structiLightCallback.html X%%DOCSDIR%%/html/api/structiLightCallback.png X%%DOCSDIR%%/html/api/structiLightIterRenderStep-members.html X%%DOCSDIR%%/html/api/structiLightIterator.html X%%DOCSDIR%%/html/api/structiLightIterRenderStep.html X%%DOCSDIR%%/html/api/structiLightIterRenderStep.png X%%DOCSDIR%%/html/api/structiLightIterator-members.html X%%DOCSDIR%%/html/api/structiLightIterator.png X%%DOCSDIR%%/html/api/structiLightList-members.html X%%DOCSDIR%%/html/api/structiLightList.html X%%DOCSDIR%%/html/api/structiLightList.png X%%DOCSDIR%%/html/api/structiLightManager-members.html X%%DOCSDIR%%/html/api/structiLightManager.html X%%DOCSDIR%%/html/api/structiLightManager.png X%%DOCSDIR%%/html/api/structiLightRenderStep-members.html X%%DOCSDIR%%/html/api/structiLightRenderStep.html X%%DOCSDIR%%/html/api/structiLightRenderStep.png X%%DOCSDIR%%/html/api/structiLightingInfo-members.html X%%DOCSDIR%%/html/api/structiLightingInfo.html X%%DOCSDIR%%/html/api/structiLightingInfo.png X%%DOCSDIR%%/html/api/structiLightingManager-members.html X%%DOCSDIR%%/html/api/structiLightingManager.html X%%DOCSDIR%%/html/api/structiLightingManager.png X%%DOCSDIR%%/html/api/structiLightingProcessData-members.html X%%DOCSDIR%%/html/api/structiLightingProcessData.html X%%DOCSDIR%%/html/api/structiLightingProcessData.png X%%DOCSDIR%%/html/api/structiLightingProcessInfo-members.html X%%DOCSDIR%%/html/api/structiLightingProcessInfo.html X%%DOCSDIR%%/html/api/structiLightingProcessInfo.png X%%DOCSDIR%%/html/api/structiLoader.html X%%DOCSDIR%%/html/api/structiLightningFactoryState-members.html X%%DOCSDIR%%/html/api/structiLightningFactoryState.html X%%DOCSDIR%%/html/api/structiLightningFactoryState.png X%%DOCSDIR%%/html/api/structiLightningState-members.html X%%DOCSDIR%%/html/api/structiLightningState.html X%%DOCSDIR%%/html/api/structiLightningState.png X%%DOCSDIR%%/html/api/structiLoader-members.html X%%DOCSDIR%%/html/api/structiLoader.png X%%DOCSDIR%%/html/api/structiLoaderContext-members.html X%%DOCSDIR%%/html/api/structiLoaderContext.html X%%DOCSDIR%%/html/api/structiLoaderContext.png X%%DOCSDIR%%/html/api/structiLoaderPlugin-members.html X%%DOCSDIR%%/html/api/structiLoaderPlugin.png X%%DOCSDIR%%/html/api/structiLoaderPlugin.html X%%DOCSDIR%%/html/api/structiLoaderStatus-members.html X%%DOCSDIR%%/html/api/structiLoaderStatus.html X%%DOCSDIR%%/html/api/structiLoaderStatus.png X%%DOCSDIR%%/html/api/structiMapNode-members.html X%%DOCSDIR%%/html/api/structiMapNode.html X%%DOCSDIR%%/html/api/structiMapNode.png X%%DOCSDIR%%/html/api/structiMaterial-members.html X%%DOCSDIR%%/html/api/structiMaterial.html X%%DOCSDIR%%/html/api/structiMaterial.png X%%DOCSDIR%%/html/api/structiMaterialEngine-members.html X%%DOCSDIR%%/html/api/structiMaterialEngine.html X%%DOCSDIR%%/html/api/structiMaterialEngine.png X%%DOCSDIR%%/html/api/structiMaterialList-members.html X%%DOCSDIR%%/html/api/structiMaterialList.html X%%DOCSDIR%%/html/api/structiMaterialList.png X%%DOCSDIR%%/html/api/structiMaterialWrapper-members.html X%%DOCSDIR%%/html/api/structiMaterialWrapper.html X%%DOCSDIR%%/html/api/structiMaterialWrapper.png X%%DOCSDIR%%/html/api/structiMemoryTracker-members.html X%%DOCSDIR%%/html/api/structiMemoryTracker.html X%%DOCSDIR%%/html/api/structiMemoryTracker.png X%%DOCSDIR%%/html/api/structiMeshDrawCallback-members.html X%%DOCSDIR%%/html/api/structiMeshDrawCallback.html X%%DOCSDIR%%/html/api/structiMeshDrawCallback.png X%%DOCSDIR%%/html/api/structiMeshFactoryList-members.html X%%DOCSDIR%%/html/api/structiMeshFactoryList.html X%%DOCSDIR%%/html/api/structiMeshFactoryList.png X%%DOCSDIR%%/html/api/structiMeshFactoryWrapper-members.html X%%DOCSDIR%%/html/api/structiMeshFactoryWrapper.html X%%DOCSDIR%%/html/api/structiMeshFactoryWrapper.png X%%DOCSDIR%%/html/api/structiMeshList-members.html X%%DOCSDIR%%/html/api/structiMeshList.html X%%DOCSDIR%%/html/api/structiMeshList.png X%%DOCSDIR%%/html/api/structiMeshObject.html X%%DOCSDIR%%/html/api/structiMeshObject-members.html X%%DOCSDIR%%/html/api/structiMeshObject.png X%%DOCSDIR%%/html/api/structiMeshObjectDrawCallback-members.html X%%DOCSDIR%%/html/api/structiMeshObjectDrawCallback.html X%%DOCSDIR%%/html/api/structiMeshObjectDrawCallback.png X%%DOCSDIR%%/html/api/structiMeshObjectFactory-members.html X%%DOCSDIR%%/html/api/structiMeshObjectFactory.html X%%DOCSDIR%%/html/api/structiMeshObjectFactory.png X%%DOCSDIR%%/html/api/structiMeshObjectType-members.html X%%DOCSDIR%%/html/api/structiMeshObjectType.html X%%DOCSDIR%%/html/api/structiMeshObjectType.png X%%DOCSDIR%%/html/api/structiMeshWrapper-members.html X%%DOCSDIR%%/html/api/structiMeshWrapper.html X%%DOCSDIR%%/html/api/structiMeshWrapper.png X%%DOCSDIR%%/html/api/structiMeshWrapperIterator-members.html X%%DOCSDIR%%/html/api/structiMeshWrapperIterator.html X%%DOCSDIR%%/html/api/structiMeshWrapperIterator.png X%%DOCSDIR%%/html/api/structiModelConverter.html X%%DOCSDIR%%/html/api/structiModelConverter-members.html X%%DOCSDIR%%/html/api/structiModelConverter.png X%%DOCSDIR%%/html/api/structiModelData-members.html X%%DOCSDIR%%/html/api/structiModelData.html X%%DOCSDIR%%/html/api/structiModelData.png X%%DOCSDIR%%/html/api/structiModelDataAction-members.html X%%DOCSDIR%%/html/api/structiModelDataAction.html X%%DOCSDIR%%/html/api/structiModelDataAction.png X%%DOCSDIR%%/html/api/structiModelDataCamera-members.html X%%DOCSDIR%%/html/api/structiModelDataCamera.html X%%DOCSDIR%%/html/api/structiModelDataCamera.png X%%DOCSDIR%%/html/api/structiModelDataLight-members.html X%%DOCSDIR%%/html/api/structiModelDataLight.html X%%DOCSDIR%%/html/api/structiModelDataLight.png X%%DOCSDIR%%/html/api/structiModelDataMaterial-members.html X%%DOCSDIR%%/html/api/structiModelDataMaterial.html X%%DOCSDIR%%/html/api/structiModelDataMaterial.png X%%DOCSDIR%%/html/api/structiModelDataObject-members.html X%%DOCSDIR%%/html/api/structiModelDataObject.html X%%DOCSDIR%%/html/api/structiModelDataObject.png X%%DOCSDIR%%/html/api/structiModelDataPolygon-members.html X%%DOCSDIR%%/html/api/structiModelDataPolygon.html X%%DOCSDIR%%/html/api/structiModelDataPolygon.png X%%DOCSDIR%%/html/api/structiModelDataTexture-members.html X%%DOCSDIR%%/html/api/structiModelDataTexture.html X%%DOCSDIR%%/html/api/structiModelDataTexture.png X%%DOCSDIR%%/html/api/structiModelDataVertices-members.html X%%DOCSDIR%%/html/api/structiModelDataVertices.html X%%DOCSDIR%%/html/api/structiModelDataVertices.png X%%DOCSDIR%%/html/api/structiMouseDriver-members.html X%%DOCSDIR%%/html/api/structiMouseDriver.html X%%DOCSDIR%%/html/api/structiMouseDriver.png X%%DOCSDIR%%/html/api/structiMovable-members.html X%%DOCSDIR%%/html/api/structiMovable.html X%%DOCSDIR%%/html/api/structiMovable.png X%%DOCSDIR%%/html/api/structiMovableListener-members.html X%%DOCSDIR%%/html/api/structiMovableListener.html X%%DOCSDIR%%/html/api/structiMovableListener.png X%%DOCSDIR%%/html/api/structiMovieRecorder.html X%%DOCSDIR%%/html/api/structiMovieRecorder-members.html X%%DOCSDIR%%/html/api/structiMovieRecorder.png X%%DOCSDIR%%/html/api/structiNativeWindow-members.html X%%DOCSDIR%%/html/api/structiNativeWindow.html X%%DOCSDIR%%/html/api/structiNativeWindow.png X%%DOCSDIR%%/html/api/structiNativeWindowManager-members.html X%%DOCSDIR%%/html/api/structiNativeWindowManager.html X%%DOCSDIR%%/html/api/structiNativeWindowManager.png X%%DOCSDIR%%/html/api/structiNovaHalo-members.html X%%DOCSDIR%%/html/api/structiNovaHalo.html X%%DOCSDIR%%/html/api/structiNovaHalo.png X%%DOCSDIR%%/html/api/structiNullFactoryState-members.html X%%DOCSDIR%%/html/api/structiNullFactoryState.html X%%DOCSDIR%%/html/api/structiNullFactoryState.png X%%DOCSDIR%%/html/api/structiNullMeshState-members.html X%%DOCSDIR%%/html/api/structiNullMeshState.html X%%DOCSDIR%%/html/api/structiNullMeshState.png X%%DOCSDIR%%/html/api/structiODEAMotorJoint-members.html X%%DOCSDIR%%/html/api/structiODEAMotorJoint.html X%%DOCSDIR%%/html/api/structiODEAMotorJoint.png X%%DOCSDIR%%/html/api/structiODEBallJoint-members.html X%%DOCSDIR%%/html/api/structiODEBallJoint.html X%%DOCSDIR%%/html/api/structiODEBallJoint.png X%%DOCSDIR%%/html/api/structiODEDynamicState-members.html X%%DOCSDIR%%/html/api/structiODEDynamicState.html X%%DOCSDIR%%/html/api/structiODEDynamicState.png X%%DOCSDIR%%/html/api/structiODEDynamicSystemState-members.html X%%DOCSDIR%%/html/api/structiODEDynamicSystemState.html X%%DOCSDIR%%/html/api/structiODEDynamicSystemState.png X%%DOCSDIR%%/html/api/structiODEFrameUpdateCallback-members.html X%%DOCSDIR%%/html/api/structiODEFrameUpdateCallback.html X%%DOCSDIR%%/html/api/structiODEFrameUpdateCallback.png X%%DOCSDIR%%/html/api/structiODEGeneralJointState-members.html X%%DOCSDIR%%/html/api/structiODEGeneralJointState.html X%%DOCSDIR%%/html/api/structiODEGeneralJointState.png X%%DOCSDIR%%/html/api/structiODEHingeJoint-members.html X%%DOCSDIR%%/html/api/structiODEHingeJoint.html X%%DOCSDIR%%/html/api/structiODEHingeJoint.png X%%DOCSDIR%%/html/api/structiODEJointState-members.html X%%DOCSDIR%%/html/api/structiODEJointState.html X%%DOCSDIR%%/html/api/structiODEJointState.png X%%DOCSDIR%%/html/api/structiODESliderJoint-members.html X%%DOCSDIR%%/html/api/structiODESliderJoint.html X%%DOCSDIR%%/html/api/structiODESliderJoint.png X%%DOCSDIR%%/html/api/structiODEUniversalJoint-members.html X%%DOCSDIR%%/html/api/structiODEUniversalJoint.html X%%DOCSDIR%%/html/api/structiODEUniversalJoint.png X%%DOCSDIR%%/html/api/structiOSXAssistant-members.html X%%DOCSDIR%%/html/api/structiOSXAssistant.html X%%DOCSDIR%%/html/api/structiOSXAssistant.png X%%DOCSDIR%%/html/api/structiObject-members.html X%%DOCSDIR%%/html/api/structiObject.html X%%DOCSDIR%%/html/api/structiObject.png X%%DOCSDIR%%/html/api/structiObjectIterator-members.html X%%DOCSDIR%%/html/api/structiObjectIterator.html X%%DOCSDIR%%/html/api/structiObjectIterator.png X%%DOCSDIR%%/html/api/structiObjectModel-members.html X%%DOCSDIR%%/html/api/structiObjectModel.html X%%DOCSDIR%%/html/api/structiObjectModel.png X%%DOCSDIR%%/html/api/structiObjectModelListener-members.html X%%DOCSDIR%%/html/api/structiObjectModelListener.html X%%DOCSDIR%%/html/api/structiObjectModelListener.png X%%DOCSDIR%%/html/api/structiObjectNameChangeListener-members.html X%%DOCSDIR%%/html/api/structiObjectNameChangeListener.html X%%DOCSDIR%%/html/api/structiObjectNameChangeListener.png X%%DOCSDIR%%/html/api/structiObjectRegistry-members.html X%%DOCSDIR%%/html/api/structiObjectRegistry.html X%%DOCSDIR%%/html/api/structiObjectRegistry.png X%%DOCSDIR%%/html/api/structiObjectRegistryIterator-members.html X%%DOCSDIR%%/html/api/structiObjectRegistryIterator.html X%%DOCSDIR%%/html/api/structiObjectRegistryIterator.png X%%DOCSDIR%%/html/api/structiObjectWatcher-members.html X%%DOCSDIR%%/html/api/structiObjectWatcher.html X%%DOCSDIR%%/html/api/structiObjectWatcher.png X%%DOCSDIR%%/html/api/structiObjectWatcherListener.html X%%DOCSDIR%%/html/api/structiObjectWatcherListener-members.html X%%DOCSDIR%%/html/api/structiObjectWatcherListener.png X%%DOCSDIR%%/html/api/structiOffscreenCanvasCallback-members.html X%%DOCSDIR%%/html/api/structiOffscreenCanvasCallback.html X%%DOCSDIR%%/html/api/structiOffscreenCanvasCallback.png X%%DOCSDIR%%/html/api/structiOpenGLInterface-members.html X%%DOCSDIR%%/html/api/structiOpenGLInterface.html X%%DOCSDIR%%/html/api/structiOpenGLInterface.png X%%DOCSDIR%%/html/api/structiPVSCuller-members.html X%%DOCSDIR%%/html/api/structiPVSCuller.html X%%DOCSDIR%%/html/api/structiPVSCuller.png X%%DOCSDIR%%/html/api/structiParameterESM-members.html X%%DOCSDIR%%/html/api/structiParameterESM.html X%%DOCSDIR%%/html/api/structiParameterESM.png X%%DOCSDIR%%/html/api/structiParticle-members.html X%%DOCSDIR%%/html/api/structiParticle.html X%%DOCSDIR%%/html/api/structiParticle.png X%%DOCSDIR%%/html/api/structiParticleState-members.html X%%DOCSDIR%%/html/api/structiParticleState.html X%%DOCSDIR%%/html/api/structiParticleState.png X%%DOCSDIR%%/html/api/structiParticlesColorCallback-members.html X%%DOCSDIR%%/html/api/structiParticlesColorCallback.html X%%DOCSDIR%%/html/api/structiParticlesColorCallback.png X%%DOCSDIR%%/html/api/structiParticlesFactoryState-members.html X%%DOCSDIR%%/html/api/structiParticlesPhysics.png X%%DOCSDIR%%/html/api/structiParticlesFactoryState.html X%%DOCSDIR%%/html/api/structiParticlesFactoryState.png X%%DOCSDIR%%/html/api/structiParticlesObjectState-members.html X%%DOCSDIR%%/html/api/structiParticlesObjectState.html X%%DOCSDIR%%/html/api/structiParticlesObjectState.png X%%DOCSDIR%%/html/api/structiParticlesPhysics-members.html X%%DOCSDIR%%/html/api/structiParticlesPhysics.html X%%DOCSDIR%%/html/api/structiParticlesStateBase-members.html X%%DOCSDIR%%/html/api/structiParticlesStateBase.html X%%DOCSDIR%%/html/api/structiParticlesStateBase.png X%%DOCSDIR%%/html/api/structiPath-members.html X%%DOCSDIR%%/html/api/structiPath.html X%%DOCSDIR%%/html/api/structiPath.png X%%DOCSDIR%%/html/api/structiPen-members.html X%%DOCSDIR%%/html/api/structiPen.html X%%DOCSDIR%%/html/api/structiPen.png X%%DOCSDIR%%/html/api/structiPluginConfig-members.html X%%DOCSDIR%%/html/api/structiPluginConfig.html X%%DOCSDIR%%/html/api/structiPluginConfig.png X%%DOCSDIR%%/html/api/structiPluginIterator-members.html X%%DOCSDIR%%/html/api/structiPluginIterator.html X%%DOCSDIR%%/html/api/structiPluginIterator.png X%%DOCSDIR%%/html/api/structiPluginManager-members.html X%%DOCSDIR%%/html/api/structiPluginManager.html X%%DOCSDIR%%/html/api/structiPluginManager.png X%%DOCSDIR%%/html/api/structiPolygonHandle-members.html X%%DOCSDIR%%/html/api/structiPolygonHandle.html X%%DOCSDIR%%/html/api/structiPolygonHandle.png X%%DOCSDIR%%/html/api/structiPolygonMesh-members.html X%%DOCSDIR%%/html/api/structiPolygonMesh.html X%%DOCSDIR%%/html/api/structiPolygonMesh.png X%%DOCSDIR%%/html/api/structiPolygonRenderer-members.html X%%DOCSDIR%%/html/api/structiPolygonRenderer.html X%%DOCSDIR%%/html/api/structiPolygonRenderer.png X%%DOCSDIR%%/html/api/structiPortal-members.html X%%DOCSDIR%%/html/api/structiPortal.html X%%DOCSDIR%%/html/api/structiPortal.png X%%DOCSDIR%%/html/api/structiPortalCallback-members.html X%%DOCSDIR%%/html/api/structiPortalCallback.html X%%DOCSDIR%%/html/api/structiPortalCallback.png X%%DOCSDIR%%/html/api/structiPortalContainer-members.html X%%DOCSDIR%%/html/api/structiPortalContainer.html X%%DOCSDIR%%/html/api/structiPortalContainer.png X%%DOCSDIR%%/html/api/structiProcTexCallback-members.html X%%DOCSDIR%%/html/api/structiProcTexCallback.html X%%DOCSDIR%%/html/api/structiProcTexCallback.png X%%DOCSDIR%%/html/api/structiProcTexture-members.html X%%DOCSDIR%%/html/api/structiProcTexture.html X%%DOCSDIR%%/html/api/structiProcTexture.png X%%DOCSDIR%%/html/api/structiProgressMeter-members.html X%%DOCSDIR%%/html/api/structiProgressMeter.html X%%DOCSDIR%%/html/api/structiProgressMeter.png X%%DOCSDIR%%/html/api/structiProtoFactoryState-members.html X%%DOCSDIR%%/html/api/structiProtoFactoryState.html X%%DOCSDIR%%/html/api/structiProtoFactoryState.png X%%DOCSDIR%%/html/api/structiProtoMeshState-members.html X%%DOCSDIR%%/html/api/util_8h.html X%%DOCSDIR%%/html/api/structiProtoMeshState.html X%%DOCSDIR%%/html/api/structiProtoMeshState.png X%%DOCSDIR%%/html/api/structiRainState-members.html X%%DOCSDIR%%/html/api/structiRainState.html X%%DOCSDIR%%/html/api/structiRainState.png X%%DOCSDIR%%/html/api/structiRefTracker-members.html X%%DOCSDIR%%/html/api/structiRefTracker.html X%%DOCSDIR%%/html/api/structiRefTracker.png X%%DOCSDIR%%/html/api/structiRegion-members.html X%%DOCSDIR%%/html/api/structiRegion.html X%%DOCSDIR%%/html/api/structiRegion.png X%%DOCSDIR%%/html/api/structiRegionList-members.html X%%DOCSDIR%%/html/api/structiRegionList.html X%%DOCSDIR%%/html/api/structiRegionList.png X%%DOCSDIR%%/html/api/structiRenderBuffer-members.html X%%DOCSDIR%%/html/api/structiRenderBuffer.html X%%DOCSDIR%%/html/api/structiRenderBuffer.png X%%DOCSDIR%%/html/api/structiRenderBufferAccessor-members.html X%%DOCSDIR%%/html/api/structiRenderBufferAccessor.html X%%DOCSDIR%%/html/api/structiRenderBufferAccessor.png X%%DOCSDIR%%/html/api/structiRenderLoop-members.html X%%DOCSDIR%%/html/api/structiRenderLoop.html X%%DOCSDIR%%/html/api/structiRenderLoop.png X%%DOCSDIR%%/html/api/structiReporter.png X%%DOCSDIR%%/html/api/structiRenderLoopManager-members.html X%%DOCSDIR%%/html/api/structiRenderLoopManager.html X%%DOCSDIR%%/html/api/structiRenderLoopManager.png X%%DOCSDIR%%/html/api/structiRenderStep-members.html X%%DOCSDIR%%/html/api/structiRenderStep.html X%%DOCSDIR%%/html/api/structiRenderStep.png X%%DOCSDIR%%/html/api/structiRenderStepContainer-members.html X%%DOCSDIR%%/html/api/structiRenderStepContainer.html X%%DOCSDIR%%/html/api/structiRenderStepContainer.png X%%DOCSDIR%%/html/api/structiRenderStepFactory-members.html X%%DOCSDIR%%/html/api/structiRenderStepFactory.html X%%DOCSDIR%%/html/api/structiRenderStepFactory.png X%%DOCSDIR%%/html/api/structiSCF.html X%%DOCSDIR%%/html/api/structiRenderStepType-members.html X%%DOCSDIR%%/html/api/structiRenderStepType.html X%%DOCSDIR%%/html/api/structiRenderStepType.png X%%DOCSDIR%%/html/api/structiRenderView-members.html X%%DOCSDIR%%/html/api/structiRenderView.html X%%DOCSDIR%%/html/api/structiRenderView.png X%%DOCSDIR%%/html/api/structiRendererLightmap-members.html X%%DOCSDIR%%/html/api/structiRendererLightmap.html X%%DOCSDIR%%/html/api/structiRendererLightmap.png X%%DOCSDIR%%/html/api/structiReporter-members.html X%%DOCSDIR%%/html/api/structiReporter.html X%%DOCSDIR%%/html/api/structiReporterIterator-members.html X%%DOCSDIR%%/html/api/structiReporterIterator.html X%%DOCSDIR%%/html/api/structiReporterIterator.png X%%DOCSDIR%%/html/api/structiReporterListener-members.html X%%DOCSDIR%%/html/api/structiReporterListener.html X%%DOCSDIR%%/html/api/structiReporterListener.png X%%DOCSDIR%%/html/api/structiRigidBody-members.html X%%DOCSDIR%%/html/api/structiRigidBody.html X%%DOCSDIR%%/html/api/structiRigidBody.png X%%DOCSDIR%%/html/api/structiSCF-members.html X%%DOCSDIR%%/html/api/structiSCF.png X%%DOCSDIR%%/html/api/structiSaver-members.html X%%DOCSDIR%%/html/api/structiSaver.html X%%DOCSDIR%%/html/api/structiSaver.png X%%DOCSDIR%%/html/api/structiSaverPlugin-members.html X%%DOCSDIR%%/html/api/structiSaverPlugin.html X%%DOCSDIR%%/html/api/structiScript.html X%%DOCSDIR%%/html/api/structiSaverPlugin.png X%%DOCSDIR%%/html/api/structiScript-members.html X%%DOCSDIR%%/html/api/structiScript.png X%%DOCSDIR%%/html/api/structiScriptObject-members.html X%%DOCSDIR%%/html/api/structiScriptObject.html X%%DOCSDIR%%/html/api/structiScriptObject.png X%%DOCSDIR%%/html/api/structiSector-members.html X%%DOCSDIR%%/html/api/structiSector.html X%%DOCSDIR%%/html/api/structiSector.png X%%DOCSDIR%%/html/api/structiSectorCallback-members.html X%%DOCSDIR%%/html/api/structiSectorCallback.html X%%DOCSDIR%%/html/api/structiSectorCallback.png X%%DOCSDIR%%/html/api/structiSectorIterator-members.html X%%DOCSDIR%%/html/api/structiSectorIterator.html X%%DOCSDIR%%/html/api/structiSectorIterator.png X%%DOCSDIR%%/html/api/structiSectorList-members.html X%%DOCSDIR%%/html/api/structiSectorList.html X%%DOCSDIR%%/html/api/structiSectorList.png X%%DOCSDIR%%/html/api/structiSectorMeshCallback-members.html X%%DOCSDIR%%/html/api/structiSectorMeshCallback.html X%%DOCSDIR%%/html/api/structiSectorMeshCallback.png X%%DOCSDIR%%/html/api/structiSequence-members.html X%%DOCSDIR%%/html/api/structiSequence.html X%%DOCSDIR%%/html/api/structiSequence.png X%%DOCSDIR%%/html/api/structiSequenceCondition-members.html X%%DOCSDIR%%/html/api/structiSequenceCondition.html X%%DOCSDIR%%/html/api/structiSequenceCondition.png X%%DOCSDIR%%/html/api/structiSequenceManager-members.html X%%DOCSDIR%%/html/api/structiSequenceManager.html X%%DOCSDIR%%/html/api/structiSequenceManager.png X%%DOCSDIR%%/html/api/structiSequenceOperation-members.html X%%DOCSDIR%%/html/api/structiSequenceOperation.html X%%DOCSDIR%%/html/api/structiSequenceOperation.png X%%DOCSDIR%%/html/api/structiSequenceTimedOperation-members.html X%%DOCSDIR%%/html/api/structiSequenceTimedOperation.html X%%DOCSDIR%%/html/api/structiSequenceTimedOperation.png X%%DOCSDIR%%/html/api/structiSequenceTrigger-members.html X%%DOCSDIR%%/html/api/structiSequenceTrigger.html X%%DOCSDIR%%/html/api/structiSequenceTrigger.png X%%DOCSDIR%%/html/api/structiSequenceWrapper-members.html X%%DOCSDIR%%/html/api/structiSequenceWrapper.html X%%DOCSDIR%%/html/api/structiSequenceWrapper.png X%%DOCSDIR%%/html/api/structiShader-members.html X%%DOCSDIR%%/html/api/structiShader.html X%%DOCSDIR%%/html/api/structiShader.png X%%DOCSDIR%%/html/api/structiShaderCompiler-members.html X%%DOCSDIR%%/html/api/structiShaderCompiler.html X%%DOCSDIR%%/html/api/structiVFS.html X%%DOCSDIR%%/html/api/structiShaderCompiler.png X%%DOCSDIR%%/html/api/structiShaderManager-members.html X%%DOCSDIR%%/html/api/structiShaderManager.html X%%DOCSDIR%%/html/api/structiShaderManager.png X%%DOCSDIR%%/html/api/structiShaderPriorityList-members.html X%%DOCSDIR%%/html/api/structiShaderPriorityList.html X%%DOCSDIR%%/html/api/structiShaderPriorityList.png X%%DOCSDIR%%/html/api/structiShaderProgram-members.html X%%DOCSDIR%%/html/api/structiShaderProgram.html X%%DOCSDIR%%/html/api/structiShaderProgram.png X%%DOCSDIR%%/html/api/structiShaderProgramPlugin-members.html X%%DOCSDIR%%/html/api/structiShaderProgramPlugin.html X%%DOCSDIR%%/html/api/structiShaderProgramPlugin.png X%%DOCSDIR%%/html/api/structiShaderRenderInterface-members.html X%%DOCSDIR%%/html/api/structiShaderRenderInterface.html X%%DOCSDIR%%/html/api/structiShaderRenderInterface.png X%%DOCSDIR%%/html/api/structiShaderTUResolver-members.html X%%DOCSDIR%%/html/api/structiShaderTUResolver.html X%%DOCSDIR%%/html/api/structiShaderTUResolver.png X%%DOCSDIR%%/html/api/structiShaderVariableAccessor-members.html X%%DOCSDIR%%/html/api/structiShaderVariableAccessor.html X%%DOCSDIR%%/html/api/structiShaderVariableAccessor.png X%%DOCSDIR%%/html/api/structiShaderVariableContext-members.html X%%DOCSDIR%%/html/api/structiShaderVariableContext.html X%%DOCSDIR%%/html/api/structiShaderVariableContext.png X%%DOCSDIR%%/html/api/structiShadowBlock-members.html X%%DOCSDIR%%/html/api/structiShadowBlock.html X%%DOCSDIR%%/html/api/structiShadowBlock.png X%%DOCSDIR%%/html/api/structiShadowBlockList-members.html X%%DOCSDIR%%/html/api/structiShadowBlockList.html X%%DOCSDIR%%/html/api/structiShadowBlockList.png X%%DOCSDIR%%/html/api/structiShadowCaster-members.html X%%DOCSDIR%%/html/api/structiShadowCaster.html X%%DOCSDIR%%/html/api/structiShadowCaster.png X%%DOCSDIR%%/html/api/structiShadowIterator-members.html X%%DOCSDIR%%/html/api/structiShadowIterator.html X%%DOCSDIR%%/html/api/structiShadowIterator.png X%%DOCSDIR%%/html/api/structiShadowReceiver-members.html X%%DOCSDIR%%/html/api/structiShadowReceiver.html X%%DOCSDIR%%/html/api/structiShadowReceiver.png X%%DOCSDIR%%/html/api/structiSharedVariable-members.html X%%DOCSDIR%%/html/api/structiSharedVariable.html X%%DOCSDIR%%/html/api/structiSharedVariable.png X%%DOCSDIR%%/html/api/structiSharedVariableList-members.html X%%DOCSDIR%%/html/api/structiSharedVariableList.html X%%DOCSDIR%%/html/api/structiSharedVariableList.png X%%DOCSDIR%%/html/api/structiSharedVariableListener-members.html X%%DOCSDIR%%/html/api/structiSharedVariableListener.html X%%DOCSDIR%%/html/api/structiSharedVariableListener.png X%%DOCSDIR%%/html/api/structiSimpleFormerState-members.html X%%DOCSDIR%%/html/api/structiSimpleFormerState.html X%%DOCSDIR%%/html/api/structiSimpleFormerState.png X%%DOCSDIR%%/html/api/structiSnowState-members.html X%%DOCSDIR%%/html/api/structiSnowState.html X%%DOCSDIR%%/html/api/structiSnowState.png X%%DOCSDIR%%/html/api/structiSoundData-members.html X%%DOCSDIR%%/html/api/structiSoundData.html X%%DOCSDIR%%/html/api/structiSoundData.png X%%DOCSDIR%%/html/api/structiSoundDriver-members.html X%%DOCSDIR%%/html/api/structiSoundDriver.html X%%DOCSDIR%%/html/api/structiSoundDriver.png X%%DOCSDIR%%/html/api/structiSoundHandle-members.html X%%DOCSDIR%%/html/api/structiSoundHandle.html X%%DOCSDIR%%/html/api/structiSoundHandle.png X%%DOCSDIR%%/html/api/structiSoundListener-members.html X%%DOCSDIR%%/html/api/structiSoundListener.html X%%DOCSDIR%%/html/api/structiSoundListener.png X%%DOCSDIR%%/html/api/structiSoundLoader-members.html X%%DOCSDIR%%/html/api/structiSoundLoader.html X%%DOCSDIR%%/html/api/structiSoundLoader.png X%%DOCSDIR%%/html/api/structiSoundRender-members.html X%%DOCSDIR%%/html/api/structiSoundRender.html X%%DOCSDIR%%/html/api/structiSoundRender.png X%%DOCSDIR%%/html/api/structiSoundSource-members.html X%%DOCSDIR%%/html/api/structiSoundSource.html X%%DOCSDIR%%/html/api/structiSoundSource.png X%%DOCSDIR%%/html/api/structiSoundWrapper-members.html X%%DOCSDIR%%/html/api/structiSoundWrapper.html X%%DOCSDIR%%/html/api/structiSoundWrapper.png X%%DOCSDIR%%/html/api/structiSpiralState-members.html X%%DOCSDIR%%/html/api/structiSpiralState.html X%%DOCSDIR%%/html/api/structiSpiralState.png X%%DOCSDIR%%/html/api/structiVFS.png X%%DOCSDIR%%/html/api/structiSprite2DFactoryState-members.html X%%DOCSDIR%%/html/api/structiSprite2DFactoryState.html X%%DOCSDIR%%/html/api/structiSprite2DFactoryState.png X%%DOCSDIR%%/html/api/structiSprite2DState-members.html X%%DOCSDIR%%/html/api/structiSprite2DState.html X%%DOCSDIR%%/html/api/structiSprite2DState.png X%%DOCSDIR%%/html/api/structiSprite2DUVAnimation-members.html X%%DOCSDIR%%/html/api/structiSprite2DUVAnimation.html X%%DOCSDIR%%/html/api/structiSprite2DUVAnimation.png X%%DOCSDIR%%/html/api/structiSprite2DUVAnimationFrame-members.html X%%DOCSDIR%%/html/api/structiSprite2DUVAnimationFrame.html X%%DOCSDIR%%/html/api/structiStream.html X%%DOCSDIR%%/html/api/structiSprite2DUVAnimationFrame.png X%%DOCSDIR%%/html/api/structiSprite3DFactoryState-members.html X%%DOCSDIR%%/html/api/structiSprite3DFactoryState.html X%%DOCSDIR%%/html/api/structiSprite3DFactoryState.png X%%DOCSDIR%%/html/api/structiSprite3DState-members.html X%%DOCSDIR%%/html/api/structiSprite3DState.html X%%DOCSDIR%%/html/api/structiSprite3DState.png X%%DOCSDIR%%/html/api/structiSpriteAction-members.html X%%DOCSDIR%%/html/api/structiSpriteAction.html X%%DOCSDIR%%/html/api/structiSpriteAction.png X%%DOCSDIR%%/html/api/structiSpriteCal3DFactoryState-members.html X%%DOCSDIR%%/html/api/structiSpriteCal3DFactoryState.html X%%DOCSDIR%%/html/api/structiSpriteCal3DFactoryState.png X%%DOCSDIR%%/html/api/structiSpriteCal3DSocket-members.html X%%DOCSDIR%%/html/api/structiSpriteCal3DSocket.html X%%DOCSDIR%%/html/api/structiSpriteCal3DSocket.png X%%DOCSDIR%%/html/api/structiSpriteCal3DState-members.html X%%DOCSDIR%%/html/api/structiSpriteCal3DState.html X%%DOCSDIR%%/html/api/structiSpriteCal3DState.png X%%DOCSDIR%%/html/api/structiSpriteFrame-members.html X%%DOCSDIR%%/html/api/structiSpriteFrame.html X%%DOCSDIR%%/html/api/structiSpriteFrame.png X%%DOCSDIR%%/html/api/structiSpriteSocket-members.html X%%DOCSDIR%%/html/api/structiSpriteSocket.html X%%DOCSDIR%%/html/api/structiSpriteSocket.png X%%DOCSDIR%%/html/api/structiStandardReporterListener-members.html X%%DOCSDIR%%/html/api/structiStandardReporterListener.html X%%DOCSDIR%%/html/api/structiStandardReporterListener.png X%%DOCSDIR%%/html/api/structiStarsState-members.html X%%DOCSDIR%%/html/api/structiStarsState.html X%%DOCSDIR%%/html/api/structiStarsState.png X%%DOCSDIR%%/html/api/structiStaticPVSTree-members.html X%%DOCSDIR%%/html/api/structiStaticPVSTree.html X%%DOCSDIR%%/html/api/structiStaticPVSTree.png X%%DOCSDIR%%/html/api/structiStream-members.html X%%DOCSDIR%%/html/api/structiStream.png X%%DOCSDIR%%/html/api/structiStreamFormat-members.html X%%DOCSDIR%%/html/api/structiStreamFormat.html X%%DOCSDIR%%/html/api/structiStreamFormat.png X%%DOCSDIR%%/html/api/structiStreamIterator-members.html X%%DOCSDIR%%/html/api/structiStreamIterator.html X%%DOCSDIR%%/html/api/structiStreamIterator.png X%%DOCSDIR%%/html/api/structiString-members.html X%%DOCSDIR%%/html/api/structiString.html X%%DOCSDIR%%/html/api/structiString.png X%%DOCSDIR%%/html/api/structiStringArray-members.html X%%DOCSDIR%%/html/api/structiStringArray.html X%%DOCSDIR%%/html/api/structiStringArray.png X%%DOCSDIR%%/html/api/structiStringSet-members.html X%%DOCSDIR%%/html/api/structiStringSet.html X%%DOCSDIR%%/html/api/structiStringSet.png X%%DOCSDIR%%/html/api/structiSuperLightmap-members.html X%%DOCSDIR%%/html/api/structiSuperLightmap.html X%%DOCSDIR%%/html/api/structiSuperLightmap.png X%%DOCSDIR%%/html/api/structiSyntaxService-members.html X%%DOCSDIR%%/html/api/structiSyntaxService.html X%%DOCSDIR%%/html/api/structiSyntaxService.png X%%DOCSDIR%%/html/api/structiTerraFormer-members.html X%%DOCSDIR%%/html/api/structiTerraFormer.html X%%DOCSDIR%%/html/api/structiTerraFormer.png X%%DOCSDIR%%/html/api/structiTerraSampler-members.html X%%DOCSDIR%%/html/api/structiTerraSampler.html X%%DOCSDIR%%/html/api/structiTerraSampler.png X%%DOCSDIR%%/html/api/structiTerrainFactoryState-members.html X%%DOCSDIR%%/html/api/structiTerrainFactoryState.html X%%DOCSDIR%%/html/api/structiTerrainFactoryState.png X%%DOCSDIR%%/html/api/structiTerrainObjectState-members.html X%%DOCSDIR%%/html/api/structiTerrainObjectState.html X%%DOCSDIR%%/html/api/structiTerrainObjectState.png X%%DOCSDIR%%/html/api/structiTextureCallback-members.html X%%DOCSDIR%%/html/api/structiTextureCallback.html X%%DOCSDIR%%/html/api/structiTextureCallback.png X%%DOCSDIR%%/html/api/structiTextureFactory-members.html X%%DOCSDIR%%/html/api/structiTextureFactory.html X%%DOCSDIR%%/html/api/structiTextureFactory.png X%%DOCSDIR%%/html/api/structiTextureHandle-members.html X%%DOCSDIR%%/html/api/structiTextureHandle.html X%%DOCSDIR%%/html/api/structiTextureList.html X%%DOCSDIR%%/html/api/structiTextureHandle.png X%%DOCSDIR%%/html/api/structiTextureList-members.html X%%DOCSDIR%%/html/api/structiTextureList.png X%%DOCSDIR%%/html/api/structiTextureLoaderContext-members.html X%%DOCSDIR%%/html/api/structiTextureLoaderContext.html X%%DOCSDIR%%/html/api/structiTextureLoaderContext.png X%%DOCSDIR%%/html/api/structiTextureManager-members.html X%%DOCSDIR%%/html/api/structiTextureManager.html X%%DOCSDIR%%/html/api/structiTextureManager.png X%%DOCSDIR%%/html/api/structiTextureType-members.html X%%DOCSDIR%%/html/api/structiTextureType.html X%%DOCSDIR%%/html/api/structiTextureType.png X%%DOCSDIR%%/html/api/structiTextureWrapper-members.html X%%DOCSDIR%%/html/api/structiTextureWrapper.html X%%DOCSDIR%%/html/api/structiTextureWrapper.png X%%DOCSDIR%%/html/api/structiThingEnvironment-members.html X%%DOCSDIR%%/html/api/structiThingEnvironment.html X%%DOCSDIR%%/html/api/structiThingEnvironment.png X%%DOCSDIR%%/html/api/structiThingFactoryState-members.html X%%DOCSDIR%%/html/api/structiThingFactoryState.html X%%DOCSDIR%%/html/api/structiThingFactoryState.png X%%DOCSDIR%%/html/api/structiThingState-members.html X%%DOCSDIR%%/html/api/structiThingState.html X%%DOCSDIR%%/html/api/structiThingState.png X%%DOCSDIR%%/html/api/structiTimerEvent-members.html X%%DOCSDIR%%/html/api/structiTimerEvent.html X%%DOCSDIR%%/html/api/structiTimerEvent.png X%%DOCSDIR%%/html/api/structiUserRenderBufferIterator-members.html X%%DOCSDIR%%/html/api/structiUserRenderBufferIterator.html X%%DOCSDIR%%/html/api/structiUserRenderBufferIterator.png X%%DOCSDIR%%/html/api/structiVFS-members.html X%%DOCSDIR%%/html/api/structiVerbosityManager-members.html X%%DOCSDIR%%/html/api/structiVerbosityManager.html X%%DOCSDIR%%/html/api/structiVerbosityManager.png X%%DOCSDIR%%/html/api/structiVertexLightCalculator-members.html X%%DOCSDIR%%/html/api/structiVertexLightCalculator.html X%%DOCSDIR%%/html/api/structiVertexLightCalculator.png X%%DOCSDIR%%/html/api/structiVideoStream.html X%%DOCSDIR%%/html/api/structiVideoStream-members.html X%%DOCSDIR%%/html/api/structiVideoStream.png X%%DOCSDIR%%/html/api/structiView-members.html X%%DOCSDIR%%/html/api/structiView.html X%%DOCSDIR%%/html/api/structiView.png X%%DOCSDIR%%/html/api/structiVirtualClock-members.html X%%DOCSDIR%%/html/api/structiVirtualClock.html X%%DOCSDIR%%/html/api/structiVirtualClock.png X%%DOCSDIR%%/html/api/structiVisibilityCuller-members.html X%%DOCSDIR%%/html/api/structiVisibilityCuller.html X%%DOCSDIR%%/html/api/structiVisibilityCuller.png X%%DOCSDIR%%/html/api/structiVisibilityCullerListener-members.html X%%DOCSDIR%%/html/api/structiVisibilityCullerListener.html X%%DOCSDIR%%/html/api/structiVisibilityCullerListener.png X%%DOCSDIR%%/html/api/structiVisibilityObject-members.html X%%DOCSDIR%%/html/api/structiVisibilityObject.html X%%DOCSDIR%%/html/api/structiVisibilityObject.png X%%DOCSDIR%%/html/api/structiVisibilityObjectIterator-members.html X%%DOCSDIR%%/html/api/structiVisibilityObjectIterator.html X%%DOCSDIR%%/html/api/structiVisibilityObjectIterator.png X%%DOCSDIR%%/html/api/structiVosA3DL-members.html X%%DOCSDIR%%/html/api/structiVosA3DL.html X%%DOCSDIR%%/html/api/structiVosA3DL.png X%%DOCSDIR%%/html/api/structiVosApi-members.html X%%DOCSDIR%%/html/api/structiVosApi.html X%%DOCSDIR%%/html/api/structiVosApi.png X%%DOCSDIR%%/html/api/structiVosObject3D-members.html X%%DOCSDIR%%/html/api/structiVosObject3D.html X%%DOCSDIR%%/html/api/structiVosObject3D.png X%%DOCSDIR%%/html/api/structiVosSector-members.html X%%DOCSDIR%%/html/api/structiVosSector.html X%%DOCSDIR%%/html/api/structiVosSector.png X%%DOCSDIR%%/html/api/structiWin32Assistant-members.html X%%DOCSDIR%%/html/api/structiWin32Assistant.html X%%DOCSDIR%%/html/api/structiWin32Assistant.png X%%DOCSDIR%%/html/api/structiWxWindow-members.html X%%DOCSDIR%%/html/api/structiWxWindow.html X%%DOCSDIR%%/html/api/structiWxWindow.png X%%DOCSDIR%%/html/api/structscfFakeInterface_1_1InterfaceTraits-members.html X%%DOCSDIR%%/html/api/subrec_8h.html X%%DOCSDIR%%/html/api/structscfFakeInterface_1_1InterfaceTraits.html X%%DOCSDIR%%/html/api/subrec2_8h-source.html X%%DOCSDIR%%/html/api/subrec_8h-source.html X%%DOCSDIR%%/html/api/sysfunc_8h-source.html X%%DOCSDIR%%/html/api/sysfunc_8h.html X%%DOCSDIR%%/html/api/syspath_8h-source.html X%%DOCSDIR%%/html/api/syspath_8h.html X%%DOCSDIR%%/html/api/tcovbuf_8h-source.html X%%DOCSDIR%%/html/api/terraform_8h-source.html X%%DOCSDIR%%/html/api/terrain_8h-source.html X%%DOCSDIR%%/html/api/textrans_8h-source.html X%%DOCSDIR%%/html/api/textrans_8h.html X%%DOCSDIR%%/html/api/thing_8h-source.html X%%DOCSDIR%%/html/api/thing_8h.html X%%DOCSDIR%%/html/api/thread_8h-source.html X%%DOCSDIR%%/html/api/threadjobqueue_8h.html X%%DOCSDIR%%/html/api/threadjobqueue_8h-source.html X%%DOCSDIR%%/html/api/tokenlist_8h-source.html X%%DOCSDIR%%/html/api/tokenlist_8h.html X%%DOCSDIR%%/html/api/transfrm_8h-source.html X%%DOCSDIR%%/html/api/transfrm_8h.html X%%DOCSDIR%%/html/api/tri_8h-source.html X%%DOCSDIR%%/html/api/trimesh_8h-source.html X%%DOCSDIR%%/html/api/trimeshlod_8h-source.html X%%DOCSDIR%%/html/api/unix_2csosdefs_8h-source.html X%%DOCSDIR%%/html/api/userrndbuf_8h-source.html X%%DOCSDIR%%/html/api/userrndbuf_8h.html X%%DOCSDIR%%/html/api/util_8h-source.html X%%DOCSDIR%%/html/api/vector2_8h-source.html X%%DOCSDIR%%/html/api/vector2_8h.html X%%DOCSDIR%%/html/api/vector3_8h-source.html X%%DOCSDIR%%/html/api/vector3_8h.html X%%DOCSDIR%%/html/api/vector4_8h-source.html X%%DOCSDIR%%/html/api/vector4_8h.html X%%DOCSDIR%%/html/api/verbosity_8h-source.html X%%DOCSDIR%%/html/api/verbosity_8h.html X%%DOCSDIR%%/html/api/verbositymanager_8h-source.html X%%DOCSDIR%%/html/api/verbositymanager_8h.html X%%DOCSDIR%%/html/api/vertexlight_8h-source.html X%%DOCSDIR%%/html/api/vertexlight_8h.html X%%DOCSDIR%%/html/api/vertexlistwalker_8h-source.html X%%DOCSDIR%%/html/api/vfs_8h-source.html X%%DOCSDIR%%/html/api/vfscache_8h-source.html X%%DOCSDIR%%/html/api/vfscache_8h.html X%%DOCSDIR%%/html/api/vfsdirchange_8h-source.html X%%DOCSDIR%%/html/api/vfsdirchange_8h.html X%%DOCSDIR%%/html/api/vfsplat_8h-source.html X%%DOCSDIR%%/html/api/viscull_8h.html X%%DOCSDIR%%/html/api/vidprefs_8h-source.html X%%DOCSDIR%%/html/api/view_8h-source.html X%%DOCSDIR%%/html/api/viscull_8h-source.html X%%DOCSDIR%%/html/api/vosa3dl_8h-source.html X%%DOCSDIR%%/html/api/vosa3dl_8h.html X%%DOCSDIR%%/html/api/vosapi_8h-source.html X%%DOCSDIR%%/html/api/weakref_8h-source.html X%%DOCSDIR%%/html/api/weakref_8h.html X%%DOCSDIR%%/html/api/weakrefarr_8h-source.html X%%DOCSDIR%%/html/api/weakrefarr_8h.html X%%DOCSDIR%%/html/api/win32_2callstack_8h-source.html X%%DOCSDIR%%/html/api/win32_2callstack_8h.html X%%DOCSDIR%%/html/api/win32_2csosdefs_8h-source.html X%%DOCSDIR%%/html/api/win32_8h-source.html X%%DOCSDIR%%/html/api/win32_8h.html X%%DOCSDIR%%/html/api/wintools_8h-source.html X%%DOCSDIR%%/html/api/wintools_8h.html X%%DOCSDIR%%/html/api/wrapper_8h-source.html X%%DOCSDIR%%/html/api/writer_8h-source.html X%%DOCSDIR%%/html/api/writer_8h.html X%%DOCSDIR%%/html/api/wxwin_8h-source.html X%%DOCSDIR%%/html/api/xmltiny_8h-source.html X%%DOCSDIR%%/html/api/xorpat_8h-source.html X%%DOCSDIR%%/html/api/xorpat_8h.html X%%DOCSDIR%%/html/api/zip_8h-source.html X%%DATADIR%%/bindings/python/_cspace.so X%%DATADIR%%/bindings/python/cspace.py X%%DATADIR%%/bindings/python/cshelper.py X%%DATADIR%%/bindings/python/pysimp.py X%%DATADIR%%/bindings/python/pysimp2.py X%%DATADIR%%/bindings/python/pysimpcd.py X%%DATADIR%%/bindings/python/tutorial0.py X%%DATADIR%%/bindings/python/tutorial1.py X%%DATADIR%%/bindings/python/tutorial2.py X%%DATADIR%%/bindings/python/tutorial3.py X%%DATADIR%%/bindings/java/SimpleRoom.java X%%DATADIR%%/build/autoconf/checklib.m4 X%%DATADIR%%/build/autoconf/checkbuild.m4 X%%DATADIR%%/build/autoconf/checkcppunit.m4 X%%DATADIR%%/build/autoconf/checkcswin32libs.m4 X%%DATADIR%%/build/autoconf/checklibtool.m4 X%%DATADIR%%/build/autoconf/checkpic.m4 X%%DATADIR%%/build/autoconf/checkprog.m4 X%%DATADIR%%/build/autoconf/checkpthread.m4 X%%DATADIR%%/build/autoconf/checkpython.m4 X%%DATADIR%%/build/autoconf/checktt2.m4 X%%DATADIR%%/build/autoconf/compiler.m4 X%%DATADIR%%/build/autoconf/config.guess X%%DATADIR%%/build/autoconf/config.sub X%%DATADIR%%/build/autoconf/crystal.m4 X%%DATADIR%%/build/autoconf/diagnose.m4 X%%DATADIR%%/build/autoconf/embed.m4 X%%DATADIR%%/build/autoconf/emit.m4 X%%DATADIR%%/build/autoconf/headercache.m4 X%%DATADIR%%/build/autoconf/installdirs.m4 X%%DATADIR%%/build/autoconf/jamcache.m4 X%%DATADIR%%/build/autoconf/makecache.m4 X%%DATADIR%%/build/autoconf/mkdir.m4 X%%DATADIR%%/build/autoconf/packageinfo.m4 X%%DATADIR%%/build/autoconf/path.m4 X%%DATADIR%%/build/autoconf/progver.m4 X%%DATADIR%%/build/autoconf/qualify.m4 X%%DATADIR%%/build/autoconf/split.m4 X%%DATADIR%%/build/autoconf/textcache.m4 X%%DATADIR%%/build/autoconf/trim.m4 X%%DATADIR%%/build/autoconf/warnings.m4 X%%DATADIR%%/build/autoconf/install-sh X%%DATADIR%%/build/autoconf/cel.m4 X%%DATADIR%%/build/autoconf/cs_check_host.m4 X%%DATADIR%%/build/jam/build.jam X%%DATADIR%%/build/jam/application.jam X%%DATADIR%%/build/jam/assembler.jam X%%DATADIR%%/build/jam/bisonflex.jam X%%DATADIR%%/build/jam/clean.jam X%%DATADIR%%/build/jam/compiler.jam X%%DATADIR%%/build/jam/docs.jam X%%DATADIR%%/build/jam/dump.jam X%%DATADIR%%/build/jam/flags.jam X%%DATADIR%%/build/jam/groups.jam X%%DATADIR%%/build/jam/help.jam X%%DATADIR%%/build/jam/helper.jam X%%DATADIR%%/build/jam/install.jam X%%DATADIR%%/build/jam/jamcompatibility.jam X%%DATADIR%%/build/jam/library.jam X%%DATADIR%%/build/jam/macosx.jam X%%DATADIR%%/build/jam/msvcgen.jam X%%DATADIR%%/build/jam/objectivec.jam X%%DATADIR%%/build/jam/objects.jam X%%DATADIR%%/build/jam/options.jam X%%DATADIR%%/build/jam/plugin.jam X%%DATADIR%%/build/jam/property.jam X%%DATADIR%%/build/jam/resource.jam X%%DATADIR%%/build/jam/static.jam X%%DATADIR%%/build/jam/subdir.jam X%%DATADIR%%/build/jam/swig.jam X%%DATADIR%%/build/jam/unittest.jam X%%DATADIR%%/build/jam/unix.jam X%%DATADIR%%/build/jam/variant.jam X%%DATADIR%%/build/jam/win32.jam X%%DATADIR%%/build/msvcgen/control.tlib X%%DATADIR%%/build/msvcgen/macros.tlib X%%DATADIR%%/build/msvcgen/project6.tlib X%%DATADIR%%/build/msvcgen/project7.tlib X%%DATADIR%%/build/msvcgen/projectx6.tlib X%%DATADIR%%/build/msvcgen/projectx7.tlib X%%DATADIR%%/build/msvcgen/workspace6.tlib X%%DATADIR%%/build/msvcgen/workspace7.tlib X%%DATADIR%%/build/jamtemplate/README X%%DATADIR%%/build/jamtemplate/Jamfile-src.template X%%DATADIR%%/build/jamtemplate/Jamfile.template X%%DATADIR%%/build/jamtemplate/Jamrules.template X%%DATADIR%%/build/jamtemplate/README-msvc.template X%%DATADIR%%/build/jamtemplate/README.template X%%DATADIR%%/build/jamtemplate/app.cpp.template X%%DATADIR%%/build/jamtemplate/app.h.template X%%DATADIR%%/build/jamtemplate/autogen.template X%%DATADIR%%/build/jamtemplate/config-msvc.template X%%DATADIR%%/build/jamtemplate/configure.template X%%DATADIR%%/build/jamtemplate/main.template X%%DATADIR%%/build/jamtemplate/projheader.template X%%DATADIR%%/build/jamtemplate/createproject.sh X%%DATADIR%%/build/maketemplate/README X%%DATADIR%%/build/maketemplate/Makefile.template X%%DATADIR%%/build/maketemplate/appwrap.sh X%%DATADIR%%/data/awsdef.zip X%%DATADIR%%/data/fancycon.zip X%%DATADIR%%/data/standard.zip X%%DATADIR%%/data/stdtex.zip X%%DATADIR%%/data/teapot.zip X%%DATADIR%%/data/ttf-dejavu.zip X%%DATADIR%%/data/ttf-vera.zip X%%DATADIR%%/data/unifont.zip X%%DATADIR%%/data/maps/flarge/cube_street.dds X%%DATADIR%%/data/maps/flarge/mosaic-detail.dds X%%DATADIR%%/data/maps/flarge/world X%%DATADIR%%/data/maps/isomap/vedette.spr X%%DATADIR%%/data/maps/isomap/world X%%DATADIR%%/data/maps/parallaxtest/boxh.jpg X%%DATADIR%%/data/maps/parallaxtest/box.jpg X%%DATADIR%%/data/maps/parallaxtest/boxn.jpg X%%DATADIR%%/data/maps/parallaxtest/boxn.png X%%DATADIR%%/data/maps/parallaxtest/floor.jpg X%%DATADIR%%/data/maps/parallaxtest/walls.jpg X%%DATADIR%%/data/maps/parallaxtest/world X%%DATADIR%%/data/maps/particles/dot.png X%%DATADIR%%/data/maps/particles/world X%%DATADIR%%/data/maps/partsys/world X%%DATADIR%%/data/maps/r3dtest/world X%%DATADIR%%/data/maps/stenciltest/bricks.png X%%DATADIR%%/data/maps/stenciltest/bricks_n.png X%%DATADIR%%/data/maps/stenciltest/world X%%DATADIR%%/data/maps/terrain/grass.png X%%DATADIR%%/data/maps/terrain/grassDOT3.png X%%DATADIR%%/data/maps/terrain/heightmap.png X%%DATADIR%%/data/maps/terrain/heightmap_257x257.png X%%DATADIR%%/data/maps/terrain/materialmap.png X%%DATADIR%%/data/maps/terrain/materialmap_base.png X%%DATADIR%%/data/maps/terrain/normalmap.png X%%DATADIR%%/data/maps/terrain/swiss1_b.jpg X%%DATADIR%%/data/maps/terrain/swiss1_d.jpg X%%DATADIR%%/data/maps/terrain/swiss1_f.jpg X%%DATADIR%%/data/maps/terrain/swiss1_l.jpg X%%DATADIR%%/data/maps/terrain/swiss1_r.jpg X%%DATADIR%%/data/maps/terrain/swiss1_u.jpg X%%DATADIR%%/data/maps/terrain/world X%%DATADIR%%/data/maps/terrainf/world X%%DATADIR%%/data/aws/ControlBarTest.def X%%DATADIR%%/data/aws/PopupMenuTest.def X%%DATADIR%%/data/aws/PopupMenuTest2.def X%%DATADIR%%/data/aws/awstest.def X%%DATADIR%%/data/aws/awstest.xml.def X%%DATADIR%%/data/aws/awstest2.def X%%DATADIR%%/data/aws/awstut.def X%%DATADIR%%/data/aws/buttonTest.def X%%DATADIR%%/data/aws/layoutTest.def X%%DATADIR%%/data/aws/stddlg.def X%%DATADIR%%/data/aws/windowTest.def X%%DATADIR%%/data/aws/windows_skin.def X%%DATADIR%%/data/cube/cubemap_bk.jpg X%%DATADIR%%/data/cube/cubemap_dn.jpg X%%DATADIR%%/data/cube/cubemap_fr.jpg X%%DATADIR%%/data/cube/cubemap_lf.jpg X%%DATADIR%%/data/cube/cubemap_rt.jpg X%%DATADIR%%/data/cube/cubemap_up.jpg X%%DATADIR%%/data/shader/ambient.avp X%%DATADIR%%/data/shader/ambient.fvp X%%DATADIR%%/data/shader/ambient.xml X%%DATADIR%%/data/shader/ambient2.xml X%%DATADIR%%/data/shader/bump_ppl_diffuse.avp X%%DATADIR%%/data/shader/bump_ppl_diffuse_a.avp X%%DATADIR%%/data/shader/bump_ppl_diffuse_attn.avp X%%DATADIR%%/data/shader/bump_ppl_diffuse_attn2.avp X%%DATADIR%%/data/shader/bump_ppl_scatter.avp X%%DATADIR%%/data/shader/bump_ppl_scatter_b.avp X%%DATADIR%%/data/shader/cg_vertexlight.xml X%%DATADIR%%/data/shader/compressed_splatting_scattering.avp X%%DATADIR%%/data/shader/compressed_splatting_scattering_a.avp X%%DATADIR%%/data/shader/flat_ppl_attenuation.avp X%%DATADIR%%/data/shader/flat_ppl_attenuation2.avp X%%DATADIR%%/data/shader/flat_ppl_diffuse.avp X%%DATADIR%%/data/shader/flat_ppl_diffuse_a.avp X%%DATADIR%%/data/shader/flat_ppl_diffuse_b.avp X%%DATADIR%%/data/shader/light.xml X%%DATADIR%%/data/shader/light2.xml X%%DATADIR%%/data/shader/light_bumpmap.xml X%%DATADIR%%/data/shader/light_bumpmap2.xml X%%DATADIR%%/data/shader/light_scattering.xml X%%DATADIR%%/data/shader/particle_basic.xml X%%DATADIR%%/data/shader/reflect.xml X%%DATADIR%%/data/shader/reflectsphere.xml X%%DATADIR%%/data/shader/scattering.avp X%%DATADIR%%/data/shader/scattering_base.afp X%%DATADIR%%/data/shader/shadow.xml X%%DATADIR%%/data/shader/shadow2.xml X%%DATADIR%%/data/shader/shadowdebug.xml X%%DATADIR%%/data/shader/shadowextrude.avp X%%DATADIR%%/data/shader/shadowextrude2.avp X%%DATADIR%%/data/shader/sky_scattering.xml X%%DATADIR%%/data/shader/specifyambient.xml X%%DATADIR%%/data/shader/splatting_amb.avp X%%DATADIR%%/data/shader/splatting_amb.xml X%%DATADIR%%/data/shader/splatting_base.avp X%%DATADIR%%/data/shader/splatting_base.xml X%%DATADIR%%/data/shader/splatting_base_b.avp X%%DATADIR%%/data/shader/splatting_bump.avp X%%DATADIR%%/data/shader/splatting_bump.xml X%%DATADIR%%/data/shader/splatting_bump_a.avp X%%DATADIR%%/data/shader/splatting_bump_b.avp X%%DATADIR%%/data/shader/splatting_nobump.avp X%%DATADIR%%/data/shader/splatting_scattering.avp X%%DATADIR%%/data/shader/splatting_scattering.xml X%%DATADIR%%/data/shader/splatting_scattering_a.avp X%%DATADIR%%/data/shader/vertexlight.avp X%%DATADIR%%/data/shader/splatting_scattering_b.avp X%%DATADIR%%/data/shader/water.xml X%%DATADIR%%/data/shader/splatting_scattering_base.avp X%%DATADIR%%/data/shader/splatting_scattering_base.xml X%%DATADIR%%/data/shader/splatting_scattering_base_b.avp X%%DATADIR%%/data/shader/stat_dyn_reflect.xml X%%DATADIR%%/data/shader/std_lighting.xml X%%DATADIR%%/data/shader/std_lighting_detail.xml X%%DATADIR%%/data/shader/std_lighting_detail_add.xml X%%DATADIR%%/data/shader/std_lighting_detail_alpha.xml X%%DATADIR%%/data/shader/std_lighting_detail_alpha_scroll.xml X%%DATADIR%%/data/shader/std_lighting_portal.xml X%%DATADIR%%/data/shader/std_rloop_ambient.xml X%%DATADIR%%/data/shader/std_rloop_diffuse.xml X%%DATADIR%%/data/shader/std_rloop_fattest.xml X%%DATADIR%%/data/shader/std_rloop_fattest2.xml X%%DATADIR%%/data/shader/std_rloop_fattest3.xml X%%DATADIR%%/data/shader/std_rloop_shadowed.xml X%%DATADIR%%/data/shader/std_rloop_terrainfixed.xml X%%DATADIR%%/data/shader/terrain_fixed_base.xml X%%DATADIR%%/data/shader/terrain_fixed_splatting.xml X%%DATADIR%%/data/shader/vertexlight.fvp X%%DATADIR%%/data/shader/vproc_lighting.xml X%%DATADIR%%/data/shader/parallax/parallax.afp X%%DATADIR%%/data/shader/parallax/parallax.avp X%%DATADIR%%/data/shader/parallax/parallax.cgfp X%%DATADIR%%/data/shader/parallax/parallax.cgvp X%%DATADIR%%/data/shader/parallax/parallax.xml X%%DATADIR%%/data/shader/parallax/parallax_spec.cgfp X%%DATADIR%%/data/shader/snippets/fog-ffp.inc X%%DATADIR%%/data/shader/snippets/fog-fvp.inc X%%DATADIR%%/data/shader/snippets/fog-mappings.inc X%%DATADIR%%/data/shader/snippets/fog-pass.inc X%%DATADIR%%/data/varia/partedit.def X%%DATADIR%%/data/varia/picview.def X%%DATADIR%%/data/varia/vidprefs.def X%%DATADIR%%/data/varia/viewmesh.def X%%DATADIR%%/data/varia/walktest.cam X%%DATADIR%%/conversion/hammer/crystal.fgd X%%DATADIR%%/conversion/hammer/README X%%DATADIR%%/conversion/max/showMap.mcr X%%DATADIR%%/conversion/max/Poly_Counter.mcr X%%DATADIR%%/conversion/max/exportcsp.mcr X%%DATADIR%%/conversion/max/exportlights.mcr X%%DATADIR%%/conversion/max/exportsprite.mcr X%%DATADIR%%/conversion/max/fixmaterials.mcr X%%DATADIR%%/conversion/max/ps_terrain.materials.txt X%%DATADIR%%/conversion/max/ps_terrain.render.txt X%%DATADIR%%/conversion/max/ps_terrain.shaders.txt X%%DATADIR%%/conversion/max/ps_terrain.textures.txt X%%DATADIR%%/conversion/max/psmaxmenus5.mnu X%%DATADIR%%/conversion/max/sanitycheck.ms X%%DATADIR%%/conversion/max/README X%%DATADIR%%/conversion/max/exporterguide/basics.htm X%%DATADIR%%/conversion/max/exporterguide/emitter.htm X%%DATADIR%%/conversion/max/exporterguide/evenmore.htm X%%DATADIR%%/conversion/max/exporterguide/exportscene.htm X%%DATADIR%%/conversion/max/exporterguide/exportsprite.htm X%%DATADIR%%/conversion/max/exporterguide/index.htm X%%DATADIR%%/conversion/max/exporterguide/installation.htm X%%DATADIR%%/conversion/max/exporterguide/intro.htm X%%DATADIR%%/conversion/max/exporterguide/left_frame.htm X%%DATADIR%%/conversion/max/exporterguide/light.htm X%%DATADIR%%/conversion/max/exporterguide/lod.htm X%%DATADIR%%/conversion/max/exporterguide/modelsprite.htm X%%DATADIR%%/conversion/max/exporterguide/object.htm X%%DATADIR%%/conversion/max/exporterguide/occluders.htm X%%DATADIR%%/conversion/max/exporterguide/portals.htm X%%DATADIR%%/conversion/max/exporterguide/samples.htm X%%DATADIR%%/conversion/max/exporterguide/sectors.htm X%%DATADIR%%/conversion/max/exporterguide/sectorsinfo.htm X%%DATADIR%%/conversion/max/exporterguide/terrain.htm X%%DATADIR%%/conversion/max/exporterguide/thinggenmesh.htm X%%DATADIR%%/conversion/max/exporterguide/pictures/3dsMaxExporters_img1.gif X%%DATADIR%%/conversion/max/exporterguide/pictures/3dsMaxExporters_img2.gif X%%DATADIR%%/conversion/max/exporterguide/pictures/attrib.jpg X%%DATADIR%%/conversion/max/exporterguide/pictures/particle.jpg X%%DATADIR%%/conversion/max/exporterguide/pictures/room_properties.jpg X%%DATADIR%%/conversion/max/gmeshskelanim/IPhysique.gup X%%DATADIR%%/conversion/max/gmeshskelanim/export_genmesh_skelanim.mcr X%%DATADIR%%/conversion/max/gmeshskelanim/README X%%DATADIR%%/conversion/maya/CrystalExporter.mel X%%DATADIR%%/conversion/maya/README X%%DATADIR%%/conversion/maya/exportsprite.mel X%%DATADIR%%/conversion/qt2aws/qt2aws.xsl X%%DATADIR%%/conversion/qt2aws/README X%%DATADIR%%/conversion/qt2aws/qt3aws.xsl X@dirrm etc/crystalspace X@dirrm include/crystalspace/csgeom X@dirrm include/crystalspace/csgfx X@dirrm include/crystalspace/csplugincommon/canvas X@dirrm include/crystalspace/csplugincommon/directx X@dirrm include/crystalspace/csplugincommon/imageloader X@dirrm include/crystalspace/csplugincommon/iopengl X@dirrm include/crystalspace/csplugincommon/macosx X@dirrm include/crystalspace/csplugincommon/opengl X@dirrm include/crystalspace/csplugincommon/particlesys X@dirrm include/crystalspace/csplugincommon/render3d X@dirrm include/crystalspace/csplugincommon/renderstep X@dirrm include/crystalspace/csplugincommon/shader X@dirrm include/crystalspace/csplugincommon/soundloader X@dirrm include/crystalspace/csplugincommon/soundrenderer X@dirrm include/crystalspace/csplugincommon/win32 X@dirrm include/crystalspace/csplugincommon X@dirrm include/crystalspace/cstool X@dirrm include/crystalspace/csutil/macosx X@dirrm include/crystalspace/csutil/unix X@dirrm include/crystalspace/csutil/win32 X@dirrm include/crystalspace/csutil X@dirrm include/crystalspace/iaws X@dirrm include/crystalspace/iengine/rendersteps X@dirrm include/crystalspace/iengine X@dirrm include/crystalspace/igeom X@dirrm include/crystalspace/igraphic X@dirrm include/crystalspace/imap X@dirrm include/crystalspace/imesh X@dirrm include/crystalspace/inetwork X@dirrm include/crystalspace/isound X@dirrm include/crystalspace/itexture X@dirrm include/crystalspace/iutil X@dirrm include/crystalspace/ivaria X@dirrm include/crystalspace/ivideo/shader X@dirrm include/crystalspace/ivideo X@dirrm include/crystalspace X@dirrm lib/crystalspace X@dirrm %%DOCSDIR%%/html/manual/build/platform/win32/cygwin X@dirrm %%DOCSDIR%%/html/manual/build/platform/win32 X@dirrm %%DOCSDIR%%/html/manual/build/platform X@dirrm %%DOCSDIR%%/html/manual/build/wincvs X@dirrm %%DOCSDIR%%/html/manual/build X@dirrm %%DOCSDIR%%/html/manual/content/map2cs X@dirrm %%DOCSDIR%%/html/manual/content/sprites X@dirrm %%DOCSDIR%%/html/manual/content X@dirrm %%DOCSDIR%%/html/manual/usingcs/engine X@dirrm %%DOCSDIR%%/html/manual/usingcs/lighting X@dirrm %%DOCSDIR%%/html/manual/usingcs/ownprojects/kdevproj X@dirrm %%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc6proj X@dirrm %%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj X@dirrm %%DOCSDIR%%/html/manual/usingcs/ownprojects X@dirrm %%DOCSDIR%%/html/manual/usingcs X@dirrm %%DOCSDIR%%/html/manual X@dirrm %%DOCSDIR%%/html/api X@dirrm %%DOCSDIR%%/html X@dirrm %%DOCSDIR%% X@dirrm %%DATADIR%%/bindings/python X@dirrm %%DATADIR%%/bindings/java X@dirrm %%DATADIR%%/bindings X@dirrm %%DATADIR%%/build/autoconf X@dirrm %%DATADIR%%/build/jam X@dirrm %%DATADIR%%/build/msvcgen X@dirrm %%DATADIR%%/build/jamtemplate X@dirrm %%DATADIR%%/build/maketemplate X@dirrm %%DATADIR%%/build X@dirrm %%DATADIR%%/data/maps/flarge X@dirrm %%DATADIR%%/data/maps/isomap X@dirrm %%DATADIR%%/data/maps/parallaxtest X@dirrm %%DATADIR%%/data/maps/particles X@dirrm %%DATADIR%%/data/maps/partsys X@dirrm %%DATADIR%%/data/maps/r3dtest X@dirrm %%DATADIR%%/data/maps/stenciltest X@dirrm %%DATADIR%%/data/maps/terrain X@dirrm %%DATADIR%%/data/maps/terrainf X@dirrm %%DATADIR%%/data/maps X@dirrm %%DATADIR%%/data/aws X@dirrm %%DATADIR%%/data/cube X@dirrm %%DATADIR%%/data/shader/parallax X@dirrm %%DATADIR%%/data/shader/snippets X@dirrm %%DATADIR%%/data/shader X@dirrm %%DATADIR%%/data/varia X@dirrm %%DATADIR%%/data X@dirrm %%DATADIR%%/conversion/hammer X@dirrm %%DATADIR%%/conversion/max/exporterguide/pictures X@dirrm %%DATADIR%%/conversion/max/exporterguide X@dirrm %%DATADIR%%/conversion/max/gmeshskelanim X@dirrm %%DATADIR%%/conversion/max X@dirrm %%DATADIR%%/conversion/maya X@dirrm %%DATADIR%%/conversion/qt2aws X@dirrm %%DATADIR%%/conversion X@dirrm %%DATADIR%% END-of-crystalspace/pkg-plist echo x - crystalspace/pkg-descr sed 's/^X//' >crystalspace/pkg-descr << 'END-of-crystalspace/pkg-descr' XCrystal Space is a free (LGPL) and portable 3D Game Development Kit written in C++. XIt supports: true six degrees of freedom, colored lighting, lightmapped and stencil based lighting, Xshader support (CG, vertex programs, fragment programs, ...), mipmapping, portals, mirrors, alpha transparency, Xreflective surfaces, 3D sprites (frame based or with skeletal animation using cal3d animation library), Xprocedural textures, particle systems, halos, volumetric fog, scripting (using Python, Perl, Java, Xor potentially other languages), 16-bit and 32-bit display support, OpenGL, and software renderer, Xfont support (also with freetype), hierarchical transformations, physics plugin based on ODE X XWWW: http://www.crystalspace3d.org END-of-crystalspace/pkg-descr echo x - crystalspace/distinfo sed 's/^X//' >crystalspace/distinfo << 'END-of-crystalspace/distinfo' XMD5 (cs-pseudo-stable-2005-09-03.tar.bz2) = 4a6a03b9ca026a73c1d73cbf93e678d5 XSHA256 (cs-pseudo-stable-2005-09-03.tar.bz2) = fd6effcc525b9682c02b54d7cbde6fba66ba28570ede2582db151a61605bfed1 XSIZE (cs-pseudo-stable-2005-09-03.tar.bz2) = 24450106 END-of-crystalspace/distinfo echo x - crystalspace/Makefile sed 's/^X//' >crystalspace/Makefile << 'END-of-crystalspace/Makefile' X# New ports collection makefile for: Crystal Space 3d X# Date created: 2005-11-19 X# Whom: Jose Alonso Cardenas Marquez X# X# $FreeBSD$ X# X XPORTNAME= crystalspace XPORTVERSION= 0.99 XCATEGORIES= graphics XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= crystal XDISTNAME= cs-pseudo-stable-2005-09-03 X XMAINTAINER= acardenas@bsd.org.pe XCOMMENT= Free and portable 3D Game Development Kit X XBUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm XLIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \ X jpeg.9:${PORTSDIR}/graphics/jpeg \ X aa.1:${PORTSDIR}/graphics/aalib X XUSE_X_PREFIX= yes XUSE_BZIP2= yes XUSE_GMAKE= yes XGNU_CONFIGURE= yes XUSE_SDL= # XUSE_GL= yes XUSE_PYTHON= # XUSE_PERL5= # XUSE_REINPLACE= yes XLDFLAGS+= -L${LOCALBASE}/lib -L${X11BASE}/lib -pthread XCPPFLAGS+= -I${LOCALBASE}/include -I${X11BASE}/include XCONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} XMAKE_ENV= CC="${CC}" CFLAGS="${CFLAGS} ${CXX}" LDFLAGS="${LDFLAGS}" CPPFLAGS="${CPPFLAGS}" XCONFIGURE_ARGS+= --enable-cpu-specific-optimizations=no XDOCSDIR?= share/doc/${PORTNAME}-${PORTVERSION} XPLIST_SUB+= DOCSDIR=${DOCSDIR} XWRKSRC= ${WRKDIR}/CS X XOPTIONS= DEBUG "Build with debugging information" off \ X PYTHON "PYTHON interface" off \ X PERL "PERL interface" off \ X LCMS "Little Color Management System support" off \ X MNG "MNG/JNG graphic files support" off \ X MIKMOD "MIKMOD support" off \ X VORBIS "Ogg/Vorbis sound plugin support" off \ X 3DS "3DS files support" off \ X ODE "Plugin providing physics through ODE" off \ X FREETYPE2 "FREETYPE2 support" off \ X CAL3D "Skeletal based 3D character animation support" off \ X SDL "SDL support" off \ X CACA "LIBCACA support" off \ X CPPUNIT "The C++ Unit Test Library" off \ X BFD "Universal BFD library from the GNU binutils" off X X.include X X.if !defined(WITHOUT_DEBUG) XCONFIGURE_ARGS+= --enable-debug=yes X.else XCONFIGURE_ARGS+= --enable-debug=no X.endif X X.if !defined(WITHOUT_PYTHON) XUSE_PYTHON= yes X.else XCONFIGURE_ARGS+= --without-python X.endif X X.if !defined(WITHOUT_PERL) XUSE_PERL5= yes X.else XCONFIGURE_ARGS+= --without-perl X.endif X X.if !defined(WITHOUT_LCMS) XLIB_DEPENDS+= lcms.1:${PORTSDIR}/graphics/lcms X.else XCONFIGURE_ARGS+= --without-lcms X.endif X X.if !defined(WITHOUT_MNG) XLIB_DEPENDS+= mng.1:${PORTSDIR}/graphics/libmng X.else XCONFIGURE_ARGS+= --without-mng X.endif X X.if !defined(WITHOUT_MIKMOD) XLIB_DEPENDS+= mikmod.2:${PORTSDIR}/audio/libmikmod X.else XCONFIGURE_ARGS+= --without-mikmod X.endif X X.if !defined(WITHOUT_VORBIS) XLIB_DEPENDS+= vorbis:${PORTSDIR}/audio/libvorbis X.else XCONFIGURE_ARGS+= --without-ogg \ X --without-vorbis X.endif X X.if !defined(WITHOUT_3DS) XLIB_DEPENDS+= 3ds.1:${PORTSDIR}/graphics/lib3ds X.else XCONFIGURE_ARGS+= --without-3ds X.endif X X.if !defined(WITHOUT_ODE) XBUILD_DEPENDS+= ${X11BASE}/lib/libode.a:${PORTSDIR}/devel/ode-devel XCONFIGURE_ARGS+= --with-ode=${X11BASE} X.else XCONFIGURE_ARGS+= --without-ode X.endif X X.if !defined(WITHOUT_FREETYPE2) XLIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2 X.else XCONFIGURE_ARGS+= --without-freetype2 X.endif X X.if !defined(WITHOUT_CAL3D) XLIB_DEPENDS+= cal3d.11:${PORTSDIR}/graphics/cal3d-devel X.else XCONFIGURE_ARGS+= --without-cal3d X.endif X X.if !defined(WITHOUT_SDL) XUSE_SDL= sdl X.else XCONFIGURE_ARGS+= --without-sdl X.endif X X.if !defined(WITHOUT_CACA) XBUILD_DEPENDS+= ${LOCALBASE}/lib/libcaca.a:${PORTSDIR}/graphics/libcaca X.else XCONFIGURE_ARGS+= --without-caca X.endif X X.if !defined(WITHOUT_CPPUNIT) XLIB_DEPENDS+= cppunit-1.10:${PORTSDIR}/devel/cppunit X.else XCONFIGURE_ARGS+= --without-cppunit X.endif X X.if !defined(WITHOUT_BFD) XBUILD_DEPENDS+= ${LOCALBASE}/lib/libbfd.a:${PORTSDIR}/devel/libbfd X.else XCONFIGURE_ARGS+= --without-bfd X.endif X Xpre-fetch: X @${ECHO} " ---------------------------------------------" X @${ECHO} " - Minimal dependencies for Crystal Space 3d -" X @${ECHO} " ---------------------------------------------" X @${ECHO} " " X @${ECHO} " PNG files support" X @${ECHO} " JPEG files support" X @${ECHO} " AALIB for 2D rendering in text mode support" X @${ECHO} " NASM for performance enhancement" X @${ECHO} " " X @${ECHO} " " X Xpre-configure: X @${REINPLACE_CMD} -e 's,sdl-config,sdl11-config,g' ${WRKSRC}/configure X Xpost-configure: X.if defined(NOPORTDOCS) X @${REINPLACE_CMD} -e 42,44d ${WRKSRC}/Makefile X @${REINPLACE_CMD} -e 26d ${WRKSRC}/Jamfile X @${REINPLACE_CMD} -e 79d ${WRKSRC}/Jamfile X.endif X X.include >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Sat Nov 19 10:59:56 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Sat Nov 19 11:00:08 2005 Subject: ports/89291: [NEW PORT] graphics/crystalspace: Free and portable 3D Game Development Kit Message-ID: <200511191859.jAJIxuao058840@freefall.freebsd.org> Synopsis: [NEW PORT] graphics/crystalspace: Free and portable 3D Game Development Kit Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sat Nov 19 18:59:43 GMT 2005 Responsible-Changed-Why: Make this a ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=89291 From diff at infosemi.com Sat Nov 19 12:20:28 2005 From: diff at infosemi.com (diff) Date: Sat Nov 19 12:20:39 2005 Subject: misc/89293: ghostscript file corrupt on ftp server Message-ID: <200511192015.jAJKFdNc026203@www.freebsd.org> >Number: 89293 >Category: misc >Synopsis: ghostscript file corrupt on ftp server >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Nov 19 20:20:25 GMT 2005 >Closed-Date: >Last-Modified: >Originator: diff >Release: NA >Organization: infosemi >Environment: NA >Description: ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/ghostscript/pcl3-3.3.tar.gz size is 1KB on server. Should be 301470 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From rodrigc at FreeBSD.org Sat Nov 19 12:27:51 2005 From: rodrigc at FreeBSD.org (Craig Rodrigues) Date: Sat Nov 19 12:28:03 2005 Subject: ports/89293: ghostscript file corrupt on ftp server Message-ID: <200511192027.jAJKRom2072582@freefall.freebsd.org> Synopsis: ghostscript file corrupt on ftp server Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: rodrigc Responsible-Changed-When: Sat Nov 19 20:27:20 GMT 2005 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=89293 From rodrigc at FreeBSD.org Sat Nov 19 12:53:48 2005 From: rodrigc at FreeBSD.org (Craig Rodrigues) Date: Sat Nov 19 12:54:11 2005 Subject: threads/89262: [kernel] [patch] multi-threaded process hangs in kernel in fork() Message-ID: <200511192053.jAJKrl5H074473@freefall.freebsd.org> Synopsis: [kernel] [patch] multi-threaded process hangs in kernel in fork() Responsible-Changed-From-To: freebsd-bugs->freebsd-threads Responsible-Changed-By: rodrigc Responsible-Changed-When: Sat Nov 19 20:53:19 GMT 2005 Responsible-Changed-Why: Over to threads maintainers http://www.freebsd.org/cgi/query-pr.cgi?pr=89262 From PeterJeremy at optushome.com.au Sat Nov 19 15:40:34 2005 From: PeterJeremy at optushome.com.au (Peter Jeremy) Date: Sat Nov 19 15:40:48 2005 Subject: kern/78179: bus_dmamem_alloc() with BUS_DMA_NOWAIT can block Message-ID: <200511192340.jAJNeQLU095805@freefall.freebsd.org> The following reply was made to PR kern/78179; it has been noted by GNATS. From: Peter Jeremy To: Mark Tinguely Cc: bug-followup@freebsd.org Subject: Re: kern/78179: bus_dmamem_alloc() with BUS_DMA_NOWAIT can block Date: Sun, 20 Nov 2005 10:39:09 +1100 On Thu, 2005-Nov-17 16:04:14 -0600, Mark Tinguely wrote: >I took a stab at the problem that NOWAIT is not being honored in >contigmalloc() by making the vm_contig_launder_page() honor >the flag. Thank you. Of course, this doesn't help drivers like bktr(4) that use contigmalloc(M_NOWAIT) and panic() if the memory isn't available. I've gone through your changes and suspect you may have missed a few possibilities that can sleep. >*** vm/vm_contig.c.orig Thu Nov 17 15:10:10 2005 >--- vm/vm_contig.c Thu Nov 17 13:59:47 2005 >*************** >*** 95,100 **** >--- 95,105 ---- > object = m->object; > if (!VM_OBJECT_TRYLOCK(object)) > return (EAGAIN); >+ if (flags & M_NOWAIT && (m->flags & PG_BUSY || m->busy)) { >+ VM_OBJECT_UNLOCK(object); >+ printf("vm_contig_launder_page: would sleep (busy)\n"); >+ return (EWOULDBLOCK); I suspect all your EWOULDBLOCK should be EAGAIN for consistency. >+ } > if (vm_page_sleep_if_busy(m, TRUE, "vpctw0")) { > VM_OBJECT_UNLOCK(object); > vm_page_lock_queues(); >*************** >*** 104,126 **** ... >--- 109,149 ---- > if (m->dirty == 0 && m->hold_count == 0) > pmap_remove_all(m); This can sleep because it seizes a mutex for each entry. > if (m->dirty) { >+ /* Both paths use vm_pageout_flush() which forces >+ * a syncronous putpage for the kernel_object. >+ */ >+ if (flags & M_NOWAIT && object == kernel_object) { >+ VM_OBJECT_UNLOCK(object); >+ printf("vm_contig_launder_page: would sleep (kobject)\n"); >+ return (EWOULDBLOCK); >+ } > if (object->type == OBJT_VNODE) { > vm_page_unlock_queues(); > vp = object->handle; > VM_OBJECT_UNLOCK(object); > vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, curthread); vn_lock(9) implies this can sleep unless the 2nd argument includes LK_NOWAIT. > VM_OBJECT_LOCK(object); This will sleep if something else has grabbed the object mutex. >! vm_object_page_clean(object, 0, 0, >! (flags & M_NOWAIT) ? 0 : OBJPC_SYNC); > VM_OBJECT_UNLOCK(object); > VOP_UNLOCK(vp, 0, curthread); > vm_page_lock_queues(); This will sleep if something else is holding vm_page_queue_mtx. >! if ((flags & M_NOWAIT) && m->dirty) { >! printf("vm_contig_launder_page: would sleep (dirty)\n"); >! return (EWOULDBLOCK); >! } else >! return (0); > } else if (object->type == OBJT_SWAP || > object->type == OBJT_DEFAULT) { > m_tmp = m; >! vm_pageout_flush(&m_tmp, 1, >! (flags & M_NOWAIT) ? 0 : VM_PAGER_PUT_SYNC); > VM_OBJECT_UNLOCK(object); >! if ((flags & M_NOWAIT) && m->dirty) { >! printf("vm_contig_launder_page: would sleep (dirty)\n"); >! return (EWOULDBLOCK); >! } else >! return (0); > } > } else if (m->hold_count == 0) > vm_page_cache(m); >*************** -- Peter Jeremy From eguegan at assystembrime.com Sun Nov 20 00:10:10 2005 From: eguegan at assystembrime.com (Emmanuel GUEGAN) Date: Sun Nov 20 00:10:22 2005 Subject: misc/89305: D-Link NIC with VIA Rhine II, lost of Network and message displayed "vr0: rx packet lost" Message-ID: <200511200800.jAK806ni010783@www.freebsd.org> >Number: 89305 >Category: misc >Synopsis: D-Link NIC with VIA Rhine II, lost of Network and message displayed "vr0: rx packet lost" >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 20 08:10:09 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Emmanuel GUEGAN >Release: 6.0 >Organization: Assystem FRance >Environment: FreeBSD myserv 6.0-RELEASE FreeBSD 6.0-RELEASE #0: Sat Nov 19 15:04:45 CET 2005 root@myserv:/usr/obj/usr/src/sys/MYKERN i386 >Description: I 'm using a Via Rhine II 100mb pci network card on a samba server (celeron 450 MHz). When I am doing a heavy net transfert (several windows pcs making big transfert at the same time / network speed above 3~4 M Bytes/sec), after a while ( 1-2minutes) the message "vr0: rx packet lost" is displayed in loop and the network link is definitivly lost >How-To-Repeat: As decribe above, very heavy network transfert, after a little time, the probleme is systematic after a little while >Fix: The message "vr0: packet lost" is known both in the functions vr_poll_locked(...) and vr_intr(...) : if (status & VR_ISR_RX_DROPPED) { printf("vr%d: rx packet lost\n", sc->vr_unit); ifp->if_ierrors++; } when the flag VR_ISR_RX_DROPPED is up, it is displayed, but in the next segment the test (status & VR_ISR_RX_DROPPED) is missing to enter in the condition so packetscannot be Tx above by vr_rxeoc(sc) if ((status & VR_ISR_RX_ERR) || (status & VR_ISR_RX_NOBUF) || (status & VR_ISR_RX_NOBUF) || (status & VR_ISR_RX_OFLOW)) { printf("vr%d: receive error (%04x)", sc->vr_unit, status); ... if (status & VR_ISR_RX_DROPPED) printf(" packet lost"); printf("\n"); vr_rxeoc(sc); } I propose this patch : RCS file: RCS/if_vr.c,v retrieving revision 1.1 diff -r1.1 if_vr.c 1198c1198,1200 < (status & VR_ISR_RX_NOBUF) || (status & VR_ISR_RX_OFLOW)) { --- > (status & VR_ISR_RX_NOBUF) || (status & VR_ISR_RX_OFLOW) > || (status & VR_ISR_RX_DROPPED) > ) { 1281c1283,1285 < (status & VR_ISR_RX_NOBUF) || (status & VR_ISR_RX_OFLOW)) { --- > (status & VR_ISR_RX_NOBUF) || (status & VR_ISR_RX_OFLOW) > || (status & VR_ISR_RX_DROPPED) > ) { >Release-Note: >Audit-Trail: >Unformatted: From ptrimmel at tomcat.at Sun Nov 20 04:00:55 2005 From: ptrimmel at tomcat.at (Peter R. Trimmel) Date: Sun Nov 20 04:01:33 2005 Subject: kern/89310: panic: kmem_malloc fails with "kmem_map too small" in ata_alloc_composite Message-ID: <200511201151.jAKBpvPg082716@www.freebsd.org> >Number: 89310 >Category: kern >Synopsis: panic: kmem_malloc fails with "kmem_map too small" in ata_alloc_composite >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 20 12:00:49 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Peter R. Trimmel >Release: 6.0-STABLE >Organization: >Environment: FreeBSD saturn.intranet.tomcat.at 6.0-STABLE FreeBSD 6.0-STABLE #1: Sun Nov 20 10:29:28 CET 2005 ptrimmel@saturn.intranet.tomcat.at:/usr/obj/usr/src/sys/SATURN i386 >Description: FreeBSD 6.0-RELASE and 6.0-STABLE (CVS 11/20) crash after panic in kmem_alloc. FTP copy of 27GB tar archive to this machine fails repeatedly. /usr/bin/top shows 52M wired mem when transfer starts and ~128M wired mem shortly before before panic. 10GB have been copied so far. increasing vm.kmem_size in loader.conf to twice the calculated size (="257581056") delays the panic. wired mem grows to ~256M now. 20GB have been copied. I initially used GEOM_MIRROR and GEOM_STRIPE for the RAID0+1 setup but soon noticed random "adNN failed to start: out of memory" messages due to kmem_alloc failures. However GEOM did not crash but caused file system corruptions. So I switched back to ATARAID which causes panics but at least leaves the file system structures intact. FreeBSD 5.4-RELEASE did not panic in ATARAID FreeBSD 4.11-RELEASE did not panic in ATARAID (switched back to this version now, works flawlessly) -- KGDB -- DOH! ata_alloc_composite failed! panic: kmem_malloc(4096): kmem_map too small: 128790528 total allocated Uptime: 2h1m19s Dumping 383 MB (2 chunks) chunk 0: 1MB (156 pages) ... ok chunk 1: 383MB (98044 pages) 368 352 336 320 304 288 272 256 240 224 208 192 176 160 144 128 112 96 80 64 48 32 16 #0 doadump () at pcpu.h:165 165 __asm __volatile("movl %%fs:0,%0" : "=r" (td)); (kgdb) backtrace #0 doadump () at pcpu.h:165 #1 0xc06abfe0 in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:399 #2 0xc06ac329 in panic (fmt=0xc095cde1 "kmem_malloc(%ld): kmem_map too small: %ld total allocated") at /usr/src/sys/kern/kern_shutdown.c:555 #3 0xc086a50b in kmem_malloc (map=0xc10430c0, size=4096, flags=1026) at /usr/src/sys/vm/vm_kern.c:299 #4 0xc085fb77 in page_alloc (zone=0xc104d800, bytes=0, pflag=0x0, wait=0) at /usr/src/sys/vm/uma_core.c:958 #5 0xc085f570 in slab_zalloc (zone=0xc104d800, wait=1026) at /usr/src/sys/vm/uma_core.c:823 #6 0xc0861392 in uma_zone_slab (zone=0xc104d800, flags=1282) at /usr/src/sys/vm/uma_core.c:2025 #7 0xc086160f in uma_zalloc_bucket (zone=0xc104d800, flags=1282) at /usr/src/sys/vm/uma_core.c:2134 #8 0xc08611c6 in uma_zalloc_arg (zone=0xc104d800, udata=0x0, flags=1282) at /usr/src/sys/vm/uma_core.c:1942 #9 0xc069e9c8 in malloc (size=64, mtp=0xc09dc2c0, flags=1282) at uma.h:275 #10 0xc083d001 in newallocindir (ip=0xc1db7c60, ptrno=0, newblkno=Unhandled dwarf expression opcode 0x93 ) at /usr/src/sys/ufs/ffs/ffs_softdep.c:1818 #11 0xc083d0a0 in softdep_setup_allocindir_page (ip=0xc1db7c60, lbn=Unhandled dwarf expression opcode 0x93 ) at /usr/src/sys/ufs/ffs/ffs_softdep.c:1847 #12 0xc08315a7 in ffs_balloc_ufs2 (vp=0xc1defaa0, startoffset=Unhandled dwarf expression opcode 0x93 ) at /usr/src/sys/ufs/ffs/ffs_balloc.c:822 #13 0xc084be89 in ffs_write (ap=0xd22bbbe0) at /usr/src/sys/ufs/ffs/ffs_vnops.c:662 #14 0xc08f880c in VOP_WRITE_APV (vop=0xc09dd160, a=0xd22bbbe0) at vnode_if.c:698 #15 0xc0726990 in vn_write (fp=0xc1b2aab0, uio=0xd22bbcb0, active_cred=0xc1f3e500, flags=0, td=0xc1c21d80) at vnode_if.h:372 #16 0xc06d5ab8 in dofilewrite (td=0xc1c21d80, fd=0, fp=0xc1b2aab0, auio=0xd22bbcb0, offset=Unhandled dwarf expression opcode 0x93 ) at file.h:246 #17 0xc06d58d5 in kern_writev (td=0xc1c21d80, fd=7, auio=0x0) at /usr/src/sys/kern/sys_generic.c:402 #18 0xc06d578f in write (td=0x0, uap=0x0) at /usr/src/sys/kern/sys_generic.c:326 #19 0xc08e4620 in syscall (frame= {tf_fs = -1078001605, tf_es = 59, tf_ds = -1078001605, tf_edi = -1077945072, tf_esi = 1024, tf_ebp = -1077944024, tf_isp = -768885404, tf_ebx = 1024, tf_edx = 673012576, tf_ecx = 672935304, tf_eax = 4, tf_trapno = 0, tf_err = 2, tf_eip = 672877763, tf_cs = 51, tf_eflags = 582, tf_esp = -1077945092, tf_ss = 59}) at /usr/src/sys/i386/i386/trap.c:976 #20 0xc08d023f in Xint0x80_syscall () at /usr/src/sys/i386/i386/exception.s:200 --- dmesg --- ---Copyright (c) 1992-2005 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 6.0-STABLE #1: Sun Nov 20 10:29:28 CET 2005 ptrimmel@saturn.intranet.tomcat.at:/usr/obj/usr/src/sys/SATURN Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Pentium III/Pentium III Xeon/Celeron (601.37-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x673 Stepping = 3 Features=0x383f9ff real memory = 402636800 (383 MB) avail memory = 384442368 (366 MB) npx0: [FAST] npx0: on motherboard npx0: INT 16 interface acpi0: on motherboard acpi0: Power Button (fixed) pci_link0: irq 11 on acpi0 pci_link1: irq 10 on acpi0 pci_link2: irq 5 on acpi0 pci_link3: irq 9 on acpi0 Timecounter "ACPI-safe" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0xe408-0xe40b on acpi0 cpu0: on acpi0 acpi_throttle0: on cpu0 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 agp0: mem 0xe7800000-0xe7bfffff at device 0.0 on pci0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at device 0.0 (no driver attached) isab0: at device 4.0 on pci0 isa0: on isab0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xd800-0xd80f at device 4.1 on pci0 ata0: on atapci0 ata1: on atapci0 uhci0: port 0xd400-0xd41f irq 9 at device 4.2 on pci0 uhci0: [GIANT-LOCKED] usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered pci0: at device 4.3 (no driver attached) xl0: <3Com 3c905C-TX Fast Etherlink XL> port 0xd000-0xd07f mem 0xe2000000-0xe200007f irq 9 at device 9.0 on pci0 miibus0: on xl0 xlphy0: <3c905C 10/100 internal PHY> on miibus0 xlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto xl0: Ethernet address: 00:01:02:0e:4f:c1 xl1: <3Com 3c905C-TX Fast Etherlink XL> port 0xb800-0xb87f mem 0xe1800000-0xe180007f irq 5 at device 10.0 on pci0 miibus1: on xl1 xlphy1: <3c905C 10/100 internal PHY> on miibus1 xlphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto xl1: Ethernet address: 00:01:02:0e:ba:c9 atapci1: port 0xb400-0xb407,0xb000-0xb003,0xa800-0xa807,0xa400-0xa403,0xa000-0xa00f mem 0xe1000000-0xe100ffff irq 10 at device 11.0 on pci0 ata2: on atapci1 ata3: on atapci1 ahc0: port 0x9800-0x98ff mem 0xe0800000-0xe0800fff irq 11 at device 12.0 on pci0 ahc0: [GIANT-LOCKED] aic7880: Ultra Single Channel A, SCSI Id=7, 16/253 SCBs atapci2: port 0x9400-0x9407,0x9000-0x9003,0x8800-0x8807,0x8400-0x8403,0x8000-0x800f mem 0xe0000000-0xe0003fff irq 9 at device 13.0 on pci0 ata4: on atapci2 ata5: on atapci2 atapci3: port 0x7800-0x7807,0x7400-0x7403,0x7000-0x7007,0x6800-0x6803,0x6400-0x640f mem 0xdf800000-0xdf803fff irq 5 at device 14.0 on pci0 ata6: on atapci3 ata7: on atapci3 fdc0: port 0x3f2-0x3f5,0x3f7 irq 6 drq 2 on acpi0 fdc0: [FAST] fd0: <1440-KB 3.5" drive> on fdc0 drive 0 ppc0: port 0x378-0x37f,0x778-0x77b irq 7 drq 3 on acpi0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/9 bytes threshold ppbus0: on ppc0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A sio1: <16550A-compatible COM port> port 0x2f8-0x2ff irq 3 on acpi0 sio1: type 16550A atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: model IntelliMouse Explorer, device ID 4 pmtimer0 on isa0 orm0: at iomem 0xc0000-0xc8fff,0xcc000-0xd57ff,0xd8000-0xd87ff,0xdc000-0xde7ff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Timecounter "TSC" frequency 601366646 Hz quality 800 Timecounters tick every 1.000 msec Waiting 5 seconds for SCSI devices to settle acd0: CDROM at ata0-master UDMA33 ad4: 114498MB at ata2-master UDMA100 ad6: 114498MB at ata3-master UDMA100 ad8: 114498MB at ata4-master UDMA100 ad10: 114498MB at ata5-master UDMA100 ad12: 114498MB at ata6-master UDMA100 ad14: 114498MB at ata7-master UDMA100 ar0: 114440MB status: READY ar0: disk0 READY (master) using ad4 at ata2-master ar0: disk1 READY (mirror) using ad6 at ata3-master ar1: 228997MB status: READY ar1: disk0 READY (master) using ad8 at ata4-master ar1: disk1 READY (master) using ad10 at ata5-master ar1: disk2 READY (mirror) using ad12 at ata6-master ar1: disk3 READY (mirror) using ad14 at ata7-master Trying to mount root from ufs:/dev/ar0s1a >How-To-Repeat: copy 20GB+ file via FTP copy 20.000+ small files (i.e. mail spool) via NFS >Fix: >Release-Note: >Audit-Trail: >Unformatted: From olli at secnetix.de Sun Nov 20 12:50:26 2005 From: olli at secnetix.de (Oliver Fromme) Date: Sun Nov 20 12:50:56 2005 Subject: bin/89327: [PATCH] Add pattern matching to login.access(5) Message-ID: <200511202043.jAKKhrx7079623@lurza.secnetix.de> >Number: 89327 >Category: bin >Synopsis: [PATCH] Add pattern matching to login.access(5) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Nov 20 20:50:25 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Oliver Fromme >Release: FreeBSD 6.0-STABLE i386 >Organization: secnetix GmbH & Co. KG, Munich, Germany http://www.secnetix.de/bsd >Environment: System: FreeBSD epia.fromme.com 6.0-STABLE FreeBSD 6.0-STABLE #0: Fri Nov 4 21:35:33 CET 2005 olli@epia.fromme.com:/usr/src/sys/i386/compile/EPIA i386 >Description: The file login.access(5) can be used to restrict access for users coming from certain remote hosts, or on certain local terminals. For example, we have some users who are allowed to log in from virtual terminals only. However, it is tedious and error-prone to list all of the terminal devices in the file. The entry has to look like this: +:foo bar:ttyv0 ttyv1 ttyv2 ttyv3 ttyv4 ttyv5 ttyv6 ttyv7 +:foo bar:ttyv8 ttyv9 ttyva ttyvb ttyvc ttyvd ttyve ttyvf Th patch presented in this PR allows to use patterns like those used by the bourne shell (using wildcards "*", "?" and "["). The above entry is now much easier: +:foo bar:ttyv? Similarly, "ttyd?" can be used to restrict all of the serial dial-in lines. The patch is quite simple. Basically I just replaced the strcasecmp(3) function with fnmatch(3). Normally, the special wildcard characters ("*", "?", "[") don't appear in terminal device names, and they're also forbidden in host names, so there shouldn't be any regression cases. The login.access(5) file is used at three different places in the FreeBSD source tree: in src/usr.bin/login, in src/lib/libpam/modules/pam_login_access, and in src/cryp- to/heimdal/appl/login. The latter is third-party software, so I'm not sure if it's appropriate to patch it in the FreeBSD source tree. However, for consistency, I patched it in the same way and include the patch below for your consideration. The patch set also includes updates to the manual pages which describe the feature, and also a clarification that all matches are performed in a case-insensitive way. (The latter is even true without my patch, but that behaviour was undocumented.) >How-To-Repeat: n/a >Fix: --- src/usr.bin/login/login_access.c.orig Fri Mar 22 02:22:49 2002 +++ src/usr.bin/login/login_access.c Sun Nov 20 21:16:13 2005 @@ -20,6 +20,7 @@ #include #include #include +#include #include #include #include @@ -175,7 +176,7 @@ return (YES); } else if ((group = getgrnam(tok)) != NULL) {/* try group membership */ for (i = 0; group->gr_mem[i]; i++) - if (strcasecmp(string, group->gr_mem[i]) == 0) + if (fnmatch(string, group->gr_mem[i], FNM_CASEFOLD) == 0) return (YES); } return (NO); @@ -205,7 +206,7 @@ return (YES); } else if (tok[0] == '.') { /* domain: match last fields */ if ((str_len = strlen(string)) > (tok_len = strlen(tok)) - && strcasecmp(tok, string + str_len - tok_len) == 0) + && fnmatch(tok, string + str_len - tok_len, FNM_CASEFOLD) == 0) return (YES); } else if (strcasecmp(tok, "LOCAL") == 0) { /* local: no dots */ if (strchr(string, '.') == 0) @@ -231,7 +232,7 @@ if (strcasecmp(tok, "ALL") == 0) { /* all: always matches */ return (YES); - } else if (strcasecmp(tok, string) == 0) { /* try exact match */ + } else if (fnmatch(tok, string, FNM_CASEFOLD) == 0) { /* try exact match */ return (YES); } return (NO); --- src/usr.bin/login/login.access.5.orig Sat Jul 3 00:22:27 2004 +++ src/usr.bin/login/login.access.5 Sun Nov 20 21:21:17 2005 @@ -45,6 +45,15 @@ logged-in user. Only groups are matched in which users are explicitly listed: the program does not look at a user's primary group id value. +.Pp +In names of users, groups, ttys, hosts and domains, +the special wildcard characters "*", "?" and "[" can be used, +matching patterns according to the rules used by the shell. +This is most useful for tty names: +The pattern "ttyv?" in the third field matches all virtual +terminals, and "ttyd?" matches all serial dial-in lines. +.Pp +All matches are case-insensitive. .Sh FILES .Bl -tag -width /etc/login.access -compact .It Pa /etc/login.access --- src/lib/libpam/modules/pam_login_access/login_access.c.orig Fri Mar 5 09:10:18 2004 +++ src/lib/libpam/modules/pam_login_access/login_access.c Sun Nov 20 21:17:41 2005 @@ -19,6 +19,7 @@ #include #include #include +#include #include #include #include @@ -170,7 +171,7 @@ return (YES); } else if ((group = getgrnam(tok)) != NULL) {/* try group membership */ for (i = 0; group->gr_mem[i]; i++) - if (strcasecmp(string, group->gr_mem[i]) == 0) + if (fnmatch(string, group->gr_mem[i], FNM_CASEFOLD) == 0) return (YES); } return (NO); @@ -199,7 +200,7 @@ return (YES); } else if (tok[0] == '.') { /* domain: match last fields */ if ((str_len = strlen(string)) > (tok_len = strlen(tok)) - && strcasecmp(tok, string + str_len - tok_len) == 0) + && fnmatch(tok, string + str_len - tok_len, FNM_CASEFOLD) == 0) return (YES); } else if (strcasecmp(tok, "LOCAL") == 0) { /* local: no dots */ if (strchr(string, '.') == 0) @@ -224,7 +225,7 @@ if (strcasecmp(tok, "ALL") == 0) { /* all: always matches */ return (YES); - } else if (strcasecmp(tok, string) == 0) { /* try exact match */ + } else if (fnmatch(tok, string, FNM_CASEFOLD) == 0) { /* try exact match */ return (YES); } return (NO); --- src/lib/libpam/modules/pam_login_access/login.access.5.orig Sat Jul 3 01:52:17 2004 +++ src/lib/libpam/modules/pam_login_access/login.access.5 Sun Nov 20 21:21:18 2005 @@ -46,6 +46,15 @@ logged-in user. Only groups are matched in which users are explicitly listed: the program does not look at a user's primary group id value. +.Pp +In names of users, groups, ttys, hosts and domains, +the special wildcard characters "*", "?" and "[" can be used, +matching patterns according to the rules used by the shell. +This is most useful for tty names: +The pattern "ttyv?" in the third field matches all virtual +terminals, and "ttyd?" matches all serial dial-in lines. +.Pp +All matches are case-insensitive. .Sh FILES .Bl -tag -width /etc/login.access -compact .It Pa /etc/login.access --- src/crypto/heimdal/appl/login/login_access.c.orig Tue Feb 19 16:46:04 2002 +++ src/crypto/heimdal/appl/login/login_access.c Sun Nov 20 21:17:39 2005 @@ -24,6 +24,7 @@ */ #include "login_locl.h" +#include RCSID("$Id: login_access.c,v 1.2 2001/06/04 14:09:45 assar Exp $"); @@ -217,7 +218,7 @@ if (item->user->pw_gid == group->gr_gid) return (YES); for (i = 0; group->gr_mem[i]; i++) - if (strcasecmp(string, group->gr_mem[i]) == 0) + if (fnmatch(string, group->gr_mem[i], FNM_CASEFOLD) == 0) return (YES); } return (NO); @@ -246,7 +247,7 @@ return (YES); } else if (tok[0] == '.') { /* domain: match last fields */ if ((str_len = strlen(string)) > (tok_len = strlen(tok)) - && strcasecmp(tok, string + str_len - tok_len) == 0) + && fnmatch(tok, string + str_len - tok_len, FNM_CASEFOLD) == 0) return (YES); } else if (strcasecmp(tok, "LOCAL") == 0) { /* local: no dots */ if (strchr(string, '.') == 0) @@ -270,7 +271,7 @@ if (strcasecmp(tok, "ALL") == 0) { /* all: always matches */ return (YES); - } else if (strcasecmp(tok, string) == 0) { /* try exact match */ + } else if (fnmatch(tok, string, FNM_CASEFOLD) == 0) { /* try exact match */ return (YES); } return (NO); --- src/crypto/heimdal/appl/login/login.access.5.orig Thu Oct 9 21:36:19 2003 +++ src/crypto/heimdal/appl/login/login.access.5 Sun Nov 20 21:21:15 2005 @@ -44,6 +44,15 @@ .Pp If the string EXCEPT is found in either the user or from list, the rest of the list are exceptions to the list before EXCEPT. +.Pp +In names of users, groups, ttys, hosts and domains, +the special wildcard characters "*", "?" and "[" can be used, +matching patterns according to the rules used by the shell. +This is most useful for tty names: +The pattern "ttyv?" in the third field matches all virtual +terminals, and "ttyd?" matches all serial dial-in lines. +.Pp +All matches are case-insensitive. .Sh BUGS If there's a user and a group with the same name, there is no way to make the group match if the user also matches. >Release-Note: >Audit-Trail: >Unformatted: From olli at secnetic.de Sun Nov 20 12:50:27 2005 From: olli at secnetic.de (Oliver Fromme) Date: Sun Nov 20 12:50:58 2005 Subject: bin/89326: [PATCH] Add pattern matching to login.access(5) Message-ID: <200511202041.jAKKfQRQ079470@lurza.secnetix.de> >Number: 89326 >Category: bin >Synopsis: [PATCH] Add pattern matching to login.access(5) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Nov 20 20:50:24 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Oliver Fromme >Release: FreeBSD 6.0-STABLE i386 >Organization: secnetix GmbH & Co. KG, Munich, Germany http://www.secnetix.de/bsd >Environment: System: FreeBSD epia.fromme.com 6.0-STABLE FreeBSD 6.0-STABLE #0: Fri Nov 4 21:35:33 CET 2005 olli@epia.fromme.com:/usr/src/sys/i386/compile/EPIA i386 >Description: The file login.access(5) can be used to restrict access for users coming from certain remote hosts, or on certain local terminals. For example, we have some users who are allowed to log in from virtual terminals only. However, it is tedious and error-prone to list all of the terminal devices in the file. The entry has to look like this: +:foo bar:ttyv0 ttyv1 ttyv2 ttyv3 ttyv4 ttyv5 ttyv6 ttyv7 +:foo bar:ttyv8 ttyv9 ttyva ttyvb ttyvc ttyvd ttyve ttyvf Th patch presented in this PR allows to use patterns like those used by the bourne shell (using wildcards "*", "?" and "["). The above entry is now much easier: +:foo bar:ttyv? Similarly, "ttyd?" can be used to restrict all of the serial dial-in lines. The patch is quite simple. Basically I just replaced the strcasecmp(3) function with fnmatch(3). Normally, the special wildcard characters ("*", "?", "[") don't appear in terminal device names, and they're also forbidden in host names, so there shouldn't be any regression cases. The login.access(5) file is used at three different places in the FreeBSD source tree: in src/usr.bin/login, in src/lib/libpam/modules/pam_login_access, and in src/cryp- to/heimdal/appl/login. The latter is third-party software, so I'm not sure if it's appropriate to patch it in the FreeBSD source tree. However, for consistency, I patched it in the same way and include the patch below for your consideration. The patch set also includes updates to the manual pages which describe the feature, and also a clarification that all matches are performed in a case-insensitive way. (The latter is even true without my patch, but that behaviour was undocumented.) >How-To-Repeat: n/a >Fix: --- src/usr.bin/login/login_access.c.orig Fri Mar 22 02:22:49 2002 +++ src/usr.bin/login/login_access.c Sun Nov 20 21:16:13 2005 @@ -20,6 +20,7 @@ #include #include #include +#include #include #include #include @@ -175,7 +176,7 @@ return (YES); } else if ((group = getgrnam(tok)) != NULL) {/* try group membership */ for (i = 0; group->gr_mem[i]; i++) - if (strcasecmp(string, group->gr_mem[i]) == 0) + if (fnmatch(string, group->gr_mem[i], FNM_CASEFOLD) == 0) return (YES); } return (NO); @@ -205,7 +206,7 @@ return (YES); } else if (tok[0] == '.') { /* domain: match last fields */ if ((str_len = strlen(string)) > (tok_len = strlen(tok)) - && strcasecmp(tok, string + str_len - tok_len) == 0) + && fnmatch(tok, string + str_len - tok_len, FNM_CASEFOLD) == 0) return (YES); } else if (strcasecmp(tok, "LOCAL") == 0) { /* local: no dots */ if (strchr(string, '.') == 0) @@ -231,7 +232,7 @@ if (strcasecmp(tok, "ALL") == 0) { /* all: always matches */ return (YES); - } else if (strcasecmp(tok, string) == 0) { /* try exact match */ + } else if (fnmatch(tok, string, FNM_CASEFOLD) == 0) { /* try exact match */ return (YES); } return (NO); --- src/usr.bin/login/login.access.5.orig Sat Jul 3 00:22:27 2004 +++ src/usr.bin/login/login.access.5 Sun Nov 20 21:21:17 2005 @@ -45,6 +45,15 @@ logged-in user. Only groups are matched in which users are explicitly listed: the program does not look at a user's primary group id value. +.Pp +In names of users, groups, ttys, hosts and domains, +the special wildcard characters "*", "?" and "[" can be used, +matching patterns according to the rules used by the shell. +This is most useful for tty names: +The pattern "ttyv?" in the third field matches all virtual +terminals, and "ttyd?" matches all serial dial-in lines. +.Pp +All matches are case-insensitive. .Sh FILES .Bl -tag -width /etc/login.access -compact .It Pa /etc/login.access --- src/lib/libpam/modules/pam_login_access/login_access.c.orig Fri Mar 5 09:10:18 2004 +++ src/lib/libpam/modules/pam_login_access/login_access.c Sun Nov 20 21:17:41 2005 @@ -19,6 +19,7 @@ #include #include #include +#include #include #include #include @@ -170,7 +171,7 @@ return (YES); } else if ((group = getgrnam(tok)) != NULL) {/* try group membership */ for (i = 0; group->gr_mem[i]; i++) - if (strcasecmp(string, group->gr_mem[i]) == 0) + if (fnmatch(string, group->gr_mem[i], FNM_CASEFOLD) == 0) return (YES); } return (NO); @@ -199,7 +200,7 @@ return (YES); } else if (tok[0] == '.') { /* domain: match last fields */ if ((str_len = strlen(string)) > (tok_len = strlen(tok)) - && strcasecmp(tok, string + str_len - tok_len) == 0) + && fnmatch(tok, string + str_len - tok_len, FNM_CASEFOLD) == 0) return (YES); } else if (strcasecmp(tok, "LOCAL") == 0) { /* local: no dots */ if (strchr(string, '.') == 0) @@ -224,7 +225,7 @@ if (strcasecmp(tok, "ALL") == 0) { /* all: always matches */ return (YES); - } else if (strcasecmp(tok, string) == 0) { /* try exact match */ + } else if (fnmatch(tok, string, FNM_CASEFOLD) == 0) { /* try exact match */ return (YES); } return (NO); --- src/lib/libpam/modules/pam_login_access/login.access.5.orig Sat Jul 3 01:52:17 2004 +++ src/lib/libpam/modules/pam_login_access/login.access.5 Sun Nov 20 21:21:18 2005 @@ -46,6 +46,15 @@ logged-in user. Only groups are matched in which users are explicitly listed: the program does not look at a user's primary group id value. +.Pp +In names of users, groups, ttys, hosts and domains, +the special wildcard characters "*", "?" and "[" can be used, +matching patterns according to the rules used by the shell. +This is most useful for tty names: +The pattern "ttyv?" in the third field matches all virtual +terminals, and "ttyd?" matches all serial dial-in lines. +.Pp +All matches are case-insensitive. .Sh FILES .Bl -tag -width /etc/login.access -compact .It Pa /etc/login.access --- src/crypto/heimdal/appl/login/login_access.c.orig Tue Feb 19 16:46:04 2002 +++ src/crypto/heimdal/appl/login/login_access.c Sun Nov 20 21:17:39 2005 @@ -24,6 +24,7 @@ */ #include "login_locl.h" +#include RCSID("$Id: login_access.c,v 1.2 2001/06/04 14:09:45 assar Exp $"); @@ -217,7 +218,7 @@ if (item->user->pw_gid == group->gr_gid) return (YES); for (i = 0; group->gr_mem[i]; i++) - if (strcasecmp(string, group->gr_mem[i]) == 0) + if (fnmatch(string, group->gr_mem[i], FNM_CASEFOLD) == 0) return (YES); } return (NO); @@ -246,7 +247,7 @@ return (YES); } else if (tok[0] == '.') { /* domain: match last fields */ if ((str_len = strlen(string)) > (tok_len = strlen(tok)) - && strcasecmp(tok, string + str_len - tok_len) == 0) + && fnmatch(tok, string + str_len - tok_len, FNM_CASEFOLD) == 0) return (YES); } else if (strcasecmp(tok, "LOCAL") == 0) { /* local: no dots */ if (strchr(string, '.') == 0) @@ -270,7 +271,7 @@ if (strcasecmp(tok, "ALL") == 0) { /* all: always matches */ return (YES); - } else if (strcasecmp(tok, string) == 0) { /* try exact match */ + } else if (fnmatch(tok, string, FNM_CASEFOLD) == 0) { /* try exact match */ return (YES); } return (NO); --- src/crypto/heimdal/appl/login/login.access.5.orig Thu Oct 9 21:36:19 2003 +++ src/crypto/heimdal/appl/login/login.access.5 Sun Nov 20 21:21:15 2005 @@ -44,6 +44,15 @@ .Pp If the string EXCEPT is found in either the user or from list, the rest of the list are exceptions to the list before EXCEPT. +.Pp +In names of users, groups, ttys, hosts and domains, +the special wildcard characters "*", "?" and "[" can be used, +matching patterns according to the rules used by the shell. +This is most useful for tty names: +The pattern "ttyv?" in the third field matches all virtual +terminals, and "ttyd?" matches all serial dial-in lines. +.Pp +All matches are case-insensitive. .Sh BUGS If there's a user and a group with the same name, there is no way to make the group match if the user also matches. >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Sun Nov 20 14:08:27 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Sun Nov 20 14:08:39 2005 Subject: bin/89327: [PATCH] Add pattern matching to login.access(5) Message-ID: <200511202208.jAKM8QHw072411@freefall.freebsd.org> Synopsis: [PATCH] Add pattern matching to login.access(5) State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sun Nov 20 22:08:03 GMT 2005 State-Changed-Why: Duplicate of bin/89326. http://www.freebsd.org/cgi/query-pr.cgi?pr=89327 From tech at service.net.ru Mon Nov 21 01:00:50 2005 From: tech at service.net.ru (Alexander V. Yutlin) Date: Mon Nov 21 01:01:10 2005 Subject: misc/89355: mdconfig -t vnode filesystem mount problem Message-ID: <200511210854.jAL8sD17083261@www.freebsd.org> >Number: 89355 >Category: misc >Synopsis: mdconfig -t vnode filesystem mount problem >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Nov 21 09:00:48 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Alexander V. Yutlin >Release: RELENG_6 >Organization: KIC >Environment: FreeBSD xxx.kmtn.ru 6.0-STABLE FreeBSD 6.0-STABLE #1: Mon Nov 21 10:20:30 MSK 2005 root@xxx.kmtn.ru:/usr/obj/usr/src/sys/KERNEL07 i386 >Description: Incorrect mounting file backing filesystem. (empty filesystem) >How-To-Repeat: mdconfig -a -t vnode -f file.iso -u 0 mount_cd9660 /dev/md0 /mnt ls -la /mnt . total 0 umount /mnt mdconfig -d -u 0 >Fix: >Release-Note: >Audit-Trail: >Unformatted: From nick at van-laarhoven.org Mon Nov 21 02:40:23 2005 From: nick at van-laarhoven.org (Nick Hibma) Date: Mon Nov 21 02:40:35 2005 Subject: misc/89357: [Patch] Moused patch to pause mouse events Message-ID: <200511211034.jALAYYZH072598@www.freebsd.org> >Number: 89357 >Category: misc >Synopsis: [Patch] Moused patch to pause mouse events >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 21 10:40:22 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Nick Hibma >Release: 5-STABLE >Organization: >Environment: FreeBSD hester.van-laarhoven.org 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Mon Oct 17 08:24:20 UTC 2005 toor@hester.cope.nl:/usr/src/sys/i386/compile/HESTER i386 >Description: Attached a patch to the moused daemon that allows you to suspend mouse events through sending the signal USR1. My laptop has a hypersensitive mouse pad and I keep on brushing over it with my thumb while typing. This is very annoying as the mouse pointer jumps through my document, leaving me with, well, fragmented sentences to say the least. Now, I use a key on my keyboard in X to disable the mouse when it starts to annoy me, without having to kill and restart moused (kill/restart might kill the mouse port in some cases; catching the signal just pauses the calling of ioctls in moused). The patch includes an update to the manual pages as well. >How-To-Repeat: >Fix: The patch uuencoded. Send me an e-mail if you need the patch again, but plaintext. begin 644 moused.diff M+2TM(&UO=7-E9"YC+F]R:6<)5V5D($YO=B`Q-B`P.#HQ-3HP,B`R,#`U"BLK M*R!M;W5S960N8PE7960@3F]V(#$V(#`X.C(R.C,V(#(P,#4*0$`@+3$U-RPV M("LQ-32`]($E$7TY/3D4["B!I;G0)97AT:6]C=&P@ M/2!&04Q313L*(&-H87()*G!I9&9I;&4@/2`B+W9A3L@ M*RMI*2!["B`)"6EF("AI(#X@,"D*(`D)("`@('-L965P*#(I.PI`0"`M,3`Y M,BPW("LQ,#DU+#@@0$`*(`D)("`@(&UO=7-E+G4N9&%T82YY(#T@86-T:6]N M,BYD>2`J(')O9&5N="YA8V-E;'D["B`)"2`@("!M;W5S92YU+F1A=&$N>B`] M(&%C=&EO;C(N9'H["B`)"2`@("!I9B`H9&5B=6<@/"`R*0HM"0D):6]C=&PH M3L* M(`D);6]UB`](#`["B`) M"2`@("!I9B`H9&5B=6<@/"`R*0HM"0D):6]C=&PHPHK("`@('!A=7-E9"`]("%P875S960["BM]"BL*("\J*@H@("HJ('5S M86=E"B`@*BH*0$`@+3(T,CDL-R`K,C0T,2PX($!`"B`)("`@(&UO=7-E+F]P M97)A=&EO;B`]($U/55-%7T)55%1/3E]%5D5.5#L*(`D@("`@;6]UF4@:71S96QF+@HM M57-E9G5L(&EF"BMI="!W:6QL(')E;W!E;B!T:&4@;6]U'1I;V-T;"`]($9!3%-%.PH@8VAA<@DJ<&ED9FEL92`]("(O M=F%R+W)U;B]M;W5S960N<&ED(CL*0$`@+30W-2PV("LT-S8L-R!`0`H@3L*(`D)("`@ M(&UO=7-E+G4N9&%T82YZ(#T@86-T:6]N,BYD>CL*(`D)("`@(&EF("AD96)U M9R`\(#(I"BT)"0EI;V-T;"AR;V1E;G0N8V9D+"!#3TY37TU/55-%0U1,+"`F M;6]UPH@"0EM;W5S92YO<&5R871I;VX@/2!-3U5315]!0U1)3TX["D!`("TQ,3`Q M+#<@*S$Q,#4L."!`0`H@"0EM;W5S92YU+F1A=&$N>2`](&%C=&EO;C(N9'D@ M*B!R;V1E;G0N86-C96QY.PH@"0EM;W5S92YU+F1A=&$N>B`](&%C=&EO;C(N M9'H["B`)"6EF("AD96)U9R`\(#(I"BT)"2`@("!I;V-T;"AR;V1E;G0N8V9D M+"!#3TY37TU/55-%0U1,+"`F;6]U2`](&UO=7-E M+G4N9&%T82YZ(#T@,#L*(`D)("`@(&EF("AD96)U9R`\(#(I"BT)"0EI;V-T M;"AR;V1E;G0N8V9D+"!#3TY37TU/55-%0U1,+"`F;6]UF4@:71S96QF+@HM57-E9G5L(&EF"BMI="!W:6QL(')E;W!E;B!T M:&4@;6]U&ES(&UO=F5M96YT M("AI+F4N+"!M;W5S92!W:&5E;"D@87,@=&AE(&)U='1O;B`U('!R97-S960N M"BLN4'`**TEF('EO=2!A9&0**RY0<`HK+D1L($%,3"!!3$P@/2!.3U!!4U-7 M1#H@+W5S6]U M<@HK+E!A("]U2!I;B!Y;W5R('=I;F1O=R!M86YA9V5R+"!Y;W4@8V%N('-URelease-Note: >Audit-Trail: >Unformatted: From bugmaster at freebsd.org Mon Nov 21 03:00:55 2005 From: bugmaster at freebsd.org (FreeBSD bugmaster) Date: Mon Nov 21 03:01:09 2005 Subject: open PR's (mis)filed to gnats-admin and in limbo Message-ID: <200511211100.jALB0qXL088848@freefall.freebsd.org> Current FreeBSD problem reports No matches to your query From bugmaster at freebsd.org Mon Nov 21 03:01:10 2005 From: bugmaster at freebsd.org (FreeBSD bugmaster) Date: Mon Nov 21 03:01:40 2005 Subject: Current problem reports Message-ID: <200511211100.jALB0taG088860@freefall.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 problem is understood and a solution is being sought. f - feedback Further work requires additional information from the originator or the community - possibly confirmation of the effectiveness of a proposed solution. p - patched A patch has been committed, but some issues (MFC and / or confirmation from originator) are still open. s - suspended The problem is not being worked on, due to lack of information or resources. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested -- or when fixing the problem is abandoned. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [2001/05/10] kern/27250 bp [unionfs] [patch] unionfs filesystem pani o [2002/06/08] kern/39043 [smbfs] Corrupted files on a FAT32 partit o [2002/08/16] kern/41723 [2TB] on 1TB fs, copying files to filesys o [2002/10/25] bin/44471 qa [sysinstall] 4.6 install writes MBR even o [2003/02/16] bin/48341 qa [sysinstall] sysinstall deletes mbr altho f [2003/03/23] kern/50201 [twe] 3ware RAID 5 resulting in data corr o [2003/06/28] kern/53874 emulation [linux] /usr/ports/emulators/linux_base i o [2003/11/10] kern/59103 Serious data corruption reading compact f o [2003/12/12] kern/60175 panic: 5.2-RC: disk errors cause panic in o [2003/12/17] kern/60313 data destruction: lseek() misalignment si o [2004/02/16] i386/62902 i386 Data Corruption on Dell PE 600SC (Server o [2004/04/28] i386/66039 i386 [panic] system panic with file system cor o [2004/05/04] bin/66261 fsck cannot recover filesystem corruption o [2004/05/11] kern/66553 scottl SEBSD kernel compilation errors o [2004/05/27] i386/67260 i386 [boot] stack overflow after boot menu whe o [2004/07/07] kern/68757 kan rapid file creation on snapshotted filesy o [2004/08/06] kern/70096 [msdosfs] [patch] full msdos file system o [2004/08/23] kern/70881 5.3 beta1 kernel.generic missing from /bo o [2004/09/05] i386/71395 i386 Data corrupted on Serverworks CG-SL chips o [2004/09/09] i386/71538 i386 [install] multi-homed install trashes exi o [2004/09/16] kern/71800 5.3-RELEASE crash (infinite IRQ list dump o [2004/10/22] bin/73019 [patch] fsck_ufs: cannot alloc 607016868 o [2004/10/27] amd64/73211 bz FAST_IPSEC broken on amd64 o [2004/10/30] kern/73313 simokawa Maxtor Onetouch drivers hang or corrupt d o [2004/11/19] kern/74137 FreeBSD 5.3 BTX loader stack overflows an o [2004/12/14] amd64/75043 le [vinum] [panic] booting from mirrored vin o [2004/12/20] alpha/75317 alpha [ata] [busdma] ATA DMA broken on PCalpha o [2005/01/05] kern/75844 phk gbde causes disk write errors and subsequ o [2005/01/26] threads/76690threads fork hang in child for (-lc_r & -lthr) o [2005/02/07] kern/77234 [udf] [patch] corrupted data is read from o [2005/03/14] i386/78837 i386 Partition Table Corruption in 5.3 o [2005/05/11] threads/80887jeff [sched_ule] ULE with SMP broke libpthread o [2005/07/15] kern/83529 partition table corruption using wdc/wd d o [2005/07/24] i386/83974 sos [ata] FreeBSD-6.0-BETA1 blows up with PCI o [2005/08/02] kern/84498 [unionfs] [hang] file system hangs when j o [2005/08/09] amd64/84693 amd64 Keyboard not recognized during first step o [2005/08/10] usb/84750 usb 6-BETA2 reboot/shutdown with root_fs on e f [2005/08/26] kern/85329 [vinum] vinum dumpconfig destroys openmas p [2005/08/29] kern/85440 [trap] filling up / crashes the system o [2005/09/01] kern/85603 [ata] FS corruption and 'uncorrectable' D o [2005/09/19] i386/86317 i386 Kernel launch results in poweroff [HP zv5 o [2005/10/01] kern/86775 system reboot without syncing o [2005/10/04] i386/86880 i386 [hang] 6.0 hangs or reboots whilst 5.4 is o [2005/10/06] kern/87010 pjd Reading kernel memory & pagefault under n o [2005/10/07] i386/87026 i386 [hang] Bootup hang on atkbdc on Compaq 18 f [2005/10/08] ports/87113 dinoex OpenSSL-0.9.8 crashes OpenSSH-portable-4. o [2005/10/10] kern/87191 scottl [aac] [patch] aac(4) panics immediately w o [2005/11/09] kern/88715 [kbd] [hang] new kbd driver in FreeBSD 6. o [2005/11/10] i386/88802 i386 CARDBUS related kernel crash (TSB43AB23, o [2005/11/12] bin/88872 [2TB] Error 36 while sysinstall tries to o [2005/11/17] amd64/89202 amd64 [ufs] [panic] Kernel crash when accessing o [2005/11/21] i386/89353 i386 invalid disk controller recognition of in 52 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1997/04/02] bin/3170 vi freaks and dump core if user doesn't e s [1997/10/01] bin/4672 rdist does not do hard links right when t a [1998/05/06] bin/6536 peter pppd doesn't restore drainwait for tty f [1998/11/25] bin/8865 dwmalone syslogd hangs with serial console o [1999/02/15] kern/10107 interlock situation with exec_map and a p o [1999/03/30] kern/10870 eivind Kernel panic when writing to write-protec o [1999/09/11] bin/13691 fenner tcpslice cannot extract over 2GB part of s [1999/09/16] conf/13775 multi-user boot may hang in NIS environme f [1999/09/30] ports/14048 des [patch] doscmd -r doesn't work a [1999/11/04] kern/14712 iedowse [nfs] root has access to NFS mounted dire s [1999/11/17] bin/14946 mjacob rmt - remote magtape protocol o [2000/01/12] kern/16090 mdodd No buffer space available o [2000/02/21] kern/16879 tanimura [snd_csa] csa sound drivers seem to be us o [2000/02/24] bin/16948 qa [sysinstall] sysinstall/disklabel: bad pa o [2000/03/11] kern/17310 [nis] [patch] NIS host name resolving may o [2000/03/17] kern/17422 bde 4.0-STABLE: top: nlist failed s [2000/03/22] conf/17540 [nfs] NIS host lookups cause NFS mounts t o [2000/04/06] kern/17819 [unionfs] Build ports on nfs & union moun s [2000/05/22] bin/18742 mike [patch] times.allow field parsed incorrec p [2000/05/29] kern/18874 [2TB] 32bit NFS servers export wrong nega o [2000/06/13] i386/19245 obrien -fexpensive-optimizations buggy (even wit s [2000/06/20] bin/19405 markm telnetd sends DO AUTHENTICATION even if a s [2000/07/08] bin/19773 markm [PATCH] telnet infinite loop depending on o [2000/07/13] gnu/19882 obrien ld does not detect all undefined symbols! o [2000/07/18] kern/20016 threads pthreads: Cannot set scheduling timer/Can o [2000/07/25] bin/20172 byacc 1.9 fails to generate $default tran o [2000/07/29] bin/20282 qa [sysinstall] sysinstall does not recover s [2000/08/10] bin/20521 mjacob /etc/rmt several problems o [2000/08/10] kern/20523 bde [sio] [patch] support for PCI multiport c o [2000/08/16] bin/20633 fdisk doesn't handle LBA correctly o [2000/08/23] kern/20804 deadlocking when using vnode disk file an o [2000/08/26] kern/20861 threads libc_r does not honor socket timeouts o [2000/08/29] bin/20912 marcel gdb does not recognise old executables. o [2000/08/31] kern/20958 mdodd [ep] ep0 lockup with ifconfig showing OAC o [2000/09/07] bin/21089 vi silently corrupt open file on SIGINT w o [2000/09/20] kern/21406 [boot] bootinst or booteasy overwrites se o [2000/09/21] kern/21461 imp ISA PnP resource allocator problem o [2000/09/22] kern/21463 emulation Linux compatability mode should not allow o [2000/09/29] kern/21642 Compaq Netelligent 10/100 card (TI Thunde a [2000/10/07] kern/21808 [msdosfs] [patch] msdosfs incorrectly han o [2000/10/15] kern/21998 green [socket] [patch] ident only for outgoing o [2000/10/20] kern/22142 cjc securelevel does not affect mount o [2000/10/25] bin/22291 [nfs] getcwd() fails on recently-modified o [2000/10/30] kern/22417 gibbs advansys wide scsi driver does not suppor a [2000/11/14] bin/22846 bms Routed does not reflect preference of Int s [2000/11/18] i386/22944 tegge [vm] [patch] isa_dmainit fails on machine o [2000/11/20] gnu/22972 obrien Internal Compiler Error o [2000/11/25] bin/23098 qa [sysinstall] [patch] if installing on a s o [2000/12/14] kern/23535 imp 4.x kernels seem to no longer support Ada o [2001/01/04] kern/24074 mdodd Properties of token-ring protocol must be o [2001/01/05] kern/24085 syncing on shutdown leaves filesystem dir o [2001/01/07] docs/24125 wes connect(2) can yield EWOULDBLOCK/EAGAIN o [2001/01/12] bin/24271 [patch] dumpon(8) should check its argume o [2001/01/19] bin/24461 Being able to increase the YP timeout wit o [2001/01/20] threads/24472threads libc_r does not honor SO_SNDTIMEO/SO_RCVT o [2001/01/25] kern/24629 harti ng_socket failes to declare connected dat o [2001/01/25] threads/24632threads libc_r delicate deviation from libc in ha o [2001/01/25] kern/24641 threads pthread_rwlock_rdlock can deadlock o [2001/02/10] kern/24982 stack gap usage o [2001/02/11] i386/24997 i386 [biosdisk] [patch] /boot/loader cannot ha o [2001/02/14] kern/25093 4.2-STABLE does not recognize PCNet-ISA+ o [2001/02/21] kern/25248 bde sys/user.h needs sys/param.h, but doesn't p [2001/03/03] kern/25511 rwatson ioctl(fd, FIONREAD, &c) on a FIFO (not PI o [2001/03/05] bin/25542 standards /bin/sh: null char in quoted string o [2001/03/13] i386/25781 i386 Statclocks cannot be disabled on ServerWo o [2001/03/16] bin/25851 qa [patch] security hole in anonymous FTP se o [2001/03/18] kern/25886 [libc] cgetset(3) doesn't get cleared whe o [2001/03/20] kern/25950 obrien [asr] Bad drives on asr look zero-length a [2001/03/22] kern/25986 andre Socket would hang at LAST_ACK forever. o [2001/03/24] kern/26048 obrien [asr] 4.3-RC: SMP and asr driver don't w a [2001/03/27] kern/26142 [nfs] Unlink fails on NFS mounted filesys o [2001/03/28] kern/26171 emulation [linux] not work Linux-emulator, but hi i o [2001/04/03] kern/26316 Booting FreeBSD on VMware2 with 2 or 3 et a [2001/04/05] gnu/26362 "cvs server" doesn't honour the global -- o [2001/04/10] kern/26486 [libc] [patch] setnetgrent hangs when net o [2001/04/25] bin/26842 dd dump with h flag takes a very long time a [2001/04/26] bin/26869 vi(1) crashes in viewing a file with long o [2001/04/27] bin/26897 qa [sysinstall] 4.3R sysinstall fails to cre o [2001/05/03] kern/27059 scsi [sym] SCSI subsystem hangs under heavy lo f [2001/05/11] kern/27275 kernel bug ? (negative sbsize) o [2001/05/20] kern/27474 Interactive use of user PPP and ipfilter o [2001/05/24] docs/27605 doc Cross-document references () a [2001/06/05] kern/27893 sos can't burn audio cds on LG CD-RW CED-8083 o [2001/06/05] conf/27896 Error in /etc/exports invalidates entire o [2001/06/17] bin/28223 su doesn't look at login.conf all the tim o [2001/06/26] bin/28424 mtree fails to report directory hierarchy o [2001/06/29] kern/28508 scsi problems with backup to Tandberg SLR40 st o [2001/07/06] kern/28768 The system doesn't get connects on one of o [2001/07/07] bin/28798 mikeh mail(1) with a pager (more) requires fg/C o [2001/07/09] kern/28840 gibbs Possible interrupt masking trouble in sys f [2001/07/23] kern/29170 ru ARP request fails after "bad gateway valu o [2001/07/27] bin/29253 natd forgets about udp connections o [2001/08/02] bin/29375 qa [sysinstall] disk editor gets confused by o [2001/08/03] kern/29421 Update a file with mmap will cause mtime/ f [2001/08/11] kern/29626 [modules] loading a module that is alread o [2001/08/13] kern/29686 kevent EV_ADD EVFILT_WRITE does the wrong o [2001/08/15] bin/29725 dwmalone [picobsd] [patch] fixed segmentation faul o [2001/08/17] bin/29808 ypserv dumps core in yp_find_db o [2001/08/20] bin/29903 ypbind loses connection to NIS master and o [2001/08/23] kern/29983 imp Problem with "TI PCI-1250 PCI-CardBus Bri o [2001/08/27] kern/30125 btx/bootloader dumps very often if serial f [2001/08/28] kern/30160 [panic] kernel panic when flash disk is r s [2001/08/29] i386/30206 mdodd [boot] PS/2 server 85 can't boot kern.flp o [2001/08/30] conf/30223 [patch] Using /usr/share/examples/kld/cde o [2001/09/04] bin/30310 top does not show CPU usage o [2001/09/06] conf/30399 Have Fortran use the CPUTYPE variable o [2001/09/10] kern/30482 calcru calls printf while holding a spin s [2001/09/17] kern/30630 fenner [if_mib] Failure to check for existence o o [2001/09/21] kern/30712 fatal kernel trap during ufs_rename o [2001/09/26] bin/30837 qa [sysinstall] sysinstall doesn't set the s o [2001/09/27] i386/30860 i386 [hang] While install after "Mounting root o [2001/09/27] bin/30869 dump(8) does not dump all files of a file s [2001/09/29] i386/30921 i386 [kbd] ACER mechanic ps/2 keyboard don╢t w o [2001/10/01] kern/30948 ls'ing mounted brand new floppy locks up o [2001/10/01] kern/30958 rwatson QUOTA with 0 bytes in quota.user hangs up o [2001/10/01] kern/30971 peter [nfs] NFS client modification time resolu s [2001/10/04] kern/31047 Linux programs do not dump core in linux o [2001/10/07] kern/31102 wpaul [lge] lge + Pentium III data transmission o [2001/10/14] kern/31266 cjc System can be crashed with "ls -al /flopp o [2001/10/15] bin/31304 joe [patch] fix crunchgen to work with more c o [2001/10/18] bin/31363 qa [sysinstall] "partition editor" silently o [2001/10/30] conf/31631 "MAC address" can't be acquired properly. o [2001/11/04] kern/31746 failed connect(2) seems to cause problems o [2001/11/06] kern/31790 [nfs] problem with NFS and jail() o [2001/11/12] kern/31940 [nge] nge(4) gigabit adapter link reset a o [2001/11/14] i386/31979 i386 [kbd] Setup and boot locks Compaq Armada o [2001/11/19] kern/32098 [libc] semctl() does not propagate permis o [2001/11/20] ports/32121 x11 XFree86-4-Server: xf86cfg 4.1.0 writes ba o [2001/11/26] bin/32295 threads pthread dont dequeue signals o [2001/11/28] kern/32353 if kern.maxproc > 512 sybase ASE 11.9.2( o [2001/11/29] bin/32374 vi -r doesn't work, file contained unexpe o [2001/12/08] bin/32619 des libfetch does not use RFC 1738's definito o [2001/12/10] kern/32668 peter [nfs] NFS directory removal problems mani o [2001/12/11] bin/32686 wosch locate(1) dumps a core file with broken d o [2001/12/22] ports/33080 ume gkrellmvolume interferes with the ability a [2001/12/22] i386/33089 murray GENERIC bloat causes 'make world' to brea o [2001/12/24] kern/33138 [isa] [patch] pnp problem in 4.3, 4.4, 4. o [2001/12/30] kern/33344 davidxu memory leak in device resource config loa o [2001/12/31] bin/33370 qa [sysinstall] post-configuration issue o [2002/01/02] kern/33464 soft update inconsistencies after system s [2002/01/04] gnu/33551 cvs chokes on OpenBSD repositories o [2002/01/08] bin/33672 [patch] telnetd and mount_mfs signal hand o [2002/01/13] kern/33833 luigi Correct kernel config for 4.4-RELEASE is o [2002/01/16] kern/33940 [ufs] [patch] quotactl allows compromise o [2002/01/18] bin/34030 miibus.ko can be loaded into the kernel w s [2002/01/20] i386/34092 i386 [hang] reboot hangs the system (IBM PC Se o [2002/01/21] gnu/34128 sdiff "e" doesn't work with some editors o [2002/01/25] gnu/34246 joe CVS doesn't rebuild CVSROOT/options o [2002/01/25] bin/34270 man -k could be used to execute any comma o [2002/01/31] kern/34470 bde Modem gets sio1 interrupt-level buffer o o [2002/02/01] threads/34536threads accept() blocks other threads o [2002/02/03] kern/34568 [lpt] turning printer on and off hangs th o [2002/02/11] bin/34811 sh: "jobs" is not pipeable o [2002/02/11] kern/34842 [nis] [patch] VmWare port + NIS causes "b o [2002/02/18] i386/35078 i386 [i386] [patch] Uninitialized pointer dere o [2002/02/22] bin/35214 obrien dump program hangs while exiting o [2002/02/26] i386/35350 i386 [boot] Can't boot on ASUS TXP4 f [2002/02/26] kern/35351 multimedia [sound] emu10k1: no posibility to record o [2002/02/28] kern/35396 poll(2) doesn't set POLLERR for failed co o [2002/02/28] kern/35399 poll(2) botches revents on dropped socket o [2002/02/28] kern/35429 select(2)/poll(2)/kevent(2) can't/don't n o [2002/03/01] kern/35442 [sis] [patch] Problem transmitting runts o [2002/03/03] kern/35506 jon [libc] innetgr() doesn't match wildcard f o [2002/03/03] kern/35511 [sis] sis(4) multicast filtering doesn't f [2002/03/07] kern/35645 bms Layer 2 switching using default router of o [2002/03/08] kern/35669 [nfs] NFSROOT breaks without a gateway s [2002/03/08] docs/35678 doc docproj Makefiles for web are broken for o [2002/03/09] kern/35703 /proc/curproc/file returns unknown o [2002/03/14] gnu/35878 /usr/bin/strip resets ABI type to FreeBSD o [2002/03/15] bin/35925 qa [sysinstall] fixit floppy cannot be mount a [2002/03/16] bin/35985 qa [sysinstall] swap double mount o [2002/03/17] i386/36003 i386 [panic] Cyclades Cyclom YeP causes panics p [2002/03/18] kern/36038 bp [smbfs] sendfile(2) on smbfs fails, expos o [2002/03/19] misc/36086 trhodes Kerberos Problem/Handbook wrong/Followup a [2002/03/19] bin/36110 dmesg output corrupt if /dev/console is b o [2002/03/20] kern/36147 bogus irq 7 message being issued o [2002/03/21] docs/36168 doc -pthread/_THREAD_SAFE docs missing in gcc o [2002/03/22] kern/36219 [bpf] [patch] poll() behaves erratic on B o [2002/03/28] kern/36415 [bktr] [patch] driver incorrectly handles o [2002/03/29] kern/36504 [kernel] [patch] crash/panic vm_object_al o [2002/03/29] bin/36508 qa [sysinstall] installation floppy bug (4.5 o [2002/03/30] kern/36517 [sis] sis driver can't map ports/memory f o [2002/03/31] kern/36566 [smbfs] System reboot with dead smb mount o [2002/04/05] kern/36784 Can't fcntl(fd, F_SETFL, ...) on a pseudo s [2002/04/07] ports/36846 ports-bugs fxtv 1.03 freezes the system when $LANG=d o [2002/04/08] bin/36867 [patch] games/fortune: add FORTUNE_PATH e o [2002/04/08] bin/36911 qa [sysinstall] installation floppies miss a o [2002/04/09] gnu/36926 send-pr destroys PR if emacs interrupt ch o [2002/04/10] i386/36943 i386 [smp] [hang] reboot hangs on Tyan Thunder o [2002/04/14] kern/37057 Problem with rlimits on filesystem mounte o [2002/04/15] kern/37109 Kernel refuses to assign unused IP to tun o [2002/04/19] kern/37261 luigi kernel is not linking without "device eth o [2002/04/22] kern/37326 [bktr] smbus/bktr crash when omitting "de o [2002/04/22] bin/37343 portmap TCP binds strangeness o [2002/04/25] kern/37436 [hang] accept dead loop when out of file o [2002/04/25] kern/37441 davidxu [isa] [patch] ISA PNP parse problem o [2002/04/27] kern/37502 [nfs] NFS client ignores mtime.tv_usec fo o [2002/04/28] i386/37523 davidxu [i386] [patch] lock for bios16 call and v o [2002/04/30] kern/37589 imp Kernel panics upon resume from zzz on my o [2002/04/30] ports/37596 portmgr EMACS_PORT_NAME=xemacs21 forks make infin o [2002/05/02] kern/37675 le [vinum] Page fault when newfs'ing a vinum o [2002/05/03] bin/37710 qa [sysinstall] LAN interface in wrong state o [2002/05/13] ports/38018 java www/jakarta-tomcat4: make passing of JVM f [2002/05/13] ports/38020 java www/jakarta-tomcat4: stop tomcat via java o [2002/05/14] i386/38070 i386 [panic] 4.6-PRERELEASE panics on resume o o [2002/05/15] kern/38095 bp vlan not supported with fxp o [2002/05/24] i386/38484 i386 [hang] probe freeze while probing devices o [2002/05/24] kern/38495 bms soreceive fails to maintain invariant on o [2002/05/24] kern/38518 [boot] combination of pr-27087 and pr-369 s [2002/05/24] kern/38527 /dev/random does not obey O_NONBLOCK flag o [2002/05/25] kern/38549 threads the procces compiled whith pthread stoppe a [2002/05/25] kern/38554 bms changing interface ipaddress doesn't seem o [2002/05/26] bin/38582 qa [sysinstall] sysinstall sets newfs flag a a [2002/05/27] gnu/38594 kan Fortan program don't link post gcc-3.1 o [2002/05/27] bin/38609 qa [sysinstall] sysinstall should know the s o [2002/05/27] kern/38632 imp Loss of connection with wi cards f [2002/05/30] i386/38731 i386 Freebsd doesn't support ( pdc20276 / Raid o [2002/05/30] kern/38752 andre rn_walktree_from not halting at the right o [2002/06/03] kern/38872 [nfs] nfs code ignores possibility of MGE o [2002/06/05] bin/38918 edquota breaks silently when quota-marked o [2002/06/07] kern/38983 Kernel fails to access disk o [2002/06/12] kern/39185 core dump binary in single user mode o [2002/06/13] kern/39233 bms NonConforming IPsec implementation from F o [2002/06/13] kern/39252 [syscons] [patch] syscons doesn't support o [2002/06/15] kern/39329 [mount] '..' at mountpoint is subject to o [2002/06/15] kern/39331 dwmalone namei cache unreliable for __getcwd() o [2002/06/17] kern/39388 scsi ncr/sym drivers fail with 53c810 and more s [2002/06/19] i386/39536 i386 [loader] FreeBSD default bootloader does o [2002/06/25] bin/39849 /sbin/restore fails to overwrite files wi o [2002/06/26] bin/39896 netmask 0xffffff00 no longer works in /et o [2002/06/27] threads/39922threads [threads] [patch] Threaded applications e o [2002/06/27] kern/39928 imp [wi] wi0 timeouts and hangs the system wh a [2002/06/27] kern/39937 bms ipstealth issue a [2002/06/28] bin/39940 [patch] /usr/sbin/periodic sends thousand o [2002/06/29] kern/40001 le [vinum] vinum showing -2 drives after rem f [2002/06/30] i386/40044 i386 SMP kernel fails to boot on DELL 610 f [2002/07/02] kern/40122 multimedia [sound] Device pcm stopps booting Kernel o [2002/07/05] kern/40206 Can not assign alias to any POINTOPOINT i o [2002/07/05] bin/40215 wpaul [nis] NIS host search not terminate o [2002/07/05] i386/40219 i386 [apm] apm breaks removable media o [2002/07/06] bin/40260 qa [sysinstall] hang when detecting devices f [2002/07/06] kern/40274 [fxp] "fxp: device timeout" errors during o [2002/07/06] bin/40278 mktime returns -1 for certain dates/timez o [2002/07/07] bin/40282 /bin/kill has bad error checking for comm o [2002/07/10] kern/40394 [if_tap] if_tap(4) driver hard coded perm o [2002/07/12] bin/40471 des chpass(1) -a option broken in CURRENT o [2002/07/19] kern/40787 kernel panic if PCMCIA CD-drive with moun o [2002/07/19] usb/40792 usb signals lead to data loss on device ugen o [2002/07/22] kern/40895 scsi wierd kernel / device driver bug s [2002/07/30] kern/41138 [vr] vr0 locks up on one hub, OK on anoth o [2002/07/31] kern/41216 [nfs] Get "NFS append race" error o [2002/08/01] conf/41242 periodic scripts make unwarranted assumpt o [2002/08/03] bin/41297 mp {t,}csh backquote/braces expansion bug o [2002/08/04] kern/41331 threads Pthread library open sets O_NONBLOCK flag o [2002/08/07] kern/41402 [panic] kernel panics in pmap_insert_entr o [2002/08/07] bin/41410 /bin/sh bug on expanding $? in here-docum o [2002/08/13] kern/41632 luigi bridging when one interface has no carrie a [2002/08/14] bin/41647 bms ifconfig(8) doesn't accept lladdr along w o [2002/08/16] kern/41720 [nge] if_nge_load=YES make system not boo o [2002/08/17] kern/41740 le [vinum] page fault while rebuilding; inab o [2002/08/18] bin/41757 qa [sysinstall] sysinstall 4.6.x unstable s [2002/08/19] bin/41776 bms mrouted doesn't route multicast packets o [2002/08/19] conf/41777 /etc/periodic/daily/100.clean-disks remov o [2002/08/20] docs/41824 murray LANG is not documented in setlocale(3) o [2002/08/21] bin/41850 qa [sysinstall] sysinstall fails to create r o [2002/08/25] bin/42004 quota and rpc.statd are still IPv4 only, p [2002/08/26] kern/42030 bms panic when zebra works on detaching tun i o [2002/08/27] kern/42089 phk ntp_gettime returns time in wrong scale o [2002/08/27] bin/42093 ypbind hangs on NIC with the lowest scope o [2002/08/28] misc/42115 luigi [picobsd] [patch] fix build script for 4. f [2002/08/29] kern/42173 multimedia [sound] Sony VAIO FXA 53 (or FXA 679 in M o [2002/08/30] i386/42198 pjd Kernel panics or system hangs up with big s [2002/08/30] kern/42216 rwatson simultaneous multiple server network fail o [2002/09/04] bin/42407 ppp(8) IPV6CP fails o [2002/09/07] i386/42539 i386 [panic] Fatal Trap 12 resulting from Conn o [2002/09/09] kern/42578 [puc] [panic] using PCI serial cards (puc p [2002/09/09] kern/42580 robert kernel crash when starting ISC 3.2 X11 bi o [2002/09/10] kern/42621 imp Dell Inspiron 5000e hangs when using Orin o [2002/09/11] kern/42652 [smbfs] error deleting r/o (by windows) f o [2002/09/11] bin/42658 markm recompile /usr/src/libexec/telnetd and lo o [2002/09/13] gnu/42726 cvsadm cvs -R pserver & val-tags: story continue s [2002/09/13] bin/42750 fdisk(8) does not distinguish between FAT o [2002/09/14] kern/42769 [boot] Boot stalls if the system has a se o [2002/09/15] kern/42801 [hang] FreeBSD freezes when opening cuaa0 a [2002/09/18] kern/42937 bms panic when ARP cache uses up all mbufs o [2002/09/20] kern/42983 imp wi0 sporadically freezes the system for 1 o [2002/09/21] i386/43151 i386 [panic] Panic 20 seconds after resume o [2002/09/22] bin/43223 getnetby{name|addr} broken for DNS lookup o [2002/09/24] bin/43337 des fetch: -s fails if -4 or possibly other o a [2002/09/25] i386/43366 bms Cannot format media in USB floppy devices o [2002/09/29] kern/43491 microuptime () went backwards o [2002/09/30] bin/43501 getpwnam, getpwuid fail when linking agai o [2002/10/02] kern/43576 imp Problem with wi driver and Lucent Orinoco o [2002/10/02] bin/43592 mktime rejects dates at the start of dayl a [2002/10/03] kern/43605 luigi enabling polling in the kernel causes pag o [2002/10/03] kern/43625 imp [wi] wi(4) driver hangs after long data t o [2002/10/04] bin/43674 [patch] login(1): able to bypass expired o [2002/10/05] kern/43713 during install, mounting root from ufs:/d o [2002/10/08] conf/43837 wollman PKST (pakistan daylight time) changed fro o [2002/10/11] java/43924 glewis writing from JAVA to a pipe sometimes han o [2002/10/12] kern/43954 [nfs] nfs-blocked process can't return or a [2002/10/14] kern/44030 VNode/Swap troubles o [2002/10/16] i386/44130 i386 [apm] Enabled apm hangs up FreeBSD kernel o [2002/10/16] kern/44150 Diskless kernel may crash, depends on the o [2002/10/18] kern/44202 [rp] [patch] -stable rp driver does not w o [2002/10/18] kern/44218 Init dies during boot after upgrade from p [2002/10/21] kern/44336 [nfs] NFSv3 client broken - security prob o [2002/10/21] kern/44355 gnn After deletion of an IPv6 alias, the rout o [2002/10/23] kern/44417 luigi [bridge] [patch] ipfw layer2 rules are no s [2002/10/27] bin/44518 yar ftpd does not show OPIE OTP challenge o [2002/10/27] docs/44519 obrien ftpd.conf(5) contains references to ftpd( o [2002/10/28] gnu/44564 peter [PATCH] Aborted cvs session causes an end o [2002/10/28] kern/44578 [nis] getnetgrent fails to read NIS netgr o [2002/10/30] kern/44744 [vn] [patch] VN devices can hang system F o [2002/11/01] bin/44808 [PATCH] opiepasswd makes bad seed for exi o [2002/11/04] i386/44867 i386 [hang] Frequent hard hangs on ASUS P4T-E/ o [2002/11/07] kern/45023 emulation [linux] [patch] flexlm does not run with o [2002/11/09] gnu/45168 Buffer overflow in /usr/bin/dialog o [2002/11/13] bin/45272 dump/restore problem o [2002/11/15] docs/45303 remko Bug in PDF DocBook rendering o [2002/11/15] kern/45322 Panic on resume (zone: entry not free) o [2002/11/17] kern/45373 mckusick softupdate / fs damaged after loss of pow o [2002/11/18] kern/45403 imp Cannot install -CURRENT via pccard networ p [2002/11/19] bin/45478 stefanf /bin/sh coredump o [2002/11/20] i386/45525 imp Dell Inspiron 7000 does not recognize PC- o [2002/11/20] bin/45529 hexdump core-dumps with certain args [PAT o [2002/11/21] kern/45558 [msdosfs] mdconfig and msdosfs make fs wr o [2002/11/21] bin/45565 qa [sysinstall] write error, filesystem full o [2002/11/21] kern/45568 gibbs ahc(A19160) pci parity error p [2002/11/25] kern/45733 bms file descriptor flags and socket flags ou o [2002/11/27] i386/45773 i386 [bge] Softboot causes autoconf failure on o [2002/11/27] kern/45777 crashdump issue with too-small dumpdev o [2002/12/02] kern/45913 imp WaveLan driver problems with latest -CURR o [2002/12/04] bin/45990 dwmalone top dumps core if specific errors in pass o [2002/12/04] bin/45995 markm Telnet fails to properly handle SIGPIPE o o [2002/12/05] kern/46017 [smbfs] smb mounts break /etc/periodic/we o [2002/12/06] kern/46036 inaccurate timeouts in select(),nanosleep o [2002/12/10] usb/46176 usb [panic] umass causes kernel panic if devi o [2002/12/11] i386/46194 i386 [install] 5.0-RC1 kern floppy load fails o [2002/12/13] kern/46239 standards posix semaphore implementation errors o [2002/12/18] bin/46352 Open file descriptors and signal handling o [2002/12/19] i386/46371 usb USB controller cannot be initialized on I o [2002/12/23] i386/46484 i386 [bge] [panic] System panics upon configur p [2002/12/27] kern/46557 pjd ipfw pipe show fails with lots of queues a [2002/12/31] kern/46647 silby Failure to initialize MII on 3Com NIC res o [2003/01/01] bin/46670 qa [sysinstall] 5.0-RC2 install leaves CD dr o [2003/01/01] bin/46676 ru [PATCH] bsd.dep.mk restricts domain of ta o [2003/01/02] kern/46694 imp Getting DUP packets when in Promiscous mo o [2003/01/08] i386/46865 i386 [panic] kernel panic on SuperMicro 6012-8 o [2003/01/08] bin/46866 NIS-based getpwent() falsely returns NULL o [2003/01/17] i386/47167 i386 [panic] 5.0 RC 3 (and 2) has 1 second upt o [2003/01/20] i386/47236 i386 Console missing during bootup on Sony Pic o [2003/01/21] kern/47286 device probing not verbose when using boo o [2003/01/22] kern/47359 dd [snp] [panic] panic after kldunload snp o [2003/01/23] bin/47384 qa [sysinstall] sysinstall ignores intended o [2003/01/24] i386/47449 i386 [boot] Thinkpad 755CD floppy boot fails o [2003/01/29] kern/47628 trhodes [msdosfs] [patch] msdosfs file corruption o [2003/01/29] kern/47647 [crash] init died with signal 6 [4.7] s [2003/02/02] kern/47813 [gre] pseudo-device gre(4) doesn't appear o [2003/02/05] kern/47937 hw.ncpu and kern.smp.cpus duplicate same o [2003/02/05] kern/47951 [hang] rtld in ld.so will livelock in som o [2003/02/05] alpha/47952 alpha DEFPA causes machine check with V5.0-rele o [2003/02/07] kern/48033 [ffs] FFS superblock flags are being igno o [2003/02/07] kern/48062 mckusick mount -o snapshot doesn't work on +100GB o [2003/02/08] kern/48100 Fatal panic in vm_map_lookup_entry ... [S o [2003/02/09] kern/48117 SMP machine hang during boot related to i o [2003/02/11] kern/48166 panic: pmap_new_proc: u_map allocation fa o [2003/02/11] bin/48183 marcel [patch] gdb on a corefile from a threaded o [2003/02/14] bin/48271 bug with find's -delete option s [2003/02/14] kern/48279 [bktr] Brooktre878 may cause freeze o [2003/02/16] conf/48325 /etc/periodic/security/100.chksetuid does o [2003/02/17] kern/48393 mckusick [ufs] ufs2 snapshot code bugs p [2003/02/18] bin/48424 Integer overflow in cksum(1) and sum(1) f o [2003/02/18] kern/48425 Tape drive EOT handling problems in 4.7 o [2003/02/19] misc/48461 murray $EDITOR on the fixit CD is wrong. o [2003/02/26] i386/48691 i386 [panic] kernel panics on ASUS A7N266-VM M o [2003/02/27] bin/48730 sos burncd does not handle signals and causes o [2003/02/27] kern/48741 darrenr ipnat corrupts packets on gre interface w o [2003/02/27] i386/48752 i386 [hang] freeze when installing 5.0 Release o [2003/02/27] kern/48758 [modules] kldunload if_{nic} can cause ke o [2003/03/02] threads/48856threads Setting SIGCHLD to SIG_IGN still leaves z o [2003/03/03] bin/48865 Dumps made on FreeBSD 5.0-RELEASE are unr o [2003/03/03] conf/48881 [PATCH] The influence of /etc/start_ifnam o [2003/03/07] kern/48996 Fatal trap 12 with incoming traffic from o [2003/03/09] kern/49040 problem mounting root; ffs_mountroot can' o [2003/03/10] threads/49087threads Signals lost in programs linked with libc o [2003/04/03] kern/50574 mbr [dc] dc driver incorrectly detects ADMtek s [2003/04/11] kern/50827 [kernel] [patch] new feature: add sane re s [2003/04/12] kern/50856 [mfs] panic if mounting /tmp as mfs with f [2003/04/13] i386/50887 i386 MBR on kern.flp fails Compaq MBR validati p [2003/04/17] conf/51085 ache FreeBSD is missing ja_JP.eucJP locale. o [2003/04/18] www/51135 www Problems with the mailing-lists search in o [2003/04/20] bin/51171 /bin/sh has only 32-bit arithmetics that o [2003/04/21] standards/51209standards [libc] [patch] new feature: add a64l()/l6 o [2003/04/22] kern/51274 ipfw [ipfw] [patch] ipfw2 create dynamic rules o [2003/04/23] kern/51332 mjacob QUIRK: BNCHMARK DLT1 requires SA_QUIRK_1F f [2003/04/24] kern/51341 ipfw [ipfw] [patch] ipfw rule 'deny icmp from o [2003/04/24] kern/51352 panic: malloc(M_WAITOK) in interrupt cont o [2003/04/29] kern/51583 [nullfs] [patch] allow to work with devic o [2003/04/30] bin/51628 [nis] ypmatch doesn't match keys in legac o [2003/05/02] kern/51685 [hang] Unbounded inode allocation causes o [2003/05/04] kern/51742 [panic] ffs_vfree: freeing free inode o [2003/05/06] bin/51827 getaddrinfo() is broken with numeric serv o [2003/05/08] kern/51982 [sio] sio1: interrupt-level buffer overfl s [2003/05/11] ports/52079 ports-bugs vmware3 hangs when nmdm(4) is used as COM s [2003/05/12] kern/52110 green [unionfs] FS corruption when using unionf o [2003/05/12] i386/52128 i386 [install] Unable to floppy install on Tos o [2003/05/16] bin/52343 NIS login problem on the server o [2003/05/19] bin/52433 lines in /etc/group longer than 1024 char o [2003/05/19] kern/52445 [mfs] panic when mounting floppy on MFS f f [2003/05/22] i386/52556 remko [sk] Syskonnect SK9843SX, sk driver, MII f [2003/05/22] i386/52561 i386 5.1-BETA install fails on Dell PowerEdge o [2003/05/22] i386/52581 i386 [loader] boot loaders reading more than o o [2003/05/22] kern/52585 bms [netinet] [patch] Kernel panic with ipfw2 o [2003/05/24] kern/52638 scsi [panic] SCSI U320 on SMP server won't run o [2003/05/28] bin/52743 /etc/ppp/ppp.linkup instability issues s [2003/05/28] kern/52745 [unionfs] Fatal trap 12: page fault while o [2003/05/31] kern/52818 vm_fault() calls vput() on shared-locked f [2003/06/03] kern/52916 le [vinum] vinum causes panic after start/st p [2003/06/04] kern/52935 bms occasional panic in ip_input with IPSEC o [2003/06/04] kern/52936 [nfs] Huge writes to nfs exported FAT fil o [2003/06/04] kern/52943 [hang] reproducable system stuck just bre f [2003/06/06] i386/52975 remko CPUTYPE=k7 results in non-functional /boo o [2003/06/10] kern/53137 [panic] background fscking causing ffs_va o [2003/06/16] i386/53382 i386 Repetable panics in ffs_vget() on Prolian f [2003/06/18] kern/53433 heavy i/o on GBDE partition on SMP locks o [2003/06/18] bin/53434 pw disallow a password including space. o [2003/06/18] kern/53447 bde poll(2) semantics differ from susV3/POSIX a [2003/06/20] kern/53566 mbr [panic] IBM Eserver (245 || 345) + ServeR o [2003/06/22] bin/53606 roberto ntpdate seems to hang system o [2003/06/23] i386/53620 i386 [install] Kernel panics / reboots during o [2003/06/27] bin/53839 qa [sysinstall] disklabel editor fails on po f [2003/06/30] kern/53920 andre sluggish TCP connection o [2003/06/30] kern/53940 imp Some WiFi devices cannot connect to hosta o [2003/07/02] i386/54033 i386 Disk lockup. o [2003/07/04] bin/54097 Non-local yppasswd -d broken in 5.1-CURRE o [2003/07/07] kern/54189 [dns] resolver should resolve hostnames w s [2003/07/08] kern/54211 rwatson Seeing other uid with kern.file sysctl. o [2003/07/10] kern/54309 silby TCP Packet of 64K-1 crashes FreeBSD4.8 o [2003/07/11] bin/54401 [patch] pppstats prints 0 for absolute va o [2003/07/12] standards/54410standards one-true-awk not POSIX compliant (no exte o [2003/07/13] bin/54446 pkg_delete doesn't honour symlinks, portu o [2003/07/14] java/54463 glewis Apparent bug in jdk13 s [2003/07/16] kern/54534 [unionfs] unionfs && mfs|md crashing mach s [2003/07/16] i386/54549 i386 [panic] panic on install on Dell 600sc o [2003/07/22] i386/54756 acpi ACPI suspend/resume problem on CF-W2 lapt p [2003/07/28] ports/54970 trevor emulators/linux_base Port Makefile "dange o [2003/07/28] conf/54971 mtm /etc/rc.d/mountcritermote requires ldconf p [2003/07/29] kern/55018 andre [digi] [patch] Digiboard PC/Xem fails to o [2003/07/29] kern/55028 The broken FAT12 filesystem causes system o [2003/08/02] kern/55175 alfred LOR in select and poll f [2003/08/05] gnu/55278 Externs on implicit declarations o [2003/08/05] kern/55297 [vfs] [panic] kernel panic after running o [2003/08/07] bin/55346 /bin/sh eats memory and CPU infinitely o [2003/08/07] bin/55349 mbr Amd mixes up symlinks in it's virtual fil o [2003/08/08] bin/55366 le [vinum] [patch] vinum(8) makes /dev/vinum o [2003/08/08] kern/55379 [panic] kernel crashes randomly o [2003/08/10] bin/55448 dbm_nextkey() misbehaves after dbm_store( o [2003/08/11] bin/55457 marcel GDB gets confused debugging libc_r thread a [2003/08/13] kern/55542 andre [de] [patch] discard oversize frame (ethe o [2003/08/13] usb/55555 usb [ums] system freezes with access to /dev/ o [2003/08/15] i386/55603 i386 unable to reboot when system runs from My o [2003/08/15] i386/55615 i386 machine freezes - goes on after key press o [2003/08/16] kern/55617 [smbfs] Accessing an nsmb-mounted drive v o [2003/08/17] i386/55661 acpi ACPI suspend/resume problem on ARMADA M70 o [2003/08/20] kern/55822 acpi No ACPI power off with SMP kernel o [2003/08/21] bin/55829 __stderrp not defined in libc.so.3 (compa a [2003/08/24] i386/55930 i386 partly configured serial port freezes sys o [2003/08/24] kern/55934 le [vinum] [workaround] kernel panics while o [2003/08/25] bin/55956 passwd chat script not backward compatibl o [2003/08/25] bin/55965 sshd: problems with HostBasedAuthenticati o [2003/08/25] kern/55975 thomas ATAPICAM- READ_6(0x08) fails for ATAPI ta o [2003/08/26] kern/56008 scottl ps shows L flag erroneously with certain o [2003/08/27] kern/56024 acpi ACPI suspend drains battery while in S3 o [2003/08/27] kern/56031 luigi [ipfw] ipfw hangs on every invocation o [2003/08/29] bin/56147 FreeBSD/NetBSD /bin/sh mishandles positio f [2003/08/31] kern/56233 bms IPsec tunnel (ESP) over IPv6: MTU computa o [2003/09/02] kern/56339 select() call (poll() too) hangs, yet cal a [2003/09/03] ports/56363 perky The graphics/py-opengl port is broken o [2003/09/03] i386/56372 acpi acpi don't work on TYAN tiger100 M/B a [2003/09/03] kern/56381 das [unionfs] panic: page fault in fifo_close s [2003/09/04] docs/56456 blackend Initial import of the ro_RO.ISO889-2 doc/ s [2003/09/04] kern/56461 [rpc] FreeBSD client rpc.lockd incompatib p [2003/09/05] bin/56500 roam rpc.lockd needs to use reserved ports o [2003/09/06] usb/56513 usb [ugen] [panic] panic in ugen w/ moused -p p [2003/09/08] bin/56606 [2TB] df cannot handle 2TB NFS volumes o [2003/09/14] kern/56873 qa [boot] system hangs on boot at Buslogic d o [2003/09/17] i386/56937 i386 panic: system panic during high network l o [2003/09/20] i386/57043 i386 [ar] [hang] ar driver with 2 port PCI car o [2003/09/22] usb/57085 sanpei [umass] umass0 problems, with Sony Vio/US a [2003/09/22] kern/57100 bms [bridge] disable hardware checksums when s [2003/09/24] kern/57174 sos [ata] 4.9-PRERELEASE panic: ata_dmasetup: o [2003/09/24] kern/57192 emulation [linux] [hang] linux-ibm-java1.4 freeze o [2003/09/24] kern/57195 [mfs] mount_mfs -i 512 => panic? o [2003/09/25] kern/57206 [panic] softdep_lock locks against itself o [2003/09/26] bin/57255 usb usbd and multi-function devices a [2003/09/29] kern/57344 bms KMEM exhaustion from cloned routes o [2003/09/29] kern/57350 [panic] using old monocrome printer port s [2003/09/30] kern/57398 scsi [mly] Current fails to install on mly(4) o [2003/10/01] kern/57453 [kue] [patch] if_kue hangs boot after war o [2003/10/01] bin/57456 Telnet encryption gets out of sync o [2003/10/01] bin/57466 dialog(1) does not read stdin, breaks sub a [2003/10/01] kern/57479 bms FreeBSD Not in compliance with RFC 1122, p [2003/10/01] i386/57480 i386 Removing very large files using rm doesn' p [2003/10/02] bin/57484 bms routed not ignoring cloned routes f [2003/10/02] kern/57487 multimedia [sound] [patch] Sound stops working on my o [2003/10/04] bin/57554 sh(1) incorrect handling of quoted parame o [2003/10/05] kern/57603 [bktr] bktr driver: freeze on SMP machine o [2003/10/06] kern/57631 jhb [agp] [patch] boot failing for ALi chipse o [2003/10/06] bin/57673 Odd/dangerous disklabel(8) behaviour on 5 o [2003/10/07] kern/57722 [kernel] [patch] uidinfo list corruption o [2003/10/08] kern/57760 bms IPsec policy on inbound trafic is not enf o [2003/10/09] kern/57790 cdparanoia triggers kernel panic o [2003/10/09] i386/57818 i386 4.9-RC panics when kernel is built with a o [2003/10/10] kern/57832 scottl softdep_deallocate_dependencies: dangling o [2003/10/10] bin/57833 gad [PATCH] bin/ps cannot change title for ke o [2003/10/13] kern/57961 le [vinum] kmem_malloc(65536): kmem_map too o [2003/10/14] kern/57985 rwatson [net] [patch] Missing splx in ether_outpu o [2003/10/16] i386/58139 i386 [panic] -CURRENT panics on Thinkpad A31p o [2003/10/17] kern/58154 mckusick Snapshots prevent disk sync on shutdown o [2003/10/17] kern/58169 panic: vnode_pager_getpages: unexpected m f [2003/10/22] kern/58391 le [vinum] Trap 12 with heavy disk load on i o [2003/10/23] i386/58458 i386 [ata] ATAPI-CDROM DMA Support on ALi Alad o [2003/10/26] i386/58580 i386 After sysinstall, F2 fails; wrong device o [2003/10/26] kern/58581 [hang] System call gettimeofday hang 5.x o [2003/10/28] ports/58655 obrien A replacement patch is necessary for deve o [2003/10/29] bin/58687 deischen gethostbyname leaks kqueue file descripto o [2003/10/30] i386/58718 i386 need to remove battery before booting lap o [2003/10/31] kern/58752 le [vinum] vinum panics on create/resetconfi o [2003/10/31] kern/58787 peter [panic] pmap_enter: attemped pmap_enter o o [2003/11/02] i386/58826 i386 reboot on an IBM PC Server 315 merely hal o [2003/11/02] kern/58831 panic: vinvalbuf: flush failed o [2003/11/03] kern/58870 bms [gif] [panic] page fault in kernel mode w f [2003/11/03] kern/58888 [xl] 4.9-RELEASE installation fails (xl c o [2003/11/04] kern/58930 [panic] Page fault when unplugging Alcate o [2003/11/05] kern/58941 rwatson acl under ufs2 doesn't handle disk corrup o [2003/11/05] bin/58951 [sysinstall] some problems with 4.9-RELEA o [2003/11/05] kern/58953 [puc] [patch] detect NetMOS-based six ser o [2003/11/09] bin/59095 kientzle tar(1) process hangs in endless loop o [2003/11/10] alpha/59116 alpha [ntfs] mount_ntfs of a Windows 2000-forma f [2003/11/11] kern/59172 bms Zebra interface route causes kernel panic o [2003/11/11] kern/59183 imp [wi] wi problems with wi_cmd o [2003/11/11] kern/59185 [panic] 4.9-RELEASE kernel panic (page fa o [2003/11/11] i386/59192 i386 ATA drive not spotted with SCSI drive o [2003/11/12] kern/59203 imp Panic with wi and newcard a [2003/11/12] kern/59211 [nwfs] System crashes when moving files f o [2003/11/13] i386/59248 i386 [panic] 4.9-RELEASE, ACPI Panic with Dell o [2003/11/13] i386/59251 i386 Failure of 4.8-RELEASE/4.9-RELEASE/5.1-RE o [2003/11/13] i386/59260 i386 [panic] Panic by integer divide fault in o [2003/11/15] kern/59296 Serial Line Noise Causes System Hang in L o [2003/11/15] kern/59303 le [vinum] vinum crashes kernel if concurren f [2003/11/22] kern/59594 [hang] I/O operations freeze system when s [2003/11/24] bin/59638 des passwd(1) does not use PAM to change the o [2003/11/24] kern/59652 cannot redirect kernel output to serial c a [2003/11/24] ports/59657 trevor emulators/linux_base-8 cpio for install w o [2003/11/25] i386/59683 i386 panic: signal 12 4.9-STABLE - frequent cr o [2003/11/26] i386/59701 i386 System hungup, after resume from suspend. o [2003/11/26] amd64/59714 amd64 device timeout and ad0: WARNING - WRITE_D o [2003/11/26] i386/59719 i386 [crash] 4.9 Crashes on SuperMicro with SM o [2003/11/27] kern/59728 mjacob Qlogic adapter DMA setup failure with PAE o [2003/11/28] bin/59777 ftpd(8)/FreeBSD 5: potential username enu o [2003/12/01] kern/59878 le [vinum] vinum panics 5.1 system o [2003/12/02] i386/59895 i386 [hang] system hangs from disk IO errors [ o [2003/12/02] i386/59898 i386 [boot] pxe boot: BTX halted o [2003/12/03] kern/59912 bms mremap() implementation lacking o [2003/12/04] kern/59945 [nullfs] [patch] nullfs bug: reboot after o [2003/12/04] i386/59959 i386 machine can not reboot itself with Mylex o [2003/12/05] gnu/59971 peter assertion "strncmp (repository, current_p o [2003/12/08] i386/60050 i386 Toshiba/3Com 3CXM056-BNW: Open Causes Int s [2003/12/09] ports/60083 phantom Unsafe use of getaddrinfo in jvm 1.4.2-p5 o [2003/12/11] kern/60154 ipfw [ipfw] ipfw core (crash) o [2003/12/14] i386/60226 i386 [ichsmb] [patch] ichsmb driver doesn't de o [2003/12/14] kern/60235 phk some /dev-entries missing for newly auto- o [2003/12/15] ports/60245 ports-bugs new lang/ruby16-shim-ruby18 bug in includ a [2003/12/15] kern/60247 le mutex problems in geom_io s [2003/12/15] usb/60276 usb [usb] Kernel panic when plugging in USB ( o [2003/12/17] i386/60328 i386 [panic] installing 5.1, 5.2RC and 5-CURRE o [2003/12/17] i386/60344 i386 [boot] Intel ICH5 SATA RAID boot problems o [2003/12/18] bin/60349 scottl [sysinstall] 5.2-RC1 cannot do NFS instal o [2003/12/19] bin/60385 vmstat/iostat/top all fail to report CPU o [2003/12/21] kern/60477 deischen [libc] [patch] need thread safe gethosten o [2003/12/21] bin/60478 deischen [libc] getaddrinfo not thread safe o [2003/12/23] kern/60526 Post-PAE stable SMP machine freezes o [2003/12/26] kern/60598 scsi wire down of scsi devices conflicts with o [2003/12/27] i386/60603 i386 dd causes error when copying cd from ATA o [2003/12/27] i386/60633 i386 [hang] SIS motherboard with the SIS 5591 o [2003/12/27] kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C81 o [2003/12/28] i386/60646 i386 [hang] VIA C3 system hangs on reboot o [2003/12/29] docs/60679 doc pthreads documentation does not describe o [2003/12/29] i386/60681 i386 wicontrol -L critical crash (sigbus) o [2003/12/29] kern/60685 Intel 82559 NICs don't work in 4.9 o [2003/12/29] i386/60690 i386 atapicd driver causes spontaneous uncondi p [2004/01/03] kern/60856 bms [netinet] [patch] panic: at tcp_output(), o [2004/01/04] i386/60887 i386 can't boot when fbsd exists with other op o [2004/01/08] i386/61063 i386 [ata] ata hangs in smp system o [2004/01/09] kern/61108 kensmith Port linux_base-8-8.0_3: bash ls -l cause o [2004/01/09] kern/61129 thomas atapicam / UDMA cdrom loop o [2004/01/10] bin/61152 qa [sysinstall] installer refuses to mount U s [2004/01/10] kern/61165 scsi [panic] kernel page fault after calling c o [2004/01/12] i386/61253 i386 [panic] page fault on installation freebs o [2004/01/13] i386/61303 i386 5.2-REL hangs during boot with 3-port pyr o [2004/01/13] i386/61326 i386 Reboot while booting from 5.2-RELEASE CD o [2004/01/14] i386/61342 i386 [hang] CD-based installation crashes [4.9 o [2004/01/14] bin/61355 login(1) does not restore terminal owners f [2004/01/14] kern/61358 phk boot freezes while ATA GEOM slice detecti o [2004/01/15] kern/61390 [hang] Machine freeze when creating gif i o [2004/01/16] kern/61404 andre RFC1323 timestamps with HZ > 1000 o [2004/01/17] bin/61498 obrien [patch] Please MFC flex patch for gcc 3.x o [2004/01/18] kern/61544 ip6fw breakage on (at least) sparc64 o [2004/01/19] bin/61587 qa [sysinstall] [patch] installation problem o [2004/01/20] docs/61605 doc Improve documentation for i386 disk geome o [2004/01/20] usb/61627 usb [usb] [patch] New USB printer not support o [2004/01/20] i386/61646 i386 [workaround] Strange irq20 weirdness caus o [2004/01/21] bin/61658 qa [sysinstall] 5.2R error "Add of package q o [2004/01/21] kern/61669 [twe] writing to 3ware escalade spends 90 o [2004/01/21] kern/61686 FreeBSD 5.2-RELEASE crashes when ACPI is f [2004/01/22] bin/61701 Segmentation fault on OPIE when sequence o [2004/01/22] i386/61709 i386 [panic] 5.2-REL i386 Crashes hard; panics o [2004/01/22] bin/61716 mckusick newfs: code and manpage are out of sync o [2004/01/22] kern/61733 imp panic: resource_list_release: resource en o [2004/01/22] kern/61746 [boot] system locks up on boot if both ap o [2004/01/23] kern/61774 [nis] nis security issue o [2004/01/24] bin/61811 qa [sysinstall] 5.2 release no resolv.conf c p [2004/01/24] i386/61852 alc i386 pmap SMP race condition can cause lo o [2004/01/25] bin/61890 qa [sysinstall] fdisk(8) uses incorrect calc o [2004/01/26] bin/61937 qa [sysinstall] cannot install 5.2-REL via s o [2004/01/26] alpha/61940 alpha Can't disklabel new disk from FreeBSD/alp a [2004/01/26] kern/61960 sos [ata] [patch] BigDrive support for PC-98 o [2004/01/26] i386/61970 i386 [panic] on boot, 5.1/5.2 (but not 5.0), S o [2004/01/27] alpha/61973 alpha Machine Check on boot-up of AlphaServer 2 o [2004/01/28] bin/62040 pkg_add(1) won't run because the ELF dyna o [2004/01/29] bin/62058 burncd doesn't work with Creative RW8438E o [2004/01/30] usb/62088 usb [usb] Logitech Cordless/Optical Mouse not o [2004/01/30] kern/62091 [hang] Random Lockups on Boot (Timecounte o [2004/02/01] ports/62213 trevor Cannot install any emulators/linux_base o [2004/02/01] kern/62216 perl syswrite not writing the buffer unde o [2004/02/01] ports/62217 ports-bugs dns/idnkit: runidn does nothing o [2004/02/01] kern/62228 le [vinum] Kernel improperly identifies part o [2004/02/02] bin/62255 peter 2003-12-18: Stable CVS Version 1.11.11 Re a [2004/02/02] kern/62278 iedowse [nfs] NFS server may not set eof flag whe o [2004/02/02] i386/62280 i386 [em] em0 broken after resume in 5.2-CURRE o [2004/02/02] kern/62284 panic: GENERIC panics on FreeBSD 5.X imme o [2004/02/03] amd64/62295 obrien ipsec failure on 5.2.1-RC amd64 o [2004/02/03] usb/62309 usb [ugen] [panic] panic: ugen(4) driver o [2004/02/05] bin/62367 qa [sysinstall] 5.2.1-RC installation proble o [2004/02/05] kern/62374 darrenr panic: free: multiple frees o [2004/02/05] bin/62375 qa [sysinstall] sysinstall core dump o [2004/02/06] conf/62417 luigi diskless op script failed o [2004/02/07] kern/62468 panic: system crashes when serial getty e o [2004/02/08] kern/62502 [modules] panic under double loading vinu o [2004/02/09] i386/62565 i386 device.hints are not honored in 5.2.1-RC o [2004/02/10] kern/62658 [boot] loader/kernel answer to `boot -a' o [2004/02/12] amd64/62753 obrien [txp] [panic] txp(4) panics on amd4 o [2004/02/13] kern/62762 trhodes [msdosfs] Fsync for msdos fs does not syn o [2004/02/13] i386/62807 i386 4.9 SMP does not work with Compaq Smart o [2004/02/14] kern/62824 [panic] softdep_setup_inomapdep: found in o [2004/02/14] bin/62833 qa [sysinstall] can't install: integer divid o [2004/02/15] kern/62864 cognet Machine not reboot. o [2004/02/15] i386/62888 i386 ad4: WARNING - WRITE_DMA interrupt was se a [2004/02/16] kern/62906 peadar [agp] [patch] AGP misconfigures i845G chi o [2004/02/16] gnu/62937 Compilation of base src Perl with static o [2004/02/18] kern/63040 panic: kernel panic (sf_buff_alloc) o [2004/02/22] kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestr o [2004/02/24] i386/63305 i386 reading udf filesystem on dvd+rw leads to o [2004/02/25] kern/63343 [boot] manual root filesystem specificati o [2004/02/25] kern/63360 [panic] page fault in ath kernel module i o [2004/02/26] bin/63391 Burncd DAO fails on some CD recorders o [2004/02/27] i386/63430 i386 [ata] TIMEOUT - ATA READ o [2004/02/27] kern/63431 [rtc] motherboard going to suspend mode s o [2004/02/27] i386/63441 i386 [panic] fatal trap 12 in pmap.c [4.9 with o [2004/02/27] i386/63449 i386 [boot] FreeBSD 5.2 and 5.2.1 releases won o [2004/02/27] i386/63467 i386 [ata] Sil 3114: RAID not detected using S o [2004/02/28] bin/63489 top, finger segfault when using NIS group o [2004/02/29] bin/63535 getpwent segfaults when NIS groups used b o [2004/02/29] kern/63557 thomas ATAPICAM broken in 5.2-CURRENT (REQUEST_S o [2004/03/01] usb/63621 usb [usb] USB MemoryStick Reader stalls/crash o [2004/03/02] kern/63629 thomas mounting atapicam volume through cd0c cau p [2004/03/02] kern/63662 [nullfs] using read-only NULLFS leads to o [2004/03/03] ports/63670 perl lang/perl5.8: 'Unable to read from thread o [2004/03/03] i386/63678 i386 5.2.1 installation hangs on t30 o [2004/03/03] kern/63724 ipfw [ipfw] IPFW2 Queues dont t work o [2004/03/04] i386/63731 i386 [boot] PATA to SATA converter on Promise o [2004/03/06] i386/63828 i386 [hang] when installing Release 5.2.1 (i38 o [2004/03/06] www/63854 www PR-web page loses text o [2004/03/07] i386/63871 i386 [panic] kernel panic in swi8 after 1 hour o [2004/03/09] i386/63992 i386 [hang] XFree86 4.3 hangs on IBM ThinkPad o [2004/03/09] i386/64002 acpi acpi problem p [2004/03/11] kern/64091 peadar [nfs] nfs data corruption at end of file o [2004/03/12] i386/64158 i386 5.2.1-RELEASE CD won't boot on acer Trave p [2004/03/12] kern/64169 linux binaries dump core on exit o [2004/03/13] ports/64191 ume security/cyrus-sasl2 Makefile doesn't obe o [2004/03/13] kern/64196 [kernel] [patch] remove the arbitrary MAX s [2004/03/15] kern/64313 threads FreeBSD (OpenBSD) pthread implicit set/un o [2004/03/17] kern/64363 [panic] ffs_blkfree: freeing free block [ o [2004/03/18] kern/64406 panic: ffs_clusteralloc: map mismatch o [2004/03/19] bin/64445 peter "ypwhich -m" map enumeration is broken o [2004/03/19] i386/64450 i386 Lucent Technologies WaveLAN/IEEE (PCI) fr p [2004/03/22] kern/64573 alc mmap with PROT_NONE, but still could be r f [2004/03/22] kern/64594 glebius [rl] 5.2-CURRENT: driver 'rl' (RealTek 81 o [2004/03/25] i386/64680 i386 5.2.1 pci-cfgintr steals serial mouse irq o [2004/03/25] i386/64716 i386 [nis] mv crashes FreeBSD 5.2.1-p3 o [2004/03/25] bin/64720 tail will not ctrl c o [2004/03/25] i386/64727 i386 [boot] cannot find disk on asus p4s533mx o [2004/03/26] bin/64738 sendmail(8): SO_REUSEADDR doesn't seem to a [2004/03/27] kern/64816 peadar [nfs] mmap and/or ftruncate does not work o [2004/03/28] kern/64826 [panic] with IPv6 on 4-STABLE after FreeB o [2004/03/29] kern/64903 [modules] panic: multiple kldload of a mo o [2004/03/31] ports/64963 tobez Perl 5.8: make package deletes installed o [2004/03/31] bin/64990 /bin/sh unable to change directory but cu o [2004/04/02] java/65054 glewis Diablo 1.3.1 JVM runs out of file descrip o [2004/04/02] i386/65072 i386 hang on reboot not syncing drives on ibm o [2004/04/03] ports/65128 cy security/aide port fails with SIGBUS ever o [2004/04/03] i386/65137 i386 [boot] 5.2.1 Intall Boot from floppies pa f [2004/04/05] kern/65212 [hang] running startx hangs the system (a o [2004/04/05] bin/65223 fsck of 5.2 makes UFS1 inconsistent for 4 f [2004/04/07] kern/65282 [panic] Trap 12 kernel panic upon boot du o [2004/04/07] kern/65300 [udf] Can't use sendfile(2) to download f o [2004/04/11] kern/65428 [uscanner] [panic] uscanner(4)-related re o [2004/04/12] i386/65457 i386 BTX Halted when trying boot after success o [2004/04/14] i386/65523 i386 [loader] [patch] PXE loader malfunction i o [2004/04/14] bin/65546 qa [sysinstall] 4.10-BETA fails to install f o [2004/04/16] kern/65616 bms IPSEC can't detunnel GRE packets after re o [2004/04/16] gnu/65641 Use of llabs() in C++ fails as ambiguous o [2004/04/17] i386/65648 imp cardbus("TI1131") won't work on Dell Lati o [2004/04/19] bin/65774 qa [sysinstall] cannot run repair disk when o [2004/04/19] i386/65775 i386 [panic] Transmeta crusoe without longrun s [2004/04/20] kern/65817 [sk] [panic] kernel panic with GENERIC 5. o [2004/04/22] gnu/65869 cvs generates invalid cvs command lines o [2004/04/22] kern/65901 [smbfs] smbfs fails fsx write/truncate-do a [2004/04/23] ports/65906 phantom Compile of JDK-1.4 under FBSD-5.2.1 fails o [2004/04/23] kern/65920 [nwfs] Mounted Netware filesystem behaves o [2004/04/27] kern/66025 panic: kernel panic in pagedaemon with vm o [2004/04/27] kern/66029 [crypto] [patch] MD5 alignment problem on o [2004/04/27] bin/66036 restore crashes (reproducable, core file s [2004/04/29] kern/66066 [unionfs] panic: ufs_direnter: compact2 o [2004/04/29] i386/66087 i386 [install] hang at PCI config [5.2.1] o [2004/04/30] bin/66103 macro HISADDR is not sticky in filters o [2004/05/01] i386/66133 i386 [boot] nvidia motherboard installer locks o [2004/05/01] java/66151 java JBuilderX (sun jvm 1.4.1 builtin) crashes o [2004/05/01] kern/66152 [unionfs] laying unionfs over another uni o [2004/05/02] kern/66162 phk gbde destroy error o [2004/05/04] bin/66242 endless loop in sh(1) o [2004/05/05] kern/66270 mckusick [hang] dump causes machine freeze o [2004/05/05] kern/66290 imp pccard initialization fails with "bad Vcc o [2004/05/06] i386/66306 i386 pnpbios_identify() queries for more devic o [2004/05/07] kern/66348 rik [cx] FR mode of cx (Cronyx Sigma) does no o [2004/05/07] i386/66350 qa [sysinstall] sysinstall creates a partiti o [2004/05/07] i386/66368 i386 [install] 4.9 install fails with MODE_SEN o [2004/05/11] bin/66523 atacontrol(8) allows to detach a channel o [2004/05/13] kern/66611 [nfs] Crashing NFS servers (with workarou a [2004/05/14] kern/66634 tackerman [em] hard lock with em driver o [2004/05/18] kern/66786 [nfs] panic: exporting msdosfs causes nfs o [2004/05/18] conf/66791 Old dev.db leads to the wrong program beh o [2004/05/18] kern/66829 [unionfs] mounting fdesc union on /dev pa o [2004/05/18] bin/66830 chsh/ypchsh do not change user informatio o [2004/05/19] kern/66848 imp cardbus power support breaks cardbus supp o [2004/05/19] kern/66876 [fdc] [patch] Cannot extract tar(1) multi o [2004/05/20] bin/66950 qa [sysinstall] upgrading to 4.10-RC3: packa o [2004/05/20] kern/66960 [fdc] [patch] filesystems not unmounted d o [2004/05/21] bin/66984 qa [2TB] [patch] teach sysinstall about larg o [2004/05/22] i386/67047 i386 [mpt] mpt driver does not recognize messa o [2004/05/22] i386/67050 imp CardBus (PCI ?) resource allocation probl o [2004/05/25] bin/67167 FreeBSDs ftpd has problems under -CURRENT o [2004/05/27] i386/67273 acpi [hang] system hangs with acpi and Xfree o [2004/05/28] kern/67301 panic: uftdi, RTS and system panic o [2004/05/29] kern/67326 [msdosfs] crash after attempt to mount wr o [2004/05/29] conf/67328 Usermode PPP hangs on boot when NIS confi o [2004/06/01] i386/67469 i386 src/lib/msun/i387/s_tan.S gives incorrect p [2004/06/03] kern/67546 [2TB] Coredumps > 2Gb do not work (on 64b o [2004/06/06] ports/67625 trevor Linux_base fails to install s [2004/06/06] alpha/67626 alpha X crashes an alpha machine, resulting reb o [2004/06/07] i386/67688 i386 5.2.1 initial floppy boot fails with Fata f [2004/06/09] kern/67769 Fxtv 1.03 cause the Desk top (KDE) to Fre o [2004/06/10] kern/67794 panic: ffs panic during high filesystem a o [2004/06/11] i386/67833 i386 [boot] 4.10 does not boot after enabling o [2004/06/14] kern/67919 imagemagicks convert image to movie conve a [2004/06/15] i386/67955 i386 [panic] -current on T40p kernel trap 12 i o [2004/06/16] bin/67995 [patch] morse(6) plays beeps 10 times fas p [2004/06/16] kern/68013 jeff tp->snd_wl1 & snd_wl2 are not updated in o [2004/06/17] bin/68047 [sysinstall] unattended install of FreeBS o [2004/06/18] kern/68076 [modules] Page fault when the sequence "k o [2004/06/19] i386/68103 i386 [panic] ASUS P4P8X mb at ffs/ffs_softdep. o [2004/06/20] kern/68131 emulation [linux] [hang] java/linux-ibm-jdk14: linu o [2004/06/20] i386/68149 i386 FreeBSD 4.10 installation blocking on ASU o [2004/06/24] ports/68260 markm [PATCH] Removal of -lcompat from freebsd- o [2004/06/24] i386/68277 i386 [kbd] Compact Evo N610c (Laptop): Using e o [2004/06/25] kern/68324 panic: Duplicate free of item 0xc3121908 o [2004/06/25] kern/68325 panic: _mtx_lock_sleep: recursed on non-r o [2004/06/26] kern/68351 [bge] bge0 watchdog timeout on 5.2.1 and o [2004/06/27] i386/68411 i386 VMware Virtual Machine - Network Fails Du o [2004/06/28] i386/68438 i386 bootloader cannot read from icp vortex ar o [2004/06/28] kern/68442 [panic] acquiring duplicate lock of same o [2004/06/29] i386/68486 i386 logo screensaver kills compaq ML370 conso o [2004/07/01] kern/68546 [ata] system seems to hang during stress o [2004/07/01] i386/68554 i386 [hang] system freeze on Compaq Evo 600c [ o [2004/07/02] kern/68576 rwatson UFS2 snapshot files can be mounted read-w o [2004/07/06] bin/68727 marcel gdb coredumps after recent CURRENT upgrad o [2004/07/10] kern/68889 rwatson [panic] m_copym, length > size of mbuf ch o [2004/07/10] i386/68899 i386 Problems reading and writing DVD-RAM disc o [2004/07/13] kern/68978 [crash] firewire crashes with failing har o [2004/07/13] kern/68987 panic: kmem_malloc(163840): kmem_map too o [2004/07/13] usb/69006 usb [patch] Apple Cinema Display hangs USB po o [2004/07/13] kern/69019 [wi] wlan stalling after 2-3 hrs of moder o [2004/07/14] i386/69049 i386 [install] error "anic: page fault" o [2004/07/14] kern/69058 panic: kernel reads unmapped memory while o [2004/07/14] kern/69066 panic: nmdm page fault when slattach on a o [2004/07/15] kern/69092 [rl] kernel: rl0: watchdog timeout o [2004/07/15] kern/69100 [nwfs] panic: 5.2.1p9 kernel panics when o [2004/07/16] kern/69141 panic: softdep_lock [5.2.1-RELEASE, SMP] o [2004/07/16] kern/69158 [an] Cisco MPI350 wireless card problems o [2004/07/18] i386/69218 simokawa [boot] failure: 4.10-BETA and later do no o [2004/07/19] i386/69260 i386 [install] Problem starting the installati o [2004/07/19] i386/69281 i386 init dies when MAXSSIZ, MAXDSIZ, and DFLD o [2004/07/26] kern/69607 [if_tap] [crash] system crashes in if_tap o [2004/07/26] kern/69612 [panic] 4.10-STABLE crashes everyday: pag o [2004/07/26] kern/69629 [panic] Assertion td->td_turnstile o [2004/07/27] kern/69663 ddb's panic comand can not dump o [2004/07/28] amd64/69704 amd64 ext2/ext3 unstable in amd64 o [2004/07/28] amd64/69707 amd64 IPC32 dont work OK in amd64 FreeBSD o [2004/07/28] bin/69723 sysinstall: allow to continue from packag o [2004/08/03] bin/69942 [sysinstall] sysinstall changes /etc/rc.c o [2004/08/05] i386/70028 i386 [umass] umass issue in the boot prcess on o [2004/08/11] ports/70309 sumikawa [patch] racoon disrupt manually-keyed IPS o [2004/08/11] i386/70330 marcel Re-Open 33262? - gdb does not handle pend o [2004/08/12] kern/70360 [twe] Random lock-ups with 3ware RAID 5 u o [2004/08/13] i386/70386 i386 IBM x345 Freezes Randomly o [2004/08/15] i386/70482 i386 Array adapter problems o [2004/08/16] i386/70525 i386 [boot] boot0cfg: -o packet not effective o [2004/08/16] i386/70531 i386 [boot0] [patch] boot0 hides Lilo in exten o [2004/08/17] kern/70587 [vm] [patch] NULL pointer dereference in o [2004/08/18] bin/70600 fsck(8) throws files away when it can't g o [2004/08/18] docs/70616 brd [patch] incompleteness and error in su(1) o [2004/08/19] kern/70649 [rtc] system clock slows down when heavil o [2004/08/19] kern/70663 [ipx] Freebsd 4.10 ncplogin + Netware 4.1 f [2004/08/20] ports/70695 hrs teTeX (port source print/teTeX) ends with o [2004/08/20] i386/70747 i386 ddos attack causes box to crash on kernel o [2004/08/21] kern/70753 [boot] Device for firewire hard disk not o [2004/08/21] bin/70803 truss wedges if child exits at the wrong o [2004/08/22] kern/70809 [panic] ufs_direnter: compact1 o [2004/08/25] i386/70925 i386 [hang] 5.3Beta1 acpi-pci driver failure, f [2004/08/25] kern/70931 [panic] page fault at end of boot on Athl o [2004/08/26] conf/70973 [patch] script 800.loginfail does not rep o [2004/08/26] bin/70974 [rpc] SIGSEGV in rpc.lockd o [2004/08/26] threads/70975threads unexpected and unreliable behaviour when o [2004/08/26] i386/71000 i386 [boot] BTX halted when booting from CD on o [2004/08/27] i386/71035 i386 [kbd] SMP boot hangs in bus_space_write_1 o [2004/08/27] i386/71048 i386 [hang] ASUS TUV4X hangs when SONY CRX140E o [2004/08/28] i386/71087 i386 [hang] 5.3-beta(2-5) fail to install on e o [2004/08/29] kern/71109 alc [pmap] [patch] Possible race conditions i o [2004/08/30] kern/71131 [panic] profile.sh causes bfe to panic o [2004/08/30] i386/71144 i386 FBSD5.3b2 doesn't boot on a Compaq Armada o [2004/08/30] bin/71147 sshd(8) will allow to log into a locked a o [2004/08/30] usb/71155 usb [usb] misbehaving usb-printer hangs proce o [2004/08/30] i386/71158 i386 pci bus number 3 devices are missing on l o [2004/08/30] gnu/71160 marcel gdb gets confused about active frame o [2004/08/31] i386/71190 i386 Dead thinkpad R31 after installing 5.2.1 o [2004/08/31] kern/71198 Lack of PUC device in GENERIC kernel caus o [2004/09/02] bin/71290 [PATCH] passwd cannot change passwords ot o [2004/09/02] kern/71310 jeff [panic] kernel crash on rtprio pid priori o [2004/09/03] bin/71323 qa [sysinstall] FTP download from floppy boo p [2004/09/05] kern/71388 rwatson [panic] due mac_policy_list_conditional_b o [2004/09/05] kern/71391 [nfs] [panic] md via NFS file + mount -t o [2004/09/05] kern/71394 [boot] unable to mount troot device in bo o [2004/09/05] kern/71402 rwatson panic with lomac o [2004/09/06] kern/71421 [hang] [sched_ule] filesystem operations o [2004/09/06] i386/71428 i386 DMA does not work on VIA 82C586 [4.10] f [2004/09/07] i386/71470 i386 [hang] Asus P4P800-E Promise 20378 RAID 1 o [2004/09/07] amd64/71471 amd64 Can not install 5.3beta3/amd64 on IBM eSe o [2004/09/08] kern/71478 [nis] NIS/NFS: res_mkquery failed [4.2] a [2004/09/10] kern/71568 brooks [kbd] [patch] unable to install FreeBSD u o [2004/09/11] bin/71594 [patch] pkg_install (sign) - variables ma o [2004/09/11] bin/71602 [PATCH] uninitialized "len" used instead o [2004/09/11] bin/71603 "systat -v" enters infinite loop f [2004/09/12] i386/71641 i386 5.3-BETA3: wi0 hangs during kernel load o [2004/09/12] amd64/71644 amd64 [panic] amd64 5.3-BETA4 crash when heavy o [2004/09/12] bin/71651 [PATCH] cron may attept to close unopened o [2004/09/12] kern/71677 rwatson [mac] [patch] MAC Biba / IPFW panic f [2004/09/13] kern/71695 brooks [gif] [hang] ifconfig(8) hanging box o [2004/09/14] sparc64/71729sparc64 printf in kernel thread causes panic on S o [2004/09/15] kern/71771 [amr] Hang during heavy load with amr rai o [2004/09/16] kern/71785 anholt panics in X (Xorg and XFree86) with ATI c a [2004/09/16] bin/71786 [patch] adduser breaks if /sbin/nologin i f [2004/09/16] kern/71791 [panic] Fatal trap 12: page fault while i o [2004/09/16] kern/71792 [vm] [patch] Wrong/missing 'goto' target o [2004/09/17] kern/71827 jeff [sched_ule] [panic] Running java applicat o [2004/09/19] kern/71918 4.5 disklabel gets damaged when mounted b o [2004/09/22] kern/71999 [ata] [panic] recurring panic in 4.10: at o [2004/09/22] i386/72004 i386 [boot] FreeBSD 5.2.1 install hangs with e o [2004/09/22] kern/72007 [panic] clist reservation botch [4.10] o [2004/09/23] kern/72022 packet loss on loopback interface [5.3-BE s [2004/09/23] kern/72041 [cam] [hang] Deadlock when disk is destro o [2004/09/24] i386/72065 i386 4.x and 5.2.1 doesn't recognize PCnet/ISA o [2004/09/27] kern/72130 Promise Fastrack sx4000 boot problem o [2004/09/28] ports/72149 nectar [PATCH] heimdal with LDAP backend - bad s o [2004/09/28] java/72151 phantom JVM crash on 5.2.1-R o [2004/09/29] kern/72163 ACPI Panics on boot with 5.3-BETA-3 and u o [2004/09/30] kern/72208 panic: bio_completed can't be greater tha o [2004/09/30] kern/72210 andre ipnat problem with IP Fastforward enable o [2004/09/30] kern/72211 Cannot boot 5.3-BETA6 with both SCSI and f [2004/09/30] i386/72215 i386 with acpi enabled network card will not w o [2004/10/03] kern/72278 Installworld crashes machine [5.3-BETA7] o [2004/10/03] docs/72285 doc GCC manuals are out of sync o [2004/10/04] kern/72305 boot hangs after discovering disks when a o [2004/10/05] i386/72343 i386 Suspend resets system on Inspiron 5160. o [2004/10/05] threads/72353threads Assertion fails in /usr/src/lib/libpthrea o [2004/10/06] bin/72370 obrien awk in -current dumps core o [2004/10/06] i386/72376 i386 acpi is mutually exclusive with snd_mss o f [2004/10/06] i386/72378 remko [sk] NFS hangs in 5.3-BETA7 [3Com gbit ca o [2004/10/06] kern/72396 [netinet] [patch] Incorrect network accou o [2004/10/07] i386/72416 i386 FreeBSD 5.3-BETA7: The alternate systemcl o [2004/10/07] kern/72424 panic: ffs_blkfree: freeing free block in o [2004/10/07] threads/72429threads threads blocked in stdio (fgets, etc) are f [2004/10/08] kern/72439 multimedia [sound] Sound not functioning for VIA_823 f [2004/10/08] i386/72441 remko HP Proliant DL380 hangs on reboot with 5. f [2004/10/09] i386/72456 i386 5.xx Releases Do Not Identify ATA when 4. o [2004/10/09] usb/72466 brooks [kbd] USB keyboard does not respond in si o [2004/10/10] kern/72490 Panic mounting cdrom with RWCombo Abort trap (core dumped) o [2004/11/04] kern/73538 [bge] problem with the Broadcom BCM5788 G o [2004/11/05] bin/73559 sos burncd(8) failure closing/fixating DVD-+R o [2004/11/06] bin/73617 qa [sysinstall] fdisk editor unmarks active o [2004/11/07] amd64/73650 amd64 5.3-release panics on boot o [2004/11/08] i386/73666 i386 5.3 UDMA error WD1600 can't partition dri o [2004/11/09] i386/73706 jhb ATA_IDENTIFY timed out under FreeBSD 5.3 o [2004/11/09] kern/73719 rwatson Page fault in bpf_mtap () o [2004/11/09] kern/73740 [nfs] [panic] 5-3-R#3 panic when accessin o [2004/11/09] kern/73744 printing via cups causes "Interrupt storm o [2004/11/10] amd64/73775 amd64 Kernel panic (trap 12) when booting with o [2004/11/11] kern/73830 le kernel panic when raid5 member disk is re o [2004/11/12] kern/73850 thomas atapicam and Zip drive causes reboots upo o [2004/11/12] kern/73871 [wi] Intersil Prism wireless wi0 locks up o [2004/11/13] kern/73910 ipfw [ipfw] serious bug on forwarding of packe o [2004/11/14] i386/73934 i386 fdisk sees disk as empty f [2004/11/16] kern/73987 multimedia [sound] Nforce2 MB sound problem o [2004/11/16] i386/74008 i386 IBM eServer x225 cannot boot any v5.x - e o [2004/11/16] kern/74012 FreeBSD 4.10 stops responding while playi o [2004/11/16] amd64/74014 amd64 5.3-RELEASE-AMD64 freezes on boot during o [2004/11/16] misc/74019 Not NOMAN requires NO_CXX in make.conf o [2004/11/17] bin/74043 [PATCH] sh trap builtin does not properly o [2004/11/17] i386/74044 i386 ServerWorks OSB4 SMBus interface does not o [2004/11/18] i386/74074 i386 hw.ata.wc=0 / but write cache still enabl o [2004/11/19] kern/74104 ipfw [ipfw] ipfw2/1 conflict not detected or r p [2004/11/19] kern/74105 rwatson IPX protocol support doesn't work o [2004/11/19] i386/74124 i386 ata0 failure on HP(Vectra) VL6/350 [intro o [2004/11/19] bin/74127 [patch] patch(1) may misapply hunks with o [2004/11/19] kern/74136 FreeBSD 5.3 does not see RAID 1 drive onl f [2004/11/20] ports/74171 ports-bugs [panic] comms/ltmdm: Fatal trap 12: page o [2004/11/21] i386/74217 i386 init died [Presario 2500] o [2004/11/22] kern/74230 periodic Fatal trap 12: page fault while o [2004/11/22] kern/74238 firewire [firewire] fw_rcv: unknown response; fire s [2004/11/22] kern/74242 rwatson Write to fifo with no reader fails in 6.0 p [2004/11/22] bin/74255 des sshd produces Zombies with UsePam and Pri o [2004/11/22] kern/74272 Interrupt storm detected on "irc10:atapci o [2004/11/24] kern/74309 xterm -C and rxvt -C do not grab /dev/con o [2004/11/24] kern/74319 [smp] system reboots after few hours (5.3 p [2004/11/25] kern/74386 emaste [kernel] [patch] Killing watchdogd does n a [2004/11/26] kern/74432 Yamaha DS-1E produces "kernel: Danger! pc o [2004/11/29] kern/74495 [wi] wi(4) wlan driver device freeze (5.3 o [2004/11/29] ports/74518 openoffice openoffice-1.1 build failure on 4-stable: o [2004/11/29] gnu/74531 gcc doesn't link correctly if -pg specifi o [2004/12/01] i386/74576 i386 FAILURE - ATA_IDENTIFY no interrupt o [2004/12/01] i386/74601 i386 Cardbus fails after busdma_machdep.c upda o [2004/12/02] conf/74610 Hostname resolution failure causes firewa o [2004/12/02] kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5 f [2004/12/03] kern/74635 yar [panic] vlan over fxp driver IP assignmen o [2004/12/04] usb/74690 usb [umass] [patch] support for SanDisk 8-in- s [2004/12/05] kern/74708 [umapfs] [panic] UMAPFS kernel panic o [2004/12/05] amd64/74747 amd64 System panic on shutdown when process wil o [2004/12/06] ports/74760 java java/javavmwrapper messes up amavisd-new o [2004/12/06] usb/74771 usb [umass] mounting write-protected umass de o [2004/12/06] kern/74778 ipsec passthrough / nat-t crash freebsd f o [2004/12/06] bin/74779 Background-fsck checks one filesystem twi o [2004/12/07] bin/74801 cpio -p --sparse creates truncated files o [2004/12/07] kern/74809 [modules] [panic] smbfs panic if multiply o [2004/12/07] i386/74816 i386 OS crash with kernel trap 12 in different o [2004/12/08] kern/74852 page fault: after a few days init causes s [2004/12/08] ports/74857 ports-bugs clamav socket problem o [2004/12/08] kern/74877 Panic after halting the system - vrele: n o [2004/12/10] kern/74923 [ipx] [panic] kernel panic with ncplist o a [2004/12/10] bin/74926 dds look(1) will silently ignore input from n p [2004/12/10] bin/74929 des DES/BLF login.conf classes not working wi o [2004/12/11] kern/74935 andre [netinet] [patch] TCP simultaneous open f o [2004/12/12] kern/74968 cdparanoia torture wedges CD-drive and PA o [2004/12/12] kern/74976 [vfs] [panic] 5.3-STABLE: vn_finished_wri o [2004/12/12] i386/74988 i386 dma errors with large maxtor hard drives p [2004/12/13] kern/75014 rwatson When close ipx socket kernel panic o [2004/12/14] ports/75048 seanc www/mod_backhand nsswitch problem : nss_d o [2004/12/15] kern/75099 OpenOffice makes the system freeze o [2004/12/15] kern/75122 silby [netinet] [patch] Incorrect inflight band o [2004/12/16] kern/75157 Cannot print to /dev/lpt0 with HP Laserje f [2004/12/16] kern/75159 rodrigc (SC|VGA)_NO_FONT_LOADING in kernel config o [2004/12/18] amd64/75209 amd64 5.3-Release panics on attempted boot from o [2004/12/18] kern/75233 breaking fdformat /dev/fd0 resets device o [2004/12/19] kern/75249 [boot] 5.x install CD hangs on VirtualPC o [2004/12/19] kern/75250 gibbs timedout_scbs is not initialized with LIS o [2004/12/19] bin/75258 [patch] dd(1) has not async signal safe i o [2004/12/19] threads/75273threads FBSD 5.3 libpthread (KSE) bug o [2004/12/20] ports/75315 obrien the shells/bash2 port is broken on -CURRE o [2004/12/21] kern/75368 [panic] initiate_write_inodeblock_ufs2() o [2004/12/21] threads/75374threads pthread_kill() ignores SA_SIGINFO flag o [2004/12/22] kern/75407 [an] an(4): no carrier after short time o [2004/12/23] amd64/75417 amd64 ACPI: SATA Hard-disk o [2004/12/26] kern/75510 panic: kmem_malloc(4096): kmem_map too sm o [2004/12/27] kern/75541 [sysv] [patch] Forgotten tunables for sys p [2004/12/27] kern/75542 rwatson Inconsistent naming of a tunable and weir o [2004/12/31] kern/75687 multimedia [sound] [patch] No sound on PC which is i o [2005/01/01] usb/75705 usb [panic] da0 attach / Optio S4 (with backt o [2005/01/01] docs/75711 keramida opendir manpage o [2005/01/03] kern/75733 harti ATM driver problem. o [2005/01/03] kern/75755 kmem_malloc(45056): kmem_map too small: 3 o [2005/01/03] kern/75773 [panic] sysctl -a panic o [2005/01/04] kern/75780 [panic] panic: vm_page_free: freeing wire o [2005/01/04] kern/75794 tackerman [em] em(4) driver alignment problems o [2005/01/04] usb/75797 usb 5.3-STABLE(2005 1/4) detect USB headset, o [2005/01/04] kern/75823 [wi] wi0 interface self-destructs after a o [2005/01/05] kern/75850 Reboot hangs when swap resides on disks t o [2005/01/06] kern/75875 acd0: FAILURE - READ_BIG ILLEGAL REQUEST o [2005/01/06] i386/75887 i386 [pcvt] with vt0.disabled=0 and PCVT in ke o [2005/01/08] bin/75931 Got "bus error" on running certain apps o [2005/01/09] kern/75978 Linksys WPC11 ver 3 wifi card locks up 5 p [2005/01/09] bin/75980 expand(1) breaks tab columns in Japanese o [2005/01/10] kern/76023 [panic] xmms causes panic f [2005/01/10] ports/76029 mita misc/mgp-mode.el is already included in m o [2005/01/11] kern/76080 [panic] "bio_completed .. greater than bi o [2005/01/12] kern/76126 [nfs] [patch] 4.11 client will send a NFS o [2005/01/12] bin/76134 fetch(1) doesn't like 401 errors with -A o [2005/01/12] amd64/76136 amd64 system halts before reboot o [2005/01/13] usb/76204 usb panic while using usb attached modem o [2005/01/13] kern/76207 [xl] [patch] Null pointer dereference in o [2005/01/14] kern/76237 le [vinum] [panic] ufs_baddir, possible link o [2005/01/17] amd64/76336 amd64 racoon/setkey -D cases instant "Fatal Tra o [2005/01/17] i386/76372 i386 cannot burn iso image disk2 of any releas o [2005/01/18] usb/76395 usb USB printer does not work, usbdevs says " s [2005/01/18] i386/76397 i386 [ata] ata raid crashes in g_down (heavy l o [2005/01/18] kern/76398 [libc] stdio can lose data in the presenc o [2005/01/18] kern/76410 [bpf] [patch] Null pointer dereference in o [2005/01/19] kern/76464 mlaier PF, set loginterface & non existing inter o [2005/01/20] i386/76487 i386 Compiled GENERIC kernel (and non-GENERIC) o [2005/01/20] kern/76504 silby Keep-alives doesn't work on half-closed s o [2005/01/21] kern/76525 select() hangs on EOF from named pipe (FI o [2005/01/21] kern/76538 geom [gbde] nfs-write on gbde partition stalls o [2005/01/21] usb/76554 usb Panram "yoyo" USB MP3 player causes panic o [2005/01/22] bin/76578 uniq truncates long lines to LINE_MAX o [2005/01/23] bin/76588 OpenSSL fails on loading keyfiles from BI o [2005/01/24] java/76631 java any port linux-*-jdk12 will core dump if o [2005/01/24] ports/76633 kwm Totem will not play DVDs o [2005/01/25] ports/76644 emulation FreeBSD 5.3 will freeze or crash when run o [2005/01/25] kern/76663 panic with FAST_IPSEC and IPv6 o [2005/01/25] i386/76666 i386 Booting and Sound are mutually exclusive o [2005/01/25] kern/76672 Problem with cardbus and vlans o [2005/01/25] usb/76684 usb Toshiba PDR-M4 camera connected via USB h o [2005/01/26] threads/76694threads fork cause hang in dup()/close() function o [2005/01/27] i386/76737 i386 CardBus problem (cbb1: Could not map regi o [2005/01/28] kern/76792 le [vinum] vinum not working with aac disk d f [2005/01/30] ports/76838 edwin multimedia/pvr250 problems in 4.x with co o [2005/01/30] kern/76848 [amr] amr hangs o [2005/01/31] kern/76893 [cam] [patch] Fatal divide in booting pro o [2005/01/31] i386/76925 i386 standard pci-ide, install - "NO DISKS FOU o [2005/02/01] kern/76937 Page fault while in kernel mode under hea o [2005/02/01] i386/76944 i386 [busdma] [patch] i386 bus_dmamap_create() o [2005/02/01] i386/76948 i386 [rl] Slow network with rl0 o [2005/02/01] kern/76968 Failing to boot into machine o [2005/02/02] amd64/77011 amd64 consisten 5.3-p5 make crash on installwor o [2005/02/02] kern/77026 umount-ing non-existent device panics sys p [2005/02/03] bin/77067 stefanf /bin/sh premature termination when 'set - o [2005/02/04] amd64/77101 obrien feature request: please include ULi M1689 o [2005/02/05] ports/77115 phantom jdk15 and amd64, ${ARCH} bug f [2005/02/06] i386/77154 i386 5.3 refuses to boot when IDE channel2 is o [2005/02/06] kern/77181 [newfs] [patch] newfs -g largevalue, mkdi o [2005/02/06] usb/77184 usb kernel panic on USB device disconnect o [2005/02/07] kern/77195 darrenr [ipfilter] [patch] ipfilter ioctl SIOCGNA o [2005/02/09] kern/77289 system hangs while trying to unmount prev o [2005/02/09] usb/77294 usb ucom + ulpcom panic f [2005/02/09] ports/77325 barner devel/valgrind hangs at program completio o [2005/02/10] i386/77335 i386 Can not initial Ethernet Broadcom UDI PXE o [2005/02/10] kern/77337 Samba3+FAT32->Reboot o [2005/02/10] conf/77340 rc awk used in /etc/rc.d/nsswitch when not a o [2005/02/12] sparc64/77417sparc64 [panic] with high usage of cpu when lan u o [2005/02/13] kern/77432 [nfs] [patch] It is not possible to load o [2005/02/13] kern/77439 WAG511 NETGEAR pccard does not attach (De o [2005/02/13] i386/77443 i386 [fdc] can't access floppy -- regression o o [2005/02/13] bin/77455 natd(8): fatal trap 19 in natd o [2005/02/13] kern/77463 [nfs] [patch] Local DoS from user-space i o [2005/02/14] kern/77493 [pipe] freebsd 5.3 + bash process substit o [2005/02/14] i386/77529 i386 installation of freebsd 5.3 in laptop an o [2005/02/15] ports/77574 nectar net/nss_ldap locks out when cd'ing to see o [2005/02/16] kern/77588 [em] PREEMPTION problems in combination w o [2005/02/16] usb/77604 usb Sluggish Logitch LX700 USB Mouse o [2005/02/17] amd64/77629 amd64 aMule hardlocks AMD64 system o [2005/02/17] kern/77631 [sis] sis network driver broken in 5.3 o [2005/02/17] i386/77643 sos [ata] SATA PCI controllers fail with WRIT o [2005/02/17] bin/77651 init can loose shutdown related signals o [2005/02/17] ports/77656 phantom java/jdk15 - (AMD64) install problem. o [2005/02/18] kern/77665 rwatson multicast sockets + interface removal = p o [2005/02/19] kern/77710 emulation [linux] Linux page fault sigcontext infor o [2005/02/20] kern/77753 DVD-writer fails to fixate DVD f [2005/02/20] kern/77805 Boot hangs with ACPI enabled o [2005/02/21] ports/77873 portmgr New variable: USE_BSD_MK o [2005/02/22] conf/77932 [patch] security.functions: pf and ipfw p f [2005/02/22] i386/77935 remko Can't boot with 5.x CD or floppy o [2005/02/23] usb/77940 usb [patch] [panic] insertion of usb keyboard o [2005/02/23] amd64/77949 amd64 Pb boot FreeBSD 64 o [2005/02/23] ports/77954 trevor emulators/linux_base for amd64 fails to i o [2005/02/23] kern/77982 [lnc] [patch] lnc0 can NOT be detected in o [2005/02/25] docs/78062 doc Sample Echo Pseudo-Device Driver for Free p [2005/02/25] bin/78085 robert id command inconsistency f [2005/02/25] ports/78086 bms multimedia/dirac: install failure (patch o [2005/02/25] bin/78087 groups program inconsistency o [2005/02/27] docs/78154 doc [PATCH] Make en_US FreeBSD Handbook more o [2005/02/27] gnu/78161 [patch] typo in gzexe o [2005/02/28] kern/78179 [vm] [patch] bus_dmamem_alloc() with BUS_ o [2005/02/28] kern/78216 WRITE_DMA UDMA ICRC errors while copying o [2005/03/01] i386/78218 usb [kue] kue not detected on Sony PCG-F370 V o [2005/03/01] i386/78219 i386 Netgear FA-410TX is incorrectly detected o [2005/03/01] kern/78227 Destroying a network interface leaks kern f [2005/03/02] i386/78301 i386 Fatal trap 12 o [2005/03/03] i386/78339 i386 BTX loader crashes on boot on HP Proliant o [2005/03/03] docs/78357 doc getaddrinfo()'s AI_ADDRCONFIG not documen o [2005/03/03] kern/78382 wpaul [ndis] dhclient on ndis0 causes kernel pa o [2005/03/04] kern/78384 [panic] Reproducible panic with port iplo o [2005/03/04] amd64/78406 amd64 [panic]AMD64 w/ SCSI: issue 'rm -r /usr/p o [2005/03/04] ports/78428 openoffice Openoffice-1.1.4 stops compiling -> dmake o [2005/03/05] kern/78434 [vfs] [patch] vfs_mount: -current does no p [2005/03/06] kern/78478 rwatson writing to closed socket does not generat o [2005/03/07] i386/78517 i386 WRITE_DMA and READ_DMA timeouts with ATI o [2005/03/07] amd64/78558 amd64 installation o [2005/03/08] bin/78570 "wicontrol -i wi0 -C" outputs garbage o [2005/03/10] i386/78657 i386 [xe] [hang] error installing 5.3-RELEASE o [2005/03/10] threads/78660threads Java hangs unkillably in STOP state after o [2005/03/13] conf/78762 ipfw [ipfw] [patch] /etc/rc.d/ipfw should exce o [2005/03/13] kern/78791 [xl] xl(4) input errors and speed problem o [2005/03/14] kern/78801 mux ping: sendto: No buffer space available o [2005/03/14] amd64/78848 amd64 [sis] sis driver on FreeBSD 5.x does not f [2005/03/15] kern/78868 gibbs [scsi] Adaptec 29160 fails with IBM LTO-2 o [2005/03/16] i386/78929 i386 atapicam prevents boot, system hangs o [2005/03/16] i386/78930 i386 SuperMicro web server with 5.3-RELEASE ke o [2005/03/17] kern/78946 [vm] vm_pageout_flush: partially invalid o [2005/03/17] kern/78953 bp [smbfs] smbfs getdirentries() failure cau o [2005/03/17] kern/78956 Only one write operation attempted on RAI o [2005/03/17] bin/78964 qa [sysinstall] can not write labels to hdd o [2005/03/17] kern/78968 FreeBSD freezes on mbufs exhaustion (netw o [2005/03/18] kern/78987 scottl [udf] [patch] udf fs: readdir returns err o [2005/03/18] usb/78989 usb please add USB keyboard support to instal o [2005/03/19] ports/79014 nork building www/linuxpluginwrapper fails. o [2005/03/19] kern/79025 [patch] && in /usr/src/etc/Makefile needs o [2005/03/21] i386/79073 i386 System panic and hang after creating a la o [2005/03/21] i386/79080 acpi acpi thermal changes freezes HP nx6110 o [2005/03/21] i386/79081 acpi ACPI suspend/resume not working on HP nx6 o [2005/03/22] usb/79140 usb WD Firewire/USB Combo hangs under load on o [2005/03/22] i386/79141 i386 [agp] 5.4Beta1 does not recognize my inte f [2005/03/23] kern/79148 DHClient / Ethernet Card not communicatin o [2005/03/23] kern/79160 [xl] [patch] xl_detach cause panic o [2005/03/23] kern/79168 Problems running two firewire disks on on o [2005/03/23] i386/79169 i386 freeze with striped USB Drives under high o [2005/03/24] kern/79208 [nfs] Deadlock or starvation doing heavy o [2005/03/24] kern/79214 [nfs] iozone hurts tcp-based NFS o [2005/03/25] ports/79231 x11 XORG / FBSD5.4 stuck at 640x480 on HP XE2 o [2005/03/26] kern/79255 Fixating CDRW with burncd(8) hangs system o [2005/03/26] kern/79262 [dc] Adaptec ANA-6922 not fully supported o [2005/03/26] bin/79263 find -exec {} + fails with -or and ! o [2005/03/27] i386/79268 i386 5.3-RELEASE won't boot on Compaq Armada 4 o [2005/03/27] usb/79269 usb USB ohci da0 plug/unplug causes crashes a o [2005/03/27] usb/79287 usb UHCI hang after interrupt transfer o [2005/03/28] kern/79295 umount oddity with NFS (fwe) over VIA Fir s [2005/03/28] kern/79323 [wi] authmod setup with ifconfig on dlink o [2005/03/29] kern/79324 [bge] Broadcom bge chip initialization fa p [2005/03/29] kern/79332 [ata] [patch] "ffs_mountroot: can't find o [2005/03/29] kern/79333 pjd GEOM MIRROR mount root problem o [2005/03/29] kern/79334 [ata] ATA_IDENTIFY timed out for 5.3 and o [2005/03/29] kern/79336 [nfs] NFS client doesn't detect file upda s [2005/03/29] kern/79339 [kernel] [patch] Kernel time code sync wi f [2005/03/30] bin/79376 moused causes random mouse events with a o [2005/03/31] ports/79386 kwm patch multimedia/gstreamer-plugins: wrong o [2005/03/31] ports/79397 clement news/inn fails to build nnrpd under RELEA o [2005/03/31] i386/79409 i386 Coming back from idles make the server re o [2005/04/02] usb/79436 usb Panic: ohci_abort_xfer: not in process co o [2005/04/02] kern/79493 [if_tun] [patch] Reproducible if_tun pani o [2005/04/04] usb/79524 usb printing to Minolta PagePro 1[23]xxW via o [2005/04/07] kern/79621 qa [sysinstall] sysinstall does not create a o [2005/04/07] usb/79622 imp USB devices can be freed twice o [2005/04/07] usb/79656 usb [usb] RHSC interrupts lost o [2005/04/07] docs/79658 doc Freebsd Handbook incorrect about ATAPI CD o [2005/04/08] kern/79660 ATAPI CD driver /dev/acd0tNN fails if dev o [2005/04/08] kern/79665 [panic] "unmount: dangling vnode" on amd o [2005/04/08] threads/79683threads svctcp_create() fails if multiple threads o [2005/04/08] i386/79686 i386 Spurious notebook disk errors from ATA dr o [2005/04/08] kern/79693 jhb SMP: msleep and sleepq_broadcast race o [2005/04/08] kern/79700 [nfs] suspending nfs file access hangs ot o [2005/04/09] kern/79703 [hang] RocketRaid 1820A has problems with o [2005/04/09] usb/79722 usb [usb] wrong alignments in ehci.h o [2005/04/09] i386/79729 i386 umass, da0 not detected by devfs for o [2005/04/09] i386/79730 i386 SLIM DRIVE COMBO fails with READ_BIG erro o [2005/04/11] i386/79779 i386 If system memory is above 4GB, one parts o [2005/04/11] kern/79783 ata: hw.ata.atapi_dma=1 reduces HDD writi o [2005/04/11] i386/79784 i386 [bfe] Broadcom BCM4401 : no carrier o [2005/04/11] kern/79785 realtek NIC will crash a heavy BSD system o [2005/04/12] i386/79807 i386 Lock Up on Old Acer P1 Comp o [2005/04/12] amd64/79813 amd64 Will not install/run on amd64 nForce 4 pl o [2005/04/12] i386/79833 i386 BTX crashes on boot when using Promise TX o [2005/04/13] docs/79857 doc manpage about ntp is wrong o [2005/04/14] kern/79895 darrenr [ipfilter] 5.4-RC2 breaks ipfilter NAT wh o [2005/04/14] kern/79905 multimedia [sound] sis7018 sound module problem o [2005/04/14] bin/79910 qa [sysinstall] Cannot escape from failed po o [2005/04/14] kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: o [2005/04/14] kern/79940 [panic] 5.3 with kernel debug causes pani o [2005/04/14] ports/79941 openoffice Openoffice 1.1.4_1 binary packages (i386) o [2005/04/14] i386/79943 i386 Very High interupt rate on PCM o [2005/04/16] kern/79988 darrenr [trap] page faults while in kernel mode o [2005/04/16] kern/80005 [re] re(4) network interface _very_ unpre p [2005/04/17] kern/80035 glebius netgraph is causing crash (free()->panic) o [2005/04/17] usb/80040 usb [hang] Use of sound mixer causes system f f [2005/04/17] kern/80041 multimedia [sound] snd_via8233 does not support VIA8 o [2005/04/17] kern/80042 FreeBSD 5.4 RC2: Promise PDC20265 on A7V o [2005/04/18] bin/80074 [openssl] Bug in OpenSSL's sk_insert() ca o [2005/04/19] kern/80088 [smbfs] Incorrect file time setting on NT o [2005/04/19] amd64/80114 amd64 kldload snd_ich causes interrupt storm wh o [2005/04/20] kern/80136 [md] [crash] mdconfig can reboot the syst o [2005/04/20] kern/80166 ups [panic] Debugger SMP race panic o [2005/04/22] usb/80260 usb Travan USB tape drive fails to write o [2005/04/22] kern/80266 rwatson [ipx] [patch] IPX routing doesn't work o [2005/04/22] i386/80268 i386 [crash] System with Transmeta Efficeon cp o [2005/04/25] kern/80321 ups serial db problems o [2005/04/25] kern/80322 TCP socket support broken on a busy port p [2005/04/25] kern/80346 stefanf [patch] Misuse of el_init() can lead mult s [2005/04/26] kern/80354 andre [crash] Path MTU discovery ICMP NATD BSD o [2005/04/26] usb/80361 usb mounting of usb-stick fails o [2005/04/26] usb/80373 usb usb keyboard does not respond o [2005/04/26] kern/80381 5.4 RC3 can't allocate ps/2 irq, no psm, o [2005/04/27] bin/80389 kuriyama rpc.lockd brokenness o [2005/04/27] sparc64/80410sparc64 [netgraph] netgraph is causing crash with f [2005/04/28] i386/80426 i386 5.4-RC3 still panic when boot on ASUS P2B f [2005/04/28] i386/80433 i386 write failure on transfer! o [2005/04/28] threads/80435threads panic on high loads o [2005/04/30] kern/80469 [smbfs] mount_smbfs causes freebsd to reb o [2005/04/30] ports/80491 doceng Dependency error between packages prebuil o [2005/05/01] ports/80514 ports-bugs emulators/vmware3: vmmon_smp.ko does not o [2005/05/01] kern/80519 [ntfs] Write capability for ntfs filesyst o [2005/05/03] kern/80572 [bridge] bridge/ipfw works intermittantly o [2005/05/04] usb/80628 usb recent USB MFCs cause panics o [2005/05/05] ports/80633 delphij mail/spamd: problems with rcNG (if spamd s [2005/05/05] ports/80679 emulation emulators/linux_base-8: Use ${MACHINE_ARC o [2005/05/06] usb/80685 usb panic in usb_cold_explore() at begining o [2005/05/06] amd64/80691 amd64 amd64 kernel hangs on load o [2005/05/06] kern/80694 [kbd] [patch] atkbd looped on Acer Travel o [2005/05/06] kern/80714 drop/boot to single user hangs on 5.4-REL o [2005/05/07] kern/80739 Strange panic (keyboard related?) on 5.4 o [2005/05/08] kern/80742 [pecoff] [patch] Local DoS in sys/compat/ o [2005/05/08] kern/80784 mux [fxp] fxp gives device timeouts o [2005/05/08] bin/80798 mount_portal pipe leaves file descriptors o [2005/05/09] usb/80829 usb possible panic when loading USB-modules f [2005/05/09] ports/80837 emulation x11-toolkits/linux-gtk: cannot install by o [2005/05/10] docs/80843 doc [patch] Suggested doc fix for psm0 / hand o [2005/05/10] kern/80853 [ed] [patch] add support for Compex RL200 o [2005/05/10] usb/80862 usb USB locking issues o [2005/05/11] sparc64/80890sparc64 [panic] kmem_malloc(73728): kmem_map too f [2005/05/11] ports/80892 daichi portupgrade ignores configfile o [2005/05/11] bin/80913 ipfw [patch] /sbin/ipfw2 silently discards MAC o [2005/05/12] ports/80926 emulation running $PREFIX/etc/rc.d/vmware.sh return o [2005/05/12] kern/80932 tackerman [em] [patch] Degraded performance of em d o [2005/05/12] kern/80938 gmirror: DEVFS Overflow table f [2005/05/13] kern/80969 glebius [panic] Repeatable double fault panic aft o [2005/05/13] kern/80980 [i386] [patch] problem in "sys/i386/inclu o [2005/05/13] i386/80989 i386 Cannot install 5.4-RELEASE both in my sys o [2005/05/14] kern/81000 [apic] Via 8235 sound card worked great w o [2005/05/14] kern/81019 [re] re(4) RealTek 8169S32 behaves errati o [2005/05/14] amd64/81037 amd64 SATA problem o [2005/05/16] kern/81095 IPsec connection stops working if associa p [2005/05/16] i386/81111 i386 /boot/loader causes reboot due to CFLAGS+ o [2005/05/17] kern/81146 multimedia [sound] Sound isn't working AT ALL for Si o [2005/05/17] kern/81147 tackerman [em] [patch] em0 reinitialization while a o [2005/05/18] kern/81180 [bktr] bktr(4) driver cannot capture both o [2005/05/18] kern/81202 glebius nmap scan causes box to get immediately r o [2005/05/18] kern/81207 [if_ndis] NDIS wrapper doesn't probe buil o [2005/05/18] i386/81215 i386 X Freeze on Dell Inspiron 9100 with Radeo p [2005/05/19] bin/81231 des Patch pam_ssh to reject keys with no pass o [2005/05/19] kern/81232 [panic] vrele: negative ref o [2005/05/19] i386/81235 i386 /sys/i386/conf/GENERIC needs "options ASR o [2005/05/19] threads/81258threads Thread specific data is sometimes assigne o [2005/05/19] amd64/81272 amd64 JDK 1.5 port doesn't build. o [2005/05/19] kern/81282 le [vinum] [panic] Check parity with gvinum o [2005/05/20] kern/81301 problems with new "contigmalloc" routine o [2005/05/20] usb/81308 usb [ugen] [patch] polling a ugen(4) control o [2005/05/20] i386/81311 i386 [smp] [hang] Athlon MP SMP + 3ware + em0 o [2005/05/20] kern/81322 [lnc] [hang] lnc driver causes lockups o [2005/05/20] kern/81324 darrenr [panic] "Duplicate free of item %p from z o [2005/05/20] amd64/81325 amd64 KLD if_ath.ko: depends on ath_hal - not a o [2005/05/23] bin/81389 brian ( usermode ppp ) LCP Negotiation Never Fi o [2005/05/23] bin/81390 ( usermode ppp ) LCP Negotiation Never Fi o [2005/05/24] conf/81429 [patch] Error in /etc/rc.subr: jail+devfs p [2005/05/24] ports/81440 cy Major improvements to x11-wm/fvwm2-devel o [2005/05/25] ports/81464 ports-bugs ruby-1.8.2_3 stack handling broken due to o [2005/05/26] usb/81524 usb panic: usb_cold_explore: busses to explor o [2005/05/27] kern/81539 The fxtv program freezes systems o [2005/05/27] kern/81545 PPTP mpd-link stops to send and/or receiv o [2005/05/28] amd64/81602 amd64 SATA crashes with parallel pcm access o [2005/05/28] kern/81606 darrenr ipnat fails to start after upgrade to REL o [2005/05/30] kern/81644 [vge] vge(4) does not work properly when o [2005/05/31] gnu/81689 Unable to connect via SSH using protocol o [2005/06/01] kern/81770 [nfs] Always "NFS append race" at every N o [2005/06/01] usb/81774 usb 2nd generation iPod mini cannot be mounte o [2005/06/02] kern/81807 [sio] Silo overflows with serial multipor o [2005/06/03] ports/81821 kwm port multimedia/gstreamer-plugins build b o [2005/06/04] conf/81882 [patch] missing terminal definition for w o [2005/06/04] kern/81887 scsi [aac] Adaptec SCSI 2130S aac0: GetDeviceP o [2005/06/04] i386/81903 i386 Installer hangs on all menu entries on To s [2005/06/06] ports/81940 gerald wine produces err:heap:HEAP_CreateSystemH o [2005/06/06] kern/81943 des [kernel] [patch] _assert_sbuf_integrity c p [2005/06/07] kern/81978 yar [ PATCH ] if_vlan didn't pass the ALLMULT o [2005/06/07] bin/81997 ntpd fails to bind to IP-address o [2005/06/08] i386/82029 i386 Boot Loader installation on MegaRAID cont p [2005/06/08] bin/82030 simon [sysinstall] Choosing an alternate defaul o [2005/06/08] kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work o [2005/06/09] conf/82059 [patch] /etc/rc.d/localpkg: partially sor o [2005/06/09] kern/82064 anholt DRM not working with SMP o [2005/06/09] amd64/82071 amd64 incorrect -march's parameter to build 32b o [2005/06/11] kern/82143 kqueue on FreeBSD 4.11 fails to report UD f [2005/06/13] java/82183 java Cannot install Java 1.5, lots of missing o [2005/06/13] usb/82198 usb Panic on attaching of ONKI N-338 USB MP3 o [2005/06/13] bin/82207 tcpslice(1) incorrectly handles dates whe o [2005/06/14] kern/82219 [panic] in dumping if watchdog enabled. o [2005/06/14] kern/82227 [digi] Xem: chained concentrators not rec o [2005/06/14] ports/82241 anders minicom port references old serial port n a [2005/06/15] bin/82263 compat 4x broken after last update o [2005/06/15] kern/82271 pf [pf] cbq scheduler cause bad latency o [2005/06/15] usb/82272 usb Can not recognize Casio camera EX-Z40 as o [2005/06/15] i386/82285 i386 [race] kernel panic during reboot o [2005/06/15] docs/82296 doc ttys(5) man page misleads about use for n o [2005/06/17] usb/82350 usb [usb] null pointer dereference in USB sta o [2005/06/19] amd64/82425 amd64 fxp0: device timeout, fxp interface dies o [2005/06/20] kern/82442 [panic] Fatal trap 12 in em driver on 4.1 o [2005/06/21] kern/82464 [pccard] Sony Ericsson GC75 GPRS MODEM no o [2005/06/21] kern/82468 Using 64MB tcp send/recv buffers, traffic o [2005/06/21] kern/82482 [hptmv] [patch] hptmv(4) ( Highpoint Rock o [2005/06/21] kern/82491 [bootp] [patch] bootpd shouldn't ignore r o [2005/06/21] kern/82497 [vge] vge(4) on AMD64 only works when loa o [2005/06/22] usb/82520 usb Reboot when USL101 connected o [2005/06/22] conf/82526 [patch] /etc/rc.d/ntpd is being started t o [2005/06/23] amd64/82555 amd64 Kernel Panic - after i connect to my "amd o [2005/06/23] sparc64/82569sparc64 USB mass storage plug/unplug causes syste o [2005/06/25] ports/82641 sobomax Remove or mark BROKEN misc/zaptel on 4.x o [2005/06/25] kern/82649 [panic] some request to DVDROM causes ker o [2005/06/25] standards/82654standards C99 long double math functions are missin o [2005/06/26] usb/82660 usb EHCI: I/O stuck in state 'physrd'/panic o [2005/06/26] bin/82667 burncd doesn't abort on error conditions o [2005/06/26] kern/82668 ATA timeouts on 5.4-stable o [2005/06/28] bin/82720 [patch] Incorrect help output from growfs o [2005/06/28] kern/82755 [panic] during periodic ncvs.sh script at o [2005/06/29] ports/82759 delphij Source navigator installs in wrong direct o [2005/06/29] ports/82771 ale Setting "BUILD_OPTIMIZED=yes" breaks port o [2005/06/30] kern/82805 [nfs] [panic] sched_switch ched_4bsd.c:86 o [2005/06/30] kern/82806 darrenr ipnat doesn't handle out of order fragmen f [2005/06/30] ports/82824 daichi sysutils/portupgrade fails to build due t o [2005/07/01] kern/82846 phk Kernel crash in 5.4 with SMP,PAE o [2005/07/02] kern/82881 [netgraph] [panic] ng_fec(4) causes kerne o [2005/07/03] kern/82919 [bridge] [patch] Bridge configuration upd o [2005/07/04] bin/82975 route change does not parse classfull net o [2005/07/05] amd64/83005 amd64 Memory Occupied during installation of th o [2005/07/05] kern/83017 [modules] snd_ich freezes system when bei f [2005/07/07] i386/83078 i386 Need to develop the network driver for Bo o [2005/07/07] bin/83080 qa [sysinstall] DHCP configuration fails whi p [2005/07/07] bin/83085 des [patch] double free() in openpam o [2005/07/07] kern/83098 'vrele: negative ref cnt' in shutdown wit o [2005/07/07] kern/83107 delphij [libc] [patch] libc uuid_compare() doesn' o [2005/07/09] ports/83183 olgeni webmin/perl coredumps o [2005/07/09] bin/83195 nvi loses edited file on network disconne f [2005/07/10] i386/83214 i386 FreeBSD 5.4 cannot install on IC35L120AVV o [2005/07/10] ports/83223 tobez lang/perl5.8: perl-after-upgrade do nothi o [2005/07/11] ports/83252 openoffice Openoffice-1.1.4 build failure: Died at . o [2005/07/11] kern/83254 [digi] driver can't init Digiboard PC/4e o [2005/07/11] kern/83297 [bpf] Possible issue with FreeBSD 5.4 jai o [2005/07/12] kern/83319 Systencrash on Heavy HardDisk Load. o [2005/07/12] bin/83336 [ PATCH ] libc's parse_ncp() don't check o [2005/07/12] bin/83338 [ PATCH ] libc's getent() don't check for o [2005/07/12] bin/83340 [ PATCH ] setnetgrent() and supporting fu o [2005/07/12] bin/83344 [ PATCH ] Improper handling of malloc fai o [2005/07/12] bin/83347 [ PATCH ] improper handling of malloc fai o [2005/07/12] bin/83348 [ PATCH ] Improper handling of malloc fai o [2005/07/12] bin/83349 [ PATCH ] improper handling o malloc's fa o [2005/07/12] bin/83359 [ PATCH ] improper handling of malloc fai p [2005/07/13] bin/83363 stefanf [ PATCH ] Improper handling of malloc's f o [2005/07/13] bin/83364 [ PATCH ] improper handling of malloc fai o [2005/07/13] kern/83368 [ipx] [patch] incorrect handling of mallo o [2005/07/13] bin/83369 [ PATCH ] incorrect handling of malloc fa o [2005/07/13] kern/83375 phk Fatal trap 12 cloning a pty o [2005/07/13] kern/83384 failure of non-essential IDE partitions c o [2005/07/13] kern/83406 [smp] em/bge drivers: severe performance o [2005/07/14] bin/83426 [ PATCH ] improper handling of malloc fai o [2005/07/14] kern/83429 [ath] ath(4) does not work with the D-Lin o [2005/07/14] ports/83434 hq www/jakarta-tomcat ports give the wrong o o [2005/07/14] kern/83464 [geom] [patch] Unhandled malloc failures o [2005/07/15] kern/83499 fragmented packets does not pass through f [2005/07/15] kern/83521 pjd GEOM_STRIPE Error On Boot o [2005/07/16] kern/83552 [panic] Fatal trap 19 on ti0 when SMP is o [2005/07/16] bin/83558 kernbb(8): usr.sbin/kernbb doesn't compil o [2005/07/16] usb/83563 usb Page Fault while detaching Mpman Usb devi o [2005/07/16] i386/83574 i386 installation failure o [2005/07/17] kern/83586 [if_ndis] [panic] ndis panic with Intel P f [2005/07/18] kern/83671 Can't get comconsole to work properly on o [2005/07/18] usb/83677 usb [usb] usb controller not detected o [2005/07/18] bin/83696 Maximum members in group seems broken f [2005/07/19] i386/83735 i386 network card (realtek 8139) and sound car o [2005/07/19] usb/83756 usb Microsoft Intellimouse Explorer 4.0A does o [2005/07/20] kern/83761 [panic] vm-related panic: blst_radix_free o [2005/07/20] ports/83767 tobez lang/perl5.8: Perl5.8.7 coredumps on Text o [2005/07/20] docs/83771 doc handbook/raid.html and atacontrol o [2005/07/21] i386/83826 i386 can't install any version on Toshiba Satt f [2005/07/21] kern/83885 gnn [panic] Kernel panic when received ICMP T o [2005/07/22] bin/83914 [libc] popen() doesn't work in static thr o [2005/07/22] i386/83925 i386 [boot] can't boot Dell Latitude D610 afte s [2005/07/22] ports/83929 trevor www/linux-mozilla - PATCH - update port, o [2005/07/22] kern/83930 sam crypto_q_mtx recursion when unloading hif o [2005/07/23] usb/83942 usb [patch] QUIRK: Langel USB flash mp3 playe o [2005/07/23] conf/83969 [patch] /etc/rc.d/cleartmp pollutes non-r o [2005/07/24] usb/83977 usb [ucom] [panic] ucom1: open bulk out error o [2005/07/24] kern/83999 firewire [firewire] [patch] panic in fw_bus_explor o [2005/07/24] i386/84008 i386 /dev/X? should be /dev/ad1s* o [2005/07/24] kern/84015 [agp] [hang] Nforce3-250Gb freezes on Fre o [2005/07/25] amd64/84027 obrien if_nve gets stuck o [2005/07/25] kern/84052 [modules] [hang] 5.4-STABLE - kldunload s o [2005/07/25] i386/84088 i386 Panic with nforce2 platform on FreeBSD 6. o [2005/07/26] kern/84102 gnn FreeBSD 6.0 BETA 1 install Panic's in VMW o [2005/07/26] kern/84107 [unionfs] [panic] unionfs related panic o [2005/07/26] kern/84133 [panic] amd64, while making ports (trace o [2005/07/26] kern/84135 pjd [panic] ggatec destroy panics BETA-1 o [2005/07/27] ports/84160 mharo [patch] ftp/proftpd - module mod_ldap - t p [2005/07/27] kern/84163 [mlx] 6.0-BETA1 mlx driver don't find any o [2005/07/28] kern/84202 [ed] [patch] Holtek HT80232 PCI NIC recog o [2005/07/28] ports/84207 novel [patch] security/gnutls: update to 1.2.4 o [2005/07/28] bin/84217 brian "enable proxy" is ignored in ppp.conf p [2005/07/28] conf/84221 Wrong permissions on /etc/opiekeys o [2005/07/29] i386/84303 i386 boot sometimes stops at "uhci0: 3.5GB o [2005/08/05] kern/84568 sos [ata] Sysinstall ata related panic under o [2005/08/05] conf/84574 /etc/rc.d/[cleanvar, cleartmp, abi, power o [2005/08/05] kern/84584 [re] re(4) spends too much time in interr o [2005/08/05] kern/84589 [2TB] 5.4-STABLE unresponsive during back o [2005/08/07] kern/84637 pjd [geom] [patch] GEOM LABEL sometimes doesn o [2005/08/07] ports/84644 phantom Java port lies about what files to fetch o [2005/08/07] usb/84649 usb [quirk] [patch] kernel panic after insert o [2005/08/07] kern/84656 [panic] when kern.maxdsiz is => hw.physme o [2005/08/08] bin/84668 qa [sysinstall] ssh and sysinstall problem o [2005/08/08] kern/84673 [nfs] NFS client problem "Stale NFS file p [2005/08/08] kern/84684 truckman [kernel] [patch] Kernel panic in kern_pro o [2005/08/09] i386/84717 i386 [hang] 5.4-rel booting locks-up on Superm p [2005/08/10] kern/84740 tjr [libc] regcomp("\254") fails s [2005/08/10] threads/84778threads libpthread busy loop/hang with Java when o [2005/08/11] kern/84799 [fdc] [patch] can't read beyond track 0 o f [2005/08/11] kern/84801 mlaier kernel hangs with pf and route-to o [2005/08/11] bin/84816 patch(1) inserts a line in the wrong plac o [2005/08/11] kern/84818 atapi cd: hangup with motor switched on a o [2005/08/11] ports/84820 x11 x11-servers/xorg-server fails to start w/ o [2005/08/12] amd64/84832 amd64 Installation crashes just at boot AMD64/ o [2005/08/13] kern/84861 [ipw] [patch] still can't get working ipw o [2005/08/14] amd64/84930 amd64 [msdosfs] something wrong with msdosfs on o [2005/08/14] docs/84932 doc new document: printing with an Epson ALC- o [2005/08/15] usb/84936 usb install - usb keyboard not recognized o [2005/08/15] i386/84943 i386 "Invalid Partition Table" Intel ICH6 SATA o [2005/08/15] kern/84953 [nfs] NFS locking issue in RELENG_6/i386/ o [2005/08/15] kern/84954 imp [CARDBUS] cbb alloc res fail (with hw.car o [2005/08/15] kern/84964 [nfs] nfs4 mount doesn't handle NFS4ERR_G o [2005/08/15] kern/84965 [nfs] nfs4 mount generates NFS4ERR_BAD_SE o [2005/08/15] kern/84968 [nfs] programs on nfs4 mounts won't execu o [2005/08/16] ports/84974 kwm Update port gnome x11/workrave from 1.6 t o [2005/08/16] kern/85005 Network interrupt after shutdown method h o [2005/08/17] kern/85042 [smbfs] mount_smbfs: can't get handle to o [2005/08/18] i386/85072 i386 [psm] ps/2 Mouse detection failure on com o [2005/08/18] amd64/85081 amd64 TeamSpeak o [2005/08/19] i386/85101 i386 [libm] nearbyint always returns nan o [2005/08/19] bin/85115 byacc generates uncompileable file o [2005/08/19] kern/85123 [iir] Improper serialization in iir_ioctl o [2005/08/19] kern/85137 [pseudofs] [patch] panic due to sleep wit f [2005/08/20] ports/85155 cy security/tripwire clobbers config files o o [2005/08/20] threads/85160threads [libthr] [patch] libobjc + libpthread/lib f [2005/08/22] ports/85200 ports-bugs mail/postfix: db write part of /etc/spwd. o [2005/08/22] bin/85206 rcNG local package initialization is non- o [2005/08/23] kern/85258 mux [fxp] changing promisc mode on nic can le o [2005/08/24] kern/85266 [xe] [patch] xe(4) driver does not recogn o [2005/08/26] kern/85320 [gre] [patch] possible depletion of kerne o [2005/08/26] kern/85326 [smbfs] [panic] saving a file via samba t o [2005/08/27] alpha/85346 alpha PREEMPTION causes unstability in Alpha400 o [2005/08/28] kern/85366 [msdosfs] [patch] MSDOSFS doesn't mark vo o [2005/08/28] i386/85402 i386 [kbd] FreeBSD 6.0 Betas hang after an unc o [2005/08/29] amd64/85431 amd64 AMD64 has short but temporary freezes (ha o [2005/08/29] ports/85433 edwin [patch] multimedia/pvr250: does not build o [2005/08/29] kern/85434 firewire [fwip] fwip (IP over firewire) doesn't wo o [2005/08/29] kern/85444 IPv6 crash, possibly related to destroyin o [2005/08/29] i386/85450 i386 panic: subdisk6 detached (appears to be a o [2005/08/29] amd64/85451 amd64 6.0-BETA3 lockups on AMD64 with PREEMPTIO o [2005/08/29] i386/85454 i386 Panic while booting: No virtual memory fo o [2005/08/30] kern/85464 Cannot unmount file-backed disk imported o [2005/08/30] ports/85470 x11 82845GV video mode switching with Xorg o [2005/08/30] kern/85493 imp [ed] [patch] OLDCARD can't probe ed drive o [2005/08/31] ports/85514 vsevolod mutt-ng-20050825 does not install with ol o [2005/09/01] conf/85558 brooks initdiskless should not generate memory d o [2005/09/01] ports/85561 clement www/apache2 build failed o [2005/09/01] kern/85583 obrien [nve] [timeout] send errors ("device time o [2005/09/03] bin/85696 xargs -E doesn't work o [2005/09/05] kern/85728 [trap] Crashes on 6.0 when copying data b o [2005/09/05] ports/85730 danfe nvidia-driver eats the /usr/X11R6/lib/mod o [2005/09/05] ports/85735 x11 Force imake respect CC/CXX o [2005/09/05] kern/85751 [devfs] [panic] panic in devfs_setattr() f [2005/09/05] ports/85756 roam Linker error when upgrading port security o [2005/09/05] kern/85768 gibbs aic79xx driver timeouts with U160 target o [2005/09/05] ia64/85772 ia64 gpt (geom_) needs to adopt g_ctl s [2005/09/06] ports/85779 edwin fmsx 3.0 is unstable (reboting, freezing o [2005/09/06] kern/85791 kernel panic, page fault in kernel mode o [2005/09/06] bin/85796 des pam doesn't work correctly after Upgrade o [2005/09/06] kern/85804 panic after chown -R from chrooted shell o [2005/09/06] kern/85809 panic: mutex "ipf state entry" already in o [2005/09/06] bin/85810 nslookup/dig Hang and processes cannot be o [2005/09/06] kern/85813 timeout waiting for read DRQTrying to mou o [2005/09/06] usb/85814 usb Microsoft Wireless Mouse doesnt work o [2005/09/06] kern/85816 maxproc=1 in login.conf causes kernel pan o [2005/09/07] bin/85830 des [patch] pam_exec incorrectly works with v s [2005/09/07] ports/85850 cperciva portsnap extract silently deletes Makefil o [2005/09/08] i386/85866 i386 bootloader freezes on Pentium2/3 o [2005/09/08] docs/85867 doc dumpon.8 is missing crucial information o [2005/09/09] kern/85893 [panic] while trying to mount audio CD o [2005/09/09] kern/85894 [nfs] [panic] nfs_timer / nfs_socket.c:11 o [2005/09/09] ports/85905 perky mod_python3 pthread_attr_destroy failure o [2005/09/09] kern/85911 Flash Mp3 player o [2005/09/10] kern/85931 panic: "vm_fault: fault on nofault entry" o [2005/09/10] i386/85938 i386 Install fails, unable to write partitions o [2005/09/10] i386/85944 i386 FreeBSD restarts after showing "Welcome t s [2005/09/11] kern/85975 [cam] devfs does not create entries when o [2005/09/11] kern/85993 [panic] emulators/kqemu panics 6.0-BETA4 o [2005/09/12] bin/86012 kpasswd(1) fails if one of the KDC are un o [2005/09/12] usb/86031 usb need support usb nic rt2500 in my 5.4 STA o [2005/09/13] kern/86055 FreeBSD 6.0 beta4 install panic:bio alrea o [2005/09/13] kern/86065 [kqueue] system reboot without sync (and o [2005/09/13] kern/86067 jeff [sched_ule] 6.0-BETA4 hangs while trying f [2005/09/13] kern/86072 pf [pf] Packet Filter rule not working prope o [2005/09/13] amd64/86080 amd64 [radeon] [hang] radeon DRI causes system o [2005/09/14] kern/86103 darrenr [ipfilter] Illegal NAT Traversal in IPFil o [2005/09/14] kern/86107 panic: unrhdr has N allocations, NULL der f [2005/09/14] ports/86139 sergei Shared object "libzsh-4.2.5.so" not found o [2005/09/16] ports/86197 vsevolod ejabberd and nullmail both want gid 522 o [2005/09/16] amd64/86199 amd64 Missed AMD64 motherboard o [2005/09/17] conf/86249 rcNG can not stop daemon which has a long o [2005/09/17] kern/86261 brian 'out of buffer space' after many PPPoE re o [2005/09/18] kern/86306 [em] [patch] if_em.c locks up while tryin o [2005/09/18] ports/86310 portmgr all-depends-list target of bsd.port.mk is f [2005/09/18] i386/86312 i386 5.4-STABLE ATA Timeout WRITE_DMA o [2005/09/19] i386/86325 i386 [install] unable to install FreeBSD on IB o [2005/09/19] kern/86330 [ipv6] [panic] panic in ESP code o [2005/09/20] kern/86361 thompsa [bridge] bridge(4) does not work with VLA o [2005/09/20] i386/86364 i386 ATA woes, SATA controller: failed writes, o [2005/09/20] i386/86380 i386 i386_set_ioperm doesn't take effect immed o [2005/09/20] ports/86383 openoffice Can't compile openoffice.org-1.1 o [2005/09/21] kern/86411 scottl [amr] Very low performance of amr(4) unde o [2005/09/21] ports/86416 clement apache <=2.0.54. mod_ldap can't work with s [2005/09/21] kern/86417 sos [ata] Panic when doing massive i/o operat o [2005/09/21] ports/86421 clement Apache-2.0.54_4 PHP popen hangs o [2005/09/21] kern/86423 truckman backgroud fsck leaves incorrect free bloc o [2005/09/21] kern/86427 LOR / Deadlock with FASTIPSEC and nat o [2005/09/22] bin/86456 arp(8) program hangs o [2005/09/23] amd64/86503 amd64 [atapicam] [panic] k3b crash the system l o [2005/09/23] bin/86514 awk -vVAR=val doesn't work without space o [2005/09/24] bin/86518 qa sysinstall(8) Main Menu navigation f [2005/09/24] kern/86525 FreeBSD 6.0BETA5 hangs after boot up syst f [2005/09/24] ports/86531 dougb xscreensaver kill xorg 6.8.2 o [2005/09/24] docs/86532 doc [patch] wpa_supplicant.conf man page shou o [2005/09/24] ports/86535 des usermin/perl coredumps o [2005/09/25] kern/86550 csjp kernel (w/ UFS_EXTATTR* and UFS_ACL) pani s [2005/09/26] kern/86596 [unionfs] unionfs -b brokes file modes o [2005/09/26] i386/86598 nectar Bug in OpenSSL Padlock Engine (simple pat o [2005/09/26] i386/86612 i386 SCSI DAT Drive Issue o [2005/09/27] kern/86619 linux emulator interacts oddly with cp f [2005/09/27] ports/86642 daichi portupgrade doesn't add MAKE_ARGS to inst o [2005/09/27] i386/86651 i386 FAILURE ATA-IDENTIFY o [2005/09/28] i386/86667 i386 GNOME Battery Applet causing keyboard to f [2005/09/28] ports/86687 tobez Perl ithreads coredump o [2005/09/28] bin/86690 kientzle bsdtar sparse file problems o [2005/09/29] java/86700 java SIGSEGV in native jdk15 f [2005/09/29] ports/86718 ume cyrus-sasl2 2.1.21 will not build with op f [2005/09/30] kern/86746 cognet watch/snp don't work in 6.0 o [2005/09/30] kern/86747 multimedia [sound] snd_ich and snd_driver .ko's stro o [2005/09/30] kern/86763 [ucom] kernel: ucom0: ucomwritecb: IOERRO o [2005/09/30] usb/86767 usb [usb] bogus "slice starts beyond end of t o [2005/10/01] kern/86779 taskqueue_enqueue_fast uses spinlock on s o [2005/10/01] i386/86806 i386 Couldn't alloc kernel virtual memory o [2005/10/03] kern/86848 [pf][multicast] destroying active syncdev o [2005/10/05] i386/86920 i386 [ndis] ifconfig: SIOCS80211: Invalid argu o [2005/10/05] kern/86944 [nfs] [patch] When I use FreeBSD with NFS o [2005/10/06] kern/87014 rwatson BPF_MTAP/bpf_mtap are not threadsafe and f [2005/10/07] i386/87031 i386 Promise TX2000 boot problem o [2005/10/07] i386/87085 i386 Will not install on Microtel system f [2005/10/07] kern/87094 5.4 system with SMP and IPFW crashes unde o [2005/10/08] usb/87099 usb panic: ohci_add_done: addr 0x000d1bf0 not o [2005/10/08] kern/87107 Boot process will not complete with IPSEC p [2005/10/08] amd64/87112 peter Boot problems on a 16 processor AMD64 com o [2005/10/08] kern/87114 [xl] xl0 : watchdog timeout on 6.0 (regre o [2005/10/08] i386/87122 i386 Installer of 6.0-BETA5 can't find HDD par o [2005/10/09] i386/87155 i386 [boot] [panic] Can't Alloc Virtual Memory o [2005/10/09] amd64/87156 amd64 First Installation: Kernel crashes o [2005/10/09] ports/87171 x11 Don't build low-quality Korean bitmap fon o [2005/10/10] kern/87194 [fxp] fxp(4) promiscuous mode seems to co p [2005/10/10] bin/87221 brooks cron(8) cannot send mail when world is bu o [2005/10/10] i386/87223 i386 The moving cursor of the mouse at a login o [2005/10/11] kern/87248 [iwi] Data-corruption while using WEP on o [2005/10/11] kern/87255 [mfs] [panic] large malloc-backed mfs cra o [2005/10/11] amd64/87258 amd64 [smp] [boot] cannot boot with SMP and Are o [2005/10/12] amd64/87305 amd64 [smp] Dual Opteron / FreeBSD 5 & 6 / powe o [2005/10/12] amd64/87316 amd64 [vge] "vge0 attach returned 6" on FreeBSD a [2005/10/12] amd64/87328 amd64 [boot] BTX halted error o [2005/10/12] amd64/87348 amd64 amd64+smp+startkde always crashing o [2005/10/13] i386/87356 i386 6.0 RC1 cannot see 250GB drive o [2005/10/13] i386/87364 scottl [aac] aac controller stopped working betw o [2005/10/13] kern/87368 [msdosfs] fat32 is very slow o [2005/10/13] kern/87371 multimedia [sound] [panic] Force unload snd_es137x c o [2005/10/13] ports/87397 edwin incorrect use of PAPERSIZE make variable o [2005/10/13] ports/87404 nork Adobe Reader no longer works with www/lin o [2005/10/13] kern/87413 damien [iwi] 6.0-RC1: "ifconfig iwi0 mode 11g up p [2005/10/14] kern/87418 glebius [em] [patch] The em driver sometimes stop o [2005/10/14] kern/87421 [netgraph] [panic]: ng_ether + ng_eiface a [2005/10/14] amd64/87436 amd64 gui does not start on the ATI RS480 M2-IL o [2005/10/14] bin/87465 [patch] dhclient(8) not properly configur o [2005/10/15] amd64/87472 amd64 I downloaded 5.4 and went to install it, o [2005/10/16] ports/87505 ale converters/php5-recode extension makes ap o [2005/10/16] kern/87506 [vr] [patch] Fix alias support on vr inte o [2005/10/16] amd64/87514 amd64 6.0-CURRENT freezes machine using >4GB on o [2005/10/16] ports/87518 edwin [patch] multimedia/pvr250: Does not build o [2005/10/16] usb/87519 usb cannot install on USB-only system o [2005/10/16] kern/87521 darrenr [ipfilter] [panic] using ipfilter "auth" o [2005/10/16] ports/87523 trevor [patch] www/linux-mozilla: added support o [2005/10/16] ports/87525 ports-bugs [patch] misc/compat4x: amd64 unsupported o [2005/10/16] kern/87544 geom [gbde] mmaping large files on a gbde file o [2005/10/16] ports/87546 emulation [patch] emulators/rtc: broken if sizeof(i o [2005/10/17] usb/87565 usb [PATCH] Support for Vodaphone 3G/UMTS car o [2005/10/17] i386/87568 i386 [acpi] 6.0-STABLE needs ACPI disabled but o [2005/10/17] i386/87576 i386 no installation on Acer aspire 1304xc lap o [2005/10/17] kern/87585 sos [ata] no SATA support w/SIS 180 RAID cont o [2005/10/17] kern/87586 Unable to use networked swap in 6.0-RC1 f [2005/10/18] kern/87596 [panic] OS crash on a Firefox link click f [2005/10/18] ports/87597 ports-bugs problems trying to compile cal3d o [2005/10/18] i386/87598 i386 make release broken o [2005/10/18] i386/87630 i386 [ndis] No match for NdisIMGetCurrentPacke o [2005/10/18] ports/87631 sobomax zaptel modules loading crashes FreeBSD 6. o [2005/10/18] ports/87643 jedgar Cannot install P5-Mysql o [2005/10/19] i386/87654 i386 Marvell Yukon 88E8036 NIC not detected by f [2005/10/19] ports/87655 ports-bugs security/nettle is out of date : port ver o [2005/10/19] kern/87658 IO::AIO test suite loops infinitely on 5. o [2005/10/19] amd64/87689 amd64 [powerd] [hang] powerd hangs SMP Opteron f [2005/10/20] ports/87704 lawrance lang/ruby18 - Build fails, WITH_ONIGURUMA o [2005/10/20] kern/87727 [panic] 6.0-RC1 coredumps o [2005/10/20] bin/87729 phk most calls to malloc(3) generate warnings o [2005/10/20] amd64/87748 amd64 can't initialize X o [2005/10/20] i386/87750 i386 [boot] btx halted error while installatio o [2005/10/20] kern/87758 [ath] [hang] Reboot problem with atheros f [2005/10/21] kern/87791 Kernel crash when running df o [2005/10/21] bin/87792 [patch] very bad performance of cp(1) via f [2005/10/21] ports/87809 ports-bugs New port: comm/uticom f [2005/10/21] ports/87819 gnome graphics/sodipodi: sodipodi-0.34_5 crashe f [2005/10/22] kern/87846 5.4 will NOT work with any other os on di o [2005/10/23] kern/87859 [smbfs] System reboot while umount smbfs. o [2005/10/23] kern/87861 "panic: initiate_write_inodeblock_ufs2: a o [2005/10/23] www/87864 www manpage web frontend is missing new FreeB o [2005/10/23] i386/87876 i386 Installation Problems for i368 Compaq R30 o [2005/10/23] i386/87877 i386 non-root mount operation fails o [2005/10/24] amd64/87898 amd64 Failt to init X: can't open device/io o [2005/10/24] i386/87910 i386 mouse does not work in whole of monitor a o [2005/10/24] bin/87911 kientzle tar(1): internal error o [2005/10/24] ports/87933 perl p5-Mail-SpamAssassin-3.1.0_3 missing depe f [2005/10/24] i386/87934 sos [ata] atacontrol attach ata0 causes momen o [2005/10/24] kern/87959 cracauer [ext2fs] no cp(1) possible, mmap returns o [2005/10/25] kern/87967 [nfs] [panic] Page fault panic on NFS cli f [2005/10/25] i386/87975 sos [ata] [boot] no kernel support for ata pd o [2005/10/25] amd64/87977 amd64 [busdma] [panic] amd64 busdma dflt_lock c o [2005/10/25] ports/87978 portmgr *_DEPENDS gets broken after changing (LOC o [2005/10/25] ports/87985 trevor print/acroread7 need to resetting its ARC o [2005/10/25] kern/87986 pjd [geom] [hang] gmirror and quota will hang o [2005/10/25] www/87993 www 2 docu hyperlinks doesn't contain content f [2005/10/25] kern/88011 thompsa [bridge] bridge and if_bridge is broken b o [2005/10/26] ports/88019 petef PATCH - graphics/p5-Graphics-ColorNames d o [2005/10/26] kern/88045 obrien [nve] [patch] 6.0rc1: nve0: device timeou o [2005/10/26] kern/88047 [asr] [panic] 6.0-RC1 reboots with SMP an o [2005/10/27] i386/88082 i386 cts protection for ath0 causes panic o [2005/10/27] gnu/88087 c++filt(1) dumps core on a trivial string o [2005/10/28] ports/88115 x11 ivview (installed by inventor port) end i o [2005/10/28] i386/88124 i386 [hang] X -configure freezes 6.0rc1 o [2005/10/28] i386/88130 i386 [hang] Machine hands on dhcp o [2005/10/28] i386/88139 i386 [i386] feature request: 53C875 Chipset HP f [2005/10/28] ports/88162 gnome Mozilla-devel crashes FreeBSD o [2005/10/29] i386/88164 i386 installing Cpanel Wget f [2005/10/29] ports/88181 dinoex openssl-stable port seems too frequently o [2005/10/30] kern/88213 [panic] Hang followed by Panic on 6.0-RC1 o [2005/10/30] bin/88215 [patch] syslogd(8) does not pass cleanly p [2005/10/30] kern/88249 dwhite getdents syscall fails for devfs on amd64 o [2005/10/31] kern/88266 [smbfs] smbfs does not implement UIO_NOCO o [2005/10/31] kern/88268 [bpf] yet another null pointer in bpf cod o [2005/10/31] sparc64/88279sparc64 Hme driver. Failure to initialize onboard p [2005/10/31] conf/88293 brooks /etc/rc.initdiskless broken o [2005/10/31] amd64/88299 amd64 swapcontext fails with errno 0 p [2005/10/31] kern/88301 brooks [libutil] unable to rsh to 5.4-STABLE sys o [2005/11/01] i386/88315 i386 [sym] [hang] Symbios/LSI-HBA (SYM83C895) o [2005/11/02] i386/88387 i386 sound-driver plays too slow f [2005/11/02] ports/88388 ports-bugs Drupal port overwrites config on upgrade o [2005/11/02] ports/88389 bms devel/picasm fails to install device prof f [2005/11/02] ports/88406 rodrigc devel/apr-svn picks up e2fsprogs header a o [2005/11/03] ports/88433 mharo [patch] ftp/proftpd 1.3.0rc3 o [2005/11/03] usb/88445 usb [panic] computer reboots after printing C o [2005/11/03] i386/88459 i386 [panic] Fatal trap 19 (process: idle: cpu s [2005/11/03] ports/88462 ports-bugs math/GiNaC: ginsh crashes during startup o [2005/11/03] kern/88472 [panic] panic/reboot in 5.4-STABLE o [2005/11/04] kern/88487 [panic] softdep_setup_inomapdep: found in o [2005/11/04] kern/88496 [iwi] iwi0: fatal error - have to reboot f [2005/11/04] ports/88506 barner devel/boost-python build fails with SIGSE o [2005/11/05] kern/88518 cannot mount root rw at boot o [2005/11/05] i386/88523 i386 [hang] Hang on boot after pci_link1 (Comp o [2005/11/05] bin/88524 openssl can not work with smtp.gmail.com o [2005/11/05] ports/88535 phk emulators/hercules segfaults o [2005/11/06] ports/88547 lev devel/subversion make install dies on som o [2005/11/06] kern/88555 [panic] ffs_blkfree: freeing free frag on o [2005/11/06] amd64/88568 amd64 [panic] 6.0-RELEASE install cd does not b o [2005/11/06] ports/88574 sobomax [PATCH][amd64] Fix build of net/asterisk o [2005/11/07] i386/88583 i386 i can't install freebsd in server ibm xse o [2005/11/07] i386/88610 i386 FreeBSD 6.0 bootonly crashes during boot f [2005/11/08] ports/88631 vs [PATCH]: lang/kawa: Fix build issues on p o [2005/11/08] www/88636 www handbook instruction could shut down name f [2005/11/08] ports/88641 x11 x11/xproto: Xorg package fails to work o [2005/11/08] bin/88655 /bin/tcsh ls-F : Floating exception (core o [2005/11/08] kern/88659 ipfw [modules] ipfw and ip6fw do not work prop o [2005/11/08] kern/88664 ipfw [ipfw] ipfw stateful firewalling broken w a [2005/11/08] ports/88683 dinoex Build of openssl-0.9.8a generates error f [2005/11/09] ports/88703 gnome graphics/inkscape crashes on Printing wit o [2005/11/09] i386/88717 i386 freebsd 5.4 boots from lsi 53c1030 only i o [2005/11/09] kern/88718 [aac] [timeout] unable to install on RAID f [2005/11/09] ports/88728 jylefort Update port: audio/openal (fix OSS suppor o [2005/11/09] ports/88729 obrien [patch] textproc/urlview segfaults on amd o [2005/11/09] usb/88743 usb [hang] USB makes kernel hang at boot (reg o [2005/11/09] misc/88745 found trojan linux/rootkit -n on /usr/sbi f [2005/11/09] amd64/88746 amd64 Buffer problem with SSH2 under amd64 arch o [2005/11/09] ports/88750 lev Subversion port doesn't build using WITH_ o [2005/11/09] i386/88755 i386 [panic] FreeBSD R6.0 on ThinkPad R40 inst o [2005/11/10] ports/88776 kuriyama SNMP::Session from /usr/ports/net-mgmt/ne o [2005/11/10] ports/88777 eclipse eclipse crashes java machine on indexing o [2005/11/10] amd64/88790 amd64 kernel panic on first boot (after the Fre o [2005/11/10] kern/88793 [wlan] wlan(4) broken, sends corrupted pa o [2005/11/10] ports/88805 phantom java/jdk15 Charset NullPointerException o [2005/11/10] i386/88808 i386 V6.0 crashing on install with ICH7 RAID 5 o [2005/11/10] bin/88813 stefanf [patch] cd builtin in sh(1) can cd to wro f [2005/11/11] ports/88822 barner Patch for Monotone to build on FreeBSD 4. o [2005/11/11] kern/88823 [modules] atapicam - kernel trap 12 on lo o [2005/11/11] kern/88830 sos [ata] cd drive access error (regression i o [2005/11/11] kern/88831 nextboot.conf not deleted o [2005/11/11] kern/88833 [nfs] NFS mounts stuck o [2005/11/11] ports/88837 obrien net/rdesktop does not compile from ports o [2005/11/11] i386/88853 i386 [hang] SMP system FreeBSD 6.0-STABLE cras o [2005/11/11] ports/88854 x11 xorg takes forever initializing my 82845G o [2005/11/11] kern/88856 [nfs] XDR/RPC breaks when sending msgs > o [2005/11/11] kern/88859 acpi ACPI broken on Compaq DL360 o [2005/11/12] bin/88873 [2TB] gpt create fails "bogus map" "unkno o [2005/11/12] kern/88882 [ndis] ndis IF tx/rx and other problems i o [2005/11/13] kern/88914 [hang] system freeze during file transfer o [2005/11/13] i386/88917 i386 ipw can not work in adhoc mode o [2005/11/13] ports/88919 des The security/p5-Authen-PAM port uses sour f [2005/11/13] ports/88928 ports-bugs [patch] security/drweb-postfix have inval o [2005/11/13] i386/88929 i386 FreeBSD 6.0 install CD fails to find disk o [2005/11/13] kern/88937 [ndis] ifconfig ndis does not show the co p [2005/11/13] kern/88940 glebius [bge] [patch] bge support for BCM5752 o [2005/11/14] usb/88966 usb kldunload ucom.ko returns "Device busy" e o [2005/11/14] i386/89003 i386 LaCie Firewire drive not properly support o [2005/11/14] ports/89011 krion Change port: mail/exim - add DomainKeys o [2005/11/14] kern/89012 [libz] FreeBSD-6.0 is still using zlib-1. f [2005/11/15] ports/89049 ports-bugs pear-PEAR install fails o [2005/11/15] www/89063 www User group section of FreeBSD site needs f [2005/11/15] ports/89065 ports-bugs [patch] games/quakeforge does not respond o [2005/11/15] kern/89069 [panic] kernel panic when putting load on o [2005/11/15] kern/89070 [panic] NULL m passed to m_copym() in ip_ o [2005/11/15] ports/89074 x11 Segmentation Violation during "make insta o [2005/11/15] kern/89085 [smbfs] [patch] Running 'kldunload smbfs' o [2005/11/15] i386/89090 i386 du reports negative numbers o [2005/11/16] bin/89100 premature EOF with ftpd on some large fil o [2005/11/16] kern/89102 geom [geom_vfs] [panic] panic when forced unmo a [2005/11/16] misc/89103 gcc segmentation fault errors -- ??memory o [2005/11/16] ports/89107 sobomax Zaptal and asterisk cause panic on 6.0-ST o [2005/11/16] bin/89144 [sysinstall] failed to install 2 packages o [2005/11/16] ports/89176 lev [PATCH]: devel/subversion: Does not build o [2005/11/16] kern/89179 Random reboots on Dell PowerEdge 6300 o [2005/11/17] kern/89181 [libutil] [patch] lib/libutil properties_ o [2005/11/17] kern/89207 problem install fresbsd, hard disk geomet o [2005/11/18] i386/89214 i386 FreeBSD 6.0 disc 1 boot fails to find CDR o [2005/11/18] usb/89218 usb flash disk f [2005/11/18] ports/89228 ports-bugs security/clamav: clamd with libunrar dies o [2005/11/18] ports/89246 ports-bugs ImageMagick Core dumping on various utili o [2005/11/18] i386/89249 i386 HighPoint RocketRAID 1520 (HPT372N) can't o [2005/11/18] ports/89252 ports-bugs smartmontools getting gibberish o [2005/11/18] kern/89258 [mouse] synaptic touchpad support "worse" o [2005/11/19] amd64/89261 amd64 IPSec always causes panics on amd64 o [2005/11/19] threads/89262threads [kernel] [patch] multi-threaded process h o [2005/11/19] kern/89264 sos [ata] [panic] crash dump not implemented o [2005/11/19] i386/89267 i386 Problem with bsdtar o [2005/11/19] kern/89271 [radeon][agp][hang] X.org hangs when heav o [2005/11/19] ports/89282 ports-bugs Serial ports have changed name - reflect o [2005/11/19] i386/89288 i386 DMA error while booting with acpi enable o [2005/11/20] ports/89308 apache [patch] www/mod_accounting crash on reque o [2005/11/20] kern/89310 [panic] kmem_malloc fails with "kmem_map o [2005/11/20] i386/89322 i386 No puedo acceder al contenido del CDROM o [2005/11/21] ports/89334 scrappy Update Port: converters/p5-Convert-ASN1 0 o [2005/11/21] ports/89335 mharo Update Port: converters/p5-Convert-PEM 0. o [2005/11/21] ports/89337 erwin Update Port: devel/p5-Cache-Mmap 0.08 -> o [2005/11/21] ports/89338 petef Update Port: devel/p5-Class-Date 1.1.7 -> o [2005/11/21] i386/89340 i386 6.0-STABLE (2005-11-07) panic o [2005/11/21] ports/89341 leeym Update Port: devel/p5-File-HomeDir 0.06 - o [2005/11/21] ports/89344 mharo Update Port: security/p5-Crypt-RSA 1.50 - o [2005/11/21] ports/89347 ports-bugs [MAINTAINER UPDATE] net-mgmt/ipcad: New r o [2005/11/21] ports/89348 petef Update Port: textproc/p5-URI-Find 0.13->0 o [2005/11/21] misc/89355 mdconfig -t vnode filesystem mount proble 1882 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1996/07/07] bin/1375 eivind [patch] Extraneous warning from mv(1) s [1996/10/14] kern/1791 tegge syslimits.h does not allow overriding def s [1996/11/23] bin/2090 clients may bind to FreeBSD ypserv refusi s [1996/12/02] bin/2137 tegge vm statistics are bad s [1996/12/27] kern/2298 [sio] [patch] support for DSR/DCD swappin s [1996/12/30] kern/2325 quota.user enlarged, no boot on 2.2-BETA a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d o [1997/02/19] kern/2768 ktrace(1) -i dumps corrupted trace data o [1997/03/11] bin/2934 sh(1) has problems with $ENV o [1997/07/02] kern/4012 [nfs] 2.2-RELEASE/Digital UNIX NFSv3 0 le o [1997/07/18] bin/4116 Kerberized login as .root fails to s [1997/07/26] bin/4172 des suggest reconnection option added to fetc s [1997/07/28] kern/4184 [netatalk] [patch] minor nits in sys/neta o [1997/07/30] kern/4194 kernel pci driver for Digital 21041 Ether o [1997/08/29] kern/4413 No way to unmount a floppy that goes bad o [1997/08/29] bin/4419 man can display the same man page twice o [1997/08/30] bin/4420 imp find -exedir doesn't chdir for first entr o [1997/09/25] bin/4629 grog calendar doesn't print all dates sometime o [1997/09/28] bin/4646 qa [sysinstall] can't fixit with an NFS-moun o [1997/10/16] kern/4782 Under certain conditions, several krsh's o [1997/11/13] bin/5031 gad lpr does not remove original file if -s i s [1997/11/28] bin/5173 [PATCH] restore ought to deal with root s s [1997/12/15] bin/5296 slattach fails creating pidfile with ioct o [1997/12/22] kern/5362 [mount] mount incorrectly reports / as an o [1998/01/12] bin/5483 Login(1) clears utmp entry o [1998/01/27] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe o [1998/01/27] kern/5587 des session id gets dropped o [1998/01/31] bin/5609 gad lpd cannot send long files to HP's JetDir o [1998/02/11] bin/5712 mikeh /bin/chio code cleaup and option added o [1998/02/14] bin/5745 nik [PATCH] Add /usr/local/share/mk to defaul o [1998/02/28] kern/5877 kbyanc sb_cc counts control data as well as data o [1998/04/19] conf/6346 joe Kernel version strings need to relate to s [1998/05/17] kern/6668 babkin [patch] new driver: Virtual Ethernet driv s [1998/05/29] bin/6785 place for all the default dump flags a [1998/07/01] bin/7136 markm kerberized telnetd doesn't use gettytab % s [1998/07/10] bin/7232 qa [sysinstall] suggestion for FreeBSD insta o [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/07/13] bin/7265 [patch] A warning flag is added to ln(1). o [1998/07/15] bin/7287 Incorrect domain name for MAP_UPDATE in m a [1998/07/20] bin/7324 mtm Suggestions for minor modifications to ad s [1998/08/10] kern/7556 sl_compress_init() will fail if called an s [1998/08/13] bin/7606 [patch] NIS Makefile.dist: NOPUSH replace s [1998/09/09] bin/7868 [patch] morse(6): Morse Code Fixups o [1998/09/18] bin/7973 gad lpd: Bad control file owner in case of re o [1998/10/03] bin/8133 markm [patch] bug in telnetd (Kerberos IV) f [1998/10/30] kern/8498 dwmalone Race condition between unp_gc() and accep o [1998/11/27] bin/8867 qa [sysinstall] [patch] /stand/sysinstall co a [1998/12/18] bin/9123 pax can't read tar archives that contain s [1998/12/29] bin/9233 gmp's mpq_add and mpq_sub are buggy o [1999/01/19] kern/9570 dfr [ed] [patch] ed(4) irq config enhancement o [1999/01/22] kern/9619 Restarting mountd kills existing mounts o [1999/01/25] kern/9679 fix for uninterruptible open in portal fi s [1999/01/29] bin/9770 jmallett [patch] An openpty(3) auxiliary program o [1999/02/02] bin/9868 Patch to add "date -a" o [1999/02/02] kern/9869 When using macros out of function, they s s [1999/02/06] kern/9927 gibbs the ahc driver doesn't correctly grok swi o [1999/02/11] bin/10030 markm Kerberized telnet fails to encrypt when a o [1999/03/02] bin/10358 yar ftp(1) has problems with long pathnames o [1999/03/16] bin/10611 timed enhancement o [1999/03/19] gnu/10670 peter cvs doesn't allow digits in local keyword a [1999/03/24] kern/10778 ru "ipforward_rt" is not cleared when routin a [1999/04/08] kern/11024 mtm getpwnam(3) uses incorrect #define to lim o [1999/04/11] bin/11085 Per-host configuration for syslog.conf s [1999/04/13] bin/11114 harti make(1) does not work as documented with o [1999/04/16] kern/11165 emulation [ibcs2] IBCS2 doesn't work correctly with o [1999/04/23] bin/11294 direct logging to other hosts (no local s o [1999/05/19] kern/11789 obrien ELF machine definition missing for ARM o [1999/06/03] kern/12014 alfred Fix SysV Semaphore handling s [1999/06/07] kern/12071 fanf [net] [patch] new function: large scale I o [1999/06/08] i386/12088 imp [ed] [patch] ed(4) has minor problem with o [1999/06/21] bin/12324 qa [sysinstall] fdisk partition editor is mi o [1999/07/07] kern/12543 [fxp] [patch] cumulative error counters f o [1999/07/07] bin/12545 peter kldload(8) should be more sensitive to er o [1999/07/25] bin/12801 nvi infinite recursion with options "left o [1999/08/09] bin/13042 make(1) doesn't handle wildcards in subdi o [1999/08/12] bin/13108 authunix_create_default includes egid twi a [1999/08/13] bin/13128 cy pkg_delete doesn't handle absolute pathna o [1999/08/14] kern/13141 se [scsi] Multiple LUN support in NCR driver o [1999/08/21] bin/13309 billf Fixes to nos-tun o [1999/08/23] kern/13326 additional timeval interfaces for tags o [2000/07/20] bin/20054 yar ftpd: rotating _PATH_FTPDSTATFILE losts x o [2000/07/30] kern/20297 multimedia [sound] [patch] Joystick is not enabled w s [2000/08/01] kern/20333 des [libpam] ftp login fails on unix password o [2000/08/03] kern/20389 ken "device pass" required for CD ripping o [2000/08/04] bin/20391 jhb [sysinstall] sysinstall should check debu o [2000/08/04] kern/20410 [sio] sio support for high speed NS16550A o [2000/08/09] bin/20501 mjacob [patch] extra flag to dump to offline aut o [2000/08/10] kern/20529 wpaul gigabit cards fail to link o [2000/08/21] bin/20742 ps Weird problem with 'more' on 4-1-STABLE o [2000/08/23] bin/20799 peter top's problem o [2000/08/27] bin/20881 There's no reason not to build DNSsec-DSA o [2000/08/27] bin/20889 dwmalone syslogd.c still uses depreciated domain A o [2000/08/28] bin/20908 qa [sysinstall] /stand/sysinstall too limite o [2000/08/30] bin/20944 natd enhancements, default config file an o [2000/09/03] bin/21008 gad Fix for lpr's handling of lots of jobs in o [2000/09/04] docs/21024 bde pow() ERANGE bug f [2000/09/06] bin/21080 mjacob dump doesn't use eject tape device correc o [2000/09/12] kern/21222 [nfs] wrong behavior of concurrent mmap() o [2000/09/16] bin/21312 more incorrectly redraws screen on xterm o [2000/09/16] bin/21315 Shells often behave oddly when executing s [2000/09/19] kern/21384 greid [sound] pcm driver has static in recorded o [2000/09/24] bin/21519 standards sys/dir.h should be deprecated some more f [2000/09/26] bin/21570 dougb [PATCH] Add -r option to /usr/bin/mail, q s [2000/09/30] bin/21659 Berkeley db library is statically compile o [2000/10/01] i386/21672 obrien [i386] AMD Duron Rev. A0 reports incorrec o [2000/10/01] conf/21675 Better and more disktab entries for MO dr o [2000/10/04] bin/21751 ken libcam's cam_real_open_device() may lose o [2000/10/05] kern/21768 rwatson shouldn't trailing '/' on regular file sy a [2000/10/07] kern/21807 [msdosfs] [patch] Make System attribute c o [2000/10/15] conf/21994 qa [sysinstall] Config of Anonftp (at instal s [2000/10/17] bin/22034 nfsstat(1) lacks useful features found in o [2000/10/21] bin/22182 vi options noprint/print/octal broken o [2000/10/21] kern/22190 threads A threaded read(2) from a socketpair(2) f p [2000/10/21] bin/22198 bms inet_ntop may set errno to ENOSPC and nee o [2000/10/26] conf/22308 [nfs] mounting NFS during boot blocks if o [2000/10/31] bin/22442 greid [PATCH] Increase speed of split(1) o [2000/11/10] bin/22730 fenner tcpslice doesn't handle long file offsets o [2000/11/17] misc/22914 [bootinst] bootinst messages are not upda o [2000/11/24] conf/23063 bms [PATCH] for static ARP tables in rc.netwo o [2000/11/24] bin/23082 dwmalone ntpd has only one reference-clock parser p [2000/11/28] kern/23148 getopt(3) works non-intuitively? p [2000/11/29] bin/23178 'talk' not doing right thing o [2000/11/29] bin/23180 Certain KOI8 characters are treated as "w a [2000/12/04] bin/23254 fenner yacc accepts bad grammer p [2000/12/05] kern/23304 kbyanc POSIX clock_gettime, clock_getres return o [2000/12/06] kern/23314 scsi aic driver fails to detect Adaptec 1520B a [2000/12/09] bin/23402 qa [sysinstall] upgrade ought to check parti o [2000/12/14] kern/23546 tanimura [snd_csa] [patch] csa DMA-interrupt probl s [2000/12/15] kern/23561 emulation [linux] feature request: Linux compatibil o [2000/12/15] bin/23562 markm [patch] telnetd doesn't show message in f o [2000/12/19] bin/23635 mike [PATCH] whois enhancement - smarter whois o [2000/12/25] ports/23822 trevor mtree entries for German X11 man pages a [2000/12/28] bin/23912 underflow of cnt in vs_paint() by O_NUMBE o [2001/01/04] bin/24066 marcel gdb can't detach from programs linked wit o [2001/01/16] bin/24390 standards Replacing old dir-symlinks when using /bi o [2001/01/18] bin/24435 qa [libdisk] changing slice type causes Auto o [2001/01/20] bin/24485 [PATCH] to make cron(8) handle clock jump o [2001/01/21] bin/24513 peter new options for pppd p [2001/01/21] conf/24515 dougb Fix for find(1) warning in /etc/rc o [2001/01/22] kern/24528 Bad tracking of Modem status s [2001/01/24] standards/24590standards timezone function not compatible witn Sin o [2001/01/24] bin/24592 cjc dmesg.boot Gets Overwritten without Reboo o [2001/01/31] bin/24757 yar ftpd not RFC compliant o [2001/02/02] docs/24786 doc missing FILES descriptions in sa(4) o [2001/02/05] kern/24882 ktrace not syncing .out file before panic o [2001/02/06] bin/24907 qa [sysinstall] Options screen at MenuMedia o [2001/02/08] bin/24953 green adduser ignores passwd_format in login.co o [2001/02/08] kern/24959 andre proper TCP_NOPUSH/TCP_CORK compatibility o [2001/02/09] i386/24963 i386 [perfmon] perfmon(4) doesn't work on SMP o [2001/02/11] bin/25013 mv(1) cannot move unresolvable symlinks a o [2001/02/11] bin/25015 cp: options -i and -f do not work as docu o [2001/02/11] kern/25018 lstat(2) returns bogus permissions on sym o [2001/02/15] kern/25109 Fujitsu MO device MCC3064AP could't be c o [2001/02/20] bin/25218 mailwrapper(1) invokes sendmail when reso f [2001/02/22] bin/25278 bs accepts -s -c but not -sc o [2001/02/22] alpha/25284 alpha PC164 won't reboot with graphics console f [2001/02/26] kern/25386 multimedia [sound] Incorrect mixer registers (line & o [2001/02/28] kern/25445 kernel statistics are displayed in wrong o [2001/03/01] bin/25477 billf pam_radius fix to allow null passwords fo s [2001/03/02] ports/25490 wosch [PATCH] fix various bugs in stat(1) p [2001/03/02] kern/25499 [kbd] [patch] buffer paste functionality s [2001/03/08] bin/25598 yar patch to let ftpd output message when cha o [2001/03/12] kern/25733 [intpm] mismatch between error reporting o [2001/03/12] bin/25736 ac -d option probrem with overdays logon f [2001/03/13] kern/25777 [kernel] [patch] atime not updated on exe o [2001/03/15] conf/25829 IPSec config in rc.network doesn't allow o [2001/03/17] kern/25866 more than 256 ptys, up to 1302 ptys. f [2001/03/22] docs/26003 rwatson getgroups(2) lists NGROUPS_MAX but not sy o [2001/03/22] bin/26005 delphij MIME quoted-printable encoding added to v o [2001/04/01] kern/26261 [sio] silo overflow problem in sio driver o [2001/04/02] docs/26286 doc *printf(3) etc should gain format string o [2001/04/03] kern/26323 [ufs] [patch] Quota system creates zero-l a [2001/04/04] kern/26348 [pcvt] scon -s, page fault in HP mode f [2001/04/09] kern/26454 multimedia [sound] mixer volume settings on Maestro- a [2001/04/13] kern/26534 ipfw [ipfw] Add an option to ipfw to log gid/u o [2001/04/13] kern/26547 ambrisko [lnc] [patch] problem with shared memory o [2001/04/14] kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY whe o [2001/04/15] kern/26584 kernel boot messages aren't logged correc o [2001/04/16] kern/26618 iedowse unmount(2) can't unmount a filesystem who p [2001/04/17] kern/26646 ache srand() provides only 8-bit table o [2001/04/18] conf/26658 grog update to src/usr.bin/calendar/calendars/ o [2001/04/18] kern/26686 Freeze at boot from 4.3-RC4 floopies - US o [2001/04/19] bin/26695 change request: kill(1)/killall(1) -l out o [2001/04/23] kern/26787 dd sysctl change request s [2001/04/23] bin/26803 des Fix fetch to allow FTP puts in '-o' & all o [2001/04/24] i386/26812 peter old bootstrap /sys/i386/boot/... still in o [2001/04/26] docs/26879 darrenr [ipf] mkfilter not installed, yet referre o [2001/04/28] bin/26919 qa [sysinstall] fdisk should ONLY set one bo o [2001/05/01] kern/27008 kernel function sysbeep(xxx, 0) does prod f [2001/05/07] bin/27188 jon fix of rsh non-interactive mode behaviour o [2001/05/08] bin/27216 qa [sysinstall] can not get to shell prompt o [2001/05/09] kern/27232 [nfs] On NFSv3 mounted filesystems, stat o [2001/05/10] bin/27258 getty didn't check if if= isn't empty o [2001/05/11] kern/27269 Cannot mount linux extended (logical) par o [2001/05/12] bin/27281 vidcontrol(1) does not have error codes o [2001/05/13] bin/27306 marcel [patch] hw watchpoints work unreliable un o [2001/05/14] bin/27319 obrien df displays amd pid processes o [2001/05/17] kern/27403 [lpt] lpt driver doesn't handle flags any o [2001/05/18] kern/27429 'dependant' is a misspelling o [2001/05/21] bin/27483 qa [sysinstall] [patch] make sysinstall ask o [2001/05/23] kern/27571 bp [unionfs] Changing policy of shadowing fi o [2001/05/26] kern/27660 Kernel does not return error if adding du o [2001/05/27] bin/27687 fsck wrapper is not properly passing opti o [2001/06/02] bin/27829 pax's uid/gid cache is read-only a [2001/06/02] docs/27833 cjc No man page for locate.rc o [2001/06/02] kern/27835 execve() doesn't conform to execve(2) spe s [2001/06/03] docs/27843 doc [PATCH] make.conf WITH_* variables aren't o [2001/06/04] bin/27872 qa [sysinstall] "Load Config" hangs Compaq D s [2001/06/07] ports/27936 mi Update /usr/ports/deskutils/xmdiary 3.0.1 o [2001/06/08] bin/27972 losing information with talk a [2001/06/11] bin/28081 qa [sysinstall] /stand/sysinstall errs out i f [2001/06/14] ports/28155 portmgr [patch] DESTDIR is used incorrectly in bs a [2001/06/16] gnu/28189 [PATCH] fix for detecting empty CVS commi f [2001/06/16] kern/28206 bp [nullfs] [patch] umapfs/umap_vfsops.c sho o [2001/06/17] conf/28236 [PATCH] iso-8859-1_to_cp437.scm doesn't c o [2001/06/18] misc/28255 small picobsd documentation still references ol s [2001/06/18] kern/28260 standards UIO_MAXIOV needs to be made public o [2001/06/22] bin/28333 rtprio/idprio setuid problems o [2001/06/23] bin/28364 lex(1) generated files fail to compile cl o [2001/06/30] docs/28555 trhodes [PATCH] style(9) isn't explicit about boo o [2001/07/02] bin/28620 ru xinstall has no way to pass options to st s [2001/07/03] ports/28678 wosch portcheckout doesn't allow flexible build o [2001/07/07] bin/28789 /usr/bin/last does not filter for uucp co o [2001/07/11] kern/28888 mbr Acer 8000 NIC not detected correctly o [2001/07/14] bin/28972 dwmalone gamma returns same result as lgamma s [2001/07/14] i386/28975 mjacob [rp] RocketPort problems o [2001/07/18] bin/29062 markm krb4 and krb5 multiply defined version sy f [2001/07/18] kern/29067 multimedia [sound] Yamaha OPL3Sa2 pcm/pnp stops play o [2001/07/21] bin/29119 menu of fdisk editor in 4.3R does not lis f [2001/07/23] kern/29169 mjacob FC loop that 'goes away' never times out o [2001/07/26] docs/29245 doc top(1) manpage doesn't understand SMP s [2001/07/29] bin/29292 sos The functional addtion to burncd(8) f [2001/07/30] kern/29312 multimedia [sound] Using mixer on pcm misbehaves wit f [2001/07/30] kern/29318 mjacob [scsi] [patch] Exabyte 8200 needs SA_QUIR o [2001/08/01] kern/29355 mux [kernel] [patch] add lchflags support o [2001/08/01] bin/29363 gad [PATCH] newsyslog can support time as ext s [2001/08/04] kern/29423 [patch] new feature: kernel security hook o [2001/08/07] bin/29516 markm telnet from an non FreeBSD host still use f [2001/08/08] kern/29538 joerg Mounting /dev/fd0 never completes o [2001/08/09] bin/29581 nectar proposed gethostbyXXXX_r() implementation o [2001/08/14] kern/29698 emulation [linux] [patch] linux ipcs doesn'work o [2001/08/15] kern/29727 scsi [amr] [patch] amr_enquiry3 structure in a o [2001/08/20] bin/29893 qa [sysinstall] suggestions for 4.4 sysinsta o [2001/08/20] bin/29897 des pam_unix patch, which uses loginclass pas a [2001/08/23] docs/30008 doc This document should be translated, comme o [2001/08/24] kern/30052 mbr [dc] [patch] dc driver queues outgoing pk o [2001/08/29] kern/30186 getaddrinfo does not handle incorrect ser o [2001/09/03] i386/30276 i386 CPUTYPE=486 built on a CPUTYPE=p3 WORLD b o [2001/09/04] conf/30301 Default printcap "mx" config too small o [2001/09/04] bin/30321 strftime(3) '%s' format does not work pro s [2001/09/05] ports/30331 portmgr [patch] Conflict between bsd.port.mk MAKE o [2001/09/05] bin/30360 vmstat returns impossible data s [2001/09/07] kern/30422 [patch] new function: add WDT hardware wa o [2001/09/07] bin/30424 Generalization of vipw to lock pwdb while o [2001/09/09] docs/30442 trhodes remove broken referemce to gettime(9) fro o [2001/09/09] threads/30464threads pthread mutex attributes -- pshared o [2001/09/12] bin/30517 qa [sysinstall] using sysinstall with instal o [2001/09/13] bin/30542 [PATCH] add -q option to shut up killall o [2001/09/15] conf/30590 /etc/hosts.equiv and ~/.rhosts interactio p [2001/09/16] kern/30608 kern.ps_showallproc=0 doesn't limit queri o [2001/09/18] bin/30654 gad Added ability for newsyslog to archive lo f [2001/09/19] bin/30661 alfred [rpc.lockd] [patch] FreeBSD-current fails a [2001/09/22] bin/30737 qa sysinstall leaks file descriptors on rest o [2001/09/24] ports/30777 portmgr add a 'make pkg-plist' make target in por o [2001/09/25] conf/30812 [patch] giant termcap database update o [2001/09/25] bin/30819 /bin/mv results in warnings when /bin/cp o [2001/09/26] bin/30854 bootpd/bootpgw change - skip ARP modifica p [2001/09/27] kern/30857 [intr] [patch] intr_machdep.c allows acce o [2001/09/27] bin/30863 bootpd/dovend.c Win95 compatibility impro o [2001/09/30] conf/30929 usb [patch] use usbd to initialize USB ADSL m o [2001/09/30] conf/30938 Improving behavior of /etc/periodic/daily o [2001/10/04] bin/31034 dwmalone regularly add original address logging fo o [2001/10/04] kern/31048 des linprocfs:/proc/meminfo cannot handle mul o [2001/10/07] docs/31109 doc replace gif images w/ png ones due to pat o [2001/10/10] bin/31199 tunefs error is incorrect when enabling s o [2001/10/10] kern/31201 [libdisk] [patch] add free_space(chunk) t o [2001/10/18] i386/31353 i386 [apm] [patch] 'shutdown -p' does not work o [2001/10/19] kern/31380 [nfs] NFS rootfs mount failure message to o [2001/10/20] bin/31387 When getuid()=0, mailwrapper should drop o [2001/10/22] i386/31427 davidxu [pmap] [patch] minor incorrect code in sy o [2001/10/22] bin/31432 umount(8) and unmount(2) don't corespond o [2001/10/23] kern/31456 [pcn] [patch] register number definition f [2001/10/25] kern/31490 [sysctl] [patch] Panic in sysctl_sysctl_n f [2001/10/27] kern/31521 multimedia [sound] pcm0 plays too fast on Intel 8280 o [2001/10/29] bin/31588 change request to allow mount(1) to set t o [2001/10/30] kern/31624 writev may return undocumented ECONNRESET o [2001/10/30] kern/31647 socket calls can return undocumented EINV s [2001/11/01] kern/31686 bms Problem with the timestamp option when fl o [2001/11/02] kern/31708 VM system / fsync / flushing delayed inde o [2001/11/05] gnu/31772 New option in dialog(1) o [2001/11/10] kern/31890 [syscons] [patch] new syscons font o [2001/11/11] bin/31906 No method available to unwind atexit(3) s o [2001/11/12] bin/31933 pw can interpret numeric name as userid d o [2001/11/14] kern/31981 [libc] [patch] (mis)feature in getnetent o [2001/11/14] bin/31985 New /etc/remote flag for tip to append LF o [2001/11/14] bin/31987 patch to allow dump(1) to notify operator o [2001/11/15] docs/32020 trhodes loader.8 manpage missing tunables o [2001/11/19] conf/32108 Proposed Firewall (IPv4) configuration sc p [2001/11/20] standards/32126standards getopt(3) not Unix-98 conformant f [2001/11/20] bin/32144 qa [sysinstall] unattended install with sysi o [2001/11/26] bin/32288 qa [sysinstall] After install: /etc/rc compl a [2001/11/29] bin/32375 qa [sysinstall] sysinstall doesn't respect U a [2001/11/30] bin/32411 shutdown's absolute-time handling could b o [2001/12/03] kern/32480 [syscons] Missing graphic characters in s o [2001/12/04] bin/32501 trhodes quot(8) is stupid regarding the filesyste o [2001/12/09] usb/32652 usb [uscanner] [patch] A new ioctl to uscanne s [2001/12/09] usb/32653 usb Added patches to improve USB scanner supp o [2001/12/10] kern/32659 [vm] [patch] vm and vnode leak with vm.sw o [2001/12/10] gnu/32661 dd send-pr uses $LOGNAME for From and Reply o [2001/12/10] bin/32667 systat waste too much time reading input o [2001/12/10] bin/32680 [PATCH] Allows users to start jail(1) by o [2001/12/13] bin/32808 dwmalone [PATCH] tcpd.h lacks prototype for hosts_ o [2001/12/13] kern/32812 [bktr] bktr driver missing tuner for eepr o [2001/12/14] bin/32828 w incorrectly handles stale utmp slots wi o [2001/12/21] bin/33066 rwatson sysinstall does not write to new disks as s [2001/12/24] bin/33133 keyinit outputs wrong next login password o [2001/12/26] bin/33182 marcel gdb seg faults when given handle SIGALRM o [2001/12/26] kern/33203 [nfs] "got bad cookie" errors on NFS clie o [2002/01/05] docs/33589 doc Patch to doc.docbook.mk to post process . a [2002/01/07] bin/33661 PAP AuthAck/AuthNak parsing problem in pp o [2002/01/09] docs/33724 doc [patch] fix Handbook error about Advanced o [2002/01/10] bin/33774 Patch for killall(1) o [2002/01/11] bin/33778 joe crunchgen enhancements o [2002/01/12] bin/33809 mux [patch] mount_nfs(8) has trouble with emb o [2002/01/13] bin/33834 strptime(3) is misleading o [2002/01/14] docs/33852 doc split(1) man page implies that input file o [2002/01/14] docs/33877 doc Documented behaviour of SF_flags for non- o [2002/01/16] bin/33941 /usr/sbin/dev_mkdb dumps core a [2002/01/16] kern/33963 bde Messages at the serial IO port device pro o [2002/01/16] kern/33965 [kbd] [patch] programmable keys of the ke a [2002/01/17] bin/34010 [patch] keyinit takes passwords less than o [2002/01/22] bin/34146 newfs defaults and vfs.usermount=1 tug at s [2002/01/22] bin/34171 yar ftpd indiscrete about unprivileged user a f [2002/01/23] kern/34195 iedowse setting the action for SIGCHLD to SIG_IGN o [2002/01/23] bin/34199 dwmalone [PATCH] top(1) RES/rss display incorrect o [2002/01/24] docs/34239 trhodes tunefs(8) man page doesn't describe argum o [2002/01/26] bin/34309 gad lpd does not garantie that controlfiles b o [2002/01/29] bin/34394 peter tgetent returns wrong value in libtermcap o [2002/01/29] bin/34412 [patch] tftp(1) will still try and receiv o [2002/01/31] bin/34497 grog calendar(1) does not understand calendars s [2002/01/31] bin/34498 Error in vi manpage. o [2002/02/01] bin/34519 pkg_check(8) does not return exit code >0 o [2002/02/05] bin/34628 [pkg_install] [patch] pkg-routines ignore o [2002/02/06] kern/34665 darrenr [ipfilter] ipfilter rcmd proxy "hangs". o [2002/02/07] gnu/34709 marcel [patch] Inaccurate GDB documentation o [2002/02/08] bin/34728 DHCP hostname set as Hexadecimal string o [2002/02/09] bin/34759 Phantasia does not accept [enter] key o [2002/02/10] bin/34788 dwmalone dmesg(1) issues with console output o [2002/02/11] bin/34832 /usr/share/man/cat3/setkey.3.gz linked to p [2002/02/12] bin/34874 bms Netstat output to small o [2002/02/12] kern/34880 luigi Impossibility of grouping IP into a pipe a [2002/02/16] docs/35011 doc There are no commands called "diskless" o f [2002/02/17] bin/35018 brian enhancing daily/460.status-mail-rejects s [2002/02/18] bin/35070 math(3) references section "3m", etc. o [2002/02/19] bin/35109 [PATCH] games/morse: add ability to decod o [2002/02/19] bin/35113 grdc enhancement: countdown timer mode o [2002/02/22] docs/35222 doc mailing list archive URL regexp suboptima o [2002/02/23] kern/35234 scsi World access to /dev/pass? (for scanner) o [2002/02/24] kern/35262 [boot2] [patch] generation of boot block o [2002/02/25] kern/35289 [bktr] [patch] Brooktree device doesnt pr o [2002/02/25] kern/35324 Plug and Play probe fails to configure Di o [2002/02/27] kern/35377 process gets unkillable (-9) in "ttywai" o [2002/02/28] bin/35400 qa [sysinstall] sysinstall could improve man o [2002/03/01] bin/35451 PATCH: pkg_add -r able to save local copy o [2002/03/04] misc/35542 bde [patch] BDECFLAGS needs -U__STRICT_ANSI__ o [2002/03/04] conf/35545 [patch] enhanced periodic scripts: 100.cl o [2002/03/05] bin/35568 make declares target out of date, but $? o [2002/03/06] docs/35608 doc mt(1) page uses "setmark" without explana o [2002/03/06] docs/35609 doc mt(1) page needs explanation of "long era o [2002/03/06] docs/35612 doc ps(1) page "state" description doesn't me o [2002/03/07] kern/35635 [libiconv] [patch] missing dep in libicon o [2002/03/07] docs/35642 doc lo(4) page maybe should document optional o [2002/03/07] docs/35644 doc lo(4) page presumes familiarity with prin o [2002/03/07] docs/35646 doc cp(1) page needs a "Bugs" section. o [2002/03/07] www/35647 www www; combine query-by-number and multi-fi o [2002/03/07] docs/35652 trhodes bsd.README seriously obsolete o [2002/03/08] docs/35686 doc blackhole(4) page seems to contradict its o [2002/03/09] www/35711 bugmeister the "gnats page" should move to its own s o [2002/03/09] bin/35717 which(1) returns wrong exit status for m o [2002/03/10] docs/35732 doc adduser(8) page has obsolete reference an o [2002/03/11] ports/35767 portmgr make_index script does not deal with syml o [2002/03/11] bin/35769 w does not correctly interpret X sessions o [2002/03/11] kern/35774 [libutil] logwtmp: Suboptimal auditing po o [2002/03/13] kern/35846 imp timeout in wi_cmd 11, machine hangs for a o [2002/03/14] bin/35886 [patch] pax(1) enhancement: custom time f p [2002/03/14] bin/35894 [patch] popen.c in cron won't build witho o [2002/03/16] docs/35943 doc at(1) config files are misplaced in /var/ o [2002/03/16] docs/35953 doc hosts.equiv(5) manual is confusing or wro s [2002/03/19] standards/36076standards Implementation of POSIX fuser command o [2002/03/20] bin/36118 qa [sysinstall] 4.5 Upgrade says it won't to o [2002/03/20] bin/36143 [patch] Dynamic (non linear) mouse accele o [2002/03/21] kern/36170 [an] [patch] an(4) does an_init() even if o [2002/03/24] bin/36262 [patch] Fixed rusers(1) idle-time reporti o [2002/03/27] bin/36374 Patch (against core dumps) and improvemet o [2002/03/27] bin/36385 luigi crunchgen does not handle Makefiles with o [2002/03/27] conf/36392 [feature request] cron starts before vi r o [2002/03/28] docs/36432 doc Proposal for doc/share/mk: make folded bo o [2002/03/29] docs/36449 doc symlink(7) manual doesn't mention trailin a [2002/03/29] kern/36451 [bktr] [patch] Japan IF frequency is inco s [2002/03/29] gnu/36460 cu(1) program does not work very well. f [2002/03/29] bin/36477 gshapiro mailwrapper doesn't handle rmail calls o [2002/03/29] bin/36501 grog /usr/bin/calendar can't handle recurring o [2002/03/30] bin/36553 gad Two new features in newsyslog(8) o [2002/03/31] bin/36556 [patch] regular expressions for tcpwrappe o [2002/04/01] bin/36626 login_cap(3) incorrectly claims that all o [2002/04/02] bin/36646 dwmalone [patch] top(1) does not work correctly in o [2002/04/04] docs/36724 darrenr ipnat(5) manpage grammar is incomplete an o [2002/04/04] bin/36740 make ps obey locale (particularly for tim o [2002/04/04] bin/36757 which(1) ought to append @ if result is s o [2002/04/05] bin/36786 make ps use 24-hour time by default s [2002/04/08] java/36901 glewis WITHOUT_X11 Knob for port java/jdk13 o [2002/04/08] kern/36902 [libc] [patch] proposed new format code % o [2002/04/09] kern/36916 qa [libdisk] DOS active partition flag lost o [2002/04/10] kern/36952 ldd comand of linux does not work o [2002/04/10] bin/36960 grog calendar doesn't effect -t option. o [2002/04/12] bin/37013 ls directory name output trailing slash d o [2002/04/14] bin/37074 bp [PATCH] Typographical error in output of o [2002/04/15] bin/37083 small improvement to talk(1): add clocks o [2002/04/15] bin/37096 [patch] fixes to fsdb(8) command-line han o [2002/04/16] bin/37160 qa [sysinstall] coredumps when trying to loa o [2002/04/23] kern/37380 jhb [boot0] [patch] boot0 partition list is o o [2002/04/23] conf/37387 grog bsdmainutils/calendar Hungarian addon fil o [2002/04/24] bin/37424 [patch] nfsstat(1) reports negative value o [2002/04/25] bin/37437 Add HTTP-style support to {vis,unvis}(1). o [2002/04/25] bin/37442 [PATCH] sleep(1) to support time multipli p [2002/04/25] kern/37448 obrien [PATCH] ldd/rtld support for more informa o [2002/04/29] kern/37554 jmg [vm] [patch] make ELF shared libraries im o [2002/04/29] kern/37555 [kernel] [patch] vnode flags appear to be o [2002/04/29] conf/37569 [PATCH] Extend fstab(5) format to allow f o [2002/04/30] kern/37600 multimedia [sound] [partial patch] t4dwave drive doe f [2002/05/02] kern/37657 multimedia [sound] /dev/dsp and /dev/audio skip the o [2002/05/02] bin/37672 pw(8) prints warnings after successful NI o [2002/05/02] threads/37676threads libc_r: msgsnd(), msgrcv(), pread(), pwri o [2002/05/03] docs/37719 kensmith Detail VOP_ naming in a relevant man-page o [2002/05/04] bin/37733 su(1) does not behave the way it is descr s [2002/05/07] docs/37843 doc manual for pthread_setschedparam is wrong o [2002/05/07] bin/37844 [PATCH] make knob to not install progs wi o [2002/05/09] gnu/37910 PATCH: make send-pr(1) respect &'s in /et o [2002/05/13] alpha/38031 alpha osf1.ko not loaded during boot-time of li s [2002/05/13] ports/38034 ports-bugs compaq-cc (under linux-emu) installes man o [2002/05/14] bin/38055 qa [sysinstall] Groups (creation) item shoul o [2002/05/14] bin/38056 qa [sysinstall] User (creation)'s "Member gr o [2002/05/14] bin/38057 qa [sysinstall] "install" document doesn't d o [2002/05/14] docs/38061 ume Typos in man pages for faith & faithd o [2002/05/16] bin/38156 quotacheck chokes on user -2 o [2002/05/17] bin/38168 [patch] feature request: installing curse o [2002/05/18] bin/38256 linking pax to pax_{cpio|tar} s [2002/05/20] kern/38347 [libutil] [patch] [feature request] new l o [2002/05/22] kern/38429 [PATCH] getgpid and getsid work for proce o [2002/05/23] kern/38445 suggestion: centralize ptrace() permissio o [2002/05/24] bin/38478 qa [sysinstall] In Choose Distributions scre o [2002/05/24] bin/38480 qa [sysinstall] sysinstall should prompt for s [2002/05/24] www/38500 www gnats web form is overenthusiastic about o [2002/05/24] conf/38524 cons25 doesn't support F-keys beyond 12 o [2002/05/25] docs/38540 blackend sysinstall application name should be Sys o [2002/05/25] docs/38556 remko EPS file of beastie, as addition to exist o [2002/05/26] bin/38583 qa [sysinstall] sysinstall installs crypto s o [2002/05/27] ports/38593 portmgr Third level ports o [2002/05/27] bin/38610 qa [sysinstall] should be able to mount ISO o [2002/05/27] docs/38620 doc Committers Guide and CVS o [2002/05/27] kern/38626 luigi dummynet/traffic shaper: RED: max_th and o [2002/05/30] bin/38727 [patch] mptable(1) should complain about f [2002/05/30] kern/38730 philip Memorex scrollpro mouse is not fully func o [2002/05/30] kern/38749 kientzle Diskless booting fails with some DHCP ser o [2002/05/31] docs/38772 doc firewall_type feature not mentioned on Ha o [2002/06/02] kern/38826 [bootmgr] RFE: BootMgr should provide mor o [2002/06/02] kern/38828 scsi [feature request] DPT PM2012B/90 doesn't o [2002/06/03] bin/38854 qa [sysinstall] resetting during setup cause o [2002/06/06] misc/38937 delay between tracks in digital audio dum o [2002/06/06] bin/38940 Change: an option to *stat to allow supre o [2002/06/07] docs/38982 doc developers-hanbook/Jail fix o [2002/06/08] kern/39047 IPSEC Compression (IPCOMP) broken in tunn o [2002/06/12] kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLIN o [2002/06/14] standards/39256standards snprintf/vsnprintf aren't POSIX-conforman o [2002/06/14] conf/39306 The /etc/rc file should know if is runnin o [2002/06/15] docs/39348 doc kenv fetch of hostname requires dhcp/boot o [2002/06/16] bin/39360 qa [sysinstall] if linux emu is added as a d o [2002/06/17] kern/39425 [amd] Auto mounted directory was not foun o [2002/06/17] bin/39439 tcopy will not duplicate tapes with block o [2002/06/18] bin/39463 mtm [PATCH] Add several options to fingerd o [2002/06/18] conf/39466 /etc/security: find -xdev hangs on dead N f [2002/06/19] conf/39505 automate BUILDNAME variable for releases o [2002/06/19] kern/39527 dwmalone getcwd() and unreadable parent directory o [2002/06/19] docs/39530 doc access(2) man page has unnecessarily broa o [2002/06/20] bin/39574 qa [sysinstall] error mounting /dev/acd0c on s [2002/06/20] conf/39580 insecure default settings f [2002/06/22] ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXA o [2002/06/23] kern/39681 [sysctl] [patch] add hidden kernel boot t o [2002/06/25] docs/39824 doc Various tweaks for doc/en_US.ISO8859-1/bo o [2002/06/26] bin/39864 robert hostname instead of IP in w(1) -n output o [2002/06/26] bin/39893 setusercontext library call differs umask o [2002/06/27] bin/39905 johan cleaning sbin/restore code from warnings o [2002/06/29] conf/39976 vi recovery halting boot process o [2002/06/29] kern/40017 [patch] allows config(8) to specify confi s [2002/06/29] kern/40021 [kernel build] [patch] use ld(1) to build p [2002/07/01] gnu/40057 bugmeister send-pr -a flag does not work with -f o [2002/07/02] kern/40127 [libutil] [patch] Add functions for PID-f o [2002/07/03] kern/40132 multimedia [sound] [patch] enabling the joystick int f [2002/07/06] bin/40273 dougb some more fortunes o [2002/07/07] conf/40298 [patch] /etc/rc: using swapfile as /tmp o [2002/07/09] kern/40369 [kernel] [patch] rman_reserve_resource - o [2002/07/09] bin/40391 imp [sysinstall] sysinstall with PCCARD<->ISA o [2002/07/10] docs/40423 doc Keyboard(4)'s definition of parameters to o [2002/07/13] kern/40516 [ti] [patch] ti driver has no baudrate se f [2002/07/13] bin/40538 dougb mergemaster fixes and enhancements o [2002/07/14] conf/40548 list of /etc/defaults/make.conf undocumme p [2002/07/14] kern/40563 bms gif driver can clobber route/arp table o [2002/07/14] bin/40572 vipw prints silly message if $EDITOR fail o [2002/07/15] bin/40597 add /sbin/fdisk ability of showing extend s [2002/07/16] threads/40671threads pthread_cancel doesn't remove thread from o [2002/07/19] conf/40777 disktab does not support 2.88MB floppies o [2002/07/21] docs/40851 doc [PATCH] "mergemaster -p" in UPDATING's "C o [2002/07/23] kern/40919 usage of ucred->cr_uid in sys/netinet/in_ o [2002/07/23] kern/40926 qa [boot] After Upgrading or Clean Installin f [2002/07/23] kern/40927 multimedia [sound] Acer Labs M5451 dies with pcm:pla o [2002/07/24] usb/40948 usb [usb] USB HP CDW8200 does not work o [2002/07/24] i386/40958 i386 [apm] apm on Acer TravelMate 351 could no o [2002/07/25] bin/40980 du(1)'s -h and -k options interact confus o [2002/07/27] bin/41060 ready to import gzip 1.3.3 o [2002/07/28] docs/41089 doc pax -B option does not mention interactio o [2002/07/30] bin/41159 new sed -c option to allow ; as a separat s [2002/07/30] misc/41179 feature request: LD_LIBRARY_PATH security o [2002/07/31] bin/41190 in sed, report the { linenum instead of E o [2002/07/31] bin/41213 top(1) blocks if NIS-related entries in p o [2002/07/31] kern/41215 [kbd] console revert back to kbd0 (AT) af o [2002/08/01] bin/41238 qa [sysinstall] problems with FreeBSD instal o [2002/08/02] docs/41270 doc confusing directions for kernelconfig cha o [2002/08/02] bin/41271 Non-suid-crontab. o [2002/08/04] bin/41307 libalias: logging of links lifecycle (add o [2002/08/04] www/41312 cvsadm RCS IDs are off-by-one in the NetBSD cvsw o [2002/08/06] i386/41364 imp [pccard] NewMedia "Bus Toaster" SCSI card o [2002/08/07] usb/41415 usb [usb] [patch] Some USB scanners cannot ta o [2002/08/10] bin/41526 symlinked mount points get mounted more t o [2002/08/11] kern/41543 emulation [patch] feature request: easier wine/w23 f [2002/08/11] bin/41556 obrien [PATCH] wtmp patch for lukemftpd o [2002/08/12] bin/41566 obrien file(1) out of date o [2002/08/12] i386/41569 silo overflow p [2002/08/12] standards/41576standards POSIX compliance of ln(1) a [2002/08/12] bin/41583 assorted mtree bugs (+fixes) o [2002/08/15] bin/41674 ken iostat column formatting overlaps f [2002/08/17] kern/41743 multimedia [sound] No sound from SiS630s controller o [2002/08/17] bin/41744 qa [sysinstall] cannot stop comat22 from bei o [2002/08/20] docs/41807 doc natd -punch_fw "bug" o [2002/08/20] bin/41817 pw groupshow doesn't include the login gr o [2002/08/20] docs/41820 doc Device driver confusion in Handbook (2.3) o [2002/08/21] conf/41855 brooks improvment of /etc/rc.diskless2 script o [2002/08/21] i386/41856 i386 VESA splash screen problems on ThinkPad 2 o [2002/08/22] docs/41879 hrs cleanup to DOCROOT/share/sgml/freebsd.dsl o [2002/08/23] docs/41919 blackend MINI kernel for bootfloppy (Handbook p.34 o [2002/08/23] kern/41930 declaration clash for ffs() and ${CXX} o [2002/08/23] bin/41947 hexdump(1) unprintable ASCII enhancement o [2002/08/23] bin/41949 qa [sysinstall] sysinstall sorts /etc/rc.con o [2002/08/26] bin/42018 krion pkg_info with PKG_PATH searches through t o [2002/08/26] bin/42022 qa [sysinstall] non-interactive mode prompts a [2002/08/27] docs/42058 doc Documentation: Installing Oracle 8i onto o [2002/08/27] kern/42065 [kernel] [patch] kern.ps_showallprocs has o [2002/08/27] bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports o [2002/08/29] bin/42162 qa [sysinstall] installation crashes, md0c f o [2002/08/30] docs/42182 trhodes Making Dedicated Mode disks doc out of da o [2002/08/30] bin/42217 libdisk segfaults with 1024 bytes/sector o [2002/09/01] kern/42274 [kernel] [patch] Convert defined variable o [2002/09/02] bin/42336 [PATCH] ISO-fication of /usr/src/contrib/ o [2002/09/03] bin/42386 cleaning code from warnings in libkvm o [2002/09/03] bin/42387 cleaning code of librpcsvc from warnings o [2002/09/04] kern/42422 dbm_delete returns -1 instead of 1 when t o [2002/09/04] kern/42429 [libc] [patch] hash_action called with HA o [2002/09/05] kern/42442 problem in idlequeue/debugging mode ? o [2002/09/06] kern/42461 mdodd if_wi_pci.c,if_wi_pccard.c lack device_re s [2002/09/06] kern/42466 emulation [linux] linux: 'ipc' typ=258 not implemen o [2002/09/06] bin/42468 mount_smbfs incorrectly handled configura o [2002/09/06] bin/42469 After mounting by mount_smbfs directories f [2002/09/08] kern/42564 multimedia [sound] record bug with emu10k1 driver f [2002/09/10] kern/42638 multimedia [sound] CS4326/4327 (MSS) buggy output pl o [2002/09/11] bin/42663 pw(1): pw useradd assigns unique UID's to o [2002/09/13] kern/42728 small many problems in src/usr.sbin/ppp/* afte o [2002/09/14] i386/42766 i386 [vm] [patch] proposal to perform reboot v o [2002/09/15] bin/42803 tconv, tic, captoinfo binaries missing fr o [2002/09/18] bin/42934 qa [sysinstall] installation procedure on in o [2002/09/19] kern/42956 [libc] dlclose gives "invalid shared obje o [2002/09/19] bin/42974 [patch] syslogd(8): add ISO 8601 date for p [2002/09/20] bin/43139 bms /sbin/route -host option doesn't always s o [2002/09/21] kern/43154 [if_tun] [patch] tunwrite() does not allo o [2002/09/22] i386/43262 i386 [hang] command 'shutdown -r' (also reboot o [2002/09/25] kern/43355 idad driver will work if logical drives d o [2002/09/25] bin/43367 incorrect report from 'who' after 'shutdo o [2002/09/25] bin/43368 krion pkg_create fails if target directory does o [2002/09/25] bin/43372 Broken struct ufs_args in ufsmount.h o [2002/09/27] bin/43434 New option to 'dmesg' which allow to disp o [2002/09/29] docs/43470 blackend Solid State / x109 article out of date. o [2002/09/29] kern/43474 [nfs] [patch] dhcp.* values not set in ke s [2002/09/29] bin/43497 mount(8): mount -t nfs -> crunchgen incom o [2002/09/30] conf/43500 rc.syscons "allscreens" improvements o [2002/09/30] i386/43539 i386 [fdc] Cannot mout floppy on Compaq Prolia o [2002/10/02] kern/43577 [kernel] [patch] feature request: new ker o [2002/10/02] bin/43582 passwd(1) fails on nonexistent users o [2002/10/03] kern/43611 [crypto] [patch] static-ize some symbols o [2002/10/03] kern/43616 [zlib] [patch] static-ize some functions o [2002/10/04] docs/43651 doc stab(5) incorrectly states to include jus o [2002/10/05] kern/43716 [puc] [patch] puc driver does not recogni s [2002/10/07] ports/43771 ports-bugs LaTeX ports mixed between print and textp o [2002/10/08] bin/43819 changed truss output for utrace calls o [2002/10/08] docs/43823 doc [PATCH] update to environ(7) manpage o [2002/10/08] misc/43825 qa please remove object files in source (src o [2002/10/09] bin/43857 isdn [patch] conflicting types in /usr/src/usr o [2002/10/09] docs/43861 doc non-trivial typo in wicontrol man page o [2002/10/11] kern/43905 [headers] [patch] kqueues: EV_SET(kevp++, o [2002/10/11] kern/43916 [ex] [hang] Olicom OC-2220 (PC-card) hang o [2002/10/11] docs/43941 doc Rationale for Upgrade Sequence o [2002/10/14] docs/44034 trhodes Multiple sysctl variables are not documen o [2002/10/14] kern/44058 [MAKEDEV] [patch] /dev/ch* is created wit o [2002/10/15] docs/44074 doc ln(1) manual clarifications [patch] o [2002/10/15] kern/44098 RealTec-based NIC initialization problem o [2002/10/15] bin/44122 tun0 gets a second ip adress after a disc o [2002/10/17] conf/44170 Add ability to run multiple pppoed(8) on a [2002/10/17] www/44181 garys www "Release Information" organization o [2002/10/18] bin/44212 Unify 'recursive' options -r and -R o [2002/10/19] kern/44267 [sio] [patch] One more modem PNP id for / o [2002/10/19] conf/44286 roberto /etc/defaults/rc.conf uses the obsolete n o [2002/10/20] kern/44293 thomas Unable to access audio CD under Linux emu o [2002/10/22] kern/44365 [headers] [patch] introduce ulong and unc o [2002/10/22] kern/44372 roberto some kernel options prevent NTP clock syn o [2002/10/23] standards/44425standards getcwd() succeeds even if current dir has o [2002/10/26] kern/44497 NIC Lags? o [2002/10/26] kern/44500 [bge] [patch] bge(4): add AC1001 Gigabit o [2002/10/29] kern/44580 [nfs] NFS updates file access time when f o [2002/10/29] kern/44587 scsi dev/dpt/dpt.h is missing defines required o [2002/10/29] docs/44594 doc Handbook doesn't mention drivers.flp for f [2002/10/30] conf/44717 dougb update login.conf and unify login capabil o [2002/11/04] bin/44894 markm telnet(1): as a local non-root user and r o [2002/11/05] bin/44915 qa [sysinstall] 'choose installation media' o [2002/11/06] gnu/44984 Send-pr can use environmental variable $F o [2002/11/06] docs/45011 trhodes style(9): '->' and '.' don't require spac o [2002/11/07] kern/45026 [nis] Can't set next password change date o [2002/11/08] gnu/45137 peter [PATCH] CVS 1.11.2 cannot reuse log messa o [2002/11/10] bin/45193 [PATCH] truss can't truss itself o [2002/11/11] ports/45216 joerg devel/bcc port is incomplete o [2002/11/11] conf/45222 daily rejected mail hosts report too long o [2002/11/12] conf/45226 mtm Fix for rc.network, ppp-user annoyance o [2002/11/12] bin/45229 restore(8) -i: ls reports mising files as o [2002/11/13] bin/45254 qa [sysinstall] [patch] sysinstall installs f [2002/11/14] ports/45289 hrs ja-dvi2ps-3.2 does not handle \special co o [2002/11/14] kern/45293 kevent denies to observe /dev/tty o [2002/11/16] bin/45333 [PATCH] New option -r for chown and chgrp o [2002/11/18] ports/45414 portmgr make update in /usr/ports missing default o [2002/11/19] bin/45486 Support for human readble (-h/-H) output s [2002/11/21] bin/45547 sos a patch to make burncd handle .wav files. a [2002/11/22] bin/45584 read builtin function of sh does not read o [2002/11/23] bin/45608 qa [sysinstall] install should config all et s [2002/11/23] ports/45613 portmgr make update doesn't o [2002/11/24] kern/45684 systat -vmstat reports "alternate system o [2002/11/25] bin/45701 markm spelling error in rogue o [2002/11/25] conf/45704 [PATCH] request to change cp866b font to o [2002/11/25] bin/45729 make rbootd transfere the default file if o [2002/11/27] kern/45793 [headers] [patch] invalid media subtype a o [2002/11/28] bin/45830 nectar [kerberos] KDC has problems when listenin p [2002/11/30] conf/45874 ache [PATCH] FreeBSD does not know about ca_ES o [2002/12/01] bin/45896 dwmalone setnetgrent() should return error code o [2002/12/02] docs/45940 doc burncd missing info o [2002/12/07] conf/46062 kris Remove skel from BSD.root.dist. o [2002/12/09] i386/46113 i386 [bus] [patch] busspace bugs in parameter o [2002/12/09] standards/46119standards Priority problems for SCHED_OTHER using p o [2002/12/10] kern/46159 ipfw [ipfw] [patch] ipfw dynamic rules lifetim o [2002/12/10] bin/46163 gad lpc problem. Only root can modify despit o [2002/12/11] docs/46196 doc Missing return value in (set_)menu_format o [2002/12/13] bin/46235 rwatson [sysinstall] NTP servers for Finland requ o [2002/12/16] docs/46291 doc correlation between HZ kernel config para o [2002/12/16] docs/46295 doc please add information to Nvi recovery em o [2002/12/17] bin/46328 gad patch for lpd o [2002/12/19] kern/46368 [isa] [patch] MAXDEP in isa/pnpparse.c is s [2002/12/19] bin/46382 ps(1) could use a "repeat" mode o [2002/12/20] conf/46409 Certain periodic scripts check broken NFS o [2002/12/21] standards/46441standards /bin/sh does not do parameter expansion i o [2002/12/22] conf/46453 [INTERNATIONALIZATION] cons25l2, ISO8859- o [2002/12/31] conf/46645 [PATCH] rc.shutdown state table saving ha a [2003/01/03] docs/46709 peter tables in terminfo.5 are broken s [2003/01/04] conf/46746 No way to set link addresses through rc.c o [2003/01/04] bin/46758 moused enhancements o [2003/01/09] bin/46888 gad Add script run hook to newsyslog(8) o [2003/01/09] bin/46905 qa [sysinstall] FreeBSD 5.x cannot be instal s [2003/01/10] conf/46913 darrenr ipf denied packets of security run output o [2003/01/10] bin/46925 sysctl -a goes into an infinite loop... o [2003/01/11] kern/46973 [syscons] [patch] syscons virtual termina s [2003/01/13] ports/47018 sf Teach ftp/wget new very useful feature - o [2003/01/19] bin/47204 qa [sysinstall] base + XFree86 install fails o [2003/01/19] i386/47223 i386 [pcvt] [PATCH] pcvt(4), ESC sequences do o [2003/01/20] bin/47235 top reports inaccurate cpu usage f [2003/01/20] kern/47243 multimedia [sound] Onboard CMedia CMI8738 playback n o [2003/01/21] kern/47311 mdodd [patch] Kernel support for NVIDIA nForce2 o [2003/01/21] bin/47314 qa [sysinstall] wish: install should not req o [2003/01/22] bin/47350 rc.network supports only one ppp profile f [2003/01/22] kern/47352 multimedia [sound] pcm/ac'97, dsp device busy o [2003/01/22] i386/47376 i386 [pcvt] [PATCH], pcvt(4), COLOR_KERNEL_FG, o [2003/01/23] bin/47387 [PATCH] gprof -K still requires "a.out" a f [2003/01/25] kern/47452 le [vinum] df(1) reports filesystem empty wh o [2003/01/27] bin/47540 Make natd configurable in running state w o [2003/01/27] conf/47566 le [vinum] [patch] add vinum status verifica o [2003/01/28] docs/47575 doc Clarify requirements for IPFW2 in STABLE o [2003/01/28] bin/47576 [PATCH] factor(6)ing of negative numbers o [2003/01/28] docs/47594 doc [PATCH] passwd(5) incorrectly states allo o [2003/01/28] bin/47596 daily security run complains if timezone o [2003/02/02] bin/47815 stty -all should work. o [2003/02/02] docs/47818 doc ln(1) manpage is confusing o [2003/02/04] bin/47908 qa [sysinstall] /stand/sysinstall can't disp o [2003/02/06] docs/47991 trhodes Handbook section on upgrading kernel says o [2003/02/08] docs/48101 doc There's no documentation on the fixit dis o [2003/02/09] conf/48105 /etc/disktab has incomplete duplication o o [2003/02/09] misc/48110 [patch] change CVSROOT/log_accum.pl to no o [2003/02/10] conf/48133 /etc/rc: improved vi recovery notificatio o [2003/02/11] kern/48172 ipfw [ipfw] [patch] ipfw does not log size and o [2003/02/12] conf/48195 /var/db/mounttab error on diskless boot f [2003/02/14] ports/48281 obrien Patch editors/vim to use fetch instead of o [2003/02/15] bin/48309 pppoe connections fail to establish if th f [2003/02/15] bin/48318 mtm Segmentation fault in sh with attached sc o [2003/02/16] kern/48338 multimedia [sound] pcm audio driver hogs /dev/dsp?.? o [2003/02/16] usb/48342 usb [PATCH] usbd dynamic device list. o [2003/02/18] bin/48443 mtm /usr/sbin/periodic executes too many file o [2003/02/18] conf/48444 [patch] security.functions: count connect o [2003/02/19] kern/48471 pjd [kernel] [patch] new feature: private IPC o [2003/02/22] conf/48566 [PATCH] /etc/defaults/make.conf stales af o [2003/02/23] kern/48599 [syscons] [patch] syscons cut-n-paste log o [2003/02/23] bin/48603 Getopt is broken. Patch included. o [2003/02/24] gnu/48638 [PATCH] some bug fixs in libdialog o [2003/02/25] alpha/48676 alpha Changing the baud rate of serial consoles o [2003/03/03] conf/48870 [PATCH] rc.network: allow to cancel inter o [2003/03/03] kern/48894 [nfs] Suggested improvements to the NFS r s [2003/03/06] bin/48962 des [PATCH] modify /usr/bin/fetch to allow ba o [2003/03/06] kern/48976 [modules] nwfs.ko oddity o [2003/03/06] docs/48980 doc [PATCH] nsgmls -s errors and sect. 3.2.1 o [2003/03/06] bin/48989 qa [sysinstall] Sysinstall's partition edit a [2003/03/07] bin/49023 gad [patch] to lpd(8) (printjob.c) to pass so o [2003/03/08] kern/49039 add support for RS485 hardware where dire o [2003/03/10] kern/49086 ipfw [ipfw] [patch] Make ipfw2 log to differen f [2003/03/12] ports/49955 portmgr [PATCH] bsd.port.mk: add target to automa o [2003/03/12] kern/49957 naddy CRC32 generator should be the common rout o [2003/03/18] misc/50106 [patch] make 'make release' more flexible o [2003/03/19] bin/50118 grog calendar(1) dumps core if there is ./cale p [2003/03/21] conf/50160 ache sl_SI.ISO8859-2 collation sequence is wro o [2003/03/23] docs/50211 doc [PATCH] Fix textfile creation p [2003/03/24] docs/50248 ceri New FreeBSD books o [2003/03/25] bin/50300 Make the loader's use of terminal-control o [2003/03/26] bin/50310 [libalias] [patch] natd / libalias fix to p [2003/03/27] bin/50328 kris ctm_smail doesn't handle large deltas wel o [2003/03/27] bin/50331 Changing uid with pw causes duplicate use o [2003/03/27] conf/50365 [PATCH] rc.sysctl cannot handle values co o [2003/04/01] kern/50526 [kernel] [patch] update to #! line termin o [2003/04/03] bin/50569 /bin/sh doesn't handles ${HOME}/.profile o [2003/04/03] docs/50573 doc return values for res_query/res_search/re o [2003/04/06] bin/50656 /bin/cp - wrong error on copying of multi o [2003/04/07] docs/50677 doc [PATCH] update doc/en_US.ISO8859-1/books/ o [2003/04/07] kern/50687 ioctl(.., CDIOCCAPABILITY, ...) always re p [2003/04/08] docs/50735 brueffer Small diff to the developers handbook & o o [2003/04/09] bin/50749 ipfw [ipfw] [patch] ipfw2 incorrectly parses p o [2003/04/10] docs/50773 jmg [patch] NFS problems by jumbo frames to m o [2003/04/12] alpha/50868 alpha fd0 floppy device is not mapped into /dev p [2003/04/14] bin/50924 [patch] vmstat(8): "vmstat -f" says "unim f [2003/04/14] i386/50929 i386 AMD K6-2+ processor is identified incorre o [2003/04/14] bin/50949 BUG: mtree doesn't honor the -P when chec o [2003/04/14] conf/50956 daily_status_disks_df_flags in /etc/defau o [2003/04/15] bin/50971 du(1) doesn't understand UF_NODUMP flag o [2003/04/15] bin/50988 [Patch] find -size -- express argument in o [2003/04/15] kern/51009 [aue] [patch] buggy aue driver fixed. o [2003/04/16] bin/51070 [patch] add -p option to pom(6) p [2003/04/17] kern/51082 bms FEATURE: More descriptive message on drop o [2003/04/18] kern/51120 MSGBUF_SIZE doesn't work in makefiles a [2003/04/18] docs/51133 murray RSH environmental variable not described s [2003/04/18] bin/51137 [patch] config(8) should check if a sched o [2003/04/18] kern/51145 multimedia [sound] Audio Slows during Heavy I/O o [2003/04/19] bin/51148 Control the cache size for pwd_mkdb to sp f [2003/04/19] ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILE o [2003/04/21] bin/51205 dwmalone openssl in base system is not compiled th o [2003/04/22] bin/51296 grog calendar wrong for dates based on day+-nu o [2003/04/27] docs/51480 dds Multiple undefined references in the Free o [2003/04/28] bin/51488 Compat patch: more(1) allowed filename to p [2003/04/28] conf/51504 ache New file: src/share/mklocale/zh_CN.GBK.sr f [2003/05/01] ports/51663 roam [PATCH] mail/vpopmail fix for using vmodu p [2003/05/03] conf/51729 ache A patch that can make freebsd support zh_ o [2003/05/06] docs/51875 doc [patch] atkbd(4) adjustment o [2003/05/06] docs/51891 doc DIAGNOSTICS in ed driver manpage don't ma o [2003/05/07] conf/51920 Collation for no_NO.ISO8859-1 o [2003/05/07] docs/51921 doc ls(1) manpage lacks some information abou o [2003/05/08] ports/51947 mharo Analog port does not include anlgform.htm o [2003/05/08] kern/51958 usb [usb] [patch] update for urio driver o [2003/05/10] kern/52026 usb [usb] feature request: umass driver suppo o [2003/05/11] docs/52071 doc [PATCH] Add more information about soft u o [2003/05/13] bin/52190 dwmalone [Patch] decode more syscalls in truss o [2003/05/14] misc/52255 small picobsd build script fails under FreeBSD o [2003/05/14] misc/52256 small picobsd build script does not read in use o [2003/05/15] kern/52258 imp pccard non-functional, repeated "card ins o [2003/05/15] bin/52271 qa [sysinstall] sysinstall panics in machine o [2003/05/19] i386/52427 i386 DVD replay under MSI "655 MAX" mobo inter o [2003/05/19] docs/52448 simon [patch] Misc man page reference fixes o [2003/05/20] bin/52469 ppp: Multiple devices using UDP don't wor o [2003/05/21] bin/52517 murray New functionality for /usr/bin/Mail f [2003/05/23] bin/52601 mbr [PATCH] rpc.yppasswdd fails if master.pas o [2003/05/23] kern/52623 [ex] [patch] IRQ error in driver for the o [2003/05/26] ports/52706 portmgr [patch] bsd.port.mk issues warning if a s o [2003/05/27] kern/52725 [PATCH] installincludes for kmods f [2003/05/28] bin/52746 tcsh fails to handle large arguements o [2003/05/28] kern/52752 [ichsmb] [patch] SMBus controller on ICH4 o [2003/05/28] kern/52764 Impossible to build kernel with COPTFLAGS s [2003/05/28] ports/52765 portmgr [PATCH] Uncompressing manual pages may fa o [2003/05/29] bin/52782 user ppp dumps core when doing pppctl "sh s [2003/05/31] bin/52826 krion Feature Request: Adding Timestamps to pkg o [2003/06/01] i386/52835 pdeuskar [em] em driver does not work with mobile- o [2003/06/03] kern/52907 phk [libc] [patch] more malloc options for de s [2003/06/03] ports/52917 portmgr [PATCH] bsd.port.mk: update default value p [2003/06/05] kern/52960 jmg [kbd] kbdcontrol macros don't work when l o [2003/06/05] kern/52971 bad macro LIST_HEAD in /usr/include/sys/q o [2003/06/06] kern/52980 mbr [dc] [patch] dc driver fails to init Inte o [2003/06/08] usb/53025 usb [ugen] [patch] ugen does not allow O_NONB o [2003/06/10] bin/53131 qa [sysinstall] "ALL" could not turn check B o [2003/06/13] kern/53265 imp Make Sierra A555 work in FreeBSD o [2003/06/13] docs/53271 hmp the bus_dma man page fails to document al o [2003/06/13] bin/53288 tail will sometimes display more lines th o [2003/06/15] bin/53341 qa [sysinstall] [patch] dump frequency in sy p [2003/06/16] bin/53377 [PATCH] su does not return exit status of o [2003/06/17] kern/53417 multimedia [sound] Bad Recordings on AC97 onboard au o [2003/06/19] bin/53475 cp(1) copies files in reverse order to de o [2003/06/19] kern/53506 [partial patch] support gzipped modules o [2003/06/19] bin/53520 su to another user does not update utmp o [2003/06/20] bin/53560 logging domain names in wtmp is retarded o [2003/06/21] docs/53575 doc Change to Handbook Section 20.9 o [2003/06/21] docs/53596 doc Updates to mt manual page o [2003/06/24] www/53676 simon [patch] Don't make people contact doc@ fo o [2003/06/24] standards/53682le [PATCH] add fuser(1) utility o [2003/06/25] docs/53732 doc quota output and man page do not document o [2003/06/26] docs/53751 hmp bus_dma(9) incorrectly documents BUS_DMA_ a [2003/06/28] bin/53870 das C++ undeclares standard math functions li o [2003/06/29] bin/53899 mktime gives wrong result in Central time p [2003/07/01] conf/53944 [PATCH] ARMSCII-8 (Armenian) LOCALE and C o [2003/07/01] kern/53987 [smbfs] smbfs can't access to files with o [2003/07/02] docs/54009 trhodes Clarify the location of the splash image o [2003/07/02] bin/54026 bms [patch] Add support for non-standard port o [2003/07/03] kern/54049 multimedia [sound] Sound driver reports device busy o [2003/07/03] kern/54078 multimedia [sound] Sound Plays ~10% Slow [4.8] o [2003/07/06] bin/54141 wrong behavour of cu(1) o [2003/07/07] conf/54170 error from weekly periodic script 330.cat s [2003/07/07] bin/54185 rwatson UFS2 filesystem ACL flag not enforced o [2003/07/08] kern/54220 [PATCH] /usr/src/Makefile has wrong instr o [2003/07/09] bin/54274 udp-proxy support is not implemented in l o [2003/07/11] bin/54365 [PATCH] add -u option to install(1) for S o [2003/07/11] kern/54383 net [nfs] [patch] NFS root configurations wit o [2003/07/13] kern/54439 [sysctl] [patch] Protecting sysctls varia o [2003/07/13] docs/54451 doc [patch] i386_{get|set}_ldt manual page is o [2003/07/14] docs/54461 kensmith Possible addition to Handbook o [2003/07/17] bin/54594 Apply regexps to the entire variable -- a o [2003/07/18] kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-inde o [2003/07/21] bin/54683 sh, redundant history o [2003/07/22] docs/54752 hmp bus_dma explained in ISA section in Handb o [2003/07/23] bin/54784 find -ls wastes space o [2003/07/25] standards/54833standards [pcvt] more pcvt deficits o [2003/07/25] standards/54839standards [pcvt] pcvt deficits s [2003/07/26] bin/54878 incorrect divisor in /usr/bin/jot -r o [2003/07/26] docs/54879 doc man 1 jot, -r description o [2003/07/26] kern/54884 mckusick FreeBSD -stable and -current free space h o [2003/07/27] bin/54891 libalias/natd and exporting connection-in o [2003/07/27] bin/54897 [PATCH] -y flag for mount_mfs f [2003/07/28] kern/54981 sanpei QUIRK: Add support for Lexar 256MB USB dr o [2003/07/29] conf/55015 [patch] 700.kernelmsg: Security check out o [2003/07/30] kern/55031 [libc] getgrent() failure with large grou o [2003/07/31] standards/55112standards glob.h, glob_t's gl_pathc should be "size o [2003/08/01] kern/55163 [jail] [patch] hide kld system details fr o [2003/08/03] bin/55215 le [PATCH] add wu-ftpd style xferlog format o [2003/08/08] misc/55387 [patch] users LD_LIBRARY_PATH can interfe o [2003/08/08] gnu/55394 marcel GDB on FreeBSD 4.8: Deprecated bfd_read. o [2003/08/08] kern/55395 matk ICH sampling rate changes after resume fr o [2003/08/11] conf/55470 [pccard] [patch] new pccard.conf entry (I o [2003/08/12] docs/55482 doc DUMP has access to block devices in a JAI s [2003/08/13] ports/55515 portmgr [patch] extract perl stuff from bsd.port. o [2003/08/13] bin/55539 [patch] Parse fstab(5) with spaces in pat o [2003/08/13] bin/55546 cdcontrol(1) play tr m:s.f interface is p o [2003/08/17] ports/55669 nobutaka emacs20 and emacs21 override each other a o [2003/08/20] kern/55793 [dc] Flaky behavior of if_dc when initial o [2003/08/20] kern/55802 Make kernel.GENERIC suitable for diskless o [2003/08/21] kern/55835 emulation [linux] [patch] Linux IPC emulation missi o [2003/08/21] i386/55838 i386 [kbd] [patch] Dual characters from keyboa o [2003/08/21] ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to u o [2003/08/22] docs/55883 kensmith [patch] handbook advanced-networking/chap o [2003/08/24] conf/55916 Change to /etc/rc.network & /etc/defaults o [2003/08/24] kern/55917 tun# devices cannot be created in 4.8-STA p [2003/08/24] docs/55925 roam mt, mtio, tcopy man pages refers to *rsa o [2003/08/24] gnu/55936 send-pr does not set mail envelope from o [2003/08/26] kern/55984 ipfw [ipfw] [patch] time based firewalling sup s [2003/08/26] bin/56012 [MAKEDEV] [patch] MAKEDEV does not allow o [2003/08/28] usb/56095 usb [usb] [patch] QUIRK: Apacer Pen Drive fai o [2003/08/30] kern/56165 bms if_baudrate is not correct for rl, xl, dc o [2003/08/31] kern/56245 [bktr] Distorted and choppy video with bk o [2003/08/31] bin/56249 obrien lukemftpd has two bugs (motd, munged utmp o [2003/08/31] kern/56250 [ums] [patch] ums(4) doesn't work with MC f [2003/09/02] ports/56301 daichi portupgrade: -O ineffective o [2003/09/04] bin/56447 Extend mt command for AIT-2 tape drives o [2003/09/04] kern/56451 /compat/linux/proc/cpuinfo gives wrong CP o [2003/09/05] standards/56476standards cd9660 unicode support simple hack o [2003/09/07] gnu/56554 re add Cc: maintainer feature to send-pr o [2003/09/07] bin/56558 [PATCH] locate(1) cannot be safely used w o [2003/09/09] kern/56632 MTIO incorrect mt_fileno status after MTE o [2003/09/09] bin/56648 le [PATCH] enable rcorder(8) to use a direct o [2003/09/10] kern/56664 bad file# in MTIO status buffer after MTE o [2003/09/11] kern/56720 [libc] feature request: UNICODE support i o [2003/09/12] conf/56736 mtm [PATCH] rcNG: enable packages to particip f [2003/09/16] ports/56928 java jce-aba port should install to $JAVA_HOME o [2003/09/16] conf/56934 rc.firewall rules for natd expect an inte o [2003/09/16] docs/56936 hmp [patch] articles/java-tomcat: add applica o [2003/09/17] conf/56940 pccard.conf entry for PCET10-CL causes sy o [2003/09/17] bin/56952 re [sysinstall] floppy install error s [2003/09/18] ports/56980 portmgr unprivileged user, extracting of tarballs a [2003/09/18] docs/56981 peter man terminfo(5) from libncurses does not o [2003/09/19] bin/57018 le [PATCH] convert growfs to use libufs(3) o [2003/09/19] bin/57024 a new option for xargs(1) -- only treat \ o [2003/09/19] bin/57026 [PATCH] mount_cd9660(8): there is no way o [2003/09/20] kern/57036 No media detected by 3c905b-tx on 4.9-rel o [2003/09/20] bin/57045 trpt(8) option -t was disabled on -curren o [2003/09/21] bin/57054 let test(1) compare the mtime of a file t s [2003/09/22] bin/57088 [cam] [patch] for a possible fd leak in l o [2003/09/22] bin/57089 "w" does not honor the -n option o [2003/09/24] docs/57153 doc S_IRWXU missing in fstat(2) man page? o [2003/09/26] kern/57230 [psm] [patch] psm(4) incorrectly identifi o [2003/09/26] amd64/57250 obrien Broken PTRACE_GETFPREGS and PTRACE_SETFPR o [2003/09/26] ports/57259 portmgr [patch] Building a port as root using an o [2003/09/27] standards/57295harti make's handling of MAKEFLAGS is not POSIX o [2003/09/27] docs/57298 blackend [patch] add using compact flash cards inf o [2003/09/30] docs/57388 doc INSTALL.TXT enhancement: mention ok promp s [2003/09/30] bin/57407 bms [patch] Better NTP support for dhclient(8 o [2003/10/01] misc/57464 [boot] loader(8) seems to confuse files [ o [2003/10/01] kern/57469 scsi [scsi] [patch] Quirk for Conner CP3500 o [2003/10/02] ports/57498 portmgr HEIMDAL_HOME should be defined in src or s [2003/10/02] ports/57502 ports-bugs ports that define USE_* too late o [2003/10/02] conf/57517 add parameter for /etc/periodic/daily/210 o [2003/10/03] kern/57522 [PATCH] New PID allocater algorithm from p [2003/10/03] docs/57541 trhodes Some suggestions for the Basics chapter o o [2003/10/04] docs/57569 doc error on gensetdefs(8) man page p [2003/10/06] bin/57630 lptcontrol gives "device busy" if device o [2003/10/06] bin/57641 dd [patch] missing option in mount_mfs(8) a [2003/10/07] kern/57696 [nfs] NFS client readdir terminates prema o [2003/10/07] bin/57715 [patch] tcopy(1) enhancement o [2003/10/08] conf/57748 [patch] rc.network doesn't allow for -a i a [2003/10/12] standards/57911tjr fnmatch ("[[:alpha:]]","x", FNM_PATHNAME) o [2003/10/13] docs/57926 doc amd.conf.5 poorly format as it has both m o [2003/10/13] docs/57974 doc man page apropos for select macros (FD_SE o [2003/10/13] kern/57976 simple kernel DDB enhancement o [2003/10/13] docs/57978 doc Type miss of GPIB in Hardware Notes o [2003/10/14] bin/58008 qa [sysinstall] [patch] sysinstall postfix i o [2003/10/14] bin/58012 Multihomed tftpd enhancement o [2003/10/16] docs/58111 doc Handbook 12.4.3 Rebuilding ATA RAID1 Arra o [2003/10/18] docs/58202 kensmith handbook doesn't mention kldload'ness of o [2003/10/18] conf/58206 [Patch] 460.status-mail-rejects incompati o [2003/10/20] bin/58293 vi replace with CR (ASCII 13) doesn't wor o [2003/10/22] kern/58373 mckusick [ufs] ufs inconsistency between 4.9-RC an o [2003/10/22] bin/58390 bsdlabel fails to display an error messag o [2003/10/24] bin/58483 [patch] mount(8): allow type special or n o [2003/10/24] kern/58497 sysctl knob to return current process' ji f [2003/10/25] kern/58529 dwmalone [libpcap] [patch] RDWR bpf in pcap. o [2003/10/26] ports/58545 joerg devel/avr-gcc: fix libintl and libiconv d o [2003/10/26] conf/58557 Summer/Winter-time change causes daily cr o [2003/10/26] gnu/58583 kan gcc.1, cpp.1 and gcov.1 manpages are outd o [2003/10/27] conf/58595 Default NTP configuration o [2003/10/28] docs/58615 doc update for Vinum chapter of Handbook: des o [2003/10/28] gnu/58656 marcel gdb not ready for prime time o [2003/10/29] standards/58676standards grantpt(3) alters storage used by ptsname o [2003/10/29] conf/58680 dougb [PATCH] RCNG: shouldn't ldconfig be start o [2003/10/29] bin/58696 /sbin/natd feature request & possible pat o [2003/10/30] docs/58710 doc killpg(2) contains an error regarding sen o [2003/10/31] i386/58784 i386 [ata] ATA does not work in DMA mode (ASUS o [2003/11/01] kern/58803 [kernel] [patch] kern.argmax isn't change o [2003/11/04] conf/58939 [patch] dumb little hack for /etc/rc.fire o [2003/11/05] kern/58967 Kernel kills processes in spite of cputim o [2003/11/05] bin/58970 truss coredumps for the no significant re o [2003/11/07] docs/59044 doc doc.docbook.mk does not properly handle a o [2003/11/12] bin/59207 uustat list limit of 201 jobs o [2003/11/12] kern/59208 matk [sound] [patch] reduce pops and crackles o [2003/11/12] bin/59220 obrien systat(1) device select (:only) broken o [2003/11/13] docs/59240 blackend handbook update: linux MATLAB s [2003/11/13] ports/59254 ports-bugs ports that write something after bsd.port o [2003/11/14] kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_ f [2003/11/14] ports/59292 hrs dvips one line paper sizes broken? o [2003/11/15] www/59307 remko [patch] xml/xsl'ify & update publications o [2003/11/19] kern/59456 fdescfs stat / compress creates only empt o [2003/11/19] docs/59477 doc Outdated Info Documents at http://docs.fr o [2003/11/20] bin/59530 strange bug in /bin/sh o [2003/11/21] bin/59551 marcel Problem with GDB on latest -CURRENT f [2003/11/21] ports/59553 hrs teTeX installs texdoctk without depending o [2003/11/21] bin/59564 Added an option (-S) to from command to a o [2003/11/23] conf/59600 [PATCH] Improved us.emacs.kbd mapping o [2003/11/23] kern/59624 [ata] [patch] HightPoint HPT371 support f o [2003/11/26] kern/59698 [kbd] [patch] Rework of ukbd HID to AT co o [2003/11/26] bin/59708 qa [sysinstall] [patch] add sSMTP support fo o [2003/11/27] bin/59730 isdnd crashes with signal 11 if cannot cr o [2003/11/27] docs/59735 kensmith Adding a reference to Icelandic Rsync o [2003/11/27] docs/59736 kensmith Updating size of archives s [2003/11/27] kern/59739 [libc] rmdir(2) and mkdir(2) both return o [2003/11/28] bin/59772 ftpd(8)/FreeBSD 5: support for tcp_wrappe o [2003/11/28] bin/59774 ftpd(8)/FreeBSD 5: syslog facility may be o [2003/11/28] bin/59775 ftpd(8)/FreeBSD 5: incorrect reply for "u p [2003/11/29] conf/59799 New locale: zh_HK.Big5HKSCS o [2003/11/29] kern/59806 tackerman [em] [patch] Suspend/resume breaks em0 o [2003/11/30] kern/59814 FreeBSD mknod refuses to create pipes and o [2003/11/30] docs/59835 doc ipfw(8) man page does not warn about acce f [2003/11/30] i386/59854 anholt [agp] [panic] System panics when AMD 762 o [2003/12/02] kern/59896 trm driver is not in GENERIC o [2003/12/02] docs/59900 kuriyama out of date README.txt and .message files o [2003/12/02] kern/59903 [pci] [patch] "pci_find_device" returns [ o [2003/12/03] bin/59922 Toshiba Portege hangs with Eicon DIVA T/A o [2003/12/09] kern/60089 scottl UDF filesystem appends garbage to files o [2003/12/10] conf/60106 /etc/hosts mentions AfriNIC which does no o [2003/12/12] kern/60174 marcel debugging a kernel module in load/attach o [2003/12/12] kern/60183 sobomax [gre] [patch] No WCCPv2 support in gre o [2003/12/15] usb/60248 usb [patch] Problem with USB printer HP Laser a [2003/12/16] kern/60293 bms FreeBSD arp poison patch o [2003/12/16] kern/60307 [pccard] [patch] wrong product id in pcca o [2003/12/17] i386/60319 i386 [hang] read error 34/0 during installatio o [2003/12/18] bin/60350 qa [sysinstall] in Choose Distributions scre o [2003/12/18] misc/60352 [patch] buildworld fails in sysinstall if o [2003/12/21] kern/60448 PF_KEY protocol does not have a correspon o [2003/12/22] misc/60503 [modules] small error in modules installa o [2003/12/22] bin/60510 [patch] change to less(1) for compressed o [2003/12/23] docs/60529 doc resolver(5) man page is badly out of date o [2003/12/24] docs/60544 doc getenv(3) manpage doesn't state the retur o [2003/12/25] kern/60550 silby [kernel] [patch] hitting process limits p f [2003/12/25] ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify o [2003/12/26] kern/60599 multimedia [sound] [partial patch] No sound for ATI o [2003/12/27] bin/60632 UI bug in partition label screen in sysin o [2003/12/27] bin/60636 Enhancement to adduser script. o [2003/12/28] bin/60662 qa [sysinstall] 5.2 Anonymous FTP server out o [2003/12/29] kern/60677 multimedia [sound] [patch] No reaction of volume con o [2003/12/29] kern/60697 [pty] [patch] pseudo-tty hack versus teln f [2003/12/29] kern/60699 DVD Multidrive udma mode autosensed wrong o [2003/12/29] i386/60702 i386 can't boot 5.2-RC2 iso's to install o [2003/12/30] kern/60719 ipfw [ipfw] Headerless fragments generate cryp o [2003/12/30] kern/60737 multimedia [sound] Sound card Turtle Beach Santa Cru o [2003/12/31] kern/60761 multimedia [sound] pcm performance on emu10k1 driver o [2004/01/02] bin/60834 [patch] ftpd(8) send_data()+oldway: anony o [2004/01/03] kern/60874 [feature request] auto-assign devfs rules o [2004/01/04] bin/60892 [patch] added -p option to kldxref(8) to o [2004/01/06] kern/60963 [pecoff] [patch] Win32 Applications abort o [2004/01/06] kern/60982 [pci] [patch] ID for VIA 686A Power Manag o [2004/01/07] i386/61005 i386 [boot] The Boot Manager in FreeBSD 5.2RC o [2004/01/08] docs/61070 doc handbook: Installation docs misleading: o [2004/01/09] kern/61109 [bge] bge on TYAN AMD762-based Thunder/Ti o [2004/01/11] amd64/61209 amd64 ppc0: cannot reserve I/O port range o [2004/01/12] usb/61234 usb [usb] [patch] usbhidaction(1) doesn't sup o [2004/01/12] bin/61239 [patch] bootp enhancement, places the dhc o [2004/01/12] kern/61261 obrien generated header, emu10k1-alsa%diked.h no o [2004/01/12] bin/61264 qa [sysinstall] unable To Use VT100 Terminal o [2004/01/13] conf/61289 /etc/pccard_ether: please use ifn value o o [2004/01/13] kern/61300 [aue] [patch] Enabling HomePNA PHY on aue o [2004/01/13] docs/61301 doc [patch] Manpage patch for aue(4) to enabl o [2004/01/13] i386/61308 i386 Maxproc Limits counts Zombie Processes wh f [2004/01/13] misc/61322 [patch] bsd.dep.mk disallows shell genera o [2004/01/14] i386/61348 i386 Adaptec 1460D PCI SCSI Card does not work o [2004/01/16] bin/61405 cperciva A faster ffs(3) o [2004/01/16] kern/61415 [net80211] [patch] disable broadcast ssid o [2004/01/16] kern/61438 qa [sysinstall] 5.2 nfs tasks running by def o [2004/01/16] i386/61442 i386 Highpoint RocketRAID 1520 uses only UDMA2 s [2004/01/17] ports/61471 ports-bugs Suggested mini-patch to ports/graphics/sa o [2004/01/17] i386/61481 i386 [patch] a mechanism to wire io-channel-ch o [2004/01/17] kern/61497 ups [kernel] [patch] __elfN(map_insert) bug o [2004/01/17] bin/61502 dwmalone Incorrect ip6fw output when adding rules o [2004/01/18] kern/61503 [smbfs] mount_smbfs does not work as non- o [2004/01/18] conf/61504 mtm [patch] New RC script: accf_http o [2004/01/18] i386/61545 i386 5.2 release cannot see NIC on Dell 1750 o [2004/01/19] i386/61579 i386 [hang] sis 645dx is not working (but on t o [2004/01/20] i386/61603 i386 [sysinstall] wrong geometry guessed s [2004/01/20] kern/61622 Intel Pro/100 Intelligent Server Adapter o [2004/01/20] conf/61641 grog Martin Luther King, Jr. Day missing from o [2004/01/21] bin/61666 peter [patch] mount_nfs(8) parsing bug, segment o [2004/01/21] docs/61667 doc Obsolete documentation on FreeBSD PnP f [2004/01/21] kern/61677 Unable to open CDROM tray if boot_cdrom i o [2004/01/21] bin/61690 fsdb seqfaults in cmd. parsing routine a [2004/01/22] kern/61744 andre [netinet] [patch] TCP hangs onto mbufs wi o [2004/01/24] bin/61808 [PATCH] Update RPC prgs to allow binding s [2004/01/24] kern/61810 mounts done within a chroot show up wrong o [2004/01/24] www/61824 www Misleading documentation on FreeBSD insta o [2004/01/24] conf/61847 Additions to file /usr/share/misc/pci_ven o [2004/01/25] i386/61858 bms bus_dmamap_sync with BUS_DMASYNC_POSTREAD o [2004/01/25] docs/61859 doc Incorrect informaiton about trace command o [2004/01/25] kern/61909 5.2-Current fails to notice change of CD o [2004/01/26] bin/61971 k5init --renewable fails o [2004/01/27] bin/61975 ume [PATCH] sync src/usr.sbin/traceroute6.c w o [2004/01/27] bin/61978 [PATCH] sync src/usr.sbin/setkey/token.l a [2004/01/27] ports/61998 roam PostgreSQL support for mail/vpopmail 5.3. o [2004/01/27] i386/62003 i386 [loader] [patch] make /boot/loader "reboo o [2004/01/28] kern/62042 luigi [ipfw] ipfw can't no more reject icmp (ic o [2004/01/29] bin/62077 Make it possible to abbreviate device nam o [2004/01/30] kern/62098 [pccard] [patch] Bad CISTPL_VERS_1 and cl o [2004/01/30] kern/62102 alc obreak update f [2004/01/31] bin/62139 User cannot login through telnet or ssh b o [2004/02/01] bin/62207 ppp crashes with option 'nat punch_fw' wh o [2004/02/02] kern/62257 card reader UCR-61S2B is only half-suppor o [2004/02/03] i386/62288 i386 reopened raid disks on a running system o [2004/02/03] bin/62300 gcc/config/freebsd-spec.h 1.6 is incomple o [2004/02/04] kern/62323 [kbd] Logitech Cordless MX Duo Keyboard/M o [2004/02/04] i386/62324 i386 [bge] Onboard Broadcom BCM5705 controller o [2004/02/04] kern/62333 [dc] syslog: kernel: dc0: discard oversiz o [2004/02/04] bin/62334 vipw doesn't see changes if re-edit for t o [2004/02/05] docs/62402 doc easily circumventable Blade150 problem o [2004/02/06] docs/62412 doc one of the diskless boot methods describe o [2004/02/08] bin/62513 Errant /usr/bin/krb5-config on 4-STABLE p [2004/02/08] gnu/62555 readline 4.3 should be patched o [2004/02/10] ports/62657 portmgr Port linux-jpeg have decreaseed version n o [2004/02/11] bin/62702 qa [sysinstall] backup of /etc and /root dur o [2004/02/11] bin/62711 qa [sysinstall] installation: "Insert Next C o [2004/02/12] docs/62719 doc cross-reference pccardd and devd o [2004/02/12] docs/62724 doc host(1) manpage does not include informat o [2004/02/12] kern/62742 [hang] system "hangs" for a some time whi o [2004/02/12] kern/62746 tjr [smbfs] SMBFS and vfs.usermount. User can f [2004/02/13] ports/62761 portmgr patch for phasing out distinfo files o [2004/02/13] bin/62766 ``systat -vm'' does not work on diskless f [2004/02/14] ports/62829 portmgr Mk file bsd.linux.rpm.mk supporting Linux o [2004/02/14] java/62837 phantom linux-sun-jdk14 executables hang with COM s [2004/02/14] standards/62858standards malloc(0) not C99 compliant o [2004/02/15] kern/62862 multimedia [sound] [patch] fix pcm vchans related cr o [2004/02/15] bin/62885 des pam_radius doesn't maintain multiple stat o [2004/02/15] kern/62890 ups proc pointer set by fork1 can be stale in f [2004/02/17] bin/62965 krion pkg_add -r fails if fetching multiple pac o [2004/02/17] i386/62977 i386 Mouse daemon during install/setup f [2004/02/18] ports/62990 daichi portupgrade fails to use package even wit o [2004/02/18] ports/63018 obrien editors/vim: dependency to ruby/python is o [2004/02/19] bin/63064 strptime fails on %z o [2004/02/19] docs/63084 des Several Man-pages reference non-existant o [2004/02/20] kern/63096 rwatson [mac] [patch] MAC entry point for route m o [2004/02/20] ports/63108 obrien amd64/bento-fix: devel/gdb52 and devel/gd o [2004/02/21] amd64/63188 amd64 [ti] ti(4) broken on amd64 o [2004/02/22] bin/63197 tftp Bus error, core dumped o [2004/02/22] docs/63215 doc Wrong prototypes in mi_switch(9) (ref doc o [2004/02/22] ports/63216 portmgr 'BROKEN' or 'IGNORED' ports exit their "m s [2004/02/22] ports/63238 thierry New port: french/firefox-flp - Mozilla / o [2004/02/24] bin/63319 burncd fixate error o [2004/02/26] bin/63413 dbm_delete return value incorrect o [2004/02/29] conf/63527 AM/PM date format should be localized. o [2004/02/29] www/63551 ceri Lack of DTD in cgi scripts o [2004/02/29] www/63552 remko Validation errors due to CAPs in attribut o [2004/03/01] docs/63570 ceri Language cleanup for the Handbook's DNS s o [2004/03/01] bin/63608 Add a -c option to time(1) to display csh o [2004/03/02] i386/63628 bms [loader] [patch] i386 master boot record o [2004/03/02] bin/63659 /usr/sbin/pw does not honor symlinks in s s [2004/03/03] ports/63716 portmgr [patch] Mk/bsd.port.mk: move sysctl to ${ o [2004/03/04] kern/63746 vmnet0 makes vmnet4096 o [2004/03/04] kern/63768 Must access /dev/acd0c before using /dev/ o [2004/03/05] i386/63815 i386 boot loader waste a lot of time (10 min) o [2004/03/06] usb/63837 usb [uhid] [patch] USB: hid_is_collection() o o [2004/03/07] kern/63863 glebius [netgraph] [patch] feature request: imple s [2004/03/07] kern/63897 makeoptions CONF_CFLAGS are ignored when f [2004/03/09] kern/63982 tackerman em0 hardware checksum offloading causes b o [2004/03/10] bin/64036 Linux application Sophos Mailmonitor not o [2004/03/10] kern/64040 multimedia [sound] crackling sound on 5.2.1-RELEASE o [2004/03/11] kern/64114 [vga] [patch] bad vertical refresh for co o [2004/03/12] bin/64153 mdmfs features via fstab o [2004/03/12] kern/64178 jmg [kqueue] [patch] kqueue does not work wit o [2004/03/13] bin/64198 init(8) may keep zombies o [2004/03/15] ports/64304 portmgr geography category o [2004/03/16] bin/64327 [patch] make(1): document surprising beha o [2004/03/17] kern/64365 acpi ACPI problems o [2004/03/17] conf/64381 qa lo0 not up and no IPs assigned after inst p [2004/03/19] bin/64464 rwatson pam_krb5 module ignores no_ccache option o [2004/03/19] bin/64476 dougb [patch] mergemaster(8): support for keepi p [2004/03/20] ports/64490 obrien link error in manpage of editors/vim o [2004/03/20] kern/64522 3COM 3C920B onboard Asus P4R800-VM not su o [2004/03/22] kern/64556 [sis] if_sis short cable fix problems wit o [2004/03/22] kern/64588 [joy] [patch] Extend joystick driver arch o [2004/03/23] i386/64626 i386 AP initialization problem on GIGABYTE GA- s [2004/03/24] bin/64664 bms Reboot command needs to protect itself fr o [2004/03/26] kern/64772 Mouse Movement Problem o [2004/03/26] kern/64788 nsswitch with ldap and starting ppp on bo o [2004/03/27] docs/64807 doc Handbook section on NAT incomplete o [2004/03/27] bin/64811 systat can't display big numbers in some s [2004/03/29] kern/64875 standards [libc] [patch] [feature request] add a sy o [2004/03/29] kern/64878 tackerman [em] Intel 82547 CSA Driver forces system o [2004/03/30] bin/64921 vmstat -i is not reporting IRQ usage on a o [2004/03/30] ports/64930 kris ports/Tools/portbuild/scripts/makeworld d o [2004/03/31] kern/64971 A squid process larger than 3G o [2004/04/01] bin/65045 ftp doesn't remember binary mode if setti o [2004/04/02] docs/65065 doc improper language ntpd man pages o [2004/04/03] i386/65124 i386 Unable to disable TERM_EMU cleanly o [2004/04/05] kern/65206 adding floppy drive seems to force PIO mo o [2004/04/05] bin/65228 [Patch] Allow rup(1) to parse hostnames f o [2004/04/06] bin/65258 save /etc/rc.firewall from changing for s o [2004/04/07] kern/65278 ups [sio] [patch] kgdb debugger port initiali o [2004/04/07] bin/65299 vi temp path contains double / o [2004/04/08] bin/65306 obrien [patch] Portability fixes for FreeBSD bui f [2004/04/09] ports/65344 portmgr USE_ macros for graphics libraries o [2004/04/09] kern/65355 [pci] [patch] TC1000 serial ports need en o [2004/04/10] ports/65408 trevor patch to shorten 133 DESCR files o [2004/04/10] ports/65409 trevor big whitespace cleanup o [2004/04/11] usb/65436 usb [umass] [patch] add quirk for PNY Attache o [2004/04/12] kern/65448 jhb _mtx_unlock_sleep() race condition if ADA o [2004/04/13] docs/65477 doc Installation Instruction fail to mention o [2004/04/13] bin/65483 vi -r crashes o [2004/04/14] i386/65528 i386 [psm] mouse cursor disapears on moving o [2004/04/14] docs/65530 doc minor improvement to getgrent.3 p [2004/04/15] bin/65557 des passwd uses passwd_format of default logi s [2004/04/15] ports/65587 ports-bugs Update emulators/linux-winetools to 1.30 o [2004/04/16] kern/65627 [i386] [patch] store P3 serial number in o [2004/04/17] bin/65649 gad Add `-u name' option to env(1) o [2004/04/18] bin/65707 scp does not deal with local file copies o [2004/04/19] kern/65769 usb [usb] Call to tcflush(x, TCIFLUSH) stops s [2004/04/20] ports/65794 joe net/ripetools is obsolete o [2004/04/20] bin/65803 gad bin/ps enhancements (posix syntax, and mo s [2004/04/20] ports/65804 portmgr [PATCH] bsd.port.mk is gratuitously slow o [2004/04/20] ports/65828 trevor big whitespace cleanup (see ports/65409) o [2004/04/20] ports/65829 trevor big whitespace cleanup (see ports/65409) a [2004/04/22] docs/65895 murray incorrect "omshell" link in "dhclient" ma f [2004/04/23] ports/65915 portmgr [PATCH] bsd.port.mk: handle interactive c o [2004/04/25] bin/65973 Problem logging in to the NIS slave and N o [2004/04/27] ports/66032 portmgr [PATCH] bsd.port.mk: clean room installat o [2004/04/29] kern/66079 bms route change default causes panic in cert o [2004/04/29] kern/66095 [pam] template_user is broken in pam_radi o [2004/04/30] ports/66109 portmgr [PATCH] bsd.port.mk: inconsistent use of o [2004/04/30] ports/66110 portmgr [PATCH] bsd.port.mk: MLINKS error detecti o [2004/05/03] kern/66185 [twe] twe driver generates gratuitous war o [2004/05/03] kern/66225 [netgraph] [patch] extend ng_eiface(4) co o [2004/05/04] docs/66264 doc [patch] libexec/rtld/rtld.1 typo fixes no o [2004/05/04] docs/66265 doc [patch] Document what -f and LD_TRACE_LOA o [2004/05/04] kern/66268 glebius [socket] [patch] Socket buffer resource l o [2004/05/05] gnu/66279 less(1) -- add support for stty(1) erase2 p [2004/05/05] docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to n o [2004/05/05] docs/66296 doc [patch] contrib/amd/amq/amq.8 uses log_op p [2004/05/06] bin/66311 fenner TCPDUMP ISAKMP payload handling denial-of o [2004/05/07] ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java por o [2004/05/07] docs/66343 doc unlisted supported card on man page for w o [2004/05/07] standards/66357standards make POSIX conformance problem ('sh -e' & o [2004/05/08] ports/66389 portmgr [PATCH] bsd.port.mk: follow MOVED ports o [2004/05/09] kern/66422 multimedia [sound] [patch] no sound on modern Sony V o [2004/05/10] bin/66445 [patch] Add options to last(1) to ignore f [2004/05/10] ports/66476 adamw [NEW PORT] misc/gaim-talkfilters: A neat o [2004/05/10] alpha/66478 alpha unexpected machine check: panic for 4.9, o [2004/05/10] ports/66480 openoffice editors/openoffice-1.1 port uses root's $ o [2004/05/10] docs/66483 doc [patch] share/man/man4/csa.4 grammar nits p [2004/05/10] bin/66492 cpio -o -Hustar creates broken timestamps o [2004/05/11] docs/66505 trhodes escaping '~' and '$' characters in login. o [2004/05/11] standards/66531standards _gettemp uses a far smaller set of filena f [2004/05/11] kern/66547 usb [usb] Palm Tungsten T USB does not initia o [2004/05/12] kern/66564 [xl] 3c920-MV00 PHY detection problem s [2004/05/12] ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/ o [2004/05/12] kern/66589 processes get stuck in "inode" state when o [2004/05/13] bin/66594 marcel gdb dumps core o [2004/05/14] kern/66642 multimedia [sound] pcm0: play: 0: play interrupt tim o [2004/05/16] bin/66677 mv incorrectly copies somedir/.. to ./.. o [2004/05/17] conf/66726 /etc/periodic/security/ 800.loginfail scr o [2004/05/17] bin/66763 mdmfs: sync arguments with those of newfs o [2004/05/17] docs/66768 doc 4_RELENG share/man/man4/ng_one2many.4 MFC o [2004/05/17] docs/66770 doc [patch] share/man/man4/ng_pppoe.4 tyops, o [2004/05/17] docs/66771 imp [patch] usr.sbin/pccard/pccardc/pccardc.8 o [2004/05/17] docs/66775 roam Clarification to committer's guide that p o [2004/05/19] ports/66892 portmgr possible bug in philosophy of ports/MOVED o [2004/05/19] bin/66893 [patch] rpc.yppasswdd(8): Linux NIS clien o [2004/05/20] bin/66941 [patch] gcc2.95 (FreeBSD-specific): fix u o [2004/05/21] kern/66981 Can't read audio CDs with a samsung sw-25 o [2004/05/21] bin/66988 [Patch] apm.c check validation of the ret f [2004/05/21] i386/66997 yar [bge] Problem with Broadcom BCM5705M and o [2004/05/21] i386/67011 mdodd [vpd] [patch] MFC of vpd driver for IBM x o [2004/05/22] bin/67041 "fortune -m" peeks in "fortune" file only o [2004/05/22] i386/67055 i386 [psm] Mouse (wheel) detection problem on o [2004/05/23] docs/67078 doc [patch] MFC of a rtld(1) man page is inco o [2004/05/24] bin/67142 rpc.yppasswdd incorrectly throws errors a o [2004/05/25] bin/67172 w,finger display the remote host incorrec s [2004/05/25] ports/67192 ports-bugs mod_perl-related regressions in the newes o [2004/05/26] bin/67231 [patch] pam_krb5 doesn't honor default fl o [2004/05/27] kern/67242 tackerman [em] [patch] dev/em/if_em.c isn't ctags c o [2004/05/28] bin/67307 ready to import bootstrap_cmds/decomment o [2004/05/28] bin/67308 ready to import bootstrap_cmds/relpath fr o [2004/05/28] kern/67309 acpi zzz reboot computer (ACPI S3) a [2004/05/29] bin/67317 bms [patch] to nfsd.c to make it slightly mor f [2004/05/29] bin/67334 mount_cd9660 gives dscheck: negative b_bl o [2004/05/30] i386/67383 i386 [i386] [patch] do a better job disassembl f [2004/06/01] ports/67436 portmgr patch for bsd.port.mk: GNU_CONFIGURE_PREF o [2004/06/01] ports/67437 portmgr patch for bsd.port.mk: NO_BUILD and PKGNA o [2004/06/02] misc/67502 cvsadm cvs-all commit message did not include al s [2004/06/03] ports/67531 portmgr New spanish virtual category p [2004/06/03] conf/67549 No Cents for es_ES monetdef (Euro) o [2004/06/03] bin/67550 Add BLK_SIZE option to tftpd server o [2004/06/04] www/67554 www man-cgi visual glitch on 3-word titles f [2004/06/04] ports/67562 portmgr patch for bsd.port.mk - USE_BDB, WANT_BDB o [2004/06/04] gnu/67565 SIGPIPE processing in cvs 1.11.5 may lead o [2004/06/04] i386/67578 i386 [kbd] Keyboard error IBM xSeries 335 o [2004/06/04] kern/67580 request to add hints for boot failures f [2004/06/06] kern/67627 phk [panic] gbde kernel panic o [2004/06/07] www/67651 hrs Update early-adopter post-4.10 o [2004/06/07] bin/67687 iostat does not provide read vs. write st s [2004/06/08] kern/67706 [unionfs] cvs update over a union mount s o [2004/06/08] bin/67723 FreeBSD 5.x restore cannot handle other p o [2004/06/09] kern/67763 [pccard] [patch] PCMCIA: MELCO manufactur o [2004/06/10] i386/67773 i386 5.x series - md5 on dev no longer works e f [2004/06/10] docs/67806 doc [patch] Let 5.x users know how to boot in s [2004/06/11] ports/67815 ports-bugs graphics/ImageMagick no longer recognizes o [2004/06/11] i386/67818 bz [sk] driver watchdog timeout issue on asu o [2004/06/11] kern/67830 [smp] [patch] CPU affinity problem with f s [2004/06/11] ports/67832 jdp Change request: net/cvsup (STATIC -> WANT o [2004/06/13] docs/67893 doc boot.8's -m description is insufficient. o [2004/06/13] alpha/67903 alpha hw.chipset.memory: 1099511627776 - thats o [2004/06/14] bin/67943 find(1) fails when current directory is n o [2004/06/16] bin/68014 stty -pendin does not turn off pendin mod o [2004/06/16] bin/68016 Bug in visual bell on console (kbdcontrol o [2004/06/17] bin/68062 standalone repeat(1) command o [2004/06/18] kern/68081 [headers] [patch] sys/time.h (lint fix) o [2004/06/19] conf/68108 [patch] Adding mac-address /conf selector o [2004/06/19] kern/68110 hsu [netinet] [patch] RFC 3522 for -HEAD o [2004/06/19] i386/68117 i386 serious network collisions after NIC "med o [2004/06/19] kern/68122 multimedia [sound] Device busy (/dev/dsp)- insane, n o [2004/06/20] bin/68134 rwatson 'invalid hostname' displayed in w/who out o [2004/06/20] i386/68140 i386 Problem with Sony AIT ATAPI Tape dirve a [2004/06/22] kern/68189 luigi arp -a discloses non-jail interfaces with o [2004/06/22] kern/68192 Cannot use quotas on jailed systems p [2004/06/22] docs/68201 keramida [patch] pthread_atfork(3) man page o [2004/06/23] usb/68232 usb [ugen] [patch] ugen(4) isochronous handli o [2004/06/25] kern/68311 [patch] it is impossible to override defa o [2004/06/25] bin/68312 be able to create fdisk partions using si o [2004/06/25] kern/68315 [ata] [patch] atacontrol(8) addspare for o [2004/06/25] kern/68317 [kernel] [patch] on soft (clean) reboots o [2004/06/25] bin/68328 enable configuration of extra listen sock o [2004/06/27] usb/68412 usb [usb] [patch] QUIRK: Philips KEY013 USB M o [2004/06/27] kern/68435 wpaul xl driver in freebsd 5.x only works if pr o [2004/06/28] bin/68437 conscontrol DEVDIR -> _PATH_DEV fix and m o [2004/06/28] docs/68453 doc [patch] rc.subr.8 o [2004/06/28] kern/68458 Burning DVD causes lots of FAILURE - READ o [2004/06/28] kern/68459 [vfs] [patch] Patches to mknod(2) behave o [2004/06/30] kern/68514 [re] Realtek driver halts on oversized fr o [2004/06/30] kern/68515 multimedia [sound] sound card noise (ES1938, 5.0) o [2004/06/30] i386/68518 i386 [agp] [hang] hangs while loading 82443BX p [2004/06/30] conf/68524 Including the Basque in the system o [2004/06/30] conf/68525 rc Loader's verbose boot mode has rc.d/local o [2004/06/30] bin/68527 Resizing 'top' running in a terminal to o o [2004/07/01] bin/68552 tip(1) does not set noncanonical mode inp o [2004/07/02] bin/68586 dwmalone [patch] allow syslogd to forward to non-d o [2004/07/03] kern/68623 [sf] [patch] sf(4) (Adaptec StarFire) mul o [2004/07/04] kern/68665 multimedia [sound] pcm doesn't detect Realtek ac97 o o [2004/07/05] kern/68690 [libc] write(2) returns wrong value when p [2004/07/05] bin/68691 dwmalone syslogd - correct program name handling s [2004/07/05] kern/68692 andre [net] [patch] Move ARP out of routing tab o [2004/07/06] kern/68719 [msdosfs] [patch] poor performance with m o [2004/07/07] conf/68745 rc /etc/rc.d/devfs runs after ntpd so links o [2004/07/07] i386/68754 i386 [hang] SMP reset bug (Tyan Thunder100, 44 o [2004/07/07] kern/68765 [mmap] a little data can be stored beyond o [2004/07/08] bin/68797 cut(1) patches to fflush after each write o [2004/07/09] bin/68840 [PATCH] Add Solaris-style -x flag to iost o [2004/07/09] docs/68843 doc Dates on rc.subr(8) & rc(8) are whack. o [2004/07/09] docs/68845 doc The .At macro produces unexpected results o [2004/07/09] bin/68848 [patch] find(1) shows pathname as optiona a [2004/07/11] bin/68904 krion pkg_install fixes (_PATH_*, sprintf -> sn o [2004/07/11] misc/68905 core dump ownership issue o [2004/07/11] conf/68916 Named starts PRIOR to ldconfig o [2004/07/13] bin/68981 unlogic jot behaviour. o [2004/07/13] kern/68991 le [vinum] vinum doesn't care which type a p o [2004/07/13] bin/69010 [patch] Portability fixes for FreeBSD bui o [2004/07/13] threads/69020threads pthreads library leaks _gc_mutex o [2004/07/14] kern/69064 [kernel] [patch] No multiple ip4/6's coul o [2004/07/15] bin/69083 [patch] basic modelines for contrib/nvi o [2004/07/17] bin/69164 marcel GDB/amd64: coredump while debugging a cor o [2004/07/17] ports/69191 roam SRV patch for dnbs/djbdns o [2004/07/18] i386/69257 i386 [i386] [patch] in_cksum_hdr is non-functi o [2004/07/19] bin/69268 wpaul [patch] Fix ndiscvt(8) to warn you if it' a [2004/07/19] kern/69283 multimedia [sound] Via 8233 driver records at half s o [2004/07/19] ports/69288 mharo [PATCH] security/sudo: Fix deinstall o [2004/07/19] ports/69309 ale mysql database backup script for periodic o [2004/07/21] bin/69362 mbr amd (automounter) does not properly detec o [2004/07/21] docs/69383 keramida disklabel = bsdlabel in 5.X or later o [2004/07/22] bin/69398 [patch] cleartext display of password in o [2004/07/22] kern/69448 socket.h: cmsghdr macros don't work with s [2004/07/23] ports/69475 ports-bugs xemacs invalidly calls xargs (witj unexis o [2004/07/23] kern/69502 [modules] kldload will load modules that f [2004/07/24] ports/69537 daichi Portupgrade cannot be run by cron properl o [2004/07/27] kern/69650 [patch] make getserv* functions work with o [2004/07/28] amd64/69705 amd64 IPC problem (msq_queues) o [2004/07/28] amd64/69709 amd64 ACPI enabled then floppy don't work (5.2. o [2004/07/28] i386/69722 i386 [wi] wi0: init failed, Lucent Technologie o [2004/07/29] kern/69730 [puc] [patch] puc driver doesn't support o [2004/07/29] i386/69750 acpi Boot without ACPI failed on ASUS L5 o [2004/07/30] kern/69825 [libc] 1st group supplied to setgroups() o [2004/07/30] kern/69826 [libc] 16th group has no effect when acce o [2004/08/01] docs/69861 doc [patch] usr.bin/csplit/csplit.1 does not o [2004/08/01] bin/69875 `mlxcontrol status ' hangs wit o [2004/08/03] kern/69963 ipfw [ipfw] install_state warning about alread o [2004/08/03] ports/69965 portmgr check for moved ports in "make deinstall- o [2004/08/04] bin/69986 qa [sysinstall] [patch] no job control in fi o [2004/08/04] kern/69989 killing process that uses snp + unloading o [2004/08/04] bin/70002 qa [sysinstall] fails to locate FTP dirs if o [2004/08/05] conf/70048 magic(5) file has a typo at second test f o [2004/08/08] bin/70182 [patch] fortune -e implementation bug o [2004/08/09] docs/70217 doc Suggested rewrite of docproj/sgml.sgml o [2004/08/10] bin/70245 re Change to src/release/Makefile to aid doc o [2004/08/10] conf/70252 add System Administrator Appreciation Day o [2004/08/10] bin/70283 mtm adduser aborts in batch mode with comment o [2004/08/11] java/70292 java jdk14 compile problem o [2004/08/11] bin/70297 request to make amd timeouts per-mount lo a [2004/08/11] ports/70300 sergei devel/porttools does not use EMAIL from ~ o [2004/08/12] bin/70335 inconsistent syslog behavior when max chi o [2004/08/12] bin/70336 telnetd always exits with value 1 f [2004/08/12] usb/70362 sanpei [usbdevs] [patch] LaCie 160GB USB drive f [2004/08/12] ports/70365 daichi sysutils/portupgrade incorrectly give inf o [2004/08/13] ports/70400 jedgar databases/p5-Mysql is incompatible with d o [2004/08/13] kern/70401 darrenr [modules] Could not load ipl.ko when no I o [2004/08/15] bin/70476 sbin/reboot change, -p behavior default f o [2004/08/15] amd64/70500 amd64 [bge] bge driver for 3Com 3C996B on amd64 o [2004/08/16] bin/70511 When fread()ing with buffering turned off o [2004/08/16] usb/70523 usb [usb] [patch] umct sending/receiving wron o [2004/08/16] bin/70528 No libffi on amd64, either with native co o [2004/08/16] bin/70536 reboot -dp tries to dump when powering of o [2004/08/16] docs/70555 doc [patch] changes to freebsd-glossary o [2004/08/17] docs/70583 ceri [PATCH] Update freebsd-glossary o [2004/08/18] kern/70608 [irq] ethernet-error (card uses duplicate o [2004/08/18] i386/70610 i386 [speaker] [patch] spkr(4): hardcoded assu o [2004/08/19] docs/70652 hmp New man page: portindex(5) o [2004/08/20] docs/70697 doc pcm(4) is out of date o [2004/08/20] kern/70708 [nfs] gcore/procfs not finding /proc/pid/ o [2004/08/20] conf/70715 Lack of year in dates in auth.log can cau o [2004/08/21] bin/70756 [PATCH] indent(1) mishandles code that is o [2004/08/21] bin/70795 [nanobsd] [patch] misc nanobsd fixes and o [2004/08/21] kern/70798 Compatibility: Sun/Solaris has an fcntl() o [2004/08/22] kern/70810 [pci] [patch] Enable SMBus device on Asus o [2004/08/22] standards/70813standards [PATCH] ls(1) not Posix compliant o [2004/08/22] ports/70831 tobez make perl5.8 port SU_CMD aware o [2004/08/22] i386/70832 i386 [re] serious problems with RealTek NIC us f [2004/08/22] usb/70835 sanpei [usbdevs] [patch] scsi_da does not recogn s [2004/08/23] kern/70852 multimedia [sound] via82xx PCM driver does not enabl o [2004/08/23] kern/70880 peter [nfs] 5.3 beta1 nfs problem o [2004/08/24] ports/70900 edwin [patch] devel/sdl12 inconsistency between o [2004/08/24] kern/70904 darrenr [ipfilter] ipfilter ipnat problem with h3 o [2004/08/25] i386/70926 i386 [boot] 5.3Beta-1 bootstrap error: "atapci o [2004/08/25] usb/70942 usb [usb] Genius Wireless USB mouse: moused d o [2004/08/26] docs/70985 standards [patch] sh(1): incomplete documentation o o [2004/08/27] kern/71045 [dhcp] DHCP-Request is sets other device' o [2004/08/29] bin/71098 CVS keywords are not expanded with CVS 1. p [2004/08/30] kern/71142 delphij [syscons] [patch] add vesa [1024x768] mod o [2004/08/31] kern/71184 andre tcp-sessions hangs on FIN_WAIT_2 state o [2004/08/31] gnu/71210 Update to GNU sdiff: add user-preference o [2004/09/01] kern/71219 /proc/*/map dont tell file offset o [2004/09/01] conf/71254 ncurses: xterm vs. cons* termtypes or sc( o [2004/09/01] kern/71258 [vm] [patch] anonymous mmappings not alwa f [2004/09/02] kern/71280 [aue] aue0 device (linksys usb100tx) does p [2004/09/02] kern/71317 sanpei [sound] [patch] Add nForce2 sound support o [2004/09/03] kern/71334 [mem] [patch] mem_range_attr_{set|get} ar o [2004/09/04] kern/71366 ipfw [ipfw] "ipfw fwd" sometimes rewrites dest o [2004/09/05] conf/71386 loader.conf: hint.apic.0.disabled="YES" d o [2004/09/06] usb/71416 usb [usb] Cryptoflex e-gate USB token (ugen0) o [2004/09/06] usb/71417 usb [usb] Cryptoflex e-gate USB token (ugen0) o [2004/09/06] kern/71422 rwatson LOR in sys/net/bpf o [2004/09/07] kern/71450 [de] de(4): MAC address change on 21040 " o [2004/09/07] usb/71455 usb [usb] Slow USB umass performance of 5.3 o [2004/09/07] kern/71469 default route to internet magically disap o [2004/09/07] kern/71474 route lookup does not skip interfaces mar p [2004/09/08] conf/71488 brooks [patch] create spooldirs for lpd (in a di o [2004/09/08] ports/71489 sem [PATCH] www/slash: initial support for mo o [2004/09/08] ports/71498 tobez update port: databases/p5-GDBM: update an o [2004/09/09] ports/71512 james vncserver problems on amd64 and x.org o [2004/09/09] bin/71513 [PATCH] allow -user/group +/-id construct o [2004/09/09] kern/71532 Multiple SCSI-Busses are seen differently p [2004/09/09] ports/71544 arved devel/tvision might need these extra patc o [2004/09/10] conf/71549 /etc/termcap missing passthrough printing o [2004/09/10] docs/71555 doc how to run matlab on 5.2 o [2004/09/11] i386/71586 i386 FreeBSD 5.3-BETA3 #3 hang during boot on o [2004/09/11] usb/71605 usb [umass] [patch] umass doesn't recognize m o [2004/09/11] kern/71608 [pccard] XIRCOM REM56-100 Ethernet 10/100 o [2004/09/12] bin/71613 [PATCH] cleanup of the usr.sbin/tracerout o [2004/09/12] bin/71616 [PATCH] cleanup of the usr.sbin/yp_mkdb c o [2004/09/12] bin/71617 [PATCH] cleanup of the usr.sbin/ypserv co o [2004/09/12] bin/71618 [PATCH] cleanup of the usr.sbin/timed cod o [2004/09/12] bin/71619 [PATCH] cleanup of the usr.sbin/tcpdump c o [2004/09/12] bin/71620 [PATCH] cleanup of the usr.sbin/sysinstal o [2004/09/12] bin/71621 [PATCH] cleanup of the usr.sbin/sliplogin o [2004/09/12] bin/71622 [PATCH] cleanup of the usr.sbin/sicontrol o [2004/09/12] bin/71623 [pcvt] [patch] cleanup of the usr.sbin/pc o [2004/09/12] bin/71624 [PATCH] cleanup of the usr.sbin/rtadvd co o [2004/09/12] bin/71625 [PATCH] cleanup of the usr.sbin/rpc.ypupd o [2004/09/12] bin/71626 [PATCH] cleanup of the usr.sbin/rpc.statd o [2004/09/12] bin/71628 [PATCH] cleanup of the usr.sbin/rpcbind c o [2004/09/12] bin/71629 [PATCH] cleanup of the usr.sbin/pppstats o [2004/09/12] bin/71630 [PATCH] cleanup of the usr.sbin/pppd code o [2004/09/12] bin/71631 [PATCH] cleanup of the usr.sbin/pppctl co o [2004/09/12] bin/71632 [PATCH] cleanup of the usr.sbin/ndp code o [2004/09/12] bin/71633 [PATCH] cleanup of the usr.sbin/mrouted c o [2004/09/12] bin/71659 [PATCH] cleanup of the usr.sbin/mount_por o [2004/09/12] bin/71660 [PATCH] cleanup of the usr.sbin/kgmon cod o [2004/09/12] bin/71661 [PATCH] cleanup of the usr.sbin/keyserv c o [2004/09/12] bin/71663 [PATCH] cleanup of the usr.sbin/i4b code o [2004/09/12] bin/71664 [PATCH] cleanup of the usr.sbin/fwcontrol o [2004/09/12] bin/71665 [PATCH] cleanup of the usr.sbin/dconschat a [2004/09/12] bin/71666 delphij [PATCH] cleanup of the usr.sbin/btxld cod o [2004/09/12] bin/71667 [PATCH] cleanup of the usr.sbin/bootparam o [2004/09/12] bin/71669 [PATCH] cleanup of the usr.sbin/atm code o [2004/09/12] bin/71671 [PATCH] cleanup of the usr.sbin/apmd code o [2004/09/12] kern/71683 [nis] NIS/NFS problem [4.8] o [2004/09/13] docs/71690 doc [patch] inaccurate information in systat( s [2004/09/13] ports/71693 thierry [NEW PORT] x11-clocks/9clock: This is a s s [2004/09/13] kern/71708 [MAKEDEV] [PATCH] MAKEDEV create n+1 bpf o [2004/09/13] kern/71711 [bpf] [patch] generate a single bpf times p [2004/09/14] kern/71726 sanpei [sound] [patch] nForce3 250(CK8S) audio s o [2004/09/15] bin/71749 [PATCH] truss -f causes circular wait whe f [2004/09/15] conf/71757 brooks no /etc/rc.d/diskless script in FreeBSD 5 o [2004/09/15] conf/71767 [patch] French translations for keyboards s [2004/09/15] bin/71773 des [patch] genericize.pl -c misses some comm o [2004/09/15] kern/71774 [ntfs] NTFS cannot "see" files on a WinXP o [2004/09/16] docs/71782 doc mount_nfs(8) man page is a bit out of dat o [2004/09/16] bin/71801 [patch] Add ncurses utility programs: inf o [2004/09/17] kern/71813 I get a geometry error on my wd 200gb hd f [2004/09/17] kern/71818 sanpei QUIRK: support for DMR1000 USP flash pen/ o [2004/09/17] kern/71833 multiple process disc access / injustice s [2004/09/18] bin/71855 [patch] making kdump WARNS=6 clean o [2004/09/20] i386/71924 i386 timeouts with ata+hpt366 controller on BE o [2004/09/20] bin/71928 Disk quota doesn't work with numeric logi o [2004/09/20] conf/71952 missing past participles in /usr/share/di f [2004/09/21] ports/71953 thierry New port: x11-themes/kde-splash-freebsd: s [2004/09/21] kern/71965 andre TCP MSS issue in combination with ipfw fw o [2004/09/21] threads/71966threads Mlnet Core Dumped : Fatal error '_pq_inse f [2004/09/21] docs/71980 doc Handbook says that no other software is k o [2004/09/22] conf/71994 [patch] dot.login: login shell may unnece o [2004/09/22] standards/72006standards floating point formating in non-C locales s [2004/09/22] ports/72016 joe Setiathome doesn't run on my second proce f [2004/09/24] ports/72067 obrien [PATCH] editors/vim: i18n and extra suppo o [2004/09/25] conf/72076 [patch] German locales use old %d.%m.%y d o [2004/09/27] bin/72124 [patch] rm -P can't unlink u-w files o [2004/09/27] conf/72135 [patch] ipsec belongs to /etc/rc.d/NETWOR o [2004/09/29] bin/72173 csplit(1) ver 1.9 wrong behaviour with ne o [2004/09/29] i386/72179 i386 [acpi] [patch] Inconsistent apm(8) output f [2004/09/30] bin/72193 pjd sysinstall crash with geom_raid3.ko o [2004/09/30] kern/72194 stack backtrace after wakeup from sleepin s [2004/09/30] ports/72202 simon portaudit warns about the CVS server vuln o [2004/09/30] kern/72217 [netinet6] [patch] Bug in calculation of o [2004/09/30] kern/72218 multimedia [sound] audio recording broken with emu10 o [2004/09/30] conf/72219 Sysinstall doesn't enable 3rd party MTA i o [2004/10/01] kern/72221 multimedia [sound] emu10k1 stereo channels are rever a [2004/10/01] kern/72224 anholt [agp] umass devices broken by DRM (AGP is o [2004/10/01] bin/72232 qa [sysinstall] Installer installs gui-enabl o [2004/10/02] kern/72263 [gif] gifconfig output corruption o [2004/10/03] conf/72277 [patch] update for /usr/share/skel o [2004/10/04] kern/72293 [de] de(4) NIC performance degradation wi o [2004/10/04] kern/72296 [bfe] bfe0: discard oversize frame (ether f [2004/10/04] ports/72336 sergei add RCng to mail/maildrop o [2004/10/04] kern/72338 calcru: runtime wen backwards from ... o [2004/10/04] ports/72339 marius security/ssh2 port startup script needs t p [2004/10/05] i386/72340 des [bsd.cpu.mk] [patch] add Pentium M, P3 M, o [2004/10/05] usb/72344 usb [usb] [patch] QUIRK: Dane-Elec zMate 512 o [2004/10/05] kern/72352 [puc] [patch] Support for VScom PCI-100L o [2004/10/05] bin/72355 Can't run "strings" on a (disk) device, e o [2004/10/05] bin/72357 [patch] WARNS?=5 cleanup for src/tools/to o [2004/10/06] i386/72380 usb [usb] USB does not work [dual Celeron Abi o [2004/10/06] docs/72383 doc manpage for awk(1) is terribly small and o [2004/10/06] ports/72398 jmz emulators/mtools man pages are too funky o [2004/10/07] ports/72417 sobomax [patch] enable options for net/ser f [2004/10/07] ports/72421 thierry new port: py-Levenshtein o [2004/10/07] kern/72433 [amr] [patch] AMR raid, amrreg.h struct a o [2004/10/08] kern/72440 [netinet] [patch] Not increment ifp->if_s o [2004/10/09] conf/72465 [patch] United States International keybo o [2004/10/09] kern/72468 andre OS does not know how to handle broadcast. o [2004/10/11] kern/72498 [libc] timestamp code on jailed SMP machi o [2004/10/11] bin/72501 cperciva script(1) loops after EOF is read p [2004/10/11] conf/72505 brian [patch] Fix rc.d/ppp-user to make use of o [2004/10/11] bin/72517 Minor Bug in /etc/login.access o [2004/10/12] kern/72560 jeff [sched_ule] [patch] small cleanup of SCHE o [2004/10/12] kern/72585 [syscons] [patch] iso05-8x16.fnt lacks le o [2004/10/12] bin/72588 [patch] iostat(8) tty stats field concate a [2004/10/13] kern/72639 5.3-BETA7 kernel config option ALT_BREAK_ o [2004/10/13] kern/72659 jeff [sched_ule] [patch] little bug in sched_u o [2004/10/14] bin/72674 [patch] make /usr/bin/whois use SK-NIC's o [2004/10/15] kern/72728 brooks [syscons] [patch] keyboard debug and rebo o [2004/10/15] usb/72732 usb [patch] Kyocera 7135 quirk. o [2004/10/15] usb/72733 usb Kyocera 7135 Palm OS connection problem. o [2004/10/15] misc/72741 qa ssh broken on fixit cd (missing /dev/rand o [2004/10/17] bin/72787 gtar in base system doesn't seem to honor o [2004/10/17] bin/72793 [patch] wicontrol(8) prints out non-print a [2004/10/18] bin/72814 bms [patch] libpcap opens bpf as O_RDONLY - d o [2004/10/19] ports/72865 emulation emulators/vmware3 crashes on 5.3-STABLE o [2004/10/19] bin/72875 des Some utilities used in debugging do not f o [2004/10/19] bin/72881 yppush pushes map to local server o [2004/10/19] kern/72887 multimedia [sound] emu10k1: sound lag o [2004/10/20] conf/72901 [patch]: dot.profile: prevent printing wh o [2004/10/20] kern/72920 emulation [linux]: path "prefixing" is not done on f [2004/10/20] kern/72933 yar [netgraph] [patch] promisc mode on vlan i s [2004/10/21] ports/72956 ports-bugs x11/dgs incorrectly marked as IGNORE a [2004/10/21] conf/72978 [patch] add danish syscons keymap with ac o [2004/10/22] kern/72987 ipfw [ipfw] ipfw/dummynet pipe/queue 'queue [B o [2004/10/22] kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound near o [2004/10/22] kern/72997 [sk] Network performance down [6-CURRENT] o [2004/10/22] sparc64/72998sparc64 [kernel] [patch] set_mcontext() change sy o [2004/10/22] ports/73009 x11 5.3-RC1 ports refer to XF86Config - shoul o [2004/10/23] kern/73034 [libalias] libalias does not handle lower o [2004/10/23] kern/73051 [if_tun] tun0: Warning: ff02:5::/32: Chan o [2004/10/23] usb/73056 usb [usb] Sun Microsystems Type 6 USB mouse n o [2004/10/24] ports/73061 clsung Update port: devel/p5-Glib2 (enable threa o [2004/10/25] kern/73098 multimedia [sound] Scan rate of sound card shifts wh p [2004/10/25] bin/73110 rwatson [patch] ffsinfo conversion from atol() to p [2004/10/25] bin/73112 rwatson [patch] change atol() to strtol() in bads o [2004/10/26] kern/73145 severe network slowdown with DEC 21140 ne o [2004/10/27] kern/73195 bad PATH, missing HOME and TERM env var o o [2004/10/29] kern/73276 ipfw [ipfw] [patch] ipfw2 vulnerability (parse o [2004/10/29] ports/73285 billf net-mgmt/flow-tools port improvements o [2004/10/29] kern/73294 [hang] hangs in default mode when AcceleP o [2004/10/30] i386/73308 i386 unable to install on AMD 2500+,NF2,GF MX4 o [2004/10/30] bin/73327 [PATCH] iostat - extended mode display o [2004/10/30] kern/73328 top shows NICE as -111 on processes start o [2004/10/31] bin/73337 nsswitch: potential invalid free o [2004/11/01] kern/73375 [panic] vinvalbuf: dirty bufs during umas o [2004/11/01] kern/73388 brooks [usb] usb-keyboard stops working o [2004/11/02] bin/73411 [patch] FTPD could set attributes to 0600 o [2004/11/03] ports/73448 nectar [PATCH] nss_ldap - getpwnam does not retu o [2004/11/03] kern/73492 [feature request] Reliable Temporary File o [2004/11/03] kern/73496 [feature request] A more flexible version o [2004/11/04] kern/73514 [ntfs] [patch] mount_ntfs: can't access t o [2004/11/04] kern/73517 [pfil] pfil_hooks (ipfw,pf etc) and ipsec o [2004/11/05] www/73549 www Mail list archive navigation difficulty s [2004/11/05] www/73551 remko List archive 'quoted-printable' corruptio o [2004/11/05] usb/73553 brooks [usb] Microsoft USB Internet Keyboard not o [2004/11/06] docs/73583 doc [patch] add missing instructions to ndis( f [2004/11/06] ports/73609 lawrance New port: x11-toolkits/wxhaskell o [2004/11/07] docs/73638 doc ipfw(8): Clarify syntax for use of tables o [2004/11/07] kern/73646 [ahd] I/O performance: with/without MEMIO o [2004/11/07] conf/73653 Proposal of changes to the GENERIC kernel o [2004/11/08] kern/73663 emulation [ibcs2] module_register_init: MOD_LOAD (i o [2004/11/08] kern/73675 [atapicam] atapicam causes interrupt stor o [2004/11/08] conf/73677 [patch] add support for powernow states t o [2004/11/08] docs/73679 doc FreeBSD 5.3 Release notes mention new nat o [2004/11/09] i386/73742 i386 5.3 rel i386 disk2 image not copying s [2004/11/09] ports/73743 x11 XOrg/XFree xauth add/startx problem o [2004/11/10] kern/73777 emulation [linux] [patch] linux emulation: root dir o [2004/11/10] conf/73786 added WARNING in spanish to stable-supfil o [2004/11/11] conf/73799 Move the last stuff out of usbd.conf o [2004/11/11] i386/73822 acpi [request] add thermal support to ACPI o [2004/11/11] kern/73823 acpi [feature request] acpi / power-on by time o [2004/11/11] conf/73834 Bad dependencies for /etc/rc.d/savecore o [2004/11/12] kern/73865 [rpcbind] [patch] NOINET6=yes in /etc/mak o [2004/11/12] bin/73884 Add NetBSD's rawrite32 to install tools o [2004/11/13] conf/73909 [patch] rc.d/sshd does not work with port o [2004/11/14] i386/73921 i386 [sysctl] [patch] sysctlbyname for machdep o [2004/11/14] conf/73929 [patch] /etc/rc.d/named will not work wit o [2004/11/15] kern/73961 [fdc] floppy disk drive performance probl o [2004/11/15] kern/73978 emulation [ibcs2] an error message appears during l o [2004/11/16] bin/73988 isdn ISDN - first dial attempt fails o [2004/11/16] conf/74004 [PATCH] add fam support to inetd.conf o [2004/11/16] conf/74005 [PATCH] aditional support for /etc/rc.ini o [2004/11/16] conf/74006 dougb [PATCH] /etc/rc.d/named minor fixes o [2004/11/17] kern/74030 acpi Unplugging AC causes battery % to stay lo o [2004/11/17] kern/74037 [ppc] ppc(4) cannot find parallel port on o [2004/11/18] bin/74062 [gre] ifconfig(8) does not display tunnel o [2004/11/18] kern/74066 [ata] acd driver fault: READ_BIG timeout o [2004/11/20] bin/74140 ntpdate(8): ntpdate does not try all IPs o [2004/11/20] i386/74153 i386 [pst] FreeBSD 5.3 cannot boot ftom pst o [2004/11/20] kern/74159 [headers] [patch] fix warnings concerned o [2004/11/20] bin/74178 [patch] grdc(6) - scrolling does not work o [2004/11/21] threads/74180threads KSE problem. Applications those riched ma o [2004/11/21] i386/74191 multimedia [sound] Notebook PC2001 Compliant AC97 au o [2004/11/21] usb/74211 usb USB flash drive causes CAM status 0x4 on o [2004/11/21] conf/74213 [PATCH] Connect src/etc/periodic/security o [2004/11/21] kern/74215 acpi [request] add ACPI headers to /usr/includ o [2004/11/21] i386/74216 i386 system halts o [2004/11/21] i386/74218 i386 boot floppy (2nd time) read error o [2004/11/22] conf/74228 dougb periodic 470.status-named doesn't work wi o [2004/11/23] kern/74281 [digi] digi(4): Digiboard PCI Xem (64-por o [2004/11/24] kern/74314 [resolver] DNS resolver broken under cert o [2004/11/24] i386/74327 i386 [pmap] [patch] mlock() causes physical me f [2004/11/24] ports/74344 java [proposal] tomcat41ctl: support for passi s [2004/11/25] kern/74352 NFSCLIENT and booting to an mfsroot via T o [2004/11/25] usb/74358 usb [umass] unplugging at boot time an umass o [2004/11/25] bin/74360 [patch] ndiscvt(8) generates a driver whi a [2004/11/25] bin/74387 linprocfs can be mounted on top of itself o [2004/11/26] misc/74396 [patch] "make release" fails if the cdrto o [2004/11/26] bin/74404 sh(1) does not handle signals to subshell o [2004/11/26] bin/74406 qa [sysinstall] sysinstall accepts but disca s [2004/11/26] ports/74416 fenner update for rtpmon o [2004/11/27] bin/74450 [libalias] [patch] enable libalias/natd t o [2004/11/27] usb/74453 usb Q-lity CD-RW USB ECW-043 (ScanLogic SL11R o [2004/11/27] i386/74454 i386 [bsd.cpu.mk] [patch] Adding VIA Eden fami o [2004/11/28] docs/74477 doc [patch] Correct several links in the cont o [2004/11/29] kern/74498 [pccard] [patch] new CIS id for Intersil o [2004/11/29] bin/74500 [PATCH] allow chflags to set flags on sym o [2004/11/29] bin/74506 [patch] bad top command display p [2004/11/29] bin/74509 brooks [PATCH] ifconfig allows setting 33-byte S f [2004/11/29] ports/74537 obrien editors/vim issue: report invalid size of o [2004/11/30] kern/74549 [modules] [patch] Allow third party KLDs o [2004/11/30] usb/74557 usb imation 500mb usb key can only be written o [2004/11/30] bin/74567 [2TB] [patch] du doesn't handle sizes >1T o [2004/12/01] misc/74577 [patch] decorating space in Beastie menu o [2004/12/02] amd64/74608 amd64 [mpt] [hang] mpt hangs 5 minutes when boo o [2004/12/02] usb/74609 usb [usb] [patch] allowing cdma modems to wor o [2004/12/02] docs/74612 doc [patch] updates to the glossary o [2004/12/03] i386/74650 i386 System Reboot with umount command o [2004/12/03] gnu/74654 libsupc++.a lacks necessary functions o [2004/12/03] i386/74658 i386 [ata] ATAPI CD not recognized after booti o [2004/12/05] docs/74724 ceri handbook network-inetd webpage o [2004/12/05] ports/74740 danfe Update port: x11-wm/wampager - Update to o [2004/12/05] bin/74743 [patch] wctype.c declares static array on o [2004/12/06] ports/74752 simon make takes a little while before anything o [2004/12/06] kern/74777 [request] Bootup "beep" in 5.3 should be o [2004/12/06] kern/74786 [irq] [patch] Smartlink Modem causes inte o [2004/12/07] i386/74803 i386 regression: lost 3Com509B in 5.X o [2004/12/07] amd64/74811 amd64 [nfs] df, nfs mount, negative Avail -> 32 o [2004/12/07] conf/74817 [patch] network.subr: fixed automatic con o [2004/12/07] kern/74827 [fdc] Problem writing data to floppies [5 o [2004/12/08] usb/74849 usb [usb] [patch] Samsung SPH-i500 does not a o [2004/12/08] kern/74868 [acpi] ACPI enabled in 5.3 Release make K o [2004/12/09] usb/74880 usb [usb] [patch] Samsung N400 cellphone/acm s [2004/12/09] ports/74882 hq [New port] java/httpunit: web test framew o [2004/12/09] docs/74889 wosch S_ISREG etc marcos missing from stat man o [2004/12/09] ports/74907 apache [PATCH] www/mod_perl: cleanups o [2004/12/10] ports/74913 pat I can't see anything in X11 applications o [2004/12/10] ports/74919 ale [PATCH] lang/php4: Add hardened-php.org p o [2004/12/10] kern/74920 [ep] [panic] 3Com 3C509-Combo Etherlink I o [2004/12/12] i386/74966 i386 [rl] Realtek driver seems to misinterpret o [2004/12/12] kern/74971 le [vinum] vinum creates (shows) incorrect v o [2004/12/12] kern/74977 firewire [modules] dcons.ko requires KDB support o [2004/12/12] kern/74986 tackerman sysctlize a parameter of if_em's interrup o [2004/12/12] usb/74989 usb (regression) Lost USB support between 5.2 o [2004/12/13] kern/75008 [psm] [patch] ALPS GlidePoint not recogni o [2004/12/13] ports/75015 amd64 cvsup on amd64 coredumps with either runs o [2004/12/14] docs/75068 doc login.conf(5) manual page says nothing ab o [2004/12/15] i386/75090 i386 READ_BIG errors with Sony CRX1611 o [2004/12/15] kern/75121 Wrong behaviour of IFF_LINK2 bit in 6in6 o [2004/12/15] ports/75130 danfe [NEW PORT] www/mono-xsp: A light-weight w o [2004/12/15] kern/75132 jhb [puc] [patch] add support for the Davicom o [2004/12/15] conf/75137 jhb add snd_* modules support to /etc/rc.d/mi o [2004/12/16] ports/75143 java There is no way to specify jvm parameters o [2004/12/17] bin/75175 jot duplicates numbers in simple invocati o [2004/12/17] bin/75177 philip Bug selecting psm operation level in mous o [2004/12/17] i386/75185 i386 ACPI doesn't power off Tyan S2460 o [2004/12/18] kern/75211 le [vinum] vinum writes several errors to st o [2004/12/19] kern/75254 [wi] [patch] PRISM3-based adapter ZCOM XI p [2004/12/19] kern/75277 rwatson netstat -m 'mbufs in use' output appears o [2004/12/20] kern/75298 [pccard] [patch] add missing device id fo o [2004/12/20] kern/75312 [rl] Built-in RTL8281BL on Asus Pundit AB o [2004/12/20] kern/75316 multimedia [sound] [patch] Enable to select a record o [2004/12/21] bin/75362 contrib/smbfs mount_smbfs No buffer space o [2004/12/22] bin/75378 login(1): login/wtmp/utmp not updating pr o [2004/12/22] kern/75380 [nfs] can not open("..") from top-level d s [2004/12/22] i386/75387 i386 [ata] feature request: support of Promise o [2004/12/23] i386/75420 i386 CMD 648 PCI not work s [2004/12/24] ports/75464 portmgr bsd.port.mk install default configuration o [2004/12/26] conf/75502 [patch] Fix LC_NUMERIC and LC_MONETARY fo o [2004/12/27] docs/75545 trhodes typos in man3 manual pages, form_field_op o [2004/12/28] bin/75570 chflags nosappnd directory doesn't work o [2004/12/28] docs/75577 doc typos in man3 manual pages, login_class.3 o [2004/12/28] usb/75578 usb [patch] QUIRK: PNY USB flash key o [2004/12/28] kern/75582 [dc] [patch] Add support for Linksys PCMP o [2004/12/28] i386/75583 i386 Installation fails o [2004/12/28] bin/75585 [unionfs] mount -p on unionfs results in o [2004/12/29] bin/75632 le gvinum commands not consistent with vinum o [2004/12/30] gnu/75662 less -f behavior contradicts man page o [2005/01/01] misc/75702 dwmalone -O5 flag breaks some compiles in /usr/src o [2005/01/01] kern/75710 [cue] cue0 device configuration causes ke o [2005/01/03] kern/75764 [umass] [patch] "umass0: Phase Error" - n o [2005/01/03] bin/75766 [patch] nfsd(8) loops with TCP + multiple o [2005/01/03] bin/75767 WANTED: "fdclose" function in libc o [2005/01/04] i386/75776 i386 NO ps/2 keyboard using USB keyboard under o [2005/01/04] usb/75800 usb ucom1: init failed STALLED error in time o [2005/01/05] www/75830 www ports.cgi used ports/INDEX from CVS o [2005/01/05] bin/75842 /sbin/mount: valid, but double, fstab mou o [2005/01/05] bin/75855 getpwent functions on 5.3 with large pass o [2005/01/05] docs/75865 doc comments on "backup-basics" in handbook o [2005/01/06] kern/75873 Usability problem with non-RFC-compliant o [2005/01/06] i386/75881 i386 ACPI suspend/resume doesn't work on ASUS o [2005/01/06] ports/75883 demon mrtg + ucd-snmp give wrong results o [2005/01/06] bin/75884 m4(1): syscmd's output is out of sync wit o [2005/01/06] kern/75894 multimedia [sound] AD1981 not probing (shuttle ST62K o [2005/01/06] i386/75898 i386 Exception and reboot: Loader and kernel u f [2005/01/07] ports/75916 thierry New port: net/decv o [2005/01/07] usb/75928 usb Cytronix SmartMedia card (SMC) reader has o [2005/01/08] kern/75934 [libcrypt] [patch] missing blowfish funct f [2005/01/08] ports/75939 nork sysutils/smartmontools: smartd can not fo o [2005/01/08] kern/75969 multimedia [sound] [patch] Support for Sigmatel STAC o [2005/01/08] usb/75970 usb [usb] [patch] support for Sandisk Cruzer o [2005/01/09] docs/75995 doc hcreate documentation(?) bug f [2005/01/10] ports/76021 daichi portupgrade: package delete can remove ne o [2005/01/10] sparc64/76052marius Incorrect panic strings in sparc64 files o [2005/01/10] gnu/76069 FreeBSD's definition of offsetof isn't go o [2005/01/11] kern/76081 [rl] [patch] Add support for CardBUS NIC o [2005/01/11] bin/76089 The "-n" option in /usr/bin/w is broken o [2005/01/11] docs/76094 doc Incorrect statement about partition d p [2005/01/11] ports/76116 ports-bugs PORT UPDATE: graphics/lcms (with PATCH) o [2005/01/12] conf/76124 [patch] Mistake in /usr/share/misc/pci_ve o [2005/01/12] kern/76144 poll doesn't set POLLHUP when FIFO is clo o [2005/01/12] gnu/76169 [patch] Add PAM support to cvs pserver o [2005/01/12] kern/76178 scsi [ahd] Problem with ahd and large SCSI Rai o [2005/01/13] kern/76225 [modules] [patch] WITHOUT_MODULES option o [2005/01/13] conf/76226 Default local.9600 gettytab initially use s [2005/01/14] ports/76247 grog net/arla port update o [2005/01/14] ports/76257 danfe nvidia_driver breaks xorg-clients build o [2005/01/15] conf/76298 fstab doesn't pass mntops properly o [2005/01/17] docs/76333 doc EOF indicator can be cleared by not only f [2005/01/17] ports/76358 vs xlockmore PAM support o [2005/01/17] bin/76362 sys directory link points to wrong locati f [2005/01/17] ports/76365 lawrance NEW PORT net/xdb_auth_cpile A user auth/c o [2005/01/18] bin/76401 sysinstall to set "host name" for dhclien o [2005/01/18] kern/76432 gnn [net] [patch] recursive locking in the ne o [2005/01/19] usb/76461 usb [umass] disklabel of umass(4)-CAM(4)-da(4 o [2005/01/20] kern/76485 sched_getparam returns weird priority num s [2005/01/20] conf/76491 Addition into /etc/security few new funct o [2005/01/20] bin/76494 [patch] passwd(1) does not indicate a suc p [2005/01/20] bin/76497 tcpdump dumps core on ppp ipv6cp packets o [2005/01/20] conf/76509 [patch] New locale uk_UA.CP1251 support o [2005/01/20] docs/76515 doc missleading use of make -j flag in handbo s [2005/01/21] kern/76520 [libiconv] [patch] Add new kernel-side li o [2005/01/21] kern/76539 [dummynet] [patch] ipnat + dummynet on ou o [2005/01/21] kern/76551 [re] [patch] re0: watchdog timeout o [2005/01/23] www/76586 re [patch] minor updates to en/releng/index. o [2005/01/23] i386/76587 i386 ps2 mouse weird... o [2005/01/23] bin/76590 adding -mapall in nfs exports requires re o [2005/01/23] kern/76611 isdn [i4b] [patch] i4b itjc bad enums for PIB o [2005/01/24] conf/76626 [patch] 460.status-mail-rejects shows des o [2005/01/25] i386/76653 i386 Problem with Asahi Optical usb device (Pe o [2005/01/25] kern/76678 rwatson [libpam] [patch] Allow pam_krb5 to authen o [2005/01/26] ports/76695 trevor RPM complaints on installation of linux_b o [2005/01/26] bin/76697 newsyslog keeps one more archive files th o [2005/01/26] kern/76710 [mii] [patch] rgephy does not deal with s o [2005/01/26] bin/76711 parse error in rm.c:check() while parsing o [2005/01/27] usb/76732 usb Mouse problems with USB KVM Switch o [2005/01/27] bin/76736 dwmalone syslogd pipelines losing messages s [2005/01/27] ports/76748 haskell New port: devel/hs-plugins. Loading Haske o [2005/01/27] bin/76752 /usr/bin/login o [2005/01/27] bin/76756 des function pw_equal in pw_util.c does not t s [2005/01/29] ports/76816 pav new port: security/sophie o [2005/01/29] kern/76818 rwatson ACL modifications touch file's mtime o [2005/01/30] kern/76857 Samsung mouse misbehaviour o [2005/01/31] ports/76915 portmgr [patch] Handle port deinstall scripts whe o [2005/01/31] kern/76918 multimedia [sound] ATI AD1981 AC'97 Audio Controller p [2005/02/01] threads/76938delphij include/unistd.h: ttyname_r prototype mis o [2005/02/01] kern/76950 ACPI wrongly blacklisted on Micron Client o [2005/02/01] kern/76966 udp/520 reply packets when routed is not o [2005/02/01] kern/76971 ipfw [ipfw] ipfw antispoof incorrectly blocks o [2005/02/01] kern/76972 64-bit integer overflow computing user cp f [2005/02/02] ports/76986 lawrance New port: print/pmx a pre-processor of Mu o [2005/02/02] bin/77001 sysinstall binary upgrade clobbers /etc/l o [2005/02/02] bin/77031 [patch] comm(1) unable to handle lines gr f [2005/02/03] bin/77082 krion src/usr.sbin/pkg_install - Add 3 new macr f [2005/02/04] docs/77087 doc The bootvinum script given in the handboo o [2005/02/04] bin/77089 /sbin/natd: natd ignores -u with passive o [2005/02/04] kern/77091 Keyboard quits working under X with MAXCO o [2005/02/06] kern/77156 FreeBSD does not redirect packets on prop o [2005/02/07] conf/77197 [patch] calendar.judaic is out of date o [2005/02/07] bin/77212 krion src/usr.sbin/pkg_install - make directory o [2005/02/07] kern/77239 [xl] 3Com 3CXFEM656C does not seem to be o [2005/02/08] ports/77246 portmgr update "make index" target to use "make f o [2005/02/08] kern/77253 emulation [linux] meminfo in linprocfs returns bad p [2005/02/08] bin/77259 stefanf /bin/sh: shell command "command -v cmd" d o [2005/02/08] bin/77260 df behaviour has changed between 4.x and o [2005/02/08] bin/77261 login doesn't chdir into a group-protecte o [2005/02/08] kern/77273 darrenr [ipfilter] ipfilter breaks ipv6 statefull o [2005/02/10] kern/77341 problems with IPV6 impementation o [2005/02/10] kern/77355 [i386] [patch] Detect i*86 subarches for o [2005/02/10] ports/77359 thierry New port: graphics/gephex Software-based o [2005/02/10] kern/77365 [amdpm] [patch] amdpm driver has wrong PC o [2005/02/11] kern/77377 Slow downloading from FreeBSD server with p [2005/02/11] conf/77386 brooks let /etc/rc.d/var create spool dirs for l o [2005/02/13] bin/77445 ntpd(8): too many recvbufs(40) when ntpd s [2005/02/13] ports/77453 ports-bugs [request] new port: print/ghostpcl o [2005/02/14] i386/77477 i386 AHA-1542CP SCSI failed to probe f [2005/02/14] ports/77495 niels new port: security/sav o [2005/02/15] kern/77537 [smp] [hang] Conditional breakpoints hang o [2005/02/15] kern/77541 [em] [patch] if_oerrors book keeping erro o [2005/02/15] bin/77554 type mismatch in IPv6 firewall rule parse f [2005/02/16] ports/77584 lawrance New ports: games/sear, games/sear-media. o [2005/02/18] kern/77662 diskless hostname set via DHCP only if AC o [2005/02/18] conf/77663 Suggestion: add /etc/rc.d/addnetswap afte o [2005/02/21] kern/77826 [ext2fs] ext2fs usb filesystem will not m o [2005/02/21] kern/77835 stefanf [libc] [patch] res_debug.c needs const de o [2005/02/21] kern/77841 [libc] [patch] cast away const in getpubl o [2005/02/21] ports/77857 kwm [PATCH] net/gnomemeeting: correctly deter o [2005/02/21] ports/77876 portmgr Ensure uniqueness of (DOCS|EXAMPLES|DATA) o [2005/02/22] kern/77902 [nfs] NFS client should use VA_UTIMES_NUL o [2005/02/22] kern/77904 [nfs] NFS server should set VA_UTIMES_NUL o [2005/02/22] kern/77913 [wi] [patch] Add the APDL-325 WLAN pccard o [2005/02/22] bin/77918 ceri quota does not exit with a status != 0, i o [2005/02/23] kern/77958 [smbfs] can't delete read-only files via o [2005/02/24] ports/78012 lawrance [NEW PORT] net/abills: Billing system fro o [2005/02/24] bin/78021 sem_open(3) doesn't mention fnctl.h inclu o [2005/02/24] docs/78041 doc docs for md need further explanation of t o [2005/02/25] kern/78057 ad0: FAILURE - READ_DMA status=51 error=4 o [2005/02/25] kern/78070 [bge] [patch] Potential null pointer dere o [2005/02/25] kern/78072 [lge] [patch] Potential memory leak in lg o [2005/02/25] kern/78090 [ipf] ipf filtering on bridged packets do o [2005/02/26] kern/78114 phk [geom] [patch] Solaris/x86 label structur o [2005/02/26] bin/78131 geom gbde "destroy" not working. o [2005/02/27] docs/78138 doc Error in pre-installation section of inst o [2005/02/27] bin/78170 [patch] Fix signal handler in bootpd a [2005/02/28] docs/78174 markus Update for Bluetooth-related manpages o [2005/03/01] ports/78234 olgeni x11/eterm invalids compose character defi o [2005/03/01] ports/78235 ale lang/php4 segfaults with both xslt and Ze o [2005/03/01] docs/78240 doc Replace with around a # o [2005/03/02] docs/78275 doc Keyword size needs to be changed to lengt f [2005/03/02] ports/78293 edwin Proposition for the review of multimedia/ o [2005/03/02] bin/78304 Signal handler abuse in comsat(8) o [2005/03/03] ports/78337 ale Feature Request: cpdf for lang/php5-exten o [2005/03/03] kern/78342 jeff top -S shows potentially incorrect CPU us o [2005/03/03] usb/78371 usb Philips Wearable Audio Player (128) fails o [2005/03/04] kern/78388 [vr] vr network drivers cause watchdog ti o [2005/03/04] conf/78419 /etc/termcap is a symbolic link o [2005/03/04] bin/78424 Internal IPs on router, natd/libalias bre o [2005/03/05] docs/78440 phantom POSIX semaphores don't work by default in o [2005/03/05] kern/78444 jeff [sched_ule] doesn't keep track of the sle o [2005/03/05] kern/78464 des Rename /proc/mtab to /proc/mounts f [2005/03/06] ports/78473 danfe New port: graphics/opencv (Open Source Co o [2005/03/06] kern/78474 [kernel] [patch] swapped out procs not br o [2005/03/06] docs/78479 doc SO_NOSIGPIPE socket option undocumented o [2005/03/06] docs/78480 doc Networked printer setup unnecessarily com o [2005/03/06] ports/78490 portmgr Update port: Mk/bsd.port.mk add PORTEXAMP o [2005/03/07] docs/78520 doc error in man(5) lpd.conf, lpd.perms pages o [2005/03/07] kern/78526 problem with ST380011A Segate and FreeBSD o [2005/03/07] bin/78529 'df' shows wrong info about hard drive af o [2005/03/07] standards/78537phk times(2) not functioning per the Posix sp o [2005/03/07] usb/78543 usb [patch] Support for Trip-Lite USB 2 Seria o [2005/03/07] ports/78554 portmgr [patch] bsd.port.mk: allow install port w o [2005/03/07] bin/78562 Add numerical sorting option to join(1) o [2005/03/07] i386/78569 i386 seg fault compiling after install on AMD o [2005/03/09] kern/78646 [libmap] [patch] libmap should canonicali o [2005/03/10] kern/78673 [nfs] [patch] nfs client open resets attr o [2005/03/11] ports/78712 perky [Update Ports] Rename ja-pycodec to ja-py o [2005/03/12] bin/78728 ntpd -- noisy when IPv4 or IPv6 interface o [2005/03/12] kern/78756 phantom [libc] [patch] src/lib/libc/nls/fr_FR.ISO o [2005/03/13] kern/78758 sos [ata] [patch] Add support for re-sizing A o [2005/03/13] bin/78759 patch: verbosity for bin/chflags a [2005/03/13] ports/78760 lioux [PATCH] multimedia/kmplayer: Make TV view o [2005/03/13] bin/78763 pjd [PATCH] Added jail support to ps o [2005/03/13] bin/78768 pjd [Patch] Added jail support to top o [2005/03/13] bin/78785 ipfw [ipfw] [patch] ipfw verbosity locks machi o [2005/03/13] kern/78787 sysconf(_SC_CLK_TCK) may return incorrect o [2005/03/14] kern/78812 [workaround] logitech cordless mouse with o [2005/03/15] kern/78849 phk Problems with GBDE encrypted partitions o [2005/03/15] kern/78884 [nfs] [patch] nfs client cache negative l f [2005/03/15] ports/78898 lawrance new ports chinese/lumaqq: General QQ-like o [2005/03/16] conf/78906 [patch] Allow mixer_enable="NO" in rc.con o [2005/03/16] docs/78915 doc rfork()'s RFTHREAD is not documented o [2005/03/17] amd64/78954 amd64 kerberos 5 failed to build o [2005/03/17] kern/78957 time counter per process stops (syscall: o [2005/03/18] usb/78984 usb Creative MUVO umass failure f [2005/03/18] ports/78990 ache [update] {news,chinese}/tin: integrate pa o [2005/03/19] bin/79008 add option for pom(6) to specify EPOCH o [2005/03/19] ports/79010 portmgr [patch] bsd.port.mk - all-depends-tree ta f [2005/03/19] ports/79021 lawrance New port: linux_base-fedora o [2005/03/20] kern/79035 le [vinum] gvinum unable to create a striped s [2005/03/20] kern/79048 [libc] realloc() copies data even when th o [2005/03/20] standards/79055standards Add an IFS regression test for shells o [2005/03/20] standards/79056standards regex(3) regression tests o [2005/03/20] kern/79058 [panic] floppy umount crash on accidental p [2005/03/20] bin/79063 tjr grep(1) - strange behaviour (most likely o [2005/03/21] kern/79066 [bktr] bktr(4) eating about 10% CPU load o [2005/03/21] standards/79067standards /bin/sh should be more intelligent about o [2005/03/21] ports/79069 grog "make install" in instant-workstation fai o [2005/03/21] i386/79091 i386 [i386] [patch] Small optimization for i38 o [2005/03/21] ports/79093 mi net/rdist6 ignore ssh transport o [2005/03/22] bin/79109 devfs.conf not honored at boot o [2005/03/22] kern/79117 isdn [iavc] iavc(4) for AVM B1 PCI does not at o [2005/03/22] i386/79136 i386 disk controller not detected o [2005/03/22] kern/79138 rwatson close while sending on connected UNIX-dom o [2005/03/22] kern/79139 [pci] [patch] Support for more PCIe chips o [2005/03/22] kern/79143 [bge] Broadcom NIC driver do not work for o [2005/03/23] docs/79156 doc buffersize knob for sound(4) is a tunable o [2005/03/23] usb/79164 usb [usb] [patch] QUIRK: Qware BeatZkey! Pro o [2005/03/24] conf/79196 [PATCH] configurable dummynet loading fr o [2005/03/25] bin/79228 [ PATCH ] extend /sbin/arp to be able to o [2005/03/25] bin/79232 WARNS6 clean libexec/comsat o [2005/03/25] ports/79235 lawrance [maintainer update] sysutils/dtc: v0.17.0 o [2005/03/26] kern/79251 geom [2TB] newfs fails on 2.6TB gbde device o [2005/03/26] kern/79266 [pci] [patch] RELENG_4 pci CONF1_ENABLE_M o [2005/03/27] i386/79272 i386 "ata" detects and enables UDMA66 or UDMA1 o [2005/03/27] i386/79274 i386 Autoconfigure fails for O2Micro OZ6812/68 o [2005/03/28] bin/79296 "umount -a -t msdos" not work o [2005/03/28] i386/79317 i386 Freebsd Erasing NVRAM o [2005/03/30] i386/79350 i386 "ata" unrequested increase in xDMAx speed a [2005/03/30] ports/79351 lofi Character passing error in security/pinen o [2005/03/30] kern/79352 [feature request] double tagged q-in-q ne o [2005/03/30] ports/79382 ume package information for cyrus-sasl2-sasla o [2005/03/31] ports/79398 portmgr [patch] bsd.port.mk: add USE_MAKESELF kno o [2005/03/31] conf/79415 Fix "Mothers Day" in calendar.french. o [2005/03/31] kern/79416 darrenr ipf in 4.11 breaks POLA p [2005/04/01] bin/79418 stefanf [patch] libedit sync from netbsd cvs o [2005/04/01] kern/79427 multimedia [sound] No sound on Compaq Armada 100S la o [2005/04/02] kern/79441 [msdosfs] problem writing on mounted msdo o [2005/04/03] kern/79498 multimedia [sound] sndfile-play (and many other play o [2005/04/04] ports/79536 pat sysutils/wmmemload install problem from t o [2005/04/04] ports/79540 pat sysutils/wmcpuload feature o [2005/04/05] bin/79570 Dynamic OpenSSL engine load disabled o [2005/04/05] kern/79575 [md] [patch] Fixes order of disks in 'mdc o [2005/04/06] bin/79607 obrien grok and default to bzip2-compressed manu o [2005/04/07] ports/79611 ale Port build failure in mail/php4-imap 4.3. o [2005/04/07] kern/79635 82545GM reports the EEPROM Checksum Is No a [2005/04/07] ports/79637 cjh [PATCH] print/magicfilter: update to 2.3. s [2005/04/07] ports/79639 thierry biology/deft: patch for compilation on Fr o [2005/04/07] usb/79649 usb [usb] [patch] quirk: Gembird MP3 player o [2005/04/07] ports/79651 clement [patch] mail/ssmtp: add per-user smtp aut o [2005/04/08] ports/79661 des emulators/doscmd outdated man info o [2005/04/08] kern/79678 multimedia [sound] sound works except recording from o [2005/04/08] bin/79690 [patch] mdmfs does not accept numeric uid o [2005/04/08] ports/79694 kuriyama net-mgmt/net-snmp: net-snmp-5-2-1.1 witho o [2005/04/08] kern/79698 des [ichwd] [patch] ICH watchdog driver broke o [2005/04/08] conf/79701 [PATCH] wcwidth(3) returns wrong value ab o [2005/04/09] kern/79705 mac_seeotheruids not blocking root o [2005/04/09] bin/79714 marcel kgdb user I/O nits o [2005/04/09] conf/79715 MNT_NODEV should be removed from sys/moun o [2005/04/09] usb/79723 usb [usb] prepare for high speed isochronous o [2005/04/09] usb/79725 usb [usb] [patch] USB device speed is not dou o [2005/04/12] i386/79840 i386 Partitioning and formating a new disk fai f [2005/04/13] ports/79862 daichi portupgrade-20041226_2 has faulty IGNORE o [2005/04/13] threads/79887threads [patch] freopen() isn't thread-safe o [2005/04/14] i386/79890 i386 burncd fails on a Pioneer DVD drive o [2005/04/14] usb/79893 usb New usbdevs/umass quirks derived from Lin o [2005/04/15] kern/79944 virtual floppy controller of Virtual PC d o [2005/04/15] bin/79965 top(1) messes up narrow terminals while d p [2005/04/16] kern/79998 yar [sk] [patch] Give sk(4) VLAN MTU capabili o [2005/04/16] usb/80010 usb [aue] [patch] add support for the AEI USB o [2005/04/17] kern/80031 [coda] [patch] Remove insque/remque from f [2005/04/17] ports/80043 lawrance New port: devel/metaEnv CWI MetaEnvironme o [2005/04/18] kern/80048 [aac] [patch] support for HP ML110 G2 SAT p [2005/04/18] bin/80058 adduser -f exits silently if file has emp o [2005/04/18] docs/80070 doc [patch] Wrong dbm_close return value desc o [2005/04/18] i386/80081 i386 [if_ndis] Problem loading a NDIS kernel m o [2005/04/19] i386/80092 i386 PC Cards do not work at all on laptop Com o [2005/04/19] i386/80095 i386 ld-elf.so.1 crashes with executables prod o [2005/04/19] bin/80097 df reports incorrect stats with gmirror o [2005/04/19] ports/80111 ume patch to make WITH_KERBEROS4 working for o [2005/04/19] bin/80117 qa [sysinstall] [patch] smbfs install option o [2005/04/20] kern/80147 multimedia [snd_sb16] [patch] panic with the vibra16 o [2005/04/20] kern/80149 multimedia problems with an soundblaster-8 (original o [2005/04/20] kern/80151 multimedia [sound] [patch] Missing ESS ES1688 PCI-ID o [2005/04/20] kern/80152 multimedia [sound] [patch] SIMPLEX flag is not set p o [2005/04/20] conf/80158 request configuration option for specifin o [2005/04/20] docs/80159 doc [patch] rtld(1) mentions "%m" but it's no o [2005/04/21] bin/80176 des fetch does not always work with https wit o [2005/04/21] docs/80186 imp [patch] Footnote is wrong in the /usr/src o [2005/04/22] ports/80227 sobomax net/ser does not have an rc script. It sh o [2005/04/22] kern/80234 multimedia [sound] [patch] add entry for Analog Devi o [2005/04/22] bin/80236 [patch] atacontrol(8) outputs minimal usa o [2005/04/22] bin/80242 [patch] jail(8) should be able to set ker o [2005/04/22] bin/80256 /rescue/vi doesn't work without terminal o [2005/04/22] bin/80258 [PATCH] Comment why some Binaries are sta o [2005/04/22] kern/80265 D-Link NIC with VIA Rhine II has no carr o [2005/04/23] kern/80269 [libtacplus] [patch] libtacplus tac_get_a f [2005/04/23] ports/80274 ports-bugs GDB console problem (ddd-3.3.10 with Free o [2005/04/23] kern/80283 [reboot] SMP problem a [2005/04/23] standards/80293standards sysconf() does not support well-defined u p [2005/04/25] bin/80348 rs(1) handles command line arguments impr o [2005/04/27] usb/80383 usb [uhid] [patch] Add quirk for uhid to igno s [2005/04/27] kern/80396 anholt [agp] i915 AGP not supported o [2005/04/27] bin/80411 [patch] df(1): bin/df/df.c sign errors in o [2005/04/27] usb/80420 usb atapicam stops iPod functionality o [2005/04/27] bin/80421 [PATCH] whois(1) should query AfriNIC ser f [2005/04/29] ports/80461 thierry The print/pdfjam port requires bash but i o [2005/04/29] kern/80465 multimedia [sound] pcm0:record:0: record interrupt t f [2005/04/30] ports/80484 thierry New port: security/synscan flexible, scri o [2005/04/30] usb/80487 usb [usb] [patch] quirk: United MP 5512 Porta o [2005/05/01] conf/80504 [patch] de_DE.ISO8859-1 libc message cata o [2005/05/02] bin/80530 man(1) should become Unicode aware o [2005/05/02] bin/80534 feature request: enumeration of filesyste o [2005/05/02] ports/80536 jmz textproc/ispell: ispell/spell seg faults o [2005/05/03] kern/80580 [panic] 4.11 router panic in lockmgr: loc o [2005/05/04] bin/80610 [patch] netstat(1): lost data due lu form o [2005/05/04] bin/80620 des [patch] fetch -U does not work o [2005/05/04] kern/80626 Out of memory ? then dead o [2005/05/05] kern/80632 multimedia pcm driver missing support for CMI8738 au o [2005/05/05] kern/80642 ipfw [ipfw] [patch] ipfw small patch - new RUL o [2005/05/06] bin/80687 [patch] Missing NULL termination after st f [2005/05/06] ports/80705 gnome [PATCH] converters/libiconv: includes a p o [2005/05/07] bin/80732 [PATCH]: getty(8) and telnetd(8) ignore t o [2005/05/08] usb/80773 usb "usbd_get_string()" could have taken a le o [2005/05/08] usb/80774 usb have "usbd_find_desc" in line with the ot o [2005/05/08] kern/80775 sysctl_handle_string should have a timeou o [2005/05/08] usb/80776 usb [udav] UDAV device driver shouldn't use u o [2005/05/08] usb/80777 usb usb_rem_task() should wait for callback t o [2005/05/09] bin/80812 [ new util ] request to add new util: get o [2005/05/09] kern/80815 acpi ACPI(pci_link) problem in 5.4-STABLE: TIM o [2005/05/09] kern/80824 multimedia [sound] kldunload can't unload sound.ko o [2005/05/10] kern/80844 [psm] [patch] Increase compatibility of p o [2005/05/10] usb/80854 usb suggestion for new iface-no-probe mechani o [2005/05/10] bin/80868 /bin/sh gives wrong line number of unterm o [2005/05/11] docs/80871 doc terminfo(5) man page source corrupted o [2005/05/11] conf/80907 tmpmfs default change o [2005/05/12] bin/80924 fsck should show CTIME. o [2005/05/12] usb/80935 usb uvisor.c is not work with CLIE TH55. o [2005/05/12] ports/80943 ale lang/php4: update PHP for new mnogosearch o [2005/05/12] ports/80944 lawrance [NEW PORT] www/mnogosearch-php: Mnogosear o [2005/05/12] ports/80946 ale www/php4-mnogosearch: Mnogosearch PHP4 Ex o [2005/05/13] ports/80968 ijliao [NEW PORT] cad/gplcver: A Verilog HDL sim o [2005/05/13] ports/80979 x11 x11/xorg-clients: when hostname is not co o [2005/05/13] threads/80992threads abort() sometimes not caught by gdb depen o [2005/05/14] kern/80999 [hang] artswrapper freezes system with 0.98, re o [2005/07/24] ports/83986 ports-bugs New port www/p5-Apache2-DebugFilter o [2005/07/24] ports/83987 ports-bugs New port www/p5-Apache2-Filter-HTTPHeader o [2005/07/24] kern/83995 CFLAGS & COPTFLAGS ambiguous behaviour o [2005/07/24] kern/84020 Couldn't load graphical screensaver modul o [2005/07/24] docs/84021 doc Missing manpage on RELENG_6 o [2005/07/25] conf/84030 [patch] /etc/rc.d/power_profile is not a o [2005/07/25] kern/84040 [mpt] 6.0-BETA1 mpt driver not working un o [2005/07/25] bin/84041 [PATCH] fix for wall(1) error message o [2005/07/25] bin/84050 tcpdump is dumping hex instead of text du f [2005/07/25] ports/84053 portmgr mail/qmail: Big patch to prevent stale de s [2005/07/25] bin/84084 qa [sysinstall] FreeBSD 4.11-R won't install p [2005/07/26] docs/84101 garys mt(1) manpage has erroneous synopsis, etc s [2005/07/26] ports/84143 skv Update www/p5-Apache-Peek 1.02 -> 1.04, r o [2005/07/27] docs/84154 doc Handbook somewhat off in use of /boot/ker o [2005/07/27] bin/84162 (t)csh: builtins commands with redirectio o [2005/07/27] conf/84172 loader.conf(5) is missing an entry for "d o [2005/07/28] kern/84199 dlinfo in libexec/elf-rtld/rtld.c does no o [2005/07/28] bin/84208 qa [sysinstall] "Leave the MBR untouched" op o [2005/07/28] ports/84212 cy misc/screen port can't talk to TTYs o [2005/07/28] kern/84215 [jail] [patch] wildcard ip (INADDR_ANY) s o [2005/07/28] kern/84219 [ncurses] [patch] ncurses.h wchar_t confl o [2005/07/28] kern/84225 gnn losing default route changing netmask on o [2005/07/28] ports/84255 tobez [patch] lang/perl5.8 (5.8.7) and freebsd. p [2005/07/29] docs/84264 keramida [patch] ata(4) manpage disagrees with tun o [2005/07/29] docs/84265 doc [patch] chmod(1) manpage omits implicatio p [2005/07/29] docs/84266 garys security(8) manpage should have init(8)'s o [2005/07/29] docs/84267 doc chflags(1) manual doesn't say it's affect o [2005/07/29] docs/84268 doc chmod(1) manpage's BUGS entry is either w o [2005/07/29] docs/84271 ceri compress(1) doesn't warn about nasty link p [2005/07/29] docs/84273 keramida disktab(5) manual has bad SEE ALSO o [2005/07/29] bin/84298 [patch] allow mount(8) to recognize relat o [2005/07/29] ports/84299 ports-bugs A (possible) bug in ports/Mk/bsd.ruby.mk o [2005/07/29] kern/84311 multimedia [sound] 82801FB/FR/FW/FRW Intel High Defi o [2005/07/29] docs/84317 doc fdp-primer doesn't show class=USERNAME di o [2005/07/30] ports/84329 ports-bugs New port: x11-fonts/proggy_fonts a monosp o [2005/07/30] ports/84342 ports-bugs New port: security/klamav f [2005/07/31] ports/84369 thierry update x11-toolkits/iwidgets o [2005/07/31] kern/84386 Feature Request: PPPoA Authentication bui o [2005/07/31] docs/84408 doc dump(8) manpage doesn't require an option o [2005/07/31] docs/84409 doc vinum-object-naming.html -v/-U typo o [2005/08/01] ports/84465 tobez Update port: mail/p5-Mail-Box v2.042 => v o [2005/08/02] docs/84467 doc bsdlabel(8) manpage uses archaic "pack" i o [2005/08/02] kern/84471 multimedia [sound] [patch] no sound ICH4 (Analog Dev o [2005/08/02] bin/84494 rpcbind TCP cannot be told to bind to a s f [2005/08/02] ports/84501 pav update lang/oo2c p [2005/08/03] kern/84503 Deadlock when filesystem is full o [2005/08/03] kern/84507 multimedia [sound] fm801: Not every card supports va s [2005/08/03] docs/84519 doc [patch] mdoc(7) manpage needs more about o [2005/08/03] bin/84520 whatis(1) program burps on /bin/[ o [2005/08/03] ports/84521 ports-bugs New port: sysutils/nctop o [2005/08/03] ports/84530 ports-bugs [New Port] net-mgmt/ourmon: Network Monit o [2005/08/04] docs/84538 doc sk(4) driver supports Marvell 88E800x chi o [2005/08/04] docs/84549 doc [patch] errno(2) manpage uses "<...>" for s [2005/08/04] docs/84550 doc mdoc(7) manpage erroneously requires SYNO o [2005/08/04] i386/84555 i386 boot2 unable to load kernel directly. f [2005/08/04] ports/84561 ports-bugs [new port] audio/xmms2 o [2005/08/05] bin/84569 rm -W sometime does not work o [2005/08/05] conf/84581 [patch] Teach config(8) to look for kerne o [2005/08/06] usb/84608 usb Sony digital camera DSC-P100, rev 2.00/5. o [2005/08/06] ports/84614 ports-bugs New port: java/eclipse-javasvn o [2005/08/06] docs/84620 doc [patch] xargs(1) manpage has "utility" an o [2005/08/06] ports/84625 ports-bugs New port: lang/twelf A meta-logical frame o [2005/08/07] bin/84634 fjoe [geom] [patch] new utility to control GEO o [2005/08/07] docs/84645 doc intro(6) manpage should always be install o [2005/08/07] docs/84646 doc terminfo(5) manpage confuses man program. o [2005/08/07] ports/84650 ale customizable pid filename for databases/m o [2005/08/07] amd64/84652 amd64 kbdmap -r dumps core f [2005/08/08] bin/84667 qa [sysinstall] annoying installation proble o [2005/08/08] docs/84670 doc [patch] tput(1) manpage missing ENVIRONME o [2005/08/08] misc/84674 Installer trying to install bad package t o [2005/08/09] bin/84705 fdisk(8) program warning about sector num o [2005/08/09] ports/84711 az rcNG script for net-mgmt/arpwatch f [2005/08/09] ports/84718 girgen [PATCH] databases/postgresql74-server: Ad o [2005/08/10] ports/84742 phantom make ports/java/jdk14 use dynamic Motif l o [2005/08/10] conf/84752 [patch] 100.clean-disks cleans file syste o [2005/08/10] kern/84761 shutdown() of non-connected socket should o [2005/08/10] docs/84764 doc [patch] hosts.equiv(5) manpage should SEE o [2005/08/10] ports/84775 sem new port: databases/kmysqladmin o [2005/08/11] docs/84790 doc Error in SYSCALL_MODULE(9) manual page o [2005/08/11] kern/84797 [libutil] [patch] State engine in the lib o [2005/08/11] conf/84800 obrien [patch] setting CPUTYPE=nocona on an Inte o [2005/08/11] docs/84806 doc mdoc(7) manpage has section ordering prob s [2005/08/11] ports/84819 ports-bugs [MAINTAINER] math/coq: enable on ia64 o [2005/08/11] kern/84823 [bpf] [patch] bpf in non-blocking mode is o [2005/08/12] misc/84833 netchild include make.conf NO_* targets into delet o [2005/08/12] docs/84849 doc [patch] fdisk(8) manpage doesn't warn fdi f [2005/08/13] ports/84869 ports-bugs New port: textproc/regex-coach f [2005/08/13] ports/84876 trevor [NEW PORT] print/acroread7-esp: The Acrob o [2005/08/13] ports/84886 hrs [NEW PORT] japanese/acroread7-jpn: The Ac o [2005/08/14] bin/84911 [patch] ndisgen(8) can't cope with .sys-f o [2005/08/14] docs/84913 doc bsdlabel(8) manpage seems wrong about fsi o [2005/08/14] kern/84920 math programs reporting incorrect values o [2005/08/15] docs/84955 doc [patch] mdoc(7) manpage should mention mi o [2005/08/15] docs/84956 doc [patch] intro(5) manpage doesn't mention o [2005/08/15] kern/84957 fire_saver.ko causes high CPU usage by sw o [2005/08/15] docs/84961 doc [patch] Sync NDIS documentation with real o [2005/08/16] gnu/84976 System ncruses does not have wide charact o [2005/08/16] kern/84981 [headers] [patch] header protection for < o [2005/08/16] kern/84983 scottl [udf] [patch] udf filesystem: stat-ting f o [2005/08/16] ports/84986 obrien [port update] devel/gdb53 unbreak o [2005/08/16] bin/84992 gcc4.x cleanup of usr.bin/hexdump o [2005/08/16] bin/84993 kientzle gcc4.x cleanup of usr.bin/tar o [2005/08/16] bin/84994 gcc4.x cleanup of usr.bin/wc o [2005/08/16] ports/84999 hoek [patch] bug in the uulib-0.5.20 p [2005/08/16] docs/85008 keramida [patch] environ(7) manpage references bui f [2005/08/16] bin/85011 imp /sbin/restore on 5.4 will not read Solari o [2005/08/17] ports/85031 sobomax [NEW PORT] net/astfax o [2005/08/17] bin/85049 rbootd(8) spams console (regression) o [2005/08/17] docs/85062 doc tr(1) manpage omits several character cla o [2005/08/17] docs/85063 doc expand(1) manpage needs to clarify -t opt o [2005/08/17] docs/85066 doc [patch] builtin(1) manpage has incomplete o [2005/08/18] usb/85067 usb Cannot attach ScanJet 4300C to usb device p [2005/08/18] docs/85079 keramida umodem(4) - add "ELSA MicroLink 56k USB" o [2005/08/18] standards/85080standards output of long double subnormals (with pr o [2005/08/18] kern/85086 [ef] [patch] Locking fixes for ef(4) (+re o [2005/08/18] misc/85087 send-pr should prefer to use HTTP, rather o [2005/08/18] standards/85090standards [patch] add memalign() and posix_memalign o [2005/08/18] docs/85097 doc [patch] devd.conf.5 lacks a lot of vital p [2005/08/18] standards/85099tjr POSIX violation in split(1) o [2005/08/18] docs/85100 doc ICH audio device support statement is amb o [2005/08/19] docs/85103 doc sh(1) manpage doesn't contain the word "c o [2005/08/19] kern/85106 The ICH7 smb interface is not recognised o [2005/08/19] docs/85118 doc [PATCH] opiekey(1) references non-existin o [2005/08/19] docs/85127 doc loader(8) manpage uses too-rare "depurati o [2005/08/19] docs/85128 doc loader.conf autoboot_delay incompletly de o [2005/08/19] ports/85132 x11 XOrg 6.8.2 won't start on Toshiba Satelli p [2005/08/20] docs/85142 simon ccdconfig manpage references outdated inf o [2005/08/20] conf/85143 grog [patch] fix usr.bin/calendar/calendars/de o [2005/08/20] amd64/85144 amd64 Asus K8S-MX mobo, integ LAN not recognize o [2005/08/20] ports/85151 kuriyama net-mgmt/net-snmp patch addition request o [2005/08/21] kern/85175 emulation [linux] [patch] linux emulation layer wit p [2005/08/21] kern/85176 des [kernel] [patch] optimization of fdalloc p [2005/08/21] kern/85185 des [libfetch] [patch] Env Parser problem in o [2005/08/21] docs/85186 doc ktrace(1) manpage doesn't warn about need o [2005/08/21] docs/85187 doc find(1) manpage missing block info for -l o [2005/08/21] docs/85194 doc man ssh(1) -o description o [2005/08/22] kern/85203 [headers] [patch] add TH_PUSH to TH_FLAGS o [2005/08/22] bin/85204 [patch] add read-ahead to amd(8) for NFS o [2005/08/22] kern/85205 Minor information leak in jails - a user o [2005/08/22] docs/85209 doc pfsync man page corrections o [2005/08/22] docs/85232 doc [PATCH] instructions on building web site o [2005/08/23] i386/85242 i386 [libc] [patch] libc contains relocation t o [2005/08/23] docs/85243 doc Missing icmp related abbreviations for pf o [2005/08/23] i386/85246 i386 unable to install from CD on Asus PC-DL D a [2005/08/23] ports/85254 trevor [patch] emulators/linux_base-rh-9: add /u o [2005/08/23] kern/85257 [boot] BTX boot loader fails on USB CDROM o [2005/08/24] bin/85261 krion [patch] nanobsd build breaks on pkg_add p [2005/08/24] bin/85267 stefanf sh -e exits when command "false || return o [2005/08/24] i386/85273 i386 FreeBSD (NetBSD or OpenBSD) not install o f [2005/08/26] ports/85312 vs [MAINTAINER-UPDATE] Update ports/games/xs o [2005/08/26] ports/85327 ports-bugs [NEW PORT] games/gngeo - NeoGeo emulator o [2005/08/27] www/85333 www BSDTechTalk community with tutorials is n o [2005/08/27] docs/85353 doc Very little cosmetic/ponctuation changes o [2005/08/27] conf/85363 syntax error in /etc/rc.d/devfs o [2005/08/28] bin/85367 qa [sysinstall] [patch] fix package categori o [2005/08/28] i386/85417 i386 [i386] [patch] Possible bug in ia32 float o [2005/08/28] i386/85423 i386 [ex] ex(4) does not correctly recognize N o [2005/08/29] docs/85425 doc fido (watchdog) device /dev/fido not docu o [2005/08/29] bin/85445 ifconfig(8): deprecated keyword to ifconf o [2005/08/29] bin/85449 dougb [patch] mergemaster(8) default for deleti o [2005/08/30] kern/85477 [xe] [patch] fix driver message in if_xe. o [2005/08/30] kern/85479 anholt [drm] [patch] Two small fixes for DRM/DRI o [2005/08/30] bin/85494 fsck_ffs: unchecked use of cg_inosused ma o [2005/08/30] misc/85497 pkill CVS module points to wrong location o [2005/08/30] bin/85502 dump prints negative time and gt 100% don o [2005/08/31] ports/85513 netchild Intel C++ compiler not 100% binary compat o [2005/08/31] conf/85548 [patch] share/examples/etc/make.conf: del o [2005/09/02] amd64/85626 amd64 java/jdk15 compile error o [2005/09/02] ports/85642 obrien core dump in shells/bash2 (or maybe libre o [2005/09/02] kern/85648 [net] [patch] provide more specific defau o [2005/09/02] kern/85649 [msdosfs] [patch] allow mounting msdos fi o [2005/09/02] kern/85650 [libstand] [patch] modifications to tftp- o [2005/09/02] kern/85651 [kernel] [patch] debugging code to show e o [2005/09/02] i386/85652 i386 [loader] [patch] deal with out-of-memory o [2005/09/02] i386/85653 i386 [i386] [patch] relieve hangs in tight loo o [2005/09/02] i386/85654 i386 [i386] [patch] separate max cpu from max o [2005/09/02] i386/85655 i386 [i386] [patch] expose cpu info for i386 s o [2005/09/02] i386/85656 i386 [i386] [patch] expose more i386 specific o [2005/09/02] kern/85657 [kernel] [patch] capture and expose per-C o [2005/09/02] kern/85658 jeff [sched_ule] [patch] add DDB command, show s [2005/09/04] ports/85704 portmgr Add WITH_GL user variable to bsd.port.mk o [2005/09/04] ports/85707 nork port www/linuxpluginwrapper makes mozilla o [2005/09/04] bin/85712 uncompress(1) program emits bogus "overwr f [2005/09/05] www/85724 remko Please add our company to your list of se o [2005/09/05] ports/85731 clsung New ports: textproc/openvanilla-framework o [2005/09/05] docs/85733 remko FAQ should point to /boot/loader.conf for o [2005/09/05] ports/85746 kris [patch] Tools/portbuild/scripts/buildscri o [2005/09/06] kern/85780 'panic: bogus refcnt 0' in routing/ipv6 o [2005/09/06] ports/85788 roam [PATCH] mail/vpopmail: Add sgid to vchkpw o [2005/09/06] kern/85792 53c1030 is detected, but doesn't work pro o [2005/09/06] amd64/85812 amd64 "Rebooting..." on serial console appears o [2005/09/07] conf/85819 [patch] script allowing multiuser mode in o [2005/09/07] amd64/85820 amd64 1.5 times slower performance with SCHED_U o [2005/09/07] gnu/85824 obrien gas crashes when assembling this file p [2005/09/07] ports/85827 trevor [patch] print/acroread7: prefix changes f o [2005/09/07] ports/85841 cjh Update port: print/cjk-lyx Update to 1.3. o [2005/09/07] i386/85851 i386 system hangs on during booting the machin o [2005/09/08] ports/85872 ale [PATCH] www/eaccelerator: security issue o [2005/09/08] kern/85886 [an] an0: timeouts with Cisco 350 minipci o [2005/09/09] gnu/85895 [PATCH] cc -print-search-dirs returns (nu o [2005/09/09] kern/85902 strange sysctl output o [2005/09/11] kern/85964 multimedia [sound] Can't play 24 bit audio (Audigy 2 o [2005/09/11] kern/85971 jeff [uma] [patch] minor optimization to uma o [2005/09/11] bin/85977 mount_smbfs needs port parameter o [2005/09/11] ports/85979 simokawa [patch]: Unregistered conflict between mu o [2005/09/11] ports/85985 ports-bugs [NEW PORT] mail/couriergraph: A RRDtool f o [2005/09/11] docs/85986 doc FreeBSD keyword missing if you display se o [2005/09/11] ports/85988 ale print/pdflib can't build o [2005/09/11] usb/85992 usb [uhid] [patch] USB stops working when try o [2005/09/12] ports/85997 phantom java/jdk15 1.5.0p1_3 causes keyboard prob o [2005/09/12] kern/86003 Startup reports "failed to attach P_CNT" o [2005/09/13] docs/86044 doc man 8 jail missing crucial mount in start o [2005/09/13] kern/86049 laptop fan does not turn off if it is "on o [2005/09/13] i386/86068 i386 Fatal trap 12,while running pim6sd o [2005/09/13] docs/86090 doc [PATCH] clarification of rc.conf(5) manua o [2005/09/13] usb/86094 usb [uscanner] [patch] Support for Epson 2480 o [2005/09/14] ports/86098 ports-bugs [PATCH] devel/pear-PEAR/Makefile.common: s [2005/09/14] ports/86106 portmgr ${CC} should be added to ${MAKE_ENV} when o [2005/09/14] kern/86124 [em] dell 1850 pro/1000 slow (em problem? o [2005/09/14] kern/86131 [cam] [patch] quirk for Creative MuVo sli o [2005/09/14] docs/86134 blackend [patch] fix inconsistency in handbook sec o [2005/09/15] bin/86148 [patch] dirname(1) doesn't take multiple o [2005/09/15] ports/86156 anders [update] security/vpnd to 1.1.2 o [2005/09/15] ports/86186 edwin [UPDATE] games/q3server: integrate with " o [2005/09/15] ports/86187 edwin [UPDATE] games/q3server-excessive: integr o [2005/09/15] ports/86188 edwin [UPDATE] games/q3server-freezetag: integr o [2005/09/15] ports/86189 edwin [UPDATE] games/q3server-osp: integrate wi o [2005/09/15] ports/86190 edwin [UPDATE] games/q3server-ra3: integrate wi o [2005/09/15] ports/86191 edwin [UPDATE] games/q3server-ut: integrate wit o [2005/09/15] ports/86192 edwin [UPDATE] games/q3server-wfa: integrate wi o [2005/09/16] usb/86195 usb [patch] allow USB Ethernet Adaptor "ELECO o [2005/09/16] ports/86206 openoffice editors/openoffice.org-2.0: Unable to bui o [2005/09/16] ports/86209 anders Updates port to dmidecode-2.7 o [2005/09/16] ia64/86218 ia64 Mozilla / Firefox: regxpcom or regchrome p [2005/09/16] docs/86228 keramida typos in man4 manual pages, fe.4. p [2005/09/16] docs/86234 keramida Need to explain * in master.passwd in pas o [2005/09/17] conf/86252 [PATCH] /etc/rc.d/sendmail wants to build o [2005/09/17] ports/86281 portmgr Additional commentary for describes targe o [2005/09/18] ports/86283 perky devel/newt build WITH_PYTHON fails on amd o [2005/09/18] kern/86290 jeff [kernel] [patch] minor optimizations + cl o [2005/09/18] usb/86298 usb Known good USB mouse won't work with corr o [2005/09/19] kern/86319 [nfs] [feature request] support a "noac" o [2005/09/19] ports/86334 pat x11-clocks/wmclockmon :: bug in internet o [2005/09/19] kern/86336 rwatson [kernel] LOR in kern/uipc_usrreq.c and ke o [2005/09/19] docs/86342 doc bikeshed entry of Handbook is wrong o [2005/09/20] ports/86384 mnag openssh-portable GSSAPI key-exchange patc o [2005/09/20] ports/86385 bms sysutils/aaccli has wrong pkg-descr o [2005/09/21] bin/86388 [patch] periodic(8) daily should backup b o [2005/09/21] ports/86394 ports-bugs [NEW PORT] graphics/crystalspace: Crystal s [2005/09/21] ports/86401 ports-bugs new ports multimedia/zapping o [2005/09/21] bin/86405 /usr/bin/more segmentation fault o [2005/09/21] misc/86412 can not link shared libs to libstdc++ and o [2005/09/21] kern/86429 [if_tap] [patch] if_tap doesn't filter fr o [2005/09/21] kern/86437 andre tcp_input.c and tcp_sack.c refer to obsol o [2005/09/21] usb/86438 usb Fix for non-working iPod over USB is in N s [2005/09/22] ports/86451 vsevolod Update port: www/plone (upgrade to the la o [2005/09/22] kern/86453 kientzle [patch] libarchive memory leak with bad f o [2005/09/22] bin/86454 qa [sysinstall] sysinstall terminates with s o [2005/09/22] ports/86462 ports-bugs [NEW PORT] chinese/sdcv-dict-zh_TW: Engli o [2005/09/22] ports/86465 mnag add MIT kerberos option to mail/postfix o [2005/09/22] ports/86475 ports-bugs New Ports: devel/sfslite-noopt and devel/ f [2005/09/23] standards/86484rwatson [PATCH] mkfifo(1) uses wrong permissions o [2005/09/23] bin/86485 [PATCH] hexdump -s speedup on /dev f [2005/09/23] ports/86486 vs Update devel/tclreadline port for newer v f [2005/09/23] ports/86491 arved Kaffeine fails to compile o [2005/09/23] ports/86512 gerald [new port] lang/gcc401 o [2005/09/24] ports/86521 nectar [PATCH] japanese/ja-im-ja: [fix build on o [2005/09/24] kern/86536 multimedia [sound] /dev/mixer has no devices (still) o [2005/09/25] ports/86543 hrs [New Port] devel/plan9port o [2005/09/25] kern/86557 multimedia [sound] Sound Card Volume isn't adjustabl f [2005/09/25] i386/86563 i386 System doesn't reboot on "shutdown -r now o [2005/09/26] ports/86572 kuriyama net-snmp doesn't know how to fill in hrSW o [2005/09/26] ports/86580 ale [new port] databases/php5-oci8: Oracle OC o [2005/09/26] bin/86587 rm -r /PATH fails with lots of small file o [2005/09/26] ports/86594 markp [update] sysutils/ndir 0.8.8 o [2005/09/26] bin/86600 qa [sysinstall] Sysinstall boot manager scre o [2005/09/26] ports/86601 anders [NEW PORT] www/thttpd-st: Tiny/turbo/thro o [2005/09/26] ports/86602 ale [NEW PORT] irc/php4-ircg: The ircg (IRC g o [2005/09/26] ports/86608 ale lang/php5: Enhancement to allow dynamic o p [2005/09/27] kern/86618 jhb [nge] [panic] panic with ifconfig nge p [2005/09/27] gnu/86627 brooks src/contrib/bc / option -h / contains typ o [2005/09/27] ports/86634 ports-bugs New port: net-mgmt/torrus The Data Series o [2005/09/27] bin/86635 [patch] pfctl: allow new page character ( o [2005/09/27] bin/86647 natd(8) copy to limied buffer size withou o [2005/09/27] kern/86655 [msdosfs] [patch] msdosfs incorrectly han o [2005/09/28] kern/86657 [kbd] [patch] change to USB keyboard opti o [2005/09/28] bin/86665 qa [sysinstall] sysinstall binary upgrade cl f [2005/09/28] i386/86666 kernel trap 18 with interrupts disabled o [2005/09/28] conf/86668 gshapiro sendmail rc.d sequence wrong o [2005/09/28] ports/86671 x11 xorg does not recognize newer ATI chipset f [2005/09/28] ports/86684 thierry [PATCH] pear-PEAR/Makefile.common trimmin o [2005/09/29] kern/86693 [nis] [patch] inconsistency between getus f [2005/09/29] ports/86715 ports-bugs drupal missing dependency o [2005/09/29] docs/86733 doc [patch] Add using kldload as an alternati o [2005/09/30] ports/86741 nork NULL pointer dereference in graphics/xpdf o [2005/09/30] bin/86742 kientzle [libarchive] [patch] Add archive_open_ to a [2005/09/30] kern/86752 mlaier pf does not use default timeouts when rel a [2005/09/30] conf/86759 ssh(1): unable to initialise sftp with ss o [2005/09/30] bin/86765 bsdlabel assing wrong fs type. f [2005/10/01] ports/86776 portmgr [patch] bsd.port.mk - fetch-list doesn't o [2005/10/01] ports/86785 scrappy patch: converters/p5-Convert-ASN1 - updat o [2005/10/01] java/86804 java [PATCH] Install a desktop icon for the ja o [2005/10/01] i386/86820 i386 ISO Install Disk hangs after acd0: o [2005/10/02] ports/86839 mnag Update port: sysutils/pcfclock revised to o [2005/10/02] ports/86843 ports-bugs [NEW PORT] graphics/crystalentitylayer: C o [2005/10/03] bin/86859 qa [sysinstall] Installer should ask about L o [2005/10/03] kern/86871 allocation logic for PCBs in TIME_WAIT st o [2005/10/03] bin/86873 file(1) does not recognize 5.x filesystem o [2005/10/03] docs/86876 doc Opera is now ad-free for everybody, refle f [2005/10/04] ports/86899 ahze multimedia/mjpegtools - lavplay/glav clai o [2005/10/05] bin/86940 des src/usr.bin/fetch - fix mirror mode (-m) f [2005/10/05] ports/86947 tobez ports:pari update (2.1.6 -> 2.1.7) o [2005/10/05] kern/86957 ipfw [ipfw] [patch] ipfw mac logging o [2005/10/06] kern/86965 [ntfs] NTFS driver returns incorrect 'num o [2005/10/06] kern/86966 LG GCC-4242N CD-RW write failure o [2005/10/06] conf/86973 Daily periodic mail rejects out of contro o [2005/10/06] ports/86997 ports-bugs New port: games/oolite - clone of Elite s o [2005/10/07] bin/87022 telnet hang in ptcout o [2005/10/07] www/87025 remko Website inconsistency: missing platforms o [2005/10/07] kern/87032 ipfw [ipfw] [patch] ipfw ioctl interface imple f [2005/10/07] ports/87037 tobez [MAINTAINER] www/p5-W3C-LogValidator: upd o [2005/10/07] kern/87074 mlaier pf does not log dropped packets when max- s [2005/10/07] ports/87092 obrien [UPDATE] editors/vim: notify the user abo o [2005/10/07] www/87093 bugmeister reporting bugs - filter some by adding li o [2005/10/08] www/87119 hrs [patch] encode copyright and such symboli o [2005/10/08] ports/87120 lev [PATCH] Add libiconv support to devel/min o [2005/10/08] ports/87128 ports-bugs New port: activeheart: nice KDE Window de o [2005/10/08] ports/87133 ports-bugs New port databases/p5-DBIx-DWIW A DBI wra o [2005/10/09] www/87144 www New site has "Submit Bug" link under "Sec o [2005/10/09] ports/87151 nobutaka Update port: editors/emacs Fix package bu o [2005/10/09] www/87152 www Missing Link o [2005/10/09] www/87153 www Missing Links in Table www/german o [2005/10/09] ports/87160 x11 [UPDATE] xorg-server: nv GeForce screento f [2005/10/09] ports/87180 edwin [UPDATE] games/quake2forge: integrate wit o [2005/10/10] docs/87186 doc Handbook recommends outdated make op. f [2005/10/10] ports/87187 dougb Window Maker Preferences Program (WPrefs. o [2005/10/10] conf/87196 human readable disk free in daily output o [2005/10/10] ports/87204 tjr [UPDATE PATCH] net/coda6_server & depende o [2005/10/10] kern/87208 /dev/cuad[0/1] bad file descriptor error o [2005/10/10] ports/87214 portmgr Fix warning issued during make index o [2005/10/10] i386/87222 i386 The moving cursor of the mouse at a login o [2005/10/10] usb/87224 usb Cannot mount USB Zip750 o [2005/10/10] bin/87230 [PATCH] -G is ignored when adduser get ac o [2005/10/11] ports/87234 portmgr [patch] bsd.port.mk: add patch-dos2unix t o [2005/10/11] ports/87240 edwin [REPOCOPY] games/kxl -> devel/kxl o [2005/10/11] ports/87245 nork DarwinStreamingServer port fails on amd64 o [2005/10/11] ports/87295 billf [PATCH] irc/bnc: update to 2.9.4 p [2005/10/12] docs/87302 delphij [PATCH] Mention the fact that hptmv(4) wo a [2005/10/12] ports/87312 obrien Update misc/figlet to 2.2.2 o [2005/10/12] ports/87318 portmgr [patch] bsd.port.mk - add support for PER f [2005/10/12] ports/87332 sem [UPDATE] lang/ruby: Update to 1.8.3; taki o [2005/10/12] ports/87337 ports-bugs [NEW PORT] devel/SPE: Stani's Python Edit o [2005/10/12] ports/87340 ports-bugs New port: games/tmw A free open source 2D o [2005/10/12] kern/87350 Reproducible 6.0-RC1 kernel panic p [2005/10/13] docs/87351 keramida Jail building instructions don't work as s [2005/10/13] bin/87352 glebius [PATCH] Add line edit and history support o [2005/10/13] i386/87359 i386 /usr/src/crypto/openssh does not honour N o [2005/10/13] usb/87395 usb [uscanner] [patch] Adding support for Can o [2005/10/13] ports/87396 portmgr Fix bsd.port.mk variable quoting issues o [2005/10/14] ports/87420 portmgr Update Mk/bsd.port.mk implementing WITH_O o [2005/10/14] docs/87445 trhodes comments for improvement of handbook/kern p [2005/10/14] kern/87455 csjp bsnmp doesn't show correct status for ifO o [2005/10/14] ports/87468 nobutaka The editors/emacs port is outdated o [2005/10/16] i386/87507 i386 installation of 6.0 RC1 failed to create o [2005/10/16] ports/87508 anders option request for mail/imap-uw o [2005/10/16] ports/87511 markp [patch] Update graphics/ppmcaption to 1.1 o [2005/10/16] kern/87515 Splash screen fails to load on boot o [2005/10/16] ports/87522 ports-bugs [NEW PORT] www/joomla: Content Management s [2005/10/16] ports/87528 x11 Missing koi8-r encoding for xorg-fonts-en o [2005/10/16] bin/87529 "pw lock", "pw unlock" should support the o [2005/10/17] java/87552 java Enable multi-job builds for CPP files in f [2005/10/17] ports/87562 ume cyrus-sasl2 make package fails o [2005/10/17] ports/87571 phantom java/jdk15: Port-Installation Java 1.5 Fr o [2005/10/17] ports/87581 ports-bugs [NEW PORT] security/jailaudit: Generate p o [2005/10/18] ports/87605 portmgr [patch] bsd.port.mk - add NOFETCHFILES va o [2005/10/18] kern/87615 Linux binaries need execution of shared l o [2005/10/18] ports/87625 sobomax Update port: misc/zaptel update to 0.11 o [2005/10/18] ports/87642 portmgr Contrary to ports(7) there is no target " o [2005/10/19] ports/87644 kuriyama retire devel/p5-Test-Builder-Tester o [2005/10/19] usb/87648 usb [mouse] Logitech USB-optical mouse proble o [2005/10/19] ports/87649 kuriyama Update port: devel/rapidsvn (teach about o [2005/10/19] bin/87651 [patch] fsck(8) (on superblock error) tel o [2005/10/19] kern/87653 [drm] ATI Radeon Mobile X600SE not detect f [2005/10/19] www/87656 remko BSD Usenet News Searcher does not work o [2005/10/19] docs/87681 doc [PATCH] correct gettimeofday manpage, doc o [2005/10/20] docs/87698 doc No manual entry for rc.conf.local f [2005/10/20] ports/87703 ports-bugs [PATCH] finance/gnucash: update to 1.8.12 o [2005/10/20] ports/87709 mharo update converters/p5-Convert-PEM o [2005/10/20] ports/87716 aaron update net/p5-Net-SSH-Perl o [2005/10/20] bin/87724 cal(1)/ncal(1) not multibyte aware o [2005/10/20] docs/87725 doc error in documentation o [2005/10/20] bin/87726 gssapi.h is not c++ aware o [2005/10/20] bin/87728 mozilla: libnegotiateauth.so broken o [2005/10/20] ports/87745 emulation [patch] x11-toolkits/linux-openmotif: add o [2005/10/20] ports/87751 trevor replace master for lcsrc.zip o [2005/10/20] ports/87759 ports-bugs New Port: security/tor-devel o [2005/10/20] docs/87762 doc Fixes various anoncvs examples to work o [2005/10/21] ports/87773 apache duplicate INDEX entry: www/mod_rpaf* o [2005/10/21] ports/87777 kwm gstreamer-properties dies with "undefined o [2005/10/21] kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: re o [2005/10/21] ports/87808 markp Update port: archivers/xdms update MASTER o [2005/10/21] ports/87812 pat Deprecated port: astro/gkrellmearth o [2005/10/21] ports/87813 will Update port: astro/wmglobe update MASTER_ o [2005/10/21] ports/87814 kris Deprecated port: astro/xglobe o [2005/10/22] kern/87836 If using ATAPICAM with cd(dvd)rw without o [2005/10/22] ports/87840 portmgr bsd.port.subdir.mk improving(make search) o [2005/10/22] bin/87841 fetch should have options to set http "if f [2005/10/22] bin/87843 FreeBSD specific gcc compiler error o [2005/10/22] kern/87845 [sio] [patch] sio(4) should on probe retu o [2005/10/23] docs/87857 doc ifconfig(8) wireless options order matter o [2005/10/23] ports/87858 ports-bugs New port: www/squid_radius_auth o [2005/10/23] ports/87860 ports-bugs New Port: mail/squirrelmail-vlogin-plugin o [2005/10/23] ports/87880 ports-bugs New port: irc/irssi-dcc_send_limiter [Irs f [2005/10/23] ports/87881 az Update port: sysutils/am-utils to 6.1.3 o [2005/10/23] amd64/87882 amd64 emu10k1 and APCI on amd64 is just noisy o [2005/10/23] ports/87883 ports-bugs New port: kde-icons-CrystalClear o [2005/10/24] conf/87895 defaults/make.conf incorrect advice about o [2005/10/24] kern/87906 rodrigc [nullfs] [patch] nullfs NFS exporting o [2005/10/24] conf/87914 Adduser, uuid not used from adduser.conf o [2005/10/24] conf/87925 [patch] feature request: modify output of o [2005/10/24] ports/87929 trevor Deprecated port: audio/mutemix o [2005/10/24] ports/87931 petef Update port: audio/napster update WWW on o [2005/10/24] docs/87936 doc Chapter on NIS/YP lacks good information o [2005/10/24] ports/87940 trevor Update port: audio/spiralsynth update MAS o [2005/10/25] bin/87966 [PATCH] introduce -A flag for newfs to en o [2005/10/25] i386/87968 i386 [fdc] cannot access the floppy device f [2005/10/25] ports/87973 jylefort New port: www/django, the web framework f o [2005/10/25] bin/87981 darrenr [patch] ipmon(8) writes pid file even whe o [2005/10/25] ports/87988 grog Update port: benchmarks/rawio update MAST o [2005/10/25] kern/87990 [kernel] [patch] SMP Race Condition in kd o [2005/10/25] ports/88009 grog Update port: cad/sceptre update MASTER_SI p [2005/10/26] docs/88015 keramida typo in top(1) manual page o [2005/10/26] i386/88020 i386 cannot boot unless: hint.apic.0.disabled= o [2005/10/26] ports/88032 okazaki PATCH: converters/mule-ucs: coding catego o [2005/10/26] ports/88048 glewis java/javavmwrapper: can't set $PORTDIRS t f [2005/10/26] ports/88051 ports-bugs Update port: deskutils/phprojekt s [2005/10/26] bin/88056 feature request: cp(1) could really use L o [2005/10/27] bin/88077 w(1): w -n problems with IPv6 addresses a o [2005/10/27] www/88084 www fortune not found in online man pages o [2005/10/27] ports/88093 jedgar Update port: databases/dbf2mysql o [2005/10/27] ports/88101 seanc Update port: databases/postgresql-devel f o [2005/10/28] kern/88117 [rtld] [patch] support of $ORIGIN in rtld o [2005/10/28] bin/88119 [patch] partial matching for ifconfig(8) o [2005/10/28] kern/88150 des [pam] PAM does not search /usr/local/lib o [2005/10/28] ports/88157 danfe Update port: devel/asmutils fix WWW on pk p [2005/10/28] bin/88159 brooks ifconfig(8) coredumps when string is too o [2005/10/29] ports/88166 skv add postgresql dependency to devel/bugzil f [2005/10/29] ports/88177 ports-bugs Update port: irc/thales o [2005/10/29] kern/88182 [ural] wep is broken in ural(4) hostap mo p [2005/10/29] bin/88203 csjp [patch] fstat(1) does not show correct de o [2005/10/30] conf/88222 [patch] wrong date format in sv_SE.UTF-8 o [2005/10/30] ports/88230 portmgr Please add a new virtual category for Ama o [2005/10/30] ports/88232 trevor Update devel/p5-Class-MethodMaker to 2.07 f [2005/10/30] ports/88246 gerald gcc-3.4.5 port does not compile on FreeBS o [2005/10/30] ports/88247 sem [Maintainer Update] sysutils/kdar: Update o [2005/10/30] bin/88252 units(1) table errors/omissions for troy f [2005/10/30] ports/88256 ports-bugs [New port] math/LabPlot: add LabPlot (Dat f [2005/10/31] ports/88259 arved [patch] Update devel/kscope to 1.3.1 o [2005/10/31] ports/88260 lawrance Update port: net/poptop Update version 1. f [2005/10/31] ports/88261 lawrance update www/xist to 2.12 o [2005/10/31] www/88263 fenner http://docs.freebsd.org/cgi/mid.cgi outpu o [2005/10/31] kern/88271 [pf] [patch] pf.ko from buildkernel can't o [2005/10/31] ports/88285 billf Update port: devel/clig fix WWW on pkg-de o [2005/10/31] ports/88287 petef Deprecated port: devel/cvspadm o [2005/10/31] ports/88290 perky Deprecated port: devel/decompyle o [2005/11/01] ports/88306 mnag [NEW PORT] games/glest: Free 3d real-time o [2005/11/01] ports/88316 obrien [patch] add extra tarballs to vim and pat o [2005/11/01] i386/88320 i386 ypxfr talks IPv6 to IPv4-only portmap -> o [2005/11/01] kern/88336 [kernel] [patch] setkey(8) -D fails to re o [2005/11/01] ports/88363 markp Update port: devel/gengameng update MASTE o [2005/11/01] bin/88365 [patch] rm(1): "/bin/rm -P" cannot remove f [2005/11/01] ports/88372 pav New port: sysutils/BackupPC High performa o [2005/11/02] conf/88383 [PATCH]: etc/rc.d/ldconfig:does not prope o [2005/11/02] www/88385 remko Internet Service Providers o [2005/11/02] docs/88390 doc devctl(4) man page does not list the noti f [2005/11/02] ports/88397 ports-bugs Ruby does not upgrade properly from 1.8.2 o [2005/11/02] ports/88403 vsevolod port: net/openldap23-server/Makefile: BDB o [2005/11/02] bin/88404 ggatec and ggated links to library in /us o [2005/11/02] usb/88408 usb axe0 read PHY failed o [2005/11/03] ports/88420 kuriyama update comms/conserver-com to 8.1.12 o [2005/11/03] bin/88426 [patch] Typo in man (8) mount_ntfs o [2005/11/03] docs/88427 doc Diff (1) error. o [2005/11/03] docs/88429 jcamou FAQ 10.9. Quotas Improvement o [2005/11/03] ports/88431 anders update sysutils/dmidecode to 2.7 o [2005/11/03] kern/88450 net SYN+ACK reports strange size of window o [2005/11/03] bin/88460 Import /usr/bin/getent from NetBSD o [2005/11/03] bin/88463 devfs(8): 'devfs rule add' before 'devfs o [2005/11/03] docs/88464 doc not enough information in devfs.rules(5) o [2005/11/04] ports/88475 billf net-mgmt/flow-tools has a python run-time o [2005/11/04] docs/88477 doc Possible addition to xl(4) manpage, Diagn o [2005/11/04] bin/88486 [patch] make periodic(8) quiet (configura o [2005/11/04] i386/88491 i386 [panic] Panic when boot installation CD1 o [2005/11/04] ports/88493 portmgr bsd.port.mk: cleanup cruft o [2005/11/04] www/88498 remko Hosting gallery submission. f [2005/11/04] ports/88502 ports-bugs Update port: devel/nana update to 2.5 o [2005/11/04] www/88503 www Dead link in the online manpages for Free o [2005/11/04] ports/88505 lawrance Update port: devel/oniguruma update to 2. o [2005/11/04] i386/88508 i386 bad xorg packages in ISO image for Disc1 o [2005/11/05] docs/88512 doc [patch] mount_ext2fs(8) man page has no d o [2005/11/05] conf/88515 NTP not starting from RC when using /etc/ o [2005/11/05] ports/88529 trevor print/acroread7 needs symlink to acroread o [2005/11/06] bin/88538 tcsh(1) ls-F spacing incorrect. o [2005/11/06] ports/88544 pav [patch] lang/gcc28 pkg-plist is different o [2005/11/06] ports/88546 marcus Add a check for a period in IGNORE lines f [2005/11/06] ports/88548 ports-bugs update sysutils/pciutils to 2.2.0 o [2005/11/07] kern/88576 imp [fe] revision 1.31 to if_fe_pccard.c brea o [2005/11/07] i386/88585 i386 Cannot mount floppy (HP Proliant ML370 G4 o [2005/11/07] bin/88599 ifconfig(8): change in default behavior w o [2005/11/07] kern/88601 pjd Geli cause kernel panic under heavy disk o [2005/11/07] ports/88603 eclipse [maintainer update] java/eclipse-log4e o [2005/11/07] ports/88604 eclipse [maintainer update] java/eclipse-lomboz f [2005/11/07] ports/88613 ports-bugs [PATCH] multimedia/transcode: Turn on OSS o [2005/11/07] bin/88619 brian [ppp] ppp chat auth fails ( pppoe ) f [2005/11/07] ports/88622 ports-bugs Deprecated port: devel/py-wsdllib f [2005/11/07] ports/88625 ahze [Maintainer Update] graphics/gts 0.7.3 o [2005/11/07] ports/88627 cy ntp repocopy request o [2005/11/07] bin/88629 dougb mergemaster -i should replace files that o [2005/11/08] bin/88634 sos [patch] add idle and standby commands to f [2005/11/08] ports/88642 x11 Xorg compilation problem o [2005/11/08] ports/88644 ports-bugs [maintainer update] java/eclipse-sysdeo-t o [2005/11/08] docs/88646 doc sysutils/portmanager documentaion for han o [2005/11/08] ports/88649 ports-bugs [maintainer update] java/eclipse-sqlexplo o [2005/11/08] kern/88657 [smbfs] windows client hang when browsing f [2005/11/08] ports/88658 jylefort Update port: multimedia/totem (add missin o [2005/11/08] i386/88678 i386 error during compilation the kernel with o [2005/11/08] misc/88680 !compiling freebsd components o [2005/11/08] kern/88687 multimedia [snd_ich] snd_ich locks up machine o [2005/11/08] conf/88692 [patch] Amend /etc/periodic/daily/502.pgs f [2005/11/08] ports/88699 ports-bugs [PATCH] multimedia/avifile doesn't build o [2005/11/09] ports/88700 petef [PATCH] devel/p5-Class-Date: update to 1. o [2005/11/09] ports/88707 clement update ports/www/apache21 from 2.1.8 to 2 o [2005/11/09] kern/88709 [modules] [panic] sysctl -a after kldunlo o [2005/11/09] www/88710 www Site update o [2005/11/09] ports/88711 portmgr [patch] bsd.port.mk - implement @dirrmtry o [2005/11/09] conf/88712 [patch] freebsd-tips: Add "how to strip U o [2005/11/09] kern/88714 sos [ata] cannot record CD-R since 6.0 o [2005/11/09] amd64/88730 amd64 kernel panics during booting from the ins o [2005/11/09] kern/88741 [bge] IPMI access disabled when bge drive o [2005/11/09] ports/88751 portmgr kill offix virtual category o [2005/11/09] ports/88754 portmgr Make USE_REINPLACE noop o [2005/11/10] bin/88780 [PATCH] Baseline ipmon(8) uses LOG_LOCAL0 o [2005/11/10] bin/88788 [patch] rup(1) displays incorrect date an f [2005/11/10] ports/88794 ports-bugs Deprecated port: devel/rinfo o [2005/11/10] ports/88795 mbr [patch] www/mod_auth_mysql_another update o [2005/11/10] www/88809 remko Commercial vendor listings are sorted on f [2005/11/10] ports/88815 ahze [MAINTAINER UPDATE] ftp/prozilla: update o [2005/11/11] kern/88820 multimedia [sound] Erratic recognition of VIA 8285 s o [2005/11/11] bin/88821 pjd [PATCH] IPv6 support for ggate o [2005/11/11] bin/88826 qa [sysinstall] sysinstall infinity wait for f [2005/11/11] ports/88828 ports-bugs [update port] ports multimedia/transcode f [2005/11/11] ports/88829 mnag [NEW PORT] sysutils/logwatch: Customizabl o [2005/11/11] ports/88836 clement Update port: www/apache2 (fix harcoded pi o [2005/11/11] ports/88838 thompsa HandBrake port build fails o [2005/11/11] i386/88844 i386 6.0 on i386: "page fault while in kernel o [2005/11/11] bin/88845 stefanf Sh(1) aborts if builtin echo redirection o [2005/11/11] docs/88848 doc grep manual jammed f [2005/11/11] ports/88852 lawrance VMWare3 Port Compilation failure under Fr f [2005/11/11] ports/88863 garga Update port: devel/smv update MASTER_SITE f [2005/11/12] ports/88870 pav New port: net-mgmt/aircrack o [2005/11/12] ports/88876 sem [patch] Update www/raqdevil to 1.0RC1 o [2005/11/12] ports/88897 tmclaugh New port: x11-themes/icon-naming-utils Ic o [2005/11/12] ports/88898 openoffice Openoffice 2.0 broken save as f [2005/11/12] ports/88900 ports-bugs www/flashplugin-mozilla causes Firefox to o [2005/11/12] ports/88901 perl mail/p5-Mail-SpamAssassin: allow spampd t o [2005/11/12] ports/88902 tmclaugh new port: x11-themes/icons-tango o [2005/11/12] ports/88903 jylefort [NEW PORT] games/linux-warsow: Free multi o [2005/11/13] ports/88911 jylefort [NEW PORT] games/linux-alienarena: Alien o [2005/11/13] conf/88913 [patch] wrapper support for rc.subr o [2005/11/13] ports/88918 dougb Suggested updates of mail/pine4 Makefile o [2005/11/13] kern/88932 [ndis] ndis do not show the correct chann o [2005/11/13] usb/88939 usb Fix cheapy Myson USB-IDE adapter o [2005/11/13] ports/88941 anders Suggested updates of mail/cclient Makefil o [2005/11/13] ports/88942 anders Suggested update of mail/imap-uw Makefile o [2005/11/13] ports/88957 tmclaugh audio/muine: crash when viewing About win o [2005/11/13] ports/88958 tmclaugh devel/monodoc: Crash on startup o [2005/11/13] kern/88962 [panic] Kernel panic with ACPI is enabled o [2005/11/14] i386/88965 i386 vidcontrol hangs with 2 modules of RAM f [2005/11/14] ports/88968 ports-bugs [patch] comms/birda unexpire o [2005/11/14] conf/88974 autoconfigured vlans confuse rc.d/netif o [2005/11/14] i386/88978 i386 atapci1: failed to enable memory mapping o [2005/11/14] ports/88984 andreas [patch] remove /usr/bin/bzip2 from print/ f [2005/11/14] ports/88987 garga [patch] remove /usr/bin/bzip2 from securi f [2005/11/14] ports/88989 garga [patch] remove /usr/bin/bzip2 from graphi f [2005/11/14] ports/88991 garga [patch] remove /usr/bin/bzip2 from graphi o [2005/11/14] i386/88992 i386 Kernel Panic at the begining, before the f [2005/11/14] ports/88993 garga [patch] remove /usr/bin/bzip2 from net/li f [2005/11/14] ports/88995 garga [patch] remove /usr/bin/bzip2 from cad/gt o [2005/11/14] ports/88996 portmgr [patch] remove /usr/bin/bzip2 from Mk/bsd f [2005/11/14] ports/89010 ports-bugs ports/devel/bazaar Makefile wrong quotes o [2005/11/14] ports/89023 vsevolod USE_BDB doesn't set name of Berkely dB, o o [2005/11/14] ports/89025 x11 Keyboard doesnt work with X on old acerno f [2005/11/14] ports/89027 ports-bugs [patch] multimedia/mplayer to uphold CC o [2005/11/14] i386/89031 i386 smart battery queries make FreeBSD to han o [2005/11/14] ports/89037 skv Update req for the "palm/iSiloXC" port f [2005/11/15] ports/89041 ports-bugs radiusclient-0.5.2 port f [2005/11/15] ports/89042 ports-bugs [patch] devel/py-twistedCore install with f [2005/11/15] ports/89043 ports-bugs [patch] devel/py-psyco install with wrong o [2005/11/15] kern/89046 multimedia [sound] [patch] pchan-related sound corru o [2005/11/15] ports/89052 gnome [patch] www/mozilla: Fix ld-run-path issu o [2005/11/15] conf/89061 [patch] IPv6 6to4 auto-configuration enha o [2005/11/15] www/89068 www User Groups: New entry U-BUS Germany. Tha f [2005/11/15] ports/89077 ports-bugs The port lang/ruby18 upgrade to 1.8.3 has o [2005/11/15] docs/89081 doc [patch] handbook 4.5.5 dead reference to o [2005/11/15] usb/89087 usb usb external harddrive hangs with BBB res f [2005/11/15] ports/89089 ports-bugs [UPDATE]: security/md5deep: Update to ver f [2005/11/15] ports/89091 gerald lang/gcc34 does not build with default co f [2005/11/15] ports/89093 ports-bugs lang/ruby18 does not build if devel/readl o [2005/11/16] ports/89097 kris security/dsniff does not build when net/l o [2005/11/16] ports/89098 kris security/dsniff does not build o [2005/11/16] bin/89108 [ppp] Problem in PPP implementation on Fr o [2005/11/16] ports/89109 mharo [PATCH] converters/p5-Convert-PEM: update f [2005/11/16] ports/89117 jylefort [PATCH] audio/sox; enable OPTIONS; config o [2005/11/16] ports/89125 clement [PATCH] www/apache2: Fix IGNORE quoting i f [2005/11/16] ports/89131 ports-bugs port net/kphone One-Way audio with snd_ic o [2005/11/16] ports/89140 kuriyama [PATCH] devel/p5-Test-MockObject, add req o [2005/11/16] ports/89153 lev devel/subversion: WITH_BOOK doesn't work o [2005/11/16] www/89159 www Consulting f [2005/11/16] ports/89161 ports-bugs Update port: dns/updatedd fix WWW on pkg- o [2005/11/16] ports/89162 netchild misc/mime-support not usable for X11 appl o [2005/11/16] i386/89165 i386 Freebsd 5.4 atheros drive mac id authenti o [2005/11/16] kern/89166 [mouse] jumpy mouse movement f [2005/11/16] ports/89175 ports-bugs Updated port: instiki o [2005/11/17] bin/89180 [libedit] [patch] bug fix for libedit f [2005/11/17] ports/89189 ports-bugs [PATCH] multimedia/smpeg don't fetch f [2005/11/17] ports/89191 ports-bugs There is incorrect lib dependency in snor o [2005/11/17] www/89194 www Consulting o [2005/11/17] usb/89196 usb [umass] [patch] Kingston DataTraveler 2.0 o [2005/11/17] ports/89197 portmgr [patch] let ``make update'' in /usr/ports o [2005/11/17] ports/89201 portmgr make fetchindex doesn't honore /etc/make. o [2005/11/17] ports/89204 ports-bugs New port: www/yabb o [2005/11/17] ports/89208 fjoe [REPOCOPY] ports/databases/pgadmin3 o [2005/11/17] i386/89211 i386 ibcs2 error 45 cant run cobol interpreter o [2005/11/17] ports/89213 ports-bugs [New port] games/q3base o [2005/11/18] kern/89224 multimedia [sound] [panic] kernel panic after kldunl o [2005/11/18] kern/89227 sos [ata] [patch] Intel ICH6-M SATA controlle o [2005/11/18] ports/89238 ports-bugs Update port: math/eukleides o [2005/11/18] ports/89241 ports-bugs New port: devel/hc12mem - Freescale HCS12 o [2005/11/18] ports/89244 aaron Update port: deve/p5-Config-Objective f [2005/11/18] ports/89245 pav [PATCH] graphics/guilib remove broken siz o [2005/11/18] kern/89247 [ffs] [patch] QUOTA in 6.0/7.0-current le f [2005/11/18] ports/89248 ade [patch] autoheader run in wrong order in o [2005/11/18] docs/89256 doc broken reference in pfsync(4) manpage o [2005/11/18] ports/89260 portmgr new category proposal: net-p2p o [2005/11/19] ports/89265 portmgr Move location of bsd.autotools.mk within o [2005/11/19] ports/89266 ports-bugs [MAINTAINER] irc/riece: New version 2.0.2 o [2005/11/19] usb/89269 usb usb headset does not work with uaudio mod o [2005/11/19] www/89270 www Request to be added to Commercial Vendors f [2005/11/19] ports/89273 ports-bugs security/ipsec-tools has different defaul o [2005/11/19] ports/89274 ports-bugs New port : multimedia/bmpx Media player o [2005/11/19] ports/89275 ports-bugs [New ports] devel/mimir, lang/elan - Elan o [2005/11/19] ports/89276 ports-bugs [NEW PORT] ports/games/ggz-sdl-games o [2005/11/19] ports/89277 lev devel/subversion does not install if WITH o [2005/11/19] ports/89278 lev devel/subversion does not build if WITH_R o [2005/11/19] ports/89279 gnome [patch] graphics/dia - add forgotten icon o [2005/11/19] ports/89281 portmgr bsd.port.mk: Use portsnap on "make update o [2005/11/19] advocacy/89283advocacy [Maintainer Update] audio/gnupod Update t o [2005/11/19] ports/89286 ports-bugs Update emulators/sim to 3.5.1 and pick ma o [2005/11/19] www/89287 pav Tyan S4882 supports 6.0-RELEASE o [2005/11/19] www/89289 pav 6.0 RELEASE/AMD64 on ASUS A8V-MX o [2005/11/19] ports/89291 ports-bugs [NEW PORT] graphics/crystalspace: Free an o [2005/11/19] ports/89292 ports-bugs Kopete error when trying to use MSN o [2005/11/19] ports/89293 ports-bugs ghostscript file corrupt on ftp server o [2005/11/19] i386/89294 i386 unknown CPU (i386/amd64) Features2 o [2005/11/19] ports/89295 ports-bugs [NEW PORT] misc/fortune-mod-culmea-culmil o [2005/11/19] i386/89296 i386 Spurious atapci1: failed to enable memory o [2005/11/19] ports/89297 ports-bugs new port: devel/codeblocks, an open sourc o [2005/11/19] ports/89298 ports-bugs [new port]: x11-toolkits/wxgtk26-docs, wx o [2005/11/19] ports/89299 ports-bugs maintainer-update games/linux-quake4 o [2005/11/19] ports/89300 ports-bugs [MAINTAINER] multimedia/bsdav: remove BRO o [2005/11/20] ports/89302 flz update net/bnbt o [2005/11/20] ports/89303 ports-bugs [maintainer update] Update x11/xscreensav o [2005/11/20] ports/89304 ports-bugs Update Port - multimedia/gcfilms o [2005/11/20] kern/89305 [vr] [patch] D-Link NIC with VIA Rhine II o [2005/11/20] misc/89306 как подключить PCMCIA карточку 3com 3ccfe o [2005/11/20] ports/89309 ports-bugs [Maintainer-Update] mail/squirrelmail-co o [2005/11/20] ports/89311 ports-bugs [MAINTAINER UPDATE] fix ports/games/ggz-g o [2005/11/20] ports/89312 billf Patch fixes to bugs in net/mtr o [2005/11/20] ports/89314 ports-bugs games/rtcw: Fix typo and MD5 sums to pkg- o [2005/11/20] ports/89315 ports-bugs [MAINTAINER] update sysutils/portmanager o [2005/11/20] ports/89316 jdp [patch] add RCng script to net/cvsup-mirr o [2005/11/20] ports/89317 ports-bugs [PATCH]: lang/kawa: BROKEN on 4.x o [2005/11/20] ports/89318 ports-bugs [PATCH]: security/md5deep: BROKEN on 4.x f [2005/11/20] ports/89319 ports-bugs [PATCH] Update www/lighttpd to 1.4.7 o [2005/11/20] ports/89320 ports-bugs MAINTAINER UPDATE: mail/milter-bogom to 1 o [2005/11/20] ports/89321 ports-bugs [patch] games/quake3 update o [2005/11/20] ports/89323 ports-bugs [NEW PORT] editors/rospell: Gedit-like QT o [2005/11/20] docs/89325 doc [PATCH] Clarification of kbdmap(5), atkbd o [2005/11/20] bin/89326 [PATCH] Add pattern matching to login.acc o [2005/11/20] ports/89328 trevor audio/streamripper update to 1.61.16 o [2005/11/20] ports/89329 ports-bugs Add WCCPv2 support to squid f [2005/11/20] ports/89330 ports-bugs [UPDATE] games/quake3: integrate with qua o [2005/11/20] ports/89331 ports-bugs maintainer-update of scummvm and related o [2005/11/20] ports/89332 ports-bugs Update Port: lang/munger => 4.80 o [2005/11/20] ports/89333 ports-bugs Fix the cannot create lockfile /root/.spa o [2005/11/21] ports/89336 ports-bugs Xorg-clients compile fails with "undefine o [2005/11/21] ports/89339 ports-bugs New port: net/ruby-xmpp4r (Jabber library o [2005/11/21] ports/89343 ports-bugs Maintainer Update: fix filetypes patch o [2005/11/21] www/89345 www Web Hosting o [2005/11/21] ports/89349 glewis math/gnuplot: BadAtom (invalid Atom param o [2005/11/21] ports/89350 ports-bugs [NEW PORT] textproc/p5-XML-OPML: Creates f [2005/11/21] ports/89351 clsung [PATCH] irc/rbot: update to 0.9.9 o [2005/11/21] ports/89352 ports-bugs [NEW PORT] devel/py24-setuptools: Downloa o [2005/11/21] ports/89354 ports-bugs Port Update: audio/voipong o [2005/11/21] ports/89356 ports-bugs Update port: net-im/tkabber-devel (fresh o [2005/11/21] misc/89357 [Patch] Moused patch to pause mouse event o [2005/11/21] ports/89358 ports-bugs New port: textproc/p5-FormValidator-Simpl o [2005/11/21] ports/89359 ports-bugs New port: www/p5-Catalyst-Plugin-FormVali o [2005/11/21] ports/89360 ports-bugs [MAINTAINER] www/p5-Bundle-Catalyst: up t 3061 problems total. From hselasky at c2i.net Mon Nov 21 04:20:19 2005 From: hselasky at c2i.net (HPS) Date: Mon Nov 21 04:20:31 2005 Subject: kern/89362: Stale references to freed memory Message-ID: <200511211210.jALCANrW023608@www.freebsd.org> >Number: 89362 >Category: kern >Synopsis: Stale references to freed memory >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 21 12:20:17 GMT 2005 >Closed-Date: >Last-Modified: >Originator: HPS >Release: FreeBSD 7-current >Organization: >Environment: FreeBSD 7-current i386 >Description: When one sets up an interrupt handler from the "probe" method of an ISA/PNP/PCI/USB ... device driver, the interrupt name becomes garbled, when using "ps aux |grep irq". This is because the device system frees the pointer returned by "device_get_nameunit(dev)" between probe and attach. I suggest that one extends "device_t" with "char dev_nameunit[16]", and use that, instead of allocating memory. In general, storing any pointers returned by "device_get_nameunit(dev)" in the "device_probe" method, for later use, will cause problems. >How-To-Repeat: Set up an interrupt handler from the "probe" method of a device driver. Store the "device_get_nameunit(dev)" pointer when in the "device_probe" method. Print it out after attach, when the pointer has been freed and allocated again. >Fix: Set up the interrupt handler from the "attach" method of a device driver. Make a copy of "device_get_nameunit(dev)" and not a reference. >Release-Note: >Audit-Trail: >Unformatted: From dgimenez at ya.com Mon Nov 21 06:40:19 2005 From: dgimenez at ya.com (david) Date: Mon Nov 21 06:40:31 2005 Subject: kern/89368: el portatil se queda completamente colgado Message-ID: <200511211432.jALEWrAT004204@www.freebsd.org> >Number: 89368 >Category: kern >Synopsis: el portatil se queda completamente colgado >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Nov 21 14:40:18 GMT 2005 >Closed-Date: >Last-Modified: >Originator: david >Release: 6.0 >Organization: >Environment: Fatal trap 18: integer divide fault while in kernel mode instruction pointer= 0x20:0xc0819b59 stack pointer= 0x28:0xd07a878c frame pointer= 0x28:0xd07a87a0 code segment= base 0x0, limit 0xfffff type 0x1b DPL0, pres1, def 321, gran1 processor eflags 0 interrupt enabled,IOPL=0 current process = 1309 (gmake) tap number=18 panic : integer divide fault Uptime: 4m48s Dumping 367 MB (2chunks) >Description: Maquina Acer Aspire 1304 LC: Athlon 1800+xp 384 MB RAM s3 savage graphic card El portatil se queda totalmente congelado al realizar diversas tareas. Compilar, utilizando las X (kde), (etc) >How-To-Repeat: cd /usr/port/www/firefox make install clean >Fix: >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Mon Nov 21 11:22:55 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Mon Nov 21 11:23:20 2005 Subject: bin/89090: [patch] du(1) reports negative numbers Message-ID: <200511211922.jALJM0Xm069874@freefall.freebsd.org> Old Synopsis: du reports negative numbers New Synopsis: [patch] du(1) reports negative numbers Responsible-Changed-From-To: freebsd-i386->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Mon Nov 21 19:21:18 GMT 2005 Responsible-Changed-Why: This is not i386-specific. http://www.freebsd.org/cgi/query-pr.cgi?pr=89090 From john at kozubik.com Mon Nov 21 13:34:22 2005 From: john at kozubik.com (John Kozubik) Date: Mon Nov 21 13:34:54 2005 Subject: mounted snapshots still writeable 1.5 years later (RE: kern/68576) In-Reply-To: <20051111190806.V33260@fledge.watson.org> References: <20051111091807.J95949@kozubik.com> <20051111185927.Q33260@fledge.watson.org> <20051111110253.U95949@kozubik.com> <20051111190806.V33260@fledge.watson.org> Message-ID: <20051121133115.E95949@kozubik.com> Robert, On Fri, 11 Nov 2005, Robert Watson wrote: > >> peppercorn# mdconfig -a -t vnode -f test > >> WARNING: opening backing store: /mnt/.snap/test readonly > >> md1 > >> peppercorn# mount /dev/md1 /mnt2 > >> mount: /dev/md1: Read-only file system > >> peppercorn# mount -o rdonly /dev/md1 /mnt2 > >> peppercorn# ls -l > >> total 2 > >> drwxrwxr-x 2 root operator 512 Nov 11 18:56 .snap > >> peppercorn# mount -uw /mnt2 > >> mount: /dev/md1: Read-only file system > > > > Was this ^^^ on a 6.x system ? > > Sorry, should have been more clear -- that's a 7.x system from just after > the branch, and I believe no significant changes from 6-beta1 or so. I have since tested this on 6.0-RELEASE - it behaves as you describe above (that is to say, it behaves correctly). It is still a bug in 5.x, however (see kern/68576). ----- John Kozubik - john@kozubik.com - http://www.kozubik.com From kris at obsecurity.org Mon Nov 21 13:38:25 2005 From: kris at obsecurity.org (Kris Kennaway) Date: Mon Nov 21 13:38:36 2005 Subject: 6.0 SMP support In-Reply-To: <7e16b3af0511191022l685b595eyacb797211198dbc5@mail.gmail.com> References: <7e16b3af0511191022l685b595eyacb797211198dbc5@mail.gmail.com> Message-ID: <20051121213754.GA7696@xor.obsecurity.org> On Sat, Nov 19, 2005 at 01:22:18PM -0500, Tony A. Emond wrote: > I've been unable to enable SMP while using a kernel that includes ACPI. > > This is not a problem that occurs if ACPI is excluded from the kernel but > loaded as a module. > > Therefore I'd like to propose that the /usr/src/sys/i386/conf/SMP file have > a comment added to specify that the kernel should not be compiled with ACPI > if SMP is to be enabled. No, it's not a general problem. You'll have to investigate your specific problem in more detail. Start by looking for a BIOS upgrade, since that will often fix ACPI problems caused by a buggy implementation on your hardware. Kris -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 187 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-bugs/attachments/20051121/bbae17f5/attachment.bin From kris at obsecurity.org Mon Nov 21 13:40:21 2005 From: kris at obsecurity.org (Kris Kennaway) Date: Mon Nov 21 13:40:33 2005 Subject: misc/89257: Previous version compatibility in 6.0 Message-ID: <200511212140.jALLeKsM090053@freefall.freebsd.org> The following reply was made to PR misc/89257; it has been noted by GNATS. From: Kris Kennaway To: Me Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/89257: Previous version compatibility in 6.0 Date: Mon, 21 Nov 2005 16:38:58 -0500 --vGgW1X5XWziG23Ko Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Nov 18, 2005 at 10:14:58PM +0000, Me wrote: > It seems apps compiled against version 5.0 of FreeBSD are not > compatible with 6.0 out of the box and to me this isn't good. I can > still run windows applications written well over 15 years ago > unmodified on my PC out of the box and without running through > hoops. The "recompile defense" is unacceptable as the source code > is not always avaliable and more importantly users must not be > expected to care. Did you forget to install the compat5x libraries? Either way, this PR is quite incomplete since you forgot to give any details of your problem. Kris --vGgW1X5XWziG23Ko Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDgj5yWry0BWjoQKURAnSCAJ9wv8ZCMbiNnnKBXYroz87R4VQungCcDRH9 kvNHKUReHxkVGsJZdWujr88= =MNmS -----END PGP SIGNATURE----- --vGgW1X5XWziG23Ko-- From kris at obsecurity.org Mon Nov 21 13:47:02 2005 From: kris at obsecurity.org (Kris Kennaway) Date: Mon Nov 21 13:47:14 2005 Subject: misc/89103: gcc segmentation fault errors In-Reply-To: <200511180600.jAI60WtR048667@freefall.freebsd.org> References: <200511180600.jAI60WtR048667@freefall.freebsd.org> Message-ID: <20051121214648.GC7696@xor.obsecurity.org> On Fri, Nov 18, 2005 at 06:00:32AM +0000, Walter Roberts wrote: > The following reply was made to PR misc/89103; it has been noted by GNATS. > > From: "Walter Roberts" > To: , > Cc: > Subject: Re: misc/89103: gcc segmentation fault errors > Date: Fri, 18 Nov 2005 00:55:21 -0500 > > This is a multi-part message in MIME format. > > ------=_NextPart_000_0007_01C5EBDA.C0C39C10 > Content-Type: text/plain; > charset="iso-8859-1" > Content-Transfer-Encoding: quoted-printable > > Ruled out hardware issue: > > 1. Ran memtest 86 -- 7 full cycles (18 hours +/-). > 2. Reduced memory from 512Mb to 256Mb, repeated with different memory = > chip. > 3. Ran full burncpu, passed. > > Power supplies operating at nominal voltages. > > System is apparently not using swap space for this process. > > Replaced AMD K6 200 with old K6 slow processor=20 > > Same failure. CPU temps are <33C in all cases. I don't know the exact = > numbers, but it's typically around 28C. > > This simply does not smell like a hardware problem [Snip historical anecdotes] > I'm willing to believe you, = > but I'd like to know why you're so convinced this is a hardware issue. =20 Because I've been answering these questions for years, and I've seen dozens of people start out saying "I'm convinced it's not a hardware problem" and then working their way around to "it was a hardware problem, sorry for wasting your time". > The factors pointing against a hardware issue are: 1. The machine runs = > everything else without a problem. 2. The machine ran non-stop = > (non-reboot) on a UPS for over a half a year without a glitch, (take = > that NT), and it seems to run f90 ok, and most cc's ok. 3. The system = > runs very compute/memory intenstive monte carlo high energy physics code = > that stores lots and lots of numbers to be written to files at the end = > of the day and works consistantly. I would expect that if it weren't = > working properly, something would be amiss elsewhere and would expect a = > panic at some point, or the system to just plain stop working. 4. From = > the archives it appears that more than one of us is havng a similar = > problem. Not that I've seen. Where are these other reports? > 5. This exact system ran for years without a glitch running = > FreeBSD 2.2 and FreeBSD 3.2. =20 This kind of problem can be *very* workload-specific. i.e. everything will work fine except one task that tickles the machine in exactly the right way to trigger the hardware failure. Yes, I've seen exactly this scenario happen many times. > Is it safe to upgrade to GCC 4? Would that solve the problem? I'd be = > happy to get it from gnu and try it, if it won't break anything. I = > don't have the time I used to have to go messing in operating system = > innards, much as I'd like to. It won't fix a hardware problem, naturally. You can't use a non-system compiler to compile FreeBSD, although you could compile your own code with it. > It is certainly possible that a pointer is misprogrammed (or perhaps the = > fixed point register in the AMD chip doesn't work right??) and picks up = > something funny that causes the compiler to have the "segementation = > fault 11" That fault is consistent! I'm sure it's consistent on this machine, but you're really reaching by suggesting that it's a CPU bug affecting thousands of users :-) Kris P.S. Did you say in a previous email that the machine worked fine when it was running at a site at high altitude, but stopped working when you moved it and then upgraded it? That's a big clue that says something broke at that point (or before, but was masked by lower ambient temperatures, or something). -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 187 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-bugs/attachments/20051121/9370e0d2/attachment.bin From mcg at dnainternet.net Mon Nov 21 15:00:40 2005 From: mcg at dnainternet.net (mcg) Date: Mon Nov 21 15:00:55 2005 Subject: kern/89396: forscing to reebot Message-ID: <200511212252.jALMqPfO061977@www.freebsd.org> >Number: 89396 >Category: kern >Synopsis: forscing to reebot >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Nov 21 23:00:38 GMT 2005 >Closed-Date: >Last-Modified: >Originator: mcg >Release: 6.0 >Organization: N/A >Environment: FreeBSD fbsdrocks.org 6.0-RELEASE FreeBSD 6.0-RELEASE #1: Fri Nov 18 03:17:49 EET 2005 mcg@fbsdrocks.org:/usr/obj/usr/src/sys/APACHE i386 >Description: hi! i am using fluxbox desktop and xfe file manager.in my system only root can mount the cd/dvd roms.i mounted /cdrom as root to copy some doc files to my home directory, but i tried to do that from xfe file manager as normal user and it didn't let me to copy from the /cdrom/path/to/file to my /home/mcg, then i wanted to copy it with cp command as root then i noticed that /cdrom was umounted somehow,i remounted /cdrom and tried again to copy with xfe,just at that moment when i clicked on the /cdrom system hanged a few seconds and then rebooted by itself.i tested this twice to be sure.i tried to to look for that what caused it from log files,but i couldn't find anything that matches the crash.when i do las it shows that. mcg ttyp1 :0.0 Mon Nov 21 15:36 - crash (01:16) mcg ttyp0 :0.0 Mon Nov 21 14:59 - crash (01:53) mcg :0 Mon Nov 21 14:58 - crash (01:53) regards, mcg >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From burnjob at hotmail.com Mon Nov 21 18:00:41 2005 From: burnjob at hotmail.com (peter) Date: Mon Nov 21 18:01:14 2005 Subject: misc/89401: bsd is the worst linux install and program i have seen ... you made it so complicated that it almost makes me want to stay with windows Message-ID: <200511220150.jAM1ouWO031055@www.freebsd.org> >Number: 89401 >Category: misc >Synopsis: bsd is the worst linux install and program i have seen ... you made it so complicated that it almost makes me want to stay with windows >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 Nov 22 02:00:28 GMT 2005 >Closed-Date: >Last-Modified: >Originator: peter >Release: 6 >Organization: >Environment: >Description: the one-line description sums it up >How-To-Repeat: install freebsd >Fix: installed xandros >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Mon Nov 21 18:07:44 2005 From: edwin at FreeBSD.org (Edwin Groothuis) Date: Mon Nov 21 18:08:12 2005 Subject: misc/89401: bsd is the worst linux install and program i have seen ... you made it so complicated that it almost makes me want to stay with windows Message-ID: <200511220207.jAM27UDd028950@freefall.freebsd.org> Synopsis: bsd is the worst linux install and program i have seen ... you made it so complicated that it almost makes me want to stay with windows State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Tue Nov 22 02:06:51 GMT 2005 State-Changed-Why: Not a PR/ http://www.freebsd.org/cgi/query-pr.cgi?pr=89401 From linimon at FreeBSD.org Mon Nov 21 18:13:58 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Mon Nov 21 18:14:10 2005 Subject: =?iso-8859-1?q?Re=3A_misc/89306=3A_=CB=C1=CB_=D0=CF=C4=CB=CC=C0?= =?iso-8859-1?q?=DE=C9=D4=D8_PCMCIA_=CB=C1=D2=D4=CF=DE=CB=D5_3com_3?= =?iso-8859-1?q?ccfe574bt_=D0=D2=C9_=D5=D3=D4=C1=CE=CF=D7=CB=C5_=D3?= =?iso-8859-1?q?_=C4=C9=D3=CB=C5=D4=3F?= Message-ID: <200511220213.jAM2Dv9H029298@freefall.freebsd.org> Synopsis: как подключить PCMCIA карточку 3com 3ccfe574bt при установке с дискет? State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Tue Nov 22 02:12:17 GMT 2005 State-Changed-Why: Unfortunately we ask that PRs be submitted in English. If this is a question in Japanese, please try one of the Japanese-specific mailing lists to ask for help. http://www.freebsd.org/cgi/query-pr.cgi?pr=89306 From bp at FreeBSD.org Mon Nov 21 18:19:08 2005 From: bp at FreeBSD.org (Boris Popov) Date: Mon Nov 21 18:19:34 2005 Subject: kern/89085: [smbfs] [patch] Running 'kldunload smbfs' without 'smbutil logout' always panicing the system Message-ID: <200511220219.jAM2J0vu029415@freefall.freebsd.org> Synopsis: [smbfs] [patch] Running 'kldunload smbfs' without 'smbutil logout' always panicing the system State-Changed-From-To: open->closed State-Changed-By: bp State-Changed-When: Tue Nov 22 02:17:06 GMT 2005 State-Changed-Why: Fixed in HEAD and will be MFCed in one week. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=89085 From edwin at mavetju.org Mon Nov 21 18:50:31 2005 From: edwin at mavetju.org (Edwin Groothuis) Date: Mon Nov 21 18:50:44 2005 Subject: bin/89403: fetch(1) doesn't honour authentication credentials when going through a proxy Message-ID: <20051122024015.0759463A6@k7.mavetju> >Number: 89403 >Category: bin >Synopsis: fetch(1) doesn't honour authentication credentials when going through a proxy >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 Nov 22 02:50:23 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Edwin Groothuis >Release: FreeBSD 5.4-RELEASE i386 >Organization: - >Environment: System: FreeBSD tinderbox.barnet.com.au 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Sun May 8 10:21:06 UTC 2005 root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: When trying this URL on a machine without HTTP_PROXY defined: $ fetch ftp://3dgr35g:mr23g239a@3dgamers.mirror.internode.on.net/3dgamers/games/quake4/foo fetch: ftp://3dgr35g:mr23g239a@3dgamers.mirror.internode.on.net/3dgamers/games/quake4/foo: File unavailable (e.g., file not found, no access) But when running it on a machine with HTTP_PROXY defined: $ fetch ftp://3dgr35g:mr23g239a@3dgamers.mirror.internode.on.net/3dgamers/games/quake4/foo fetch: ftp://3dgr35g:mr23g239a@3dgamers.mirror.internode.on.net/3dgamers/games/quake4/foo: Unauthorized Network trace gives this: T 10.192.1.5:61229 -> 202.83.176.9:8080 [AP] GET ftp://3dgamers.mirror.internode.on.net/3dgamers/games/quake4/foo HTTP/1.1.. ## T 10.192.1.5:61229 -> 202.83.176.9:8080 [AP] Host: 3dgamers.mirror.internode.on.net..Authorization: Basic M2RncjM1Zzptcj IzZzIzOWE=..User-Agent: fetch libfetch/2.0..Connection: close.... And towards the FTP server: T 203.16.214.173:21 -> 202.83.176.9:1982 [AP] 220 203.16.214.173 FTP server ready.. # T 202.83.176.9:1982 -> 203.16.214.173:21 [AP] USER anonymous.. ## T 203.16.214.173:21 -> 202.83.176.9:1982 [AP] 331 Password required for anonymous... # T 202.83.176.9:1982 -> 203.16.214.173:21 [AP] PASS Squid@.. When telnetting to the proxy and entering this command: GET ftp://3dgr35g:mr23g239a@3dgamers.mirror.internode.on.net/3dgamers/games/quake4/foo HTTP/1.1 I see this on the line: 220 203.16.214.173 FTP server ready.. # T 202.83.176.9:3880 -> 203.16.214.173:21 [AP] USER 3dgr35g.. ## T 203.16.214.173:21 -> 202.83.176.9:3880 [AP] 331 Password required for 3dgr35g... # T 202.83.176.9:3880 -> 203.16.214.173:21 [AP] PASS mr23g239a.. # T 203.16.214.173:21 -> 202.83.176.9:3880 [AP] 230 Anonymous access granted, restrictions apply... which is exactly what I expected in the first place. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From bsd at rubyforge.org Tue Nov 22 01:20:21 2005 From: bsd at rubyforge.org (Dr Balwinder Singh Dheeman <) Date: Tue Nov 22 01:21:04 2005 Subject: bin/89410: [PATCH] sh missing \u interpolation and bug/fix in \W Message-ID: <200511220919.jAM9JJdf057601@www.freebsd.org> >Number: 89410 >Category: bin >Synopsis: [PATCH] sh missing \u interpolation and bug/fix in \W >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 Nov 22 09:20:19 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Dr Balwinder Singh Dheeman >Release: FreeBSD 6.0-RELEASE >Organization: Anu's Linux@HOME >Environment: FreeBSD cto.sebs.org.in 6.0-RELEASE FreeBSD 6.0-RELEASE #0: Thu Nov 3 09:36:13 UTC 2005 root@x64.samsco.home:/usr/obj/usr/src/sys/GENERIC i386 Applicable to all base os and, or rescue box. >Description: The code for interpolating \u in $PS1 (prompt sting) is from /usr/src/bin/sh/parser.c, which is part of sh binary. And interpolation for \W is also buggy and, or incomplete. >How-To-Repeat: At any CLI/shell prompt exec the following: /bin/sh -i PS1='[\u@\h \W]\$ ' See whether your /bin/sh is iterpolating \u and \W properly? No, I think NOT. Try: cd / You will see a missing ']$ ' or ']# ' the later if you are logged in as root Now try: cd Yor are back in your $HOME, which /bin/sh should interploate as a "~" for brivity; but is not in the current parser.c code which is linked with binary sh. NOTE: The /usr/share/skel/dot.shrc is needed to be patched. >Fix: Apply the following patch to /usr/src/bin/sh/parser.c for /bin/sh: --- parser.c.orig Mon Feb 28 18:30:00 2005 +++ parser.c Tue Nov 22 10:43:12 2005 @@ -36,6 +36,9 @@ #endif #endif /* not lint */ #include +#include +#include + __FBSDID("$FreeBSD: src/bin/sh/parser.c,v 1.52 2005/03/01 03:35:58 obrien Exp $"); #include @@ -1564,8 +1567,11 @@ getprompt(void *unused __unused) { static char ps[PROMPTLEN]; + static char hd[PROMPTLEN]; char *fmt; int i, j, trim; + struct passwd *pw; + pw = getpwuid(geteuid()); /* * Select prompt format. @@ -1608,6 +1614,17 @@ break; /* + * username. + * + * \u specifies the username. + */ + case 'u': + ps[i] == '\0'; + strcpy(&ps[i], pw->pw_name); + i += strlen(pw->pw_name) - 1; + break; + + /* * Working directory. * * \W specifies just the final component, @@ -1617,14 +1634,19 @@ case 'w': ps[i] == '\0'; getcwd(&ps[i], PROMPTLEN - i); - if (*fmt == 'W') { - /* Final path component only. */ - trim = 1; - for (j = i; ps[j] != '\0'; j++) - if (ps[j] == '/') - trim = j + 1; - memmove(&ps[i], &ps[trim], - j - trim + 1); + chdir(pw->pw_dir); + getcwd(hd, PROMPTLEN - i); + if (strcmp(&ps[i], hd) == NULL) + strcpy(&ps[i], "~"); + else + chdir(&ps[i]); + if (*fmt == 'W' && ps[i + 1] != '\0') { + /* Final path component only. */ + trim = 1; + for (j = i; ps[j] != '\0'; j++) + if (ps[j] == '/') + trim = j + 1; + memmove(&ps[i], &ps[trim], j - trim + 1); } /* Skip to end of path. */ while (ps[i + 1] != '\0') @@ -1637,7 +1659,7 @@ * '$' for normal users, '#' for root. */ case '$': - ps[i] = (geteuid() != 0) ? '$' : '#'; + ps[i] = (pw->pw_uid != 0) ? '$' : '#'; break; /* The following may also be applied to /usr/share/skel/dot.shrc though is not that very critical. --- dot.shrc.orig Thu Nov 3 08:11:13 2005 +++ dot.shrc Tue Nov 22 08:23:38 2005 @@ -36,12 +36,8 @@ # alias rm='rm -i' -# # set prompt: ``username@hostname$ '' -# PS1="`whoami`@`hostname | sed 's/\..*//'`" -# case `id -u` in -# 0) PS1="${PS1}# ";; -# *) PS1="${PS1}$ ";; -# esac +# # set prompt: '[username@hostname cwdtail]$|# ' +#PS1="[\u@\h \W]\$ " # search path for cd(1) # CDPATH=.:$HOME >Release-Note: >Audit-Trail: >Unformatted: From errmaker at mail.ru Tue Nov 22 01:30:25 2005 From: errmaker at mail.ru (Alexey) Date: Tue Nov 22 01:30:36 2005 Subject: kern/89411: acpiconf bug Message-ID: <200511220928.jAM9S7MJ073998@www.freebsd.org> >Number: 89411 >Category: kern >Synopsis: acpiconf bug >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 Nov 22 09:30:23 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Alexey >Release: 6 >Organization: xx >Environment: FreeBSD dell1.bsd-online.info 6.0-STABLE FreeBSD 6.0-STABLE #0: Mon Nov 21 13:05:48 MSK 2005 errmaker@dell1.bsd-online.info:/usr/obj/usr/src/sys/DELL1KERN6X i386 >Description: %acpiconf -i 0 Design capacity: 4400 mAh Last full capacity: 3427 mAh Technology: secondary (rechargeable) Design voltage: 14800 mV Capacity (warn): 342 mAh Capacity (low): 103 mAh Low/warn granularity: 5 mAh Warn/full granularity: 5 mAh Model number: ?DELL H2369 Serial number: 1 Type: LION OEM info: Simplo State: high Remaining capacity: 100% Remaining time: unknown Present rate: 4294952 mA <<<<<< :)) Voltage: 16638 mV >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From xqufa at yokohama.riken.jp Tue Nov 22 01:31:54 2005 From: xqufa at yokohama.riken.jp (Nathan Butcher) Date: Tue Nov 22 01:32:09 2005 Subject: Fujitsu RX100S3 (P4)/ FreeBSD 6.0 RELEASE bugs Message-ID: <4382E6C7.40200@yokohama.riken.jp> Hi all, I've been testing various free operating systems with a Fujitsu RX100S3 server (a Pentium4 3.0Ghz with HyperThreading version), but I've been having all kinds of problems with it across all kinds of FreeBSD versions. Firstly with FreeBSD 6.0 RELEASE (cause that's what matters most) :- No problems at all with the GENERIC kernel, however I cannot seem to use an SMP kernel with this machine. It just locks it up. If I turn off HyperThreading in the BIOS, or if I boot the system without ACPI then the kernel boots OK with the SMP kernel. What happens is that all works fine until we get to the RAID initialization - then the machine has a seizure. Included is verbose dmesg of the crash (sometimes RAID information comes out, sometimes it doesn't. In the below example it didn't. When it does come out, it really goes berserk) It gets stuck after the Timecounters and when the RAID is about to check itself out. (I usually get some good messages from the GENERIC kernel, telling me if the RAID has synced or not yet) ----------- SMAP type=01 base=0000000000000000 len=000000000009e000 SMAP type=02 base=000000000009e000 len=0000000000002000 SMAP type=02 base=00000000000ce000 len=0000000000002000 SMAP type=02 base=00000000000e4000 len=000000000001c000 SMAP type=01 base=0000000000100000 len=000000003fde0000 SMAP type=03 base=000000003fee0000 len=000000000000d000 SMAP type=04 base=000000003feed000 len=0000000000013000 SMAP type=02 base=000000003ff00000 len=0000000000100000 SMAP type=02 base=00000000f0000000 len=0000000004000000 SMAP type=02 base=00000000fec00000 len=0000000000100000 SMAP type=02 base=00000000fee00000 len=0000000000100000 SMAP type=02 base=00000000ffb00000 len=0000000000500000 SMAP type=02 base=00000000fff00000 len=0000000000100000 Copyright (c) 1992-2005 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 6.0-RELEASE #0: Tue Nov 22 16:51:55 JST 2005 root@xxxx.yokohama.riken.go.jp:/usr/obj/usr/src/sys/SMP Preloaded elf kernel "/boot/kernel/kernel" at 0xc0a9a000. Preloaded elf module "/boot/kernel/acpi.ko" at 0xc0a9a1e8. Calibrating clock(s) ... i8254 clock: 1193156 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz quality 0 Calibrating TSC clock ... TSC clock: 2992519268 Hz CPU: Intel(R) Pentium(R) 4 CPU 3.00GHz (2992.52-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0xf43 Stepping = 3 Features=0xbfebfbff Features2=0x649d> AMD Features=0x20000000 Hyperthreading: 2 logical CPUs real memory = 1072562176 (1022 MB) Physical memory chunk(s): 0x0000000000001000 - 0x000000000009cfff, 638976 bytes (156 pages) 0x0000000000100000 - 0x00000000003fffff, 3145728 bytes (768 pages) 0x0000000000c28000 - 0x000000003ecacfff, 1040732160 bytes (254085 pages) avail memory = 1040510976 (992 MB) MP Configuration Table version 1.1 found at 0xc009e570 Table 'FACP' at 0x3feea5c7 Table 'SPCR' at 0x3feeceda Table 'MCFG' at 0x3feecf2a Table 'APIC' at 0x3feecf6a MADT: Found table at 0x3feecf6a APIC: Using the MADT enumerator. MADT: Found CPU APIC ID 0 ACPI ID 0: enabled SMP: Added CPU 0 (AP) MADT: Found CPU APIC ID 1 ACPI ID 1: enabled SMP: Added CPU 1 (AP) ACPI APIC Table: APIC ID: physical 0, logical 0:0 APIC ID: physical 1, logical 0:1 FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 bios32: Found BIOS32 Service Directory header at 0xc00f77f0 bios32: Entry = 0xfd670 (c00fd670) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0xfd670+0x212 pnpbios: Found PnP BIOS data at 0xc00f7890 pnpbios: Entry = f0000:a8f5 Rev = 1.0 Other BIOS signatures found: APIC: CPU 0 has ACPI ID 0 APIC: CPU 1 has ACPI ID 1 MADT: Found IO APIC ID 2, Interrupt 0 at 0xfec00000 ioapic0: Routing external 8259A's -> intpin 0 ioapic0: intpin 0 -> ExtINT (edge, high) ioapic0: intpin 1 -> ISA IRQ 1 (edge, high) ioapic0: intpin 2 -> ISA IRQ 2 (edge, high) ioapic0: intpin 3 -> ISA IRQ 3 (edge, high) ioapic0: intpin 4 -> ISA IRQ 4 (edge, high) ioapic0: intpin 5 -> ISA IRQ 5 (edge, high) ioapic0: intpin 6 -> ISA IRQ 6 (edge, high) ioapic0: intpin 7 -> ISA IRQ 7 (edge, high) ioapic0: intpin 8 -> ISA IRQ 8 (edge, high) ioapic0: intpin 9 -> ISA IRQ 9 (edge, high) ioapic0: intpin 10 -> ISA IRQ 10 (edge, high) ioapic0: intpin 11 -> ISA IRQ 11 (edge, high) ioapic0: intpin 12 -> ISA IRQ 12 (edge, high) ioapic0: intpin 13 -> ISA IRQ 13 (edge, high) ioapic0: intpin 14 -> ISA IRQ 14 (edge, high) ioapic0: intpin 15 -> ISA IRQ 15 (edge, high) ioapic0: intpin 16 -> PCI IRQ 16 (level, low) ioapic0: intpin 17 -> PCI IRQ 17 (level, low) ioapic0: intpin 18 -> PCI IRQ 18 (level, low) ioapic0: intpin 19 -> PCI IRQ 19 (level, low) ioapic0: intpin 20 -> PCI IRQ 20 (level, low) ioapic0: intpin 21 -> PCI IRQ 21 (level, low) ioapic0: intpin 22 -> PCI IRQ 22 (level, low) ioapic0: intpin 23 -> PCI IRQ 23 (level, low) MADT: Found IO APIC ID 3, Interrupt 24 at 0xfec80000 ioapic1: intpin 0 -> PCI IRQ 24 (level, low) ioapic1: intpin 1 -> PCI IRQ 25 (level, low) ioapic1: intpin 2 -> PCI IRQ 26 (level, low) ioapic1: intpin 3 -> PCI IRQ 27 (level, low) ioapic1: intpin 4 -> PCI IRQ 28 (level, low) ioapic1: intpin 5 -> PCI IRQ 29 (level, low) ioapic1: intpin 6 -> PCI IRQ 30 (level, low) ioapic1: intpin 7 -> PCI IRQ 31 (level, low) ioapic1: intpin 8 -> PCI IRQ 32 (level, low) ioapic1: intpin 9 -> PCI IRQ 33 (level, low) ioapic1: intpin 10 -> PCI IRQ 34 (level, low) ioapic1: intpin 11 -> PCI IRQ 35 (level, low) ioapic1: intpin 12 -> PCI IRQ 36 (level, low) ioapic1: intpin 13 -> PCI IRQ 37 (level, low) ioapic1: intpin 14 -> PCI IRQ 38 (level, low) ioapic1: intpin 15 -> PCI IRQ 39 (level, low) ioapic1: intpin 16 -> PCI IRQ 40 (level, low) ioapic1: intpin 17 -> PCI IRQ 41 (level, low) ioapic1: intpin 18 -> PCI IRQ 42 (level, low) ioapic1: intpin 19 -> PCI IRQ 43 (level, low) ioapic1: intpin 20 -> PCI IRQ 44 (level, low) ioapic1: intpin 21 -> PCI IRQ 45 (level, low) ioapic1: intpin 22 -> PCI IRQ 46 (level, low) ioapic1: intpin 23 -> PCI IRQ 47 (level, low) MADT: Interrupt override: source 0, irq 2 ioapic0: Routing IRQ 0 -> intpin 2 ioapic0: intpin 2 trigger: edge ioapic0: intpin 2 polarity: high MADT: Interrupt override: source 9, irq 9 ioapic0: intpin 9 trigger: level ioapic0: intpin 9 polarity: high lapic: Routing NMI -> LINT1 lapic: LINT1 trigger: edge lapic: LINT1 polarity: high ioapic0 irqs 0-23 on motherboard ioapic1 irqs 24-47 on motherboard cpu0 BSP: ID: 0x00000000 VER: 0x00050014 LDR: 0x01000000 DFR: 0x0fffffff lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff timer: 0x000100ef therm: 0x00010000 err: 0x00010000 pcm: 0x00010000 wlan: <802.11 Link Layer> random: nfslock: pseudo-device io: mem: Pentium Pro MTRR support enabled null: npx0: [FAST] npx0: on motherboard npx0: INT 16 interface acpi0: on motherboard acpi0: [MPSAFE] pci_open(1): mode 1 addr port (0x0cf8) is 0x80000090 pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=27788086) pcibios: BIOS version 2.10 Found $PIR table, 15 entries at 0xc00fded0 PCI-Only Interrupts: none Location Bus Device Pin Link IRQs embedded 0 1 A 0x60 3 4 5 6 7 9 10 11 12 14 15 embedded 0 1 B 0x61 3 4 5 6 7 9 10 11 12 14 15 embedded 0 1 C 0x62 3 4 5 6 7 9 10 11 12 14 15 embedded 0 1 D 0x63 3 4 5 6 7 9 10 11 12 14 15 embedded 0 28 A 0x60 3 4 5 6 7 9 10 11 12 14 15 embedded 0 28 B 0x61 3 4 5 6 7 9 10 11 12 14 15 embedded 0 28 C 0x62 3 4 5 6 7 9 10 11 12 14 15 embedded 0 28 D 0x63 3 4 5 6 7 9 10 11 12 14 15 embedded 0 29 A 0x6b 3 4 5 6 7 9 10 11 12 14 15 embedded 0 29 B 0x6a 3 4 5 6 7 9 10 11 12 14 15 embedded 0 29 C 0x69 3 4 5 6 7 9 10 11 12 14 15 embedded 0 29 D 0x68 3 4 5 6 7 9 10 11 12 14 15 embedded 0 30 A 0x61 3 4 5 6 7 9 10 11 12 14 15 embedded 0 30 B 0x68 3 4 5 6 7 9 10 11 12 14 15 embedded 0 31 A 0x62 3 4 5 6 7 9 10 11 12 14 15 embedded 0 31 B 0x63 3 4 5 6 7 9 10 11 12 14 15 embedded 1 0 A 0x60 3 4 5 6 7 9 10 11 12 14 15 embedded 1 0 B 0x61 3 4 5 6 7 9 10 11 12 14 15 embedded 1 0 C 0x62 3 4 5 6 7 9 10 11 12 14 15 embedded 1 0 D 0x63 3 4 5 6 7 9 10 11 12 14 15 slot 1 2 3 A 0x63 3 4 5 6 7 9 10 11 12 14 15 slot 1 2 3 B 0x60 3 4 5 6 7 9 10 11 12 14 15 slot 1 2 3 C 0x61 3 4 5 6 7 9 10 11 12 14 15 slot 1 2 3 D 0x62 3 4 5 6 7 9 10 11 12 14 15 embedded 2 5 A 0x61 3 4 5 6 7 9 10 11 12 14 15 slot 2 2 9 A 0x61 3 4 5 6 7 9 10 11 12 14 15 slot 2 2 9 B 0x62 3 4 5 6 7 9 10 11 12 14 15 slot 2 2 9 C 0x63 3 4 5 6 7 9 10 11 12 14 15 slot 2 2 9 D 0x60 3 4 5 6 7 9 10 11 12 14 15 slot 2 7 0 A 0x60 3 4 5 6 7 9 10 11 12 14 15 slot 2 7 0 B 0x61 3 4 5 6 7 9 10 11 12 14 15 slot 2 7 0 C 0x62 3 4 5 6 7 9 10 11 12 14 15 slot 2 7 0 D 0x63 3 4 5 6 7 9 10 11 12 14 15 embedded 10 0 A 0x60 3 4 5 6 7 9 10 11 12 14 15 embedded 10 0 B 0x61 3 4 5 6 7 9 10 11 12 14 15 embedded 10 0 C 0x62 3 4 5 6 7 9 10 11 12 14 15 embedded 10 0 D 0x63 3 4 5 6 7 9 10 11 12 14 15 embedded 11 0 A 0x61 3 4 5 6 7 9 10 11 12 14 15 embedded 11 0 B 0x62 3 4 5 6 7 9 10 11 12 14 15 embedded 11 0 C 0x63 3 4 5 6 7 9 10 11 12 14 15 embedded 11 0 D 0x60 3 4 5 6 7 9 10 11 12 14 15 embedded 14 3 A 0x61 3 4 5 6 7 9 10 11 12 14 15 slot 5 14 5 A 0x6a 3 4 5 6 7 9 10 11 12 14 15 slot 5 14 5 B 0x69 3 4 5 6 7 9 10 11 12 14 15 slot 5 14 5 C 0x63 3 4 5 6 7 9 10 11 12 14 15 slot 5 14 5 D 0x62 3 4 5 6 7 9 10 11 12 14 15 AcpiOsDerivePciId: bus 0 dev 31 func 0 acpi0: Power Button (fixed) AcpiOsDerivePciId: bus 0 dev 0 func 0 pci_link0: irq 11 on acpi0 pci_link0: Links after initial probe: Index IRQ Rtd Ref IRQs 0 11 N 0 9 10 11 pci_link0: Links after initial validation: Index IRQ Rtd Ref IRQs 0 11 N 0 9 10 11 pci_link0: Links after disable: Index IRQ Rtd Ref IRQs 0 255 N 0 9 10 11 pci_link1: irq 9 on acpi0 pci_link1: Links after initial probe: Index IRQ Rtd Ref IRQs 0 9 N 0 9 10 11 pci_link1: Links after initial validation: Index IRQ Rtd Ref IRQs 0 9 N 0 9 10 11 pci_link1: Links after disable: Index IRQ Rtd Ref IRQs 0 255 N 0 9 10 11 pci_link2: on acpi0 pci_link2: Links after initial probe: Index IRQ Rtd Ref IRQs 0 255 N 0 9 10 11 pci_link2: Links after initial validation: Index IRQ Rtd Ref IRQs 0 255 N 0 9 10 11 pci_link2: Links after disable: Index IRQ Rtd Ref IRQs 0 255 N 0 9 10 11 pci_link3: irq 9 on acpi0 pci_link3: Links after initial probe: Index IRQ Rtd Ref IRQs 0 9 N 0 9 10 11 pci_link3: Links after initial validation: Index IRQ Rtd Ref IRQs 0 9 N 0 9 10 11 pci_link3: Links after disable: Index IRQ Rtd Ref IRQs 0 255 N 0 9 10 11 pci_link4: irq 9 on acpi0 pci_link4: Links after initial probe: Index IRQ Rtd Ref IRQs 0 9 N 0 9 10 11 pci_link4: Links after initial validation: Index IRQ Rtd Ref IRQs 0 9 N 0 9 10 11 pci_link4: Links after disable: Index IRQ Rtd Ref IRQs 0 255 N 0 9 10 11 pci_link5: irq 5 on acpi0 pci_link5: Links after initial probe: Index IRQ Rtd Ref IRQs 0 5 N 0 9 10 11 pci_link5: Links after initial validation: Index IRQ Rtd Ref IRQs 0 255 N 0 9 10 11 pci_link5: Links after disable: Index IRQ Rtd Ref IRQs 0 255 N 0 9 10 11 pci_link6: irq 10 on acpi0 pci_link6: Links after initial probe: Index IRQ Rtd Ref IRQs 0 10 N 0 9 10 11 pci_link6: Links after initial validation: Index IRQ Rtd Ref IRQs 0 10 N 0 9 10 11 pci_link6: Links after disable: Index IRQ Rtd Ref IRQs 0 255 N 0 9 10 11 pci_link7: irq 11 on acpi0 pci_link7: Links after initial probe: Index IRQ Rtd Ref IRQs 0 11 N 0 9 10 11 pci_link7: Links after initial validation: Index IRQ Rtd Ref IRQs 0 11 N 0 9 10 11 pci_link7: Links after disable: Index IRQ Rtd Ref IRQs 0 255 N 0 9 10 11 AcpiOsDerivePciId: bus 0 dev 31 func 0 ACPI timer: 1/0 1/0 1/0 1/0 1/0 1/0 1/0 1/0 1/0 1/0 -> 10 Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0xf008-0xf00b on acpi0 cpu0: on acpi0 cpu1: on acpi0 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pci0: physical bus=0 found-> vendor=0x8086, dev=0x2778, revid=0x81 bus=0, slot=0, func=0 class=06-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0106, statreg=0x2090, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x8086, dev=0x2779, revid=0x81 bus=0, slot=1, func=0 class=06-04-00, hdrtype=0x01, mfdev=0 cmdreg=0x0147, statreg=0x0010, cachelnsz=8 (dwords) lattimer=0x00 (0 ns), mingnt=0x07 (1750 ns), maxlat=0x00 (0 ns) intpin=a, irq=11 pcib0: matched entry for 0.1.INTA pcib0: slot 1 INTA hardwired to IRQ 16 found-> vendor=0x8086, dev=0x27d0, revid=0x01 bus=0, slot=28, func=0 class=06-04-00, hdrtype=0x01, mfdev=1 cmdreg=0x0040, statreg=0x0010, cachelnsz=8 (dwords) lattimer=0x00 (0 ns), mingnt=0x03 (750 ns), maxlat=0x00 (0 ns) intpin=a, irq=11 pcib0: matched entry for 0.28.INTA pcib0: slot 28 INTA hardwired to IRQ 17 found-> vendor=0x8086, dev=0x27e0, revid=0x01 bus=0, slot=28, func=4 class=06-04-00, hdrtype=0x01, mfdev=1 cmdreg=0x0047, statreg=0x0010, cachelnsz=8 (dwords) lattimer=0x00 (0 ns), mingnt=0x07 (1750 ns), maxlat=0x00 (0 ns) intpin=a, irq=11 pcib0: matched entry for 0.28.INTA pcib0: slot 28 INTA hardwired to IRQ 17 found-> vendor=0x8086, dev=0x27e2, revid=0x01 bus=0, slot=28, func=5 class=06-04-00, hdrtype=0x01, mfdev=1 cmdreg=0x0047, statreg=0x0010, cachelnsz=8 (dwords) lattimer=0x00 (0 ns), mingnt=0x07 (1750 ns), maxlat=0x00 (0 ns) intpin=b, irq=9 pcib0: matched entry for 0.28.INTB pcib0: slot 28 INTB hardwired to IRQ 16 found-> vendor=0x8086, dev=0x27c8, revid=0x01 bus=0, slot=29, func=0 class=0c-03-00, hdrtype=0x00, mfdev=1 cmdreg=0x0005, statreg=0x0280, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=11 map[20]: type 4, range 32, base 00002000, size 5, enabled pcib0: matched entry for 0.29.INTA pcib0: slot 29 INTA hardwired to IRQ 23 found-> vendor=0x8086, dev=0x27c9, revid=0x01 bus=0, slot=29, func=1 class=0c-03-00, hdrtype=0x00, mfdev=0 cmdreg=0x0005, statreg=0x0280, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=b, irq=10 map[20]: type 4, range 32, base 00002400, size 5, enabled pcib0: matched entry for 0.29.INTB pcib0: slot 29 INTB hardwired to IRQ 22 found-> vendor=0x8086, dev=0x27ca, revid=0x01 bus=0, slot=29, func=2 class=0c-03-00, hdrtype=0x00, mfdev=0 cmdreg=0x0005, statreg=0x0280, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=c, irq=5 map[20]: type 4, range 32, base 00002800, size 5, enabled pcib0: matched entry for 0.29.INTC pcib0: slot 29 INTC hardwired to IRQ 21 found-> vendor=0x8086, dev=0x27cb, revid=0x01 bus=0, slot=29, func=3 class=0c-03-00, hdrtype=0x00, mfdev=0 cmdreg=0x0005, statreg=0x0280, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=d, irq=9 map[20]: type 4, range 32, base 00002c00, size 5, enabled pcib0: matched entry for 0.29.INTD pcib0: slot 29 INTD hardwired to IRQ 20 found-> vendor=0x8086, dev=0x27cc, revid=0x01 bus=0, slot=29, func=7 class=0c-03-20, hdrtype=0x00, mfdev=0 cmdreg=0x0146, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=11 powerspec 2 supports D0 D3 current D0 map[10]: type 1, range 32, base fc000000, size 10, enabled pcib0: matched entry for 0.29.INTA pcib0: slot 29 INTA hardwired to IRQ 23 found-> vendor=0x8086, dev=0x244e, revid=0xe1 bus=0, slot=30, func=0 class=06-04-01, hdrtype=0x01, mfdev=0 cmdreg=0x0147, statreg=0x0010, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x0f (3750 ns), maxlat=0x00 (0 ns) found-> vendor=0x8086, dev=0x27b8, revid=0x01 bus=0, slot=31, func=0 class=06-01-00, hdrtype=0x00, mfdev=1 cmdreg=0x0147, statreg=0x0210, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x8086, dev=0x27df, revid=0x01 bus=0, slot=31, func=1 class=01-01-8a, hdrtype=0x00, mfdev=0 cmdreg=0x0005, statreg=0x0288, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=255 map[20]: type 4, range 32, base 00003400, size 4, enabled found-> vendor=0x8086, dev=0x27da, revid=0x01 bus=0, slot=31, func=3 class=0c-05-00, hdrtype=0x00, mfdev=0 cmdreg=0x0141, statreg=0x0280, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=b, irq=9 map[20]: type 4, range 32, base 00003000, size 5, enabled pcib0: matched entry for 0.31.INTB pcib0: slot 31 INTB hardwired to IRQ 19 pcib1: irq 16 at device 1.0 on pci0 pcib1: secondary bus 1 pcib1: subordinate bus 2 pcib1: I/O decode 0x4000-0x4fff pcib1: memory decode 0xfc100000-0xfc2fffff pcib1: prefetched decode 0xfff00000-0xfffff pci1: on pcib1 pci1: physical bus=1 found-> vendor=0x8086, dev=0x032c, revid=0x09 bus=1, slot=0, func=0 class=06-04-00, hdrtype=0x01, mfdev=1 cmdreg=0x0147, statreg=0x0010, cachelnsz=8 (dwords) lattimer=0x00 (0 ns), mingnt=0x07 (1750 ns), maxlat=0x00 (0 ns) pcib2: at device 0.0 on pci1 pcib2: secondary bus 2 pcib2: subordinate bus 2 pcib2: I/O decode 0x4000-0x4fff pcib2: memory decode 0xfc100000-0xfc2fffff pcib2: prefetched decode 0xfff00000-0xfffff pci2: on pcib2 pci2: physical bus=2 found-> vendor=0x1000, dev=0x0030, revid=0xc1 bus=2, slot=5, func=0 class=01-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0157, statreg=0x0230, cachelnsz=8 (dwords) lattimer=0x80 (3840 ns), mingnt=0x10 (4000 ns), maxlat=0x06 (1500 ns) intpin=a, irq=9 powerspec 2 supports D0 D1 D2 D3 current D0 MSI supports 1 message, 64 bit map[10]: type 4, range 32, base 00004000, size 8, enabled pcib2: (null) requested I/O range 0x4000-0x40ff: in range pcib1: (null) requested I/O range 0x4000-0x40ff: in range map[14]: type 1, range 64, base fc110000, size 16, enabled pcib2: (null) requested memory range 0xfc110000-0xfc11ffff: good pcib1: (null) requested memory range 0xfc110000-0xfc11ffff: good map[1c]: type 1, range 64, base fc100000, size 16, enabled pcib2: (null) requested memory range 0xfc100000-0xfc10ffff: good pcib1: (null) requested memory range 0xfc100000-0xfc10ffff: good pcib2: matched entry for 2.5.INTA pcib2: slot 5 INTA hardwired to IRQ 25 mpt0: port 0x4000-0x40ff mem 0xfc110000-0xfc11ffff,0xfc100000-0xfc10ffff irq 25 at device 5.0 on pc i2 mpt0: Reserved 0x100 bytes for rid 0x10 type 4 at 0x4000 mpt0: Reserved 0x10000 bytes for rid 0x14 type 3 at 0xfc110000 mpt0: [GIANT-LOCKED] mpt0: doorbell req = (0x22000000) mpt0: soft reset mpt0: MPI Version=1.2.15.0 mpt0: MsgLength=15 IOCNumber = 0 mpt0: IOCFACTS: GlobalCredits=222 BlockSize=64 Request Frame Size 192 mpt0: IOCFACTS: Num Ports 1, FWImageSize 65348, Flags=0 mpt0: PORTFACTS: Type 1 PFlags 8 IID 7 MaxDev 16 mpt0: mpt_send_ioc_init ok mpt0: IOC now at RUNSTATEmpt0: enabling async events mpt0: enabling port 0 mpt0: Unhandled Event Notify Frame. Event 0xa. mpt0: enabled port 0 mpt0: IOC Page 2 Header: ver 2, len 14, num 2, type 1 mpt0: Capabilities: ( RAID-1E RAID-1 SAFTE ) mpt0: 1 Active Volume (1 Max) mpt0: 2 Hidden Drive Members (6 Max) mpt0: IOC Page 3 Header: 0 4 3 1 mpt0: SPI Port Page 0 Header: 2 3 0 3 mpt0: SPI Port Page 1 Header: 3 4 1 23 mpt0: SPI Port Page 2 Header: 3 4 1 23 mpt0: SPI Target 0 Device Page 0 Header: 4 3 0 4 mpt0: SPI Target 0 Device Page 1 Header: 5 4 1 14 mpt0: SPI Target 1 Device Page 0 Header: 4 3 0 4 mpt0: SPI Target 1 Device Page 1 Header: 5 4 1 14 mpt0: SPI Target 2 Device Page 0 Header: 4 3 0 4 mpt0: SPI Target 2 Device Page 1 Header: 5 4 1 14 mpt0: SPI Target 3 Device Page 0 Header: 4 3 0 4 mpt0: SPI Target 3 Device Page 1 Header: 5 4 1 14 mpt0: SPI Target 4 Device Page 0 Header: 4 3 0 4 mpt0: SPI Target 4 Device Page 1 Header: 5 4 1 14 mpt0: SPI Target 5 Device Page 0 Header: 4 3 0 4 mpt0: SPI Target 5 Device Page 1 Header: 5 4 1 14 mpt0: SPI Target 6 Device Page 0 Header: 4 3 0 4 mpt0: SPI Target 6 Device Page 1 Header: 5 4 1 14 mpt0: SPI Target 7 Device Page 0 Header: 4 3 0 4 mpt0: SPI Target 7 Device Page 1 Header: 5 4 1 14 mpt0: SPI Target 8 Device Page 0 Header: 4 3 0 4 mpt0: SPI Target 8 Device Page 1 Header: 5 4 1 14 mpt0: SPI Target 9 Device Page 0 Header: 4 3 0 4 mpt0: SPI Target 9 Device Page 1 Header: 5 4 1 14 mpt0: SPI Target 10 Device Page 0 Header: 4 3 0 4 mpt0: SPI Target 10 Device Page 1 Header: 5 4 1 14 mpt0: SPI Target 11 Device Page 0 Header: 4 3 0 4 mpt0: SPI Target 11 Device Page 1 Header: 5 4 1 14 mpt0: SPI Target 12 Device Page 0 Header: 4 3 0 4 mpt0: SPI Target 12 Device Page 1 Header: 5 4 1 14 mpt0: SPI Target 13 Device Page 0 Header: 4 3 0 4 mpt0: SPI Target 13 Device Page 1 Header: 5 4 1 14 mpt0: SPI Target 14 Device Page 0 Header: 4 3 0 4 mpt0: SPI Target 14 Device Page 1 Header: 5 4 1 14 mpt0: SPI Target 15 Device Page 0 Header: 4 3 0 4 mpt0: SPI Target 15 Device Page 1 Header: 5 4 1 14 mpt0: SPI Port Page 0: Capabilities a07f0807 PhysicalInterface fe000003 mpt0: SPI Port Page 1: Configuration 800007 OnBusTimerValue 0 mpt0: SPI Port Page 2: Flags 0 Settings 207 mpt0: SPI Port Page 2 Tgt 0: timo a SF 8 Flags f mpt0: SPI Port Page 2 Tgt 1: timo a SF 8 Flags f mpt0: SPI Port Page 2 Tgt 2: timo a SF 8 Flags f mpt0: SPI Port Page 2 Tgt 3: timo a SF 8 Flags f mpt0: SPI Port Page 2 Tgt 4: timo a SF 8 Flags f mpt0: SPI Port Page 2 Tgt 5: timo a SF 8 Flags f mpt0: SPI Port Page 2 Tgt 6: timo a SF 8 Flags f mpt0: SPI Port Page 2 Tgt 7: timo a SF 8 Flags f mpt0: SPI Port Page 2 Tgt 8: timo a SF 8 Flags f mpt0: SPI Port Page 2 Tgt 9: timo a SF 8 Flags f mpt0: SPI Port Page 2 Tgt 10: timo a SF 8 Flags f mpt0: SPI Port Page 2 Tgt 11: timo a SF 8 Flags f mpt0: SPI Port Page 2 Tgt 12: timo a SF 8 Flags f mpt0: SPI Port Page 2 Tgt 13: timo a SF 8 Flags f mpt0: SPI Port Page 2 Tgt 14: timo a SF 8 Flags f mpt0: SPI Port Page 2 Tgt 15: timo a SF 8 Flags f mpt0: SPI Tgt 0 Page 0: NParms 201f08d7 Information 1mpt0: SPI Tgt 0 Page 1: RParms 201f0807 Configuration 0 mpt0: SPI Tgt 1 Page 0: NParms 201f08d7 Information 1mpt0: SPI Tgt 1 Page 1: RParms 201f0807 Configuration 0 mpt0: SPI Tgt 2 Page 0: NParms 0 Information 0mpt0: SPI Tgt 2 Page 1: RParms 0 Configuration 6 mpt0: SPI Tgt 3 Page 0: NParms 0 Information 0mpt0: SPI Tgt 3 Page 1: RParms 0 Configuration 6 mpt0: SPI Tgt 4 Page 0: NParms 0 Information 0mpt0: SPI Tgt 4 Page 1: RParms 0 Configuration 6 mpt0: SPI Tgt 5 Page 0: NParms 0 Information 0mpt0: SPI Tgt 5 Page 1: RParms 0 Configuration 6 mpt0: SPI Tgt 6 Page 0: NParms 0 Information 0mpt0: SPI Tgt 6 Page 1: RParms 0 Configuration 6 mpt0: SPI Tgt 7 Page 0: NParms 0 Information 0mpt0: SPI Tgt 7 Page 1: RParms 0 Configuration 6 mpt0: SPI Tgt 8 Page 0: NParms 0 Information 0mpt0: SPI Tgt 8 Page 1: RParms 0 Configuration 6 mpt0: SPI Tgt 9 Page 0: NParms 0 Information 0mpt0: SPI Tgt 9 Page 1: RParms 0 Configuration 6 mpt0: SPI Tgt 10 Page 0: NParms 0 Information 0mpt0: SPI Tgt 10 Page 1: RParms 0 Configuration 6 mpt0: SPI Tgt 11 Page 0: NParms 0 Information 0mpt0: SPI Tgt 11 Page 1: RParms 0 Configuration 6 mpt0: SPI Tgt 12 Page 0: NParms 0 Information 0mpt0: SPI Tgt 12 Page 1: RParms 0 Configuration 6 mpt0: SPI Tgt 13 Page 0: NParms 0 Information 0mpt0: SPI Tgt 13 Page 1: RParms 0 Configuration 6 mpt0: SPI Tgt 14 Page 0: NParms 0 Information 0mpt0: SPI Tgt 14 Page 1: RParms 0 Configuration 6 mpt0: SPI Tgt 15 Page 0: NParms 0 Information 0mpt0: SPI Tgt 15 Page 1: RParms 0 Configuration 6 mpt0: Set Tgt 0 SPI DevicePage 1 values to 0 0 0 mpt0: SPI Tgt 0 Page 1: RParm 0 Configuration 0 mpt0: Set Tgt 1 SPI DevicePage 1 values to 0 0 0 mpt0: SPI Tgt 1 Page 1: RParm 0 Configuration 0 mpt0: Set Tgt 2 SPI DevicePage 1 values to 0 0 0 mpt0: SPI Tgt 2 Page 1: RParm 0 Configuration 0 mpt0: Set Tgt 3 SPI DevicePage 1 values to 0 0 0 mpt0: SPI Tgt 3 Page 1: RParm 0 Configuration 0 mpt0: Set Tgt 4 SPI DevicePage 1 values to 0 0 0 mpt0: SPI Tgt 4 Page 1: RParm 0 Configuration 0 mpt0: Set Tgt 5 SPI DevicePage 1 values to 0 0 0 mpt0: SPI Tgt 5 Page 1: RParm 0 Configuration 0 mpt0: Set Tgt 6 SPI DevicePage 1 values to 0 0 0 mpt0: SPI Tgt 6 Page 1: RParm 0 Configuration 0 mpt0: Set Tgt 7 SPI DevicePage 1 values to 0 0 0 mpt0: SPI Tgt 7 Page 1: RParm 0 Configuration 0 mpt0: Set Tgt 8 SPI DevicePage 1 values to 0 0 0 mpt0: SPI Tgt 8 Page 1: RParm 0 Configuration 0 mpt0: Set Tgt 9 SPI DevicePage 1 values to 0 0 0 mpt0: SPI Tgt 9 Page 1: RParm 0 Configuration 0 mpt0: Set Tgt 10 SPI DevicePage 1 values to 0 0 0 mpt0: SPI Tgt 10 Page 1: RParm 0 Configuration 0 mpt0: Set Tgt 11 SPI DevicePage 1 values to 0 0 0 mpt0: SPI Tgt 11 Page 1: RParm 0 Configuration 0 mpt0: Set Tgt 12 SPI DevicePage 1 values to 0 0 0 mpt0: SPI Tgt 12 Page 1: RParm 0 Configuration 0 mpt0: Set Tgt 13 SPI DevicePage 1 values to 0 0 0 mpt0: SPI Tgt 13 Page 1: RParm 0 Configuration 0 mpt0: Set Tgt 14 SPI DevicePage 1 values to 0 0 0 mpt0: SPI Tgt 14 Page 1: RParm 0 Configuration 0 mpt0: Set Tgt 15 SPI DevicePage 1 values to 0 0 0 mpt0: SPI Tgt 15 Page 1: RParm 0 Configuration 0 mpt0: enabling interrupts pcib3: irq 17 at device 28.0 on pci0 pcib3: secondary bus 7 pcib3: subordinate bus 7 pcib3: I/O decode 0x0-0x0 pcib3: memory decode 0x0-0x0 pcib3: prefetched decode 0x0-0x0 pci7: on pcib3 pci7: physical bus=7 pcib4: irq 17 at device 28.4 on pci0 pcib4: secondary bus 10 pcib4: subordinate bus 10 pcib4: I/O decode 0xf000-0xfff pcib4: memory decode 0xfc300000-0xfc3fffff pcib4: prefetched decode 0xfff00000-0xfffff pci10: on pcib4 pci10: physical bus=10 found-> vendor=0x14e4, dev=0x1659, revid=0x11 bus=10, slot=0, func=0 class=02-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0146, statreg=0x0010, cachelnsz=8 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=11 powerspec 2 supports D0 D3 current D0 MSI supports 8 messages, 64 bit map[10]: type 1, range 64, base fc300000, size 16, enabled pcib4: (null) requested memory range 0xfc300000-0xfc30ffff: good pcib4: matched entry for 10.0.INTA pcib4: slot 0 INTA hardwired to IRQ 16 bge0: mem 0xfc300000-0xfc30ffff irq 16 at device 0.0 on pci10 bge0: Reserved 0x10000 bytes for rid 0x10 type 3 at 0xfc300000 miibus0: on bge0 brgphy0: on miibus0 brgphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX, 1000baseTX-FDX, auto bge0: bpf attached bge0: Ethernet address: 00:0a:e4:14:71:ff bge0: [MPSAFE] pcib5: irq 16 at device 28.5 on pci0 pcib5: secondary bus 11 pcib5: subordinate bus 11 pcib5: I/O decode 0xf000-0xfff pcib5: memory decode 0xfc400000-0xfc4fffff pcib5: prefetched decode 0xfff00000-0xfffff pci11: on pcib5 pci11: physical bus=11 found-> vendor=0x14e4, dev=0x1677, revid=0x11 bus=11, slot=0, func=0 class=02-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0146, statreg=0x0010, cachelnsz=8 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=9 powerspec 2 supports D0 D3 current D0 MSI supports 8 messages, 64 bit map[10]: type 1, range 64, base fc400000, size 16, enabled pcib5: (null) requested memory range 0xfc400000-0xfc40ffff: good pcib5: matched entry for 11.0.INTA pcib5: slot 0 INTA hardwired to IRQ 17 bge1: mem 0xfc400000-0xfc40ffff irq 17 at device 0.0 on pci11 bge1: Reserved 0x10000 bytes for rid 0x10 type 3 at 0xfc400000 miibus1: on bge1 brgphy1: on miibus1 brgphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX, 1000baseTX-FDX, auto bge1: bpf attached bge1: Ethernet address: 00:0a:e4:14:72:00 bge1: [MPSAFE] uhci0: port 0x2000-0x201f irq 23 at device 29.0 on pci0 uhci0: Reserved 0x20 bytes for rid 0x20 type 4 at 0x2000 uhci0: [GIANT-LOCKED] usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered uhci1: port 0x2400-0x241f irq 22 at device 29.1 on pci0 uhci1: Reserved 0x20 bytes for rid 0x20 type 4 at 0x2400 uhci1: [GIANT-LOCKED] usb1: on uhci1 usb1: USB revision 1.0 uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered uhci2: port 0x2800-0x281f irq 21 at device 29.2 on pci0 uhci2: Reserved 0x20 bytes for rid 0x20 type 4 at 0x2800 uhci2: [GIANT-LOCKED] usb2: on uhci2 usb2: USB revision 1.0 uhub2: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub2: 2 ports with 2 removable, self powered uhci3: port 0x2c00-0x2c1f irq 20 at device 29.3 on pci0 uhci3: Reserved 0x20 bytes for rid 0x20 type 4 at 0x2c00 uhci3: [GIANT-LOCKED] usb3: on uhci3 usb3: USB revision 1.0 uhub3: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub3: 2 ports with 2 removable, self powered ehci0: mem 0xfc000000-0xfc0003ff irq 23 at device 29.7 on pci0 ehci0: Reserved 0x400 bytes for rid 0x10 type 3 at 0xfc000000 ehci0: [GIANT-LOCKED] usb4: waiting for BIOS to give up control usb4: timed out waiting for BIOS usb4: EHCI version 1.0 usb4: companion controllers, 2 ports each: usb0 usb1 usb2 usb3 usb4: on ehci0 usb4: USB revision 2.0 uhub4: Intel EHCI root hub, class 9/0, rev 2.00/1.00, addr 1 uhub4: 8 ports with 8 removable, self powered pcib6: at device 30.0 on pci0 pcib6: secondary bus 14 pcib6: subordinate bus 14 pcib6: I/O decode 0x5000-0x5fff pcib6: memory decode 0xfc500000-0xfdffffff pcib6: prefetched decode 0xfff00000-0xfffff pcib6: Subtractively decoded bridge. pci14: on pcib6 pci14: physical bus=14 found-> vendor=0x1002, dev=0x4752, revid=0x27 bus=14, slot=3, func=0 class=03-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0087, statreg=0x0290, cachelnsz=8 (dwords) lattimer=0x42 (1980 ns), mingnt=0x08 (2000 ns), maxlat=0x00 (0 ns) powerspec 2 supports D0 D1 D2 D3 current D0 map[10]: type 1, range 32, base fd000000, size 24, enabled pcib6: (null) requested memory range 0xfd000000-0xfdffffff: good map[14]: type 4, range 32, base 00005000, size 8, enabled pcib6: (null) requested I/O range 0x5000-0x50ff: in range map[18]: type 1, range 32, base fc500000, size 12, enabled pcib6: (null) requested memory range 0xfc500000-0xfc500fff: good pci14: at device 3.0 (no driver attached) isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0x3400-0x340f at device 31.1 on pci0 atapci0: Reserved 0x10 bytes for rid 0x20 type 4 at 0x3400 ata0: on atapci0 atapci0: Reserved 0x8 bytes for rid 0x10 type 4 at 0x1f0 atapci0: Reserved 0x1 bytes for rid 0x14 type 4 at 0x3f6 ata0: reset tp1 mask=03 ostat0=51 ostat1=01 ata0: stat0=0x00 err=0x01 lsb=0x14 msb=0xeb ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x04 ata0: stat1=0x01 err=0x04 lsb=0x04 msb=0x1c ata0: reset tp2 stat0=00 stat1=01 devices=0x4 ata0: [MPSAFE] ata1: on atapci0 atapci0: Reserved 0x8 bytes for rid 0x18 type 4 at 0x170 atapci0: Reserved 0x1 bytes for rid 0x1c type 4 at 0x376 ata1: reset tp1 mask=03 ostat0=7f ostat1=7f ata1: stat0=0x7f err=0x7f lsb=0x7f msb=0x7f ata1: stat0=0x7f err=0x7f lsb=0x7f msb=0x7f ata1: stat0=0x7f err=0x7f lsb=0x7f msb=0x7f ata1: stat0=0x7f err=0x7f lsb=0x7f msb=0x7f ata1: stat0=0x7f err=0x7f lsb=0x7f msb=0x7f ata1: stat0=0x7f err=0x7f lsb=0x7f msb=0x7f ata1: stat0=0x7f err=0x7f lsb=0x7f msb=0x7f ata1: stat0=0x7f err=0x7f lsb=0x7f msb=0x7f ata1: stat0=0x7f err=0x7f lsb=0x7f msb=0x7f ata1: stat0=0x7f err=0x7f lsb=0x7f msb=0x7f ata1: stat0=0x7f err=0x7f lsb=0x7f msb=0x7f ata1: stat0=0x7f err=0x7f lsb=0x7f msb=0x7f ata1: stat1=0x7f err=0x7f lsb=0x7f msb=0x7f ata1: reset tp2 stat0=ff stat1=ff devices=0x0 ata1: [MPSAFE] pci0: at device 31.3 (no driver attached) atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 atkbd: the current kbd controller command byte 0047 atkbd: keyboard ID 0x41ab (2) kbdc: RESET_KBD return code:00fa kbdc: RESET_KBD status:00aa kbd0 at atkbd0 kbd0: atkbd0, AT 101/102 (2), config:0x0, flags:0x3d0000 atkbd0: [GIANT-LOCKED] psm0: unable to allocate IRQ psmcpnp0: irq 12 on acpi0 psm0: current command byte:0047 kbdc: TEST_AUX_PORT status:0000 kbdc: RESET_AUX return code:00fa kbdc: RESET_AUX status:00aa kbdc: RESET_AUX ID:0000 kbdc: RESET_AUX return code:00fa kbdc: RESET_AUX status:00aa kbdc: RESET_AUX ID:0000 psm: status 00 02 64 psm: status 00 00 64 psm: status 00 03 64 psm: status 00 03 64 psm: data 08 05 06 psm: status 00 02 64 psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: model IntelliMouse, device ID 3-00, 3 buttons psm0: config:00000000, flags:00000008, packet size:4 psm0: syncmask:08, syncbits:00 sio0: irq maps: 0x4c01 0x4c11 0x4c01 0x4c01 sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A, console ahc_isa_probe 0: ioport 0xc00 alloc failed ahc_isa_probe 2: ioport 0x2c00 alloc failed ex_isa_identify() ata: ata0 already exists; skipping it ata: ata1 already exists; skipping it atkbdc: atkbdc0 already exists; skipping it sio: sio0 already exists; skipping it pnp_identify: Trying Read_Port at 203 pnp_identify: Trying Read_Port at 243 pnp_identify: Trying Read_Port at 283 pnp_identify: Trying Read_Port at 2c3 pnp_identify: Trying Read_Port at 303 pnp_identify: Trying Read_Port at 343 pnp_identify: Trying Read_Port at 383 pnp_identify: Trying Read_Port at 3c3 PNP Identify complete unknown: status reg test failed ff unknown: status reg test failed ff unknown: status reg test failed ff unknown: status reg test failed ff unknown: status reg test failed ff unknown: status reg test failed ff sc: sc0 already exists; skipping it vga: vga0 already exists; skipping it isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices pmtimer0 on isa0 orm0: at iomem 0xc0000-0xc8fff,0xc9000-0xccfff on isa0 adv0: not probed (disabled) aha0: not probed (disabled) aic0: not probed (disabled) bt0: not probed (disabled) cs0: not probed (disabled) ed0: not probed (disabled) fdc0 failed to probe at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fe0: not probed (disabled) ie0: not probed (disabled) lnc0: not probed (disabled) ppc0: parallel port not found. ppc0: failed to probe at irq 7 on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sc0: fb0, kbd0, terminal emulator: sc (syscons terminal) sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled sio1: irq maps: 0x4c01 0x4c01 0x4c01 0x4c01 sio1: probe failed test(s): 0 1 2 4 6 7 9 sio1 failed to probe at port 0x2f8-0x2ff irq 3 on isa0 sio2: not probed (disabled) sio3: not probed (disabled) sn0: not probed (disabled) vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 vt0: not probed (disabled) isa_probe_children: probing PnP devices Device configuration finished. procfs registered lapic: Divisor 2, Frequency 99750191 hz Timecounter "TSC" frequency 2992519268 Hz quality -100 Timecounters tick every 1.000 msec lo0: bpf attached ata0-master: pio=PIO4 wdma=WDMA2 udma=UDMA33 cable=40 wire ----------- The last ata0-master line appeared on screen at a plodding pace. One character per second, as if the machine was really slowing down and about to croak. If you guys need more dmesgs of what comes out with the generic kernel, or with ACPI disabled, just ask - although I cannot give you verbose results of those outputs. Just as a side note:- FreeBSD 5.4 and 4.11 which I also tested had some problems with the USB ports working. I stuck a USB memory key in and nothing came out in the kernel messages. GENERIC or SMP kernel made no difference. (Actually OpenBSD3.8 had network issues when I used it's SMP kernel, and Debian sarge 2.6 kernel had USB issues as well - just FYI - although it has nothing to do with FreeBSD) Anyway, at the moment it looks like I'm better off disabling HyperThreading and sticking with the GENERIC kernel. Thanks, From hk at alogis.com Tue Nov 22 03:30:35 2005 From: hk at alogis.com (Holger Kipp) Date: Tue Nov 22 03:30:47 2005 Subject: kern/87208: /dev/cuad[0/1] bad file descriptor error during mgetty read Message-ID: <200511221130.jAMBUYsD009656@freefall.freebsd.org> The following reply was made to PR kern/87208; it has been noted by GNATS. From: Holger Kipp To: bug-followup@FreeBSD.org, norbert@feu-nrmf.ph Cc: Subject: Re: kern/87208: /dev/cuad[0/1] bad file descriptor error during mgetty read Date: Tue, 22 Nov 2005 12:24:27 +0100 Hello, this problem is preventing production use here. Currently I can use /dev/cuad0 if I have the entry cuad0 "/usr/local/sbin/mgetty" unknown on insecure twice(*) in "/etc/ttys" and issue "kill -HUP 1" after booting to multi-user. Having only the first entry, sending SIGHUP to init won't work, but with both entries, so far the first SIGHUP to init gets everything working. Maybe this is helpful in finding the culprit. This is on a ASRock CPU EX Upgrade Board (K7UPGRADE-880/A/ASR) with AMD Athlon(tm) XP 2800+ and 512MB Memory, running FreeBSD 6.0-STABLE #3: Sun Nov 20 19:50:43 CET 2005 (*) one entry comes before pseudo terminal entries, the other afterwards. Regards, Holger Kipp From kdl at chelcom.ru Tue Nov 22 05:50:50 2005 From: kdl at chelcom.ru (Daniil Kharoun) Date: Tue Nov 22 05:51:01 2005 Subject: kern/89417: ng_netflow: flow sequence error Message-ID: <200511221348.jAMDmaBK060281@www.freebsd.org> >Number: 89417 >Category: kern >Synopsis: ng_netflow: flow sequence 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 Nov 22 13:50:23 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Daniil Kharoun >Release: 6.0-RELEASE >Organization: JSC Intersvyaz >Environment: FreeBSD vpn3 6.0-RELEASE FreeBSD 6.0-RELEASE #0: Tue Nov 22 18:05:15 YEKT 2005 root@vpn3:/usr/src/sys/i386/compile/VPN i386 >Description: After updating system from version 5.4 up to version 6.0 my collector began to inform on losses of flows. Probably, a problem in discrepancy of sequence number (flow_seq in netflow_v5_header). myflowcollector: lost 7650 flow records for router vpn3 ! >How-To-Repeat: Use ng_netflow and use a netflow collector with the control of a sequence number. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From swhetzel at gmail.com Tue Nov 22 08:10:53 2005 From: swhetzel at gmail.com (Scot W. Hetzel) Date: Tue Nov 22 08:11:11 2005 Subject: misc/89423: The example make.conf has tabs before the comment deliminator (#). Message-ID: <200511221608.jAMG8J7r096290@www.freebsd.org> >Number: 89423 >Category: misc >Synopsis: The example make.conf has tabs before the comment deliminator (#). >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 Nov 22 16:10:28 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Scot W. Hetzel >Release: FreeBSD 7.x-CURRENT >Organization: >Environment: >Description: Two additional comments were added for the NO_NIS variable in src/share/examples/etc/make.conf. The author of these changes placed two tabs before the comment deliminator(#). When this file is copied to /etc/make.conf, it causes make to report that it can't execute "# If set, you might need to adopt your" and "# nsswitch.conf(5) and remove `nis' entries." Make expects the comment deliminator to be in the first column. I know that some are going to say don't copy the file to /etc/make.conf, but at the top of the file it says: # This file must be in valid Makefile syntax. placing two tabs before the comment deliminator is not valid Makefile syntax. >How-To-Repeat: copy src/share/examples/etc/make.conf to /etc/make.conf then try a buildworld >Fix: Index: make.conf =================================================================== RCS file: /home/ncvs/src/share/examples/etc/make.conf,v retrieving revision 1.269 diff -u -r1.269 make.conf --- make.conf 23 Oct 2005 19:37:55 -0000 1.269 +++ make.conf 22 Nov 2005 07:41:35 -0000 @@ -125,8 +125,8 @@ #NO_MODULES= # do not build modules with the kernel #NO_NETCAT= # do not build netcat #NO_NIS= # do not build NIS support and related programs. - # If set, you might need to adopt your - # nsswitch.conf(5) and remove `nis' entries. +# # If set, you might need to adopt your +# # nsswitch.conf(5) and remove `nis' entries. #NO_OBJC= # do not build Objective C support #NO_OPENSSH= # do not build OpenSSH #NO_OPENSSL= # do not build OpenSSL (implies NO_KERBEROS/NO_OPENSSH) >Release-Note: >Audit-Trail: >Unformatted: From bugmaster at freebsd.org Tue Nov 22 15:33:27 2005 From: bugmaster at freebsd.org (FreeBSD bugmaster) Date: Tue Nov 22 15:33:52 2005 Subject: Current problem reports containing patches Message-ID: <200511222333.jAMNX3k9024738@freefall.freebsd.org> Current FreeBSD problem reports Critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/27250 bp [unionfs] [patch] unionfs filesystem panics in large n o kern/70096 [msdosfs] [patch] full msdos file system causes corrup o bin/73019 [patch] fsck_ufs: cannot alloc 607016868 bytes for ino o kern/77234 [udf] [patch] corrupted data is read from UDF filesyst o kern/87191 scottl [aac] [patch] aac(4) panics immediately with INVARIANT 5 problems total. Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- f ports/14048 des [patch] doscmd -r doesn't work o kern/17310 [nis] [patch] NIS host name resolving may loop forever s bin/18742 mike [patch] times.allow field parsed incorrectly s bin/19773 markm [PATCH] telnet infinite loop depending on how fds are o kern/20523 bde [sio] [patch] support for PCI multiport cards for sio a kern/21808 [msdosfs] [patch] msdosfs incorrectly handles vnode lo o kern/21998 green [socket] [patch] ident only for outgoing connections s i386/22944 tegge [vm] [patch] isa_dmainit fails on machines with 512MB o bin/23098 qa [sysinstall] [patch] if installing on a serial console o bin/24271 [patch] dumpon(8) should check its argument more o i386/24997 i386 [biosdisk] [patch] /boot/loader cannot handle extended o bin/25851 qa [patch] security hole in anonymous FTP setup script o kern/26486 [libc] [patch] setnetgrent hangs when netgroup contain o bin/29725 dwmalone [picobsd] [patch] fixed segmentation fault in simple_h o conf/30223 [patch] Using /usr/share/examples/kld/cdev, testcdev f o bin/31304 joe [patch] fix crunchgen to work with more contrib-kind o o kern/33138 [isa] [patch] pnp problem in 4.3, 4.4, 4.5 o bin/33672 [patch] telnetd and mount_mfs signal handlers call exi o kern/33940 [ufs] [patch] quotactl allows compromise gid-quotas o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o i386/35078 i386 [i386] [patch] Uninitialized pointer dereference in fu o kern/35442 [sis] [patch] Problem transmitting runts in if_sis dri o kern/36219 [bpf] [patch] poll() behaves erratic on BPF file descr o kern/36415 [bktr] [patch] driver incorrectly handles the setting o kern/36504 [kernel] [patch] crash/panic vm_object_allocate under o bin/36867 [patch] games/fortune: add FORTUNE_PATH env var, so po o kern/37441 davidxu [isa] [patch] ISA PNP parse problem o i386/37523 davidxu [i386] [patch] lock for bios16 call and vm86call o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o threa/39922 threads [threads] [patch] Threaded applications executed with a bin/39940 [patch] /usr/sbin/periodic sends thousands of emails o misc/42115 luigi [picobsd] [patch] fix build script for 4.6-STABLE o bin/43674 [patch] login(1): able to bypass expired password o kern/44202 [rp] [patch] -stable rp driver does not work with mult o kern/44417 luigi [bridge] [patch] ipfw layer2 rules are not checked for o gnu/44564 peter [PATCH] Aborted cvs session causes an endless loop in o kern/44744 [vn] [patch] VN devices can hang system FreeBSD v4.5 o bin/44808 [PATCH] opiepasswd makes bad seed for existing user o kern/45023 emulation [linux] [patch] flexlm does not run with linux-base-7, o bin/45529 hexdump core-dumps with certain args [PATCH] o bin/46676 ru [PATCH] bsd.dep.mk restricts domain of tags commands o kern/47628 trhodes [msdosfs] [patch] msdosfs file corruption fix o bin/48183 marcel [patch] gdb on a corefile from a threaded process can' o conf/48881 [PATCH] The influence of /etc/start_ifname on /etc/rc. s kern/50827 [kernel] [patch] new feature: add sane record locking o stand/51209 standards [libc] [patch] new feature: add a64l()/l64a/l64a_r fun o kern/51274 ipfw [ipfw] [patch] ipfw2 create dynamic rules with parent f kern/51341 ipfw [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o kern/51583 [nullfs] [patch] allow to work with devices and socket o kern/52585 bms [netinet] [patch] Kernel panic with ipfw2 and syncooki o bin/54401 [patch] pppstats prints 0 for absolute values in range p kern/55018 andre [digi] [patch] Digiboard PC/Xem fails to initialize wh o bin/55366 le [vinum] [patch] vinum(8) makes /dev/vinum with wrong o a kern/55542 andre [de] [patch] discard oversize frame (ether type 800 fl o kern/57453 [kue] [patch] if_kue hangs boot after warm boot if fir f kern/57487 multimedia [sound] [patch] Sound stops working on my Thinkpad 560 o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets o kern/57722 [kernel] [patch] uidinfo list corruption o bin/57833 gad [PATCH] bin/ps cannot change title for keywords that a o kern/57985 rwatson [net] [patch] Missing splx in ether_output_frame (-sta o kern/58953 [puc] [patch] detect NetMOS-based six serial port card o kern/59945 [nullfs] [patch] nullfs bug: reboot after panic: null_ o i386/60226 i386 [ichsmb] [patch] ichsmb driver doesn't detects SMB bus o kern/60477 deischen [libc] [patch] need thread safe gethostent() and getse p kern/60856 bms [netinet] [patch] panic: at tcp_output(), with TCPDEBU o bin/61498 obrien [patch] Please MFC flex patch for gcc 3.x o bin/61587 qa [sysinstall] [patch] installation problem, disklabel c o usb/61627 usb [usb] [patch] New USB printer not supported correctly a kern/61960 sos [ata] [patch] BigDrive support for PC-98 architecture a kern/62906 peadar [agp] [patch] AGP misconfigures i845G chipset, causing o kern/64196 [kernel] [patch] remove the arbitrary MAXSHELLCMDLEN o i386/65523 i386 [loader] [patch] PXE loader malfunction in multiple PX o kern/66029 [crypto] [patch] MD5 alignment problem on a TriMedia p o kern/66876 [fdc] [patch] Cannot extract tar(1) multi-volume archi o kern/66960 [fdc] [patch] filesystems not unmounted during reboot o bin/66984 qa [2TB] [patch] teach sysinstall about larger disks o bin/67995 [patch] morse(6) plays beeps 10 times faster than it s o ports/68260 markm [PATCH] Removal of -lcompat from freebsd-games port o usb/69006 usb [patch] Apple Cinema Display hangs USB ports f ports/70309 sumikawa [patch] racoon disrupt manually-keyed IPSEC tunnels on o i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice o kern/70587 [vm] [patch] NULL pointer dereference in vm_pageout_sc o docs/70616 brd [patch] incompleteness and error in su(1) man page o conf/70973 [patch] script 800.loginfail does not report 'Illegal o kern/71109 alc [pmap] [patch] Possible race conditions in pmap.c o bin/71290 [PATCH] passwd cannot change passwords other than NIS/ a kern/71568 brooks [kbd] [patch] unable to install FreeBSD using only a u o bin/71594 [patch] pkg_install (sign) - variables may be used uni o bin/71602 [PATCH] uninitialized "len" used instead of "slen" wit o bin/71651 [PATCH] cron may attept to close unopened file o kern/71677 rwatson [mac] [patch] MAC Biba / IPFW panic a bin/71786 [patch] adduser breaks if /sbin/nologin is included in o kern/71792 [vm] [patch] Wrong/missing 'goto' target label in cont o ports/72149 nectar [PATCH] heimdal with LDAP backend - bad slapd socket p o kern/72396 [netinet] [patch] Incorrect network accounting with al o kern/72966 obrien [pcn] [patch] AMD PCnet/PCI Fast Ethernet driver broke o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX o kern/73224 emulation [ndis] [patch] Lock order reversal in ntoskrnl_timerca o sparc/73413 trhodes [libkse] [patch] pthread (libkse) library is broken on o bin/74043 [PATCH] sh trap builtin does not properly quote when l o bin/74127 [patch] patch(1) may misapply hunks with too little co p kern/74386 emaste [kernel] [patch] Killing watchdogd does not shutdown w o usb/74690 usb [umass] [patch] support for SanDisk 8-in-1 in umass.c o kern/74935 andre [netinet] [patch] TCP simultaneous open fails. o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula o bin/75258 [patch] dd(1) has not async signal safe interrupt hand o kern/75541 [sysv] [patch] Forgotten tunables for sysvmsg module o kern/75687 multimedia [sound] [patch] No sound on PC which is implemented ac o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/76207 [xl] [patch] Null pointer dereference in xl_detach() o kern/76410 [bpf] [patch] Null pointer dereference in net/bpf.c o kern/76893 [cam] [patch] Fatal divide in booting processes with B o i386/76944 i386 [busdma] [patch] i386 bus_dmamap_create() bug o kern/77181 [newfs] [patch] newfs -g largevalue, mkdir, panic o kern/77195 darrenr [ipfilter] [patch] ipfilter ioctl SIOCGNATL does not m o kern/77432 [nfs] [patch] It is not possible to load nfs4client.ko o kern/77463 [nfs] [patch] Local DoS from user-space in NFS client o conf/77932 [patch] security.functions: pf and ipfw periodic scrip o usb/77940 usb [patch] [panic] insertion of usb keyboard panics syste o kern/77982 [lnc] [patch] lnc0 can NOT be detected in vmware 4.5.2 o docs/78154 doc [PATCH] Make en_US FreeBSD Handbook more compliant wit o gnu/78161 [patch] typo in gzexe o kern/78179 [vm] [patch] bus_dmamem_alloc() with BUS_DMA_NOWAIT ca o kern/78434 [vfs] [patch] vfs_mount: -current does not cdboot o conf/78762 ipfw [ipfw] [patch] /etc/rc.d/ipfw should excecute $firewal o kern/78987 scottl [udf] [patch] udf fs: readdir returns error when it sh o kern/79025 [patch] && in /usr/src/etc/Makefile needs to be an or o kern/79160 [xl] [patch] xl_detach cause panic p kern/79332 [ata] [patch] "ffs_mountroot: can't find rootvp" after s kern/79339 [kernel] [patch] Kernel time code sync with improvemen o kern/79493 [if_tun] [patch] Reproducible if_tun panic o kern/80266 rwatson [ipx] [patch] IPX routing doesn't work p kern/80346 stefanf [patch] Misuse of el_init() can lead multiple programs o kern/80694 [kbd] [patch] atkbd looped on Acer TravelMate 2701LC o kern/80742 [pecoff] [patch] Local DoS in sys/compat/pecoff (+ oth o docs/80843 doc [patch] Suggested doc fix for psm0 / handle driver loa o kern/80853 [ed] [patch] add support for Compex RL2000/ISA in PnP o bin/80913 ipfw [patch] /sbin/ipfw2 silently discards MAC addr arg wit o kern/80932 tackerman [em] [patch] Degraded performance of em driver o kern/80980 [i386] [patch] problem in "sys/i386/include/bus.h" cau o kern/81147 tackerman [em] [patch] em0 reinitialization while adding aliases o usb/81308 usb [ugen] [patch] polling a ugen(4) control endpoint caus o conf/81429 [patch] Error in /etc/rc.subr: jail+devfs.rules does n o conf/81882 [patch] missing terminal definition for wy120 in termc o kern/81943 des [kernel] [patch] _assert_sbuf_integrity causes panic f o conf/82059 [patch] /etc/rc.d/localpkg: partially sort scripts usi o kern/82482 [hptmv] [patch] hptmv(4) ( Highpoint RocketRaid 1820a o kern/82491 [bootp] [patch] bootpd shouldn't ignore requests o conf/82526 [patch] /etc/rc.d/ntpd is being started too early o bin/82720 [patch] Incorrect help output from growfs.c and mkfs.c o kern/82919 [bridge] [patch] Bridge configuration update will cras p bin/83085 des [patch] double free() in openpam o kern/83107 delphij [libc] [patch] libc uuid_compare() doesn't work with l o kern/83368 [ipx] [patch] incorrect handling of malloc failures wi o kern/83464 [geom] [patch] Unhandled malloc failures within libgeo o usb/83942 usb [patch] QUIRK: Langel USB flash mp3 player o conf/83969 [patch] /etc/rc.d/cleartmp pollutes non-run functions o kern/83999 firewire [firewire] [patch] panic in fw_bus_explore due to NULL o ports/84160 mharo [patch] ftp/proftpd - module mod_ldap - tls and ssl no o kern/84202 [ed] [patch] Holtek HT80232 PCI NIC recognition on Fre o ports/84207 novel [patch] security/gnutls: update to 1.2.4 - current sta o kern/84411 philip [psm] [patch] psm drivers adds bad buttons for Synapti p bin/84450 stefanf [patch] rpcgen produces code that does not compile und a kern/84544 dhartmei [pf] [patch] pfvar.h: PF_QNAME_SIZE is too small for c o kern/84637 pjd [geom] [patch] GEOM LABEL sometimes doesn't recognize o usb/84649 usb [quirk] [patch] kernel panic after inserting MP3-Stick p kern/84684 truckman [kernel] [patch] Kernel panic in kern_proc.c o kern/84799 [fdc] [patch] can't read beyond track 0 on fdc (IBM th o kern/84861 [ipw] [patch] still can't get working ipw(4) with adho o kern/85137 [pseudofs] [patch] panic due to sleep with held mutex o threa/85160 threads [libthr] [patch] libobjc + libpthread/libthr crash pro o kern/85266 [xe] [patch] xe(4) driver does not recognise Xircom XE o kern/85320 [gre] [patch] possible depletion of kernel stack in ip o kern/85366 [msdosfs] [patch] MSDOSFS doesn't mark volume "clean" o ports/85433 edwin [patch] multimedia/pvr250: does not build on FreeBSD 6 o kern/85493 imp [ed] [patch] OLDCARD can't probe ed driver o bin/85830 des [patch] pam_exec incorrectly works with vfork() o kern/86306 [em] [patch] if_em.c locks up while trying to send a h o docs/86532 doc [patch] wpa_supplicant.conf man page should discuss WE o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos p kern/87418 glebius [em] [patch] The em driver sometimes stop receive data o bin/87465 [patch] dhclient(8) not properly configuring aliases o kern/87506 [vr] [patch] Fix alias support on vr interfaces o ports/87518 edwin [patch] multimedia/pvr250: Does not build on amd64 o ports/87523 trevor [patch] www/linux-mozilla: added support for amd64, fl o ports/87525 [patch] misc/compat4x: amd64 unsupported o ports/87546 emulation [patch] emulators/rtc: broken if sizeof(int)!=sizeof(l o usb/87565 usb [PATCH] Support for Vodaphone 3G/UMTS cards o bin/87792 [patch] very bad performance of cp(1) via NFS, possibl o kern/88045 obrien [nve] [patch] 6.0rc1: nve0: device timeout (51) o bin/88215 [patch] syslogd(8) does not pass cleanly parameters to o ports/88433 mharo [patch] ftp/proftpd 1.3.0rc3 f ports/88631 vs [PATCH]: lang/kawa: Fix build issues on pointyhat o ports/88729 obrien [patch] textproc/urlview segfaults on amd64 o bin/88813 stefanf [patch] cd builtin in sh(1) can cd to wrong directory p kern/88940 glebius [bge] [patch] bge support for BCM5752 o bin/89090 [patch] du(1) reports negative numbers o ports/89176 lev [PATCH]: devel/subversion: Does not build using WITH_M o kern/89181 [libutil] [patch] lib/libutil properties_read() bug wi o threa/89262 threads [kernel] [patch] multi-threaded process hangs in kerne o ports/89308 apache [patch] www/mod_accounting crash on request_timeout o bin/89410 [PATCH] sh(1) missing \u interpolation and bug/fix in 202 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- a bin/1375 eivind [patch] Extraneous warning from mv(1) s kern/2298 [sio] [patch] support for DSR/DCD swapping on serial p s kern/4184 [netatalk] [patch] minor nits in sys/netatalk s bin/5173 [PATCH] restore ought to deal with root setable file f o bin/5745 nik [PATCH] Add /usr/local/share/mk to default make(1) sea s kern/6668 babkin [patch] new driver: Virtual Ethernet driver o bin/7265 [patch] A warning flag is added to ln(1). s bin/7606 [patch] NIS Makefile.dist: NOPUSH replaced by REMOTE_S s bin/7868 [patch] morse(6): Morse Code Fixups o bin/8133 markm [patch] bug in telnetd (Kerberos IV) o bin/8867 qa [sysinstall] [patch] /stand/sysinstall core dumps (sig o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement s bin/9770 jmallett [patch] An openpty(3) auxiliary program s kern/12071 fanf [net] [patch] new function: large scale IP aliasing o i386/12088 imp [ed] [patch] ed(4) has minor problem with memory alloc o kern/12543 [fxp] [patch] cumulative error counters for fxp(4) s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai o kern/14166 [bktr] [patch] AVER TVPhone o bin/15168 [patch] Adding tracklist support to fdformat(1) o bin/15205 billf [patch] Addition to random(6) o bin/15480 [patch] make cdcontrol(1) easier to use o bin/15619 peter [patch] standard pppd doesn't authenticate users with o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c o conf/16076 markm [PATCH] pam_ssh examples for /etc/pam.conf o kern/16644 [bpf] [patch] Bad comparison expression in bpf_filter. o bin/16880 [PATCH] pw(8) hardcodes directory creation modes o bin/17289 gad [PATCH] wrong permissions on /var/run/printer o kern/17425 [ppbus] [patch] fix two small printing errors in ppbus o kern/17504 ken [cam] [patch] Another Micropolis Synchronize Cache Pro o i386/18154 i386 [sysctl] [patch] Add cpu class and features flags sysc s kern/19363 [kernel] [patch] allow processes know about their file s kern/19535 [procfs] [patch] procfs_rlimit tidyup o bin/19837 ambrisko [sysinstall] [patch] run Fix It floppy from serial por o kern/20297 multimedia [sound] [patch] Joystick is not enabled with es1370 ba o bin/20501 mjacob [patch] extra flag to dump to offline autoloaders at E f bin/21570 dougb [PATCH] Add -r option to /usr/bin/mail, quiet compiler a kern/21807 [msdosfs] [patch] Make System attribute correspond to o bin/22442 greid [PATCH] Increase speed of split(1) o conf/23063 bms [PATCH] for static ARP tables in rc.network o kern/23546 tanimura [snd_csa] [patch] csa DMA-interrupt problem o bin/23562 markm [patch] telnetd doesn't show message in file specified o bin/23635 mike [PATCH] whois enhancement - smarter whois-servers.net o bin/24485 [PATCH] to make cron(8) handle clock jumps s ports/25490 wosch [PATCH] fix various bugs in stat(1) p kern/25499 [kbd] [patch] buffer paste functionality from keyboard f kern/25777 [kernel] [patch] atime not updated on exec o kern/26323 [ufs] [patch] Quota system creates zero-length files o kern/26547 ambrisko [lnc] [patch] problem with shared memory mode with PCn o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting o bin/27306 marcel [patch] hw watchpoints work unreliable under gdb(1) o bin/27483 qa [sysinstall] [patch] make sysinstall ask for the keyma s docs/27843 doc [PATCH] make.conf WITH_* variables aren't documented. f ports/28155 portmgr [patch] DESTDIR is used incorrectly in bsd.port.mk a gnu/28189 [PATCH] fix for detecting empty CVS commit log message f kern/28206 bp [nullfs] [patch] umapfs/umap_vfsops.c should depend on o conf/28236 [PATCH] iso-8859-1_to_cp437.scm doesn't contain some u o docs/28555 trhodes [PATCH] style(9) isn't explicit about booleans for tes f kern/29318 mjacob [scsi] [patch] Exabyte 8200 needs SA_QUIRK_1FM and SA_ o kern/29355 mux [kernel] [patch] add lchflags support o bin/29363 gad [PATCH] newsyslog can support time as extension s kern/29423 [patch] new feature: kernel security hooks implementat o kern/29698 emulation [linux] [patch] linux ipcs doesn'work o kern/29727 scsi [amr] [patch] amr_enquiry3 structure in amrreg.h is in o kern/30052 mbr [dc] [patch] dc driver queues outgoing pkts indefinite s ports/30331 portmgr [patch] Conflict between bsd.port.mk MAKEFILE variable s kern/30422 [patch] new function: add WDT hardware watchdog driver o bin/30542 [PATCH] add -q option to shut up killall f bin/30661 alfred [rpc.lockd] [patch] FreeBSD-current fails to do partia o conf/30812 [patch] giant termcap database update p kern/30857 [intr] [patch] intr_machdep.c allows access out of arr o conf/30929 usb [patch] use usbd to initialize USB ADSL modem o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk o i386/31353 i386 [apm] [patch] 'shutdown -p' does not work on SMP Tyan o i386/31427 davidxu [pmap] [patch] minor incorrect code in sys/i386/i386/p o kern/31456 [pcn] [patch] register number definition for AMD PCnet f kern/31490 [sysctl] [patch] Panic in sysctl_sysctl_next_ls on emp o kern/31890 [syscons] [patch] new syscons font o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o usb/32652 usb [uscanner] [patch] A new ioctl to uscanner o kern/32659 [vm] [patch] vm and vnode leak with vm.swap_idle_enabl o bin/32680 [PATCH] Allows users to start jail(1) by hostname as w o bin/32808 dwmalone [PATCH] tcpd.h lacks prototype for hosts_ctl o docs/33724 doc [patch] fix Handbook error about Advanced Networking o bin/33809 mux [patch] mount_nfs(8) has trouble with embedded ':' in o kern/33965 [kbd] [patch] programmable keys of the keyboard (Olida a bin/34010 [patch] keyinit takes passwords less than 10 chars, bu o bin/34199 dwmalone [PATCH] top(1) RES/rss display incorrect o bin/34412 [patch] tftp(1) will still try and receive traffic eve o bin/34628 [pkg_install] [patch] pkg-routines ignore the recorded o gnu/34709 marcel [patch] Inaccurate GDB documentation o bin/35109 [PATCH] games/morse: add ability to decode morse code o kern/35262 [boot2] [patch] generation of boot block for headless o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o misc/35542 bde [patch] BDECFLAGS needs -U__STRICT_ANSI__ o conf/35545 [patch] enhanced periodic scripts: 100.clean-disks, 10 o kern/35635 [libiconv] [patch] missing dep in libiconv prevents pa o bin/35886 [patch] pax(1) enhancement: custom time format for lis p bin/35894 [patch] popen.c in cron won't build without LOGIN_CAP o bin/36143 [patch] Dynamic (non linear) mouse acceleration added o kern/36170 [an] [patch] an(4) does an_init() even if interface is o bin/36262 [patch] Fixed rusers(1) idle-time reporting to use min a kern/36451 [bktr] [patch] Japan IF frequency is incorrect o bin/36556 [patch] regular expressions for tcpwrappers o bin/36646 dwmalone [patch] top(1) does not work correctly in a jail o kern/36902 [libc] [patch] proposed new format code %N for strftim o bin/37074 bp [PATCH] Typographical error in output of "smbutil view o bin/37096 [patch] fixes to fsdb(8) command-line handling o kern/37380 jhb [boot0] [patch] boot0 partition list is outdated o bin/37424 [patch] nfsstat(1) reports negative values o bin/37442 [PATCH] sleep(1) to support time multipliers p kern/37448 obrien [PATCH] ldd/rtld support for more information of linke o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o kern/37555 [kernel] [patch] vnode flags appear to be changed in n o conf/37569 [PATCH] Extend fstab(5) format to allow for spaces in o bin/37844 [PATCH] make knob to not install progs with suid/sgid o bin/38168 [patch] feature request: installing curses-based versi s kern/38347 [libutil] [patch] [feature request] new library functi o kern/38429 [PATCH] getgpid and getsid work for processes outside o bin/38727 [patch] mptable(1) should complain about garbage argum o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o bin/39463 mtm [PATCH] Add several options to fingerd f ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DIR o kern/39681 [sysctl] [patch] add hidden kernel boot tunables to sy o kern/40017 [patch] allows config(8) to specify config metadata di s kern/40021 [kernel build] [patch] use ld(1) to build kernel with o kern/40127 [libutil] [patch] Add functions for PID-file handling o kern/40132 multimedia [sound] [patch] enabling the joystick interface on es1 o conf/40298 [patch] /etc/rc: using swapfile as /tmp o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > o kern/40516 [ti] [patch] ti driver has no baudrate set o docs/40851 doc [PATCH] "mergemaster -p" in UPDATING's "COMMON ITEMS" o usb/41415 usb [usb] [patch] Some USB scanners cannot talk to uscanne o kern/41543 emulation [patch] feature request: easier wine/w23 support f bin/41556 obrien [PATCH] wtmp patch for lukemftpd o bin/41947 hexdump(1) unprintable ASCII enhancement [PATCH] o kern/42065 [kernel] [patch] kern.ps_showallprocs has no effect on o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o bin/42336 [PATCH] ISO-fication of /usr/src/contrib/tcp_wrappers: o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o i386/42766 i386 [vm] [patch] proposal to perform reboot via jump to BI o bin/42974 [patch] syslogd(8): add ISO 8601 date format option o kern/43154 [if_tun] [patch] tunwrite() does not allocate clusters o kern/43474 [nfs] [patch] dhcp.* values not set in kenv by bootp c o kern/43577 [kernel] [patch] feature request: new kernel option SH o kern/43611 [crypto] [patch] static-ize some symbols in sys/crypto o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl o kern/43716 [puc] [patch] puc driver does not recognize Lava Dual- o docs/43823 doc [PATCH] update to environ(7) manpage o bin/43857 isdn [patch] conflicting types in /usr/src/usr.sbin/i4b/isd o kern/43905 [headers] [patch] kqueues: EV_SET(kevp++, ...) is non- o kern/44058 [MAKEDEV] [patch] /dev/ch* is created without group wr o docs/44074 doc ln(1) manual clarifications [patch] o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o kern/44365 [headers] [patch] introduce ulong and unchar types o kern/44500 [bge] [patch] bge(4): add AC1001 Gigabit NIC as workin o gnu/45137 peter [PATCH] CVS 1.11.2 cannot reuse log messages o bin/45193 [PATCH] truss can't truss itself o bin/45254 qa [sysinstall] [patch] sysinstall installs things it sho o bin/45333 [PATCH] New option -r for chown and chgrp o conf/45704 [PATCH] request to change cp866b font to cp866 o kern/45793 [headers] [patch] invalid media subtype aliases in if_ p conf/45874 ache [PATCH] FreeBSD does not know about ca_ES locale o i386/46113 i386 [bus] [patch] busspace bugs in parameter checking o kern/46159 ipfw [ipfw] [patch] ipfw dynamic rules lifetime feature o kern/46368 [isa] [patch] MAXDEP in isa/pnpparse.c is too small o conf/46645 [PATCH] rc.shutdown state table saving has misleading o kern/46973 [syscons] [patch] syscons virtual terminals switching o i386/47223 i386 [pcvt] [PATCH] pcvt(4), ESC sequences do not change co o kern/47311 mdodd [patch] Kernel support for NVIDIA nForce2-based mother o i386/47376 i386 [pcvt] [PATCH], pcvt(4), COLOR_KERNEL_FG, 2nd characte o bin/47387 [PATCH] gprof -K still requires "a.out" arg / override o conf/47566 le [vinum] [patch] add vinum status verification to perio o bin/47576 [PATCH] factor(6)ing of negative numbers o docs/47594 doc [PATCH] passwd(5) incorrectly states allowed username o misc/48110 [patch] change CVSROOT/log_accum.pl to not send mail i o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o usb/48342 usb [PATCH] usbd dynamic device list. o conf/48444 [patch] security.functions: count connection attempts o kern/48471 pjd [kernel] [patch] new feature: private IPC for every ja o conf/48566 [PATCH] /etc/defaults/make.conf stales after repo-copy o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o gnu/48638 [PATCH] some bug fixs in libdialog o conf/48870 [PATCH] rc.network: allow to cancel interface status d s bin/48962 des [PATCH] modify /usr/bin/fetch to allow bandwidth limit o docs/48980 doc [PATCH] nsgmls -s errors and sect. 3.2.1 of the fdp-pr a bin/49023 gad [patch] to lpd(8) (printjob.c) to pass source filename o kern/49086 ipfw [ipfw] [patch] Make ipfw2 log to different syslog prio f ports/49955 portmgr [PATCH] bsd.port.mk: add target to automatically insta o misc/50106 [patch] make 'make release' more flexible behind FWs a o docs/50211 doc [PATCH] Fix textfile creation o bin/50310 [libalias] [patch] natd / libalias fix to allow dcc re o conf/50365 [PATCH] rc.sysctl cannot handle values containing spac o kern/50526 [kernel] [patch] update to #! line termination o docs/50677 doc [PATCH] update doc/en_US.ISO8859-1/books/faq/book.sgml o bin/50749 ipfw [ipfw] [patch] ipfw2 incorrectly parses ports and port o docs/50773 jmg [patch] NFS problems by jumbo frames to mention in bge p bin/50924 [patch] vmstat(8): "vmstat -f" says "unimplemented" bu o bin/50988 [Patch] find -size -- express argument in kilo, mega.. o kern/51009 [aue] [patch] buggy aue driver fixed. o bin/51070 [patch] add -p option to pom(6) s bin/51137 [patch] config(8) should check if a scheduler is selec f ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILES f ports/51663 roam [PATCH] mail/vpopmail fix for using vmoduser -x any_do o docs/51875 doc [patch] atkbd(4) adjustment o kern/51958 usb [usb] [patch] update for urio driver o docs/52071 doc [PATCH] Add more information about soft updates into a o bin/52190 dwmalone [Patch] decode more syscalls in truss o docs/52448 simon [patch] Misc man page reference fixes f bin/52601 mbr [PATCH] rpc.yppasswdd fails if master.passwd is not in o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx o ports/52706 portmgr [patch] bsd.port.mk issues warning if a site is explic o kern/52725 [PATCH] installincludes for kmods o kern/52752 [ichsmb] [patch] SMBus controller on ICH4 not recogniz s ports/52765 portmgr [PATCH] Uncompressing manual pages may fail due too "a o kern/52907 phk [libc] [patch] more malloc options for debugging progr s ports/52917 portmgr [PATCH] bsd.port.mk: update default value of CONFIGURE o kern/52980 mbr [dc] [patch] dc driver fails to init Intel 21143 Cardb o usb/53025 usb [ugen] [patch] ugen does not allow O_NONBLOCK for inte o bin/53341 qa [sysinstall] [patch] dump frequency in sysinstall is a p bin/53377 [PATCH] su does not return exit status of executed com o www/53676 simon [patch] Don't make people contact doc@ for 404 from no o stand/53682 le [PATCH] add fuser(1) utility p conf/53944 [PATCH] ARMSCII-8 (Armenian) LOCALE and Console suppor o bin/54026 bms [patch] Add support for non-standard ports to /usr/bin o kern/54220 [PATCH] /usr/src/Makefile has wrong instructions for u o bin/54365 [PATCH] add -u option to install(1) for SysV compatibi o kern/54383 net [nfs] [patch] NFS root configurations without dynamic o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o docs/54451 doc [patch] i386_{get|set}_ldt manual page is confusing o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o bin/54897 [PATCH] -y flag for mount_mfs o conf/55015 [patch] 700.kernelmsg: Security check output enhacemen o kern/55163 [jail] [patch] hide kld system details from jails o bin/55215 le [PATCH] add wu-ftpd style xferlog format to libexec/ft o misc/55387 [patch] users LD_LIBRARY_PATH can interfere with mail o conf/55470 [pccard] [patch] new pccard.conf entry (I-O DATA WN-B1 s ports/55515 portmgr [patch] extract perl stuff from bsd.port.mk into bsd.p o bin/55539 [patch] Parse fstab(5) with spaces in path names o kern/55835 emulation [linux] [patch] Linux IPC emulation missing SETALL sys o i386/55838 i386 [kbd] [patch] Dual characters from keyboard in X on To o ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to use ${PORTSDIR o docs/55883 kensmith [patch] handbook advanced-networking/chapter.sgml o kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw s bin/56012 [MAKEDEV] [patch] MAKEDEV does not allow creation of t o usb/56095 usb [usb] [patch] QUIRK: Apacer Pen Drive fails to work o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 o bin/56558 [PATCH] locate(1) cannot be safely used with xargs(1) o bin/56648 le [PATCH] enable rcorder(8) to use a directory for locat o conf/56736 mtm [PATCH] rcNG: enable packages to participate in rcorde o docs/56936 hmp [patch] articles/java-tomcat: add application tags o bin/57018 le [PATCH] convert growfs to use libufs(3) o bin/57026 [PATCH] mount_cd9660(8): there is no way to know the l s bin/57088 [cam] [patch] for a possible fd leak in libcam.c o kern/57230 [psm] [patch] psm(4) incorrectly identifies an Intelli o ports/57259 portmgr [patch] Building a port as root using an NFS-mounted / o docs/57298 blackend [patch] add using compact flash cards info to handbook s bin/57407 bms [patch] Better NTP support for dhclient(8) and friends o kern/57469 scsi [scsi] [patch] Quirk for Conner CP3500 o kern/57522 [PATCH] New PID allocater algorithm from NetBSD o bin/57641 dd [patch] missing option in mount_mfs(8) o bin/57715 [patch] tcopy(1) enhancement o conf/57748 [patch] rc.network doesn't allow for -a in natd_flags o bin/58008 qa [sysinstall] [patch] sysinstall postfix installation p o conf/58206 [Patch] 460.status-mail-rejects incompatible with FEAT o bin/58483 [patch] mount(8): allow type special or node relative f kern/58529 dwmalone [libpcap] [patch] RDWR bpf in pcap. o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o conf/58939 [patch] dumb little hack for /etc/rc.firewall{,6} o kern/59208 matk [sound] [patch] reduce pops and crackles and fix selec o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o www/59307 remko [patch] xml/xsl'ify & update publications page o conf/59600 [PATCH] Improved us.emacs.kbd mapping o kern/59624 [ata] [patch] HightPoint HPT371 support for FreeBSD 4. o kern/59698 [kbd] [patch] Rework of ukbd HID to AT code translatio o bin/59708 qa [sysinstall] [patch] add sSMTP support for Mail select o kern/59806 tackerman [em] [patch] Suspend/resume breaks em0 o kern/59903 [pci] [patch] "pci_find_device" returns [only/at] the o kern/60183 sobomax [gre] [patch] No WCCPv2 support in gre o usb/60248 usb [patch] Problem with USB printer HP LaserJet 1300 o kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp o misc/60352 [patch] buildworld fails in sysinstall if terminfo dat o bin/60510 [patch] change to less(1) for compressed files o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o f ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify GnuPG signat o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I o kern/60697 [pty] [patch] pseudo-tty hack versus telnet race cause o bin/60834 [patch] ftpd(8) send_data()+oldway: anonymous transfer o bin/60892 [patch] added -p option to kldxref(8) to allow creatio o kern/60963 [pecoff] [patch] Win32 Applications abort on PECOFF o kern/60982 [pci] [patch] ID for VIA 686A Power Management Unit (f o usb/61234 usb [usb] [patch] usbhidaction(1) doesn't support using an o bin/61239 [patch] bootp enhancement, places the dhcp tags into t o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun f misc/61322 [patch] bsd.dep.mk disallows shell generated flags in o kern/61415 [net80211] [patch] disable broadcast ssid if_wi and di o i386/61481 i386 [patch] a mechanism to wire io-channel-check to userla o kern/61497 ups [kernel] [patch] __elfN(map_insert) bug o conf/61504 mtm [patch] New RC script: accf_http o bin/61666 peter [patch] mount_nfs(8) parsing bug, segmentation fault a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat o bin/61808 [PATCH] Update RPC prgs to allow binding to specific a o bin/61975 ume [PATCH] sync src/usr.sbin/traceroute6.c with KAME o bin/61978 [PATCH] sync src/usr.sbin/setkey/token.l with KAME o i386/62003 i386 [loader] [patch] make /boot/loader "reboot" code same o kern/62098 [pccard] [patch] Bad CISTPL_VERS_1 and clash on notebo o kern/62862 multimedia [sound] [patch] fix pcm vchans related crash o kern/63096 rwatson [mac] [patch] MAC entry point for route manipulation o i386/63628 bms [loader] [patch] i386 master boot record to allow boot s ports/63716 portmgr [patch] Mk/bsd.port.mk: move sysctl to ${SYSCTL} and a o usb/63837 usb [uhid] [patch] USB: hid_is_collection() only looks for o kern/63863 glebius [netgraph] [patch] feature request: implement NGM_ELEC o kern/64114 [vga] [patch] bad vertical refresh for console using R o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o bin/64327 [patch] make(1): document surprising behaviour of assi o bin/64476 dougb [patch] mergemaster(8): support for keeping customized o kern/64588 [joy] [patch] Extend joystick driver architecture to s s kern/64875 standards [libc] [patch] [feature request] add a system call: fd o bin/65228 [Patch] Allow rup(1) to parse hostnames from a defined o kern/65278 ups [sio] [patch] kgdb debugger port initialization destro o bin/65306 obrien [patch] Portability fixes for FreeBSD build utils, par o kern/65355 [pci] [patch] TC1000 serial ports need enabling o usb/65436 usb [umass] [patch] add quirk for PNY Attache 256MB USB 2. o kern/65627 [i386] [patch] store P3 serial number in sysctl s ports/65804 portmgr [PATCH] bsd.port.mk is gratuitously slow f ports/65915 portmgr [PATCH] bsd.port.mk: handle interactive configure scri o ports/66032 portmgr [PATCH] bsd.port.mk: clean room installation o ports/66109 portmgr [PATCH] bsd.port.mk: inconsistent use of `::' targets o ports/66110 portmgr [PATCH] bsd.port.mk: MLINKS error detection is broken o kern/66225 [netgraph] [patch] extend ng_eiface(4) control message o docs/66264 doc [patch] libexec/rtld/rtld.1 typo fixes not MFC'd o docs/66265 doc [patch] Document what -f and LD_TRACE_LOADED_OBJECTS_F o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ p docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to non-existent a o docs/66296 doc [patch] contrib/amd/amq/amq.8 uses log_options instead o ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java ports o ports/66389 portmgr [PATCH] bsd.port.mk: follow MOVED ports o kern/66422 multimedia [sound] [patch] no sound on modern Sony Vaio (PCG-TR*) o bin/66445 [patch] Add options to last(1) to ignore ftp logins (u o docs/66483 doc [patch] share/man/man4/csa.4 grammar nits s ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/obj/usr/ports o docs/66770 doc [patch] share/man/man4/ng_pppoe.4 tyops, grammar, and o docs/66771 imp [patch] usr.sbin/pccard/pccardc/pccardc.8 grammar and o bin/66893 [patch] rpc.yppasswdd(8): Linux NIS clients connecting o bin/66941 [patch] gcc2.95 (FreeBSD-specific): fix unacceptable s o bin/66988 [Patch] apm.c check validation of the returned values o i386/67011 mdodd [vpd] [patch] MFC of vpd driver for IBM xSeries etc o docs/67078 doc [patch] MFC of a rtld(1) man page is incomplete. o bin/67231 [patch] pam_krb5 doesn't honor default flags from /etc o kern/67242 tackerman [em] [patch] dev/em/if_em.c isn't ctags compatible a bin/67317 bms [patch] to nfsd.c to make it slightly more dynamic o i386/67383 i386 [i386] [patch] do a better job disassembling code in 1 o kern/67763 [pccard] [patch] PCMCIA: MELCO manufacturer code shoul f docs/67806 doc [patch] Let 5.x users know how to boot into single use o kern/67830 [smp] [patch] CPU affinity problem with forked child p o kern/68081 [headers] [patch] sys/time.h (lint fix) o conf/68108 [patch] Adding mac-address /conf selector to diskless o kern/68110 hsu [netinet] [patch] RFC 3522 for -HEAD p docs/68201 keramida [patch] pthread_atfork(3) man page o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction o kern/68311 [patch] it is impossible to override defaults with ker o kern/68315 [ata] [patch] atacontrol(8) addspare for 4.x o kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o usb/68412 usb [usb] [patch] QUIRK: Philips KEY013 USB MP3 player o docs/68453 doc [patch] rc.subr.8 o kern/68459 [vfs] [patch] Patches to mknod(2) behave more like Lin o bin/68586 dwmalone [patch] allow syslogd to forward to non-default ports o kern/68623 [sf] [patch] sf(4) (Adaptec StarFire) multiple problem s kern/68692 andre [net] [patch] Move ARP out of routing table o kern/68719 [msdosfs] [patch] poor performance with msdosfs and US o bin/68840 [PATCH] Add Solaris-style -x flag to iostat o bin/68848 [patch] find(1) shows pathname as optional but it isn' o bin/69010 [patch] Portability fixes for FreeBSD build utils, par o kern/69064 [kernel] [patch] No multiple ip4/6's could assigned to o bin/69083 [patch] basic modelines for contrib/nvi o i386/69257 i386 [i386] [patch] in_cksum_hdr is non-functional without o bin/69268 wpaul [patch] Fix ndiscvt(8) to warn you if it's going to ge o ports/69288 mharo [PATCH] security/sudo: Fix deinstall o bin/69398 [patch] cleartext display of password in login.c o kern/69650 [patch] make getserv* functions work with nsdispatch o kern/69730 [puc] [patch] puc driver doesn't support PC-Com 8-port o docs/69861 doc [patch] usr.bin/csplit/csplit.1 does not document POSI o bin/69986 qa [sysinstall] [patch] no job control in fixit shell on o bin/70182 [patch] fortune -e implementation bug f usb/70362 sanpei [usbdevs] [patch] LaCie 160GB USB drive o usb/70523 usb [usb] [patch] umct sending/receiving wrong characters o docs/70555 doc [patch] changes to freebsd-glossary o docs/70583 ceri [PATCH] Update freebsd-glossary o i386/70610 i386 [speaker] [patch] spkr(4): hardcoded assumption HZ == o bin/70756 [PATCH] indent(1) mishandles code that is protected fo o bin/70795 [nanobsd] [patch] misc nanobsd fixes and improvements o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o stand/70813 standards [PATCH] ls(1) not Posix compliant f usb/70835 sanpei [usbdevs] [patch] scsi_da does not recognize SANDISK C o ports/70900 edwin [patch] devel/sdl12 inconsistency between actual versi o docs/70985 standards [patch] sh(1): incomplete documentation of 'trap' buil p kern/71142 delphij [syscons] [patch] add vesa [1024x768] mode support o kern/71258 [vm] [patch] anonymous mmappings not always page align p kern/71317 sanpei [sound] [patch] Add nForce2 sound support for MSI K7N2 o kern/71334 [mem] [patch] mem_range_attr_{set|get} are no longer k p conf/71488 brooks [patch] create spooldirs for lpd (in a diskless enviro o ports/71489 sem [PATCH] www/slash: initial support for mod_perl2 + mis o bin/71513 [PATCH] allow -user/group +/-id constructs in find(1) o usb/71605 usb [umass] [patch] umass doesn't recognize multiple slots o bin/71613 [PATCH] cleanup of the usr.sbin/traceroute6 code o bin/71616 [PATCH] cleanup of the usr.sbin/yp_mkdb code o bin/71617 [PATCH] cleanup of the usr.sbin/ypserv code o bin/71618 [PATCH] cleanup of the usr.sbin/timed code o bin/71619 [PATCH] cleanup of the usr.sbin/tcpdump code o bin/71620 [PATCH] cleanup of the usr.sbin/sysinstall code o bin/71621 [PATCH] cleanup of the usr.sbin/sliplogin code o bin/71622 [PATCH] cleanup of the usr.sbin/sicontrol code o bin/71623 [pcvt] [patch] cleanup of the usr.sbin/pcvt code o bin/71624 [PATCH] cleanup of the usr.sbin/rtadvd code o bin/71625 [PATCH] cleanup of the usr.sbin/rpc.ypupdated code o bin/71626 [PATCH] cleanup of the usr.sbin/rpc.statd code o bin/71628 [PATCH] cleanup of the usr.sbin/rpcbind code o bin/71629 [PATCH] cleanup of the usr.sbin/pppstats code o bin/71630 [PATCH] cleanup of the usr.sbin/pppd code o bin/71631 [PATCH] cleanup of the usr.sbin/pppctl code o bin/71632 [PATCH] cleanup of the usr.sbin/ndp code o bin/71633 [PATCH] cleanup of the usr.sbin/mrouted code o bin/71659 [PATCH] cleanup of the usr.sbin/mount_portalfs code o bin/71660 [PATCH] cleanup of the usr.sbin/kgmon code o bin/71661 [PATCH] cleanup of the usr.sbin/keyserv code o bin/71663 [PATCH] cleanup of the usr.sbin/i4b code o bin/71664 [PATCH] cleanup of the usr.sbin/fwcontrol code o bin/71665 [PATCH] cleanup of the usr.sbin/dconschat code a bin/71666 delphij [PATCH] cleanup of the usr.sbin/btxld code o bin/71667 [PATCH] cleanup of the usr.sbin/bootparamd code o bin/71669 [PATCH] cleanup of the usr.sbin/atm code o bin/71671 [PATCH] cleanup of the usr.sbin/apmd code o docs/71690 doc [patch] inaccurate information in systat(1) manpage s kern/71708 [MAKEDEV] [PATCH] MAKEDEV create n+1 bpf devices o kern/71711 [bpf] [patch] generate a single bpf timestamp for each p kern/71726 sanpei [sound] [patch] nForce3 250(CK8S) audio support for sn o bin/71749 [PATCH] truss -f causes circular wait when traced proc o conf/71767 [patch] French translations for keyboards keymaps desc s bin/71773 des [patch] genericize.pl -c misses some comments o bin/71801 [patch] Add ncurses utility programs: infocmp, tic and s bin/71855 [patch] making kdump WARNS=6 clean o conf/71994 [patch] dot.login: login shell may unnecessarily print f ports/72067 obrien [PATCH] editors/vim: i18n and extra support o conf/72076 [patch] German locales use old %d.%m.%y date format in o bin/72124 [patch] rm -P can't unlink u-w files o conf/72135 [patch] ipsec belongs to /etc/rc.d/NETWORKING o i386/72179 i386 [acpi] [patch] Inconsistent apm(8) output regarding th o kern/72217 [netinet6] [patch] Bug in calculation of the parameter o conf/72277 [patch] update for /usr/share/skel p i386/72340 des [bsd.cpu.mk] [patch] add Pentium M, P3 M, P4 M support o usb/72344 usb [usb] [patch] QUIRK: Dane-Elec zMate 512 MB USB flash o kern/72352 [puc] [patch] Support for VScom PCI-100L is missing fr o bin/72357 [patch] WARNS?=5 cleanup for src/tools/tools/netrate o ports/72417 sobomax [patch] enable options for net/ser o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o kern/72440 [netinet] [patch] Not increment ifp->if_snd.ifq_drops o conf/72465 [patch] United States International keyboard layout fo p conf/72505 brian [patch] Fix rc.d/ppp-user to make use of rc.subr o kern/72560 jeff [sched_ule] [patch] small cleanup of SCHED_ULE o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o bin/72588 [patch] iostat(8) tty stats field concatenation o kern/72659 jeff [sched_ule] [patch] little bug in sched_ule interactiv o bin/72674 [patch] make /usr/bin/whois use SK-NIC's whois server o kern/72728 brooks [syscons] [patch] keyboard debug and reboot qualificat o usb/72732 usb [patch] Kyocera 7135 quirk. o bin/72793 [patch] wicontrol(8) prints out non-printable chars in a bin/72814 bms [patch] libpcap opens bpf as O_RDONLY - doesn't work w o conf/72901 [patch]: dot.profile: prevent printing when doing an s f kern/72933 yar [netgraph] [patch] promisc mode on vlan interface does a conf/72978 [patch] add danish syscons keymap with accents o sparc/72998 sparc64 [kernel] [patch] set_mcontext() change syscalls parame p bin/73110 rwatson [patch] ffsinfo conversion from atol() to strtol() p bin/73112 rwatson [patch] change atol() to strtol() in badsect o kern/73276 ipfw [ipfw] [patch] ipfw2 vulnerability (parser error) o bin/73327 [PATCH] iostat - extended mode display o bin/73411 [patch] FTPD could set attributes to 0600 while upload o ports/73448 nectar [PATCH] nss_ldap - getpwnam does not return password h o kern/73514 [ntfs] [patch] mount_ntfs: can't access to a large fil o docs/73583 doc [patch] add missing instructions to ndis(4) o conf/73677 [patch] add support for powernow states to power_profi o kern/73777 emulation [linux] [patch] linux emulation: root dir special hand o kern/73865 [rpcbind] [patch] NOINET6=yes in /etc/make.conf ignore o conf/73909 [patch] rc.d/sshd does not work with ports-ssh o i386/73921 i386 [sysctl] [patch] sysctlbyname for machdep.tsc_freq doe o conf/73929 [patch] /etc/rc.d/named will not work with ports-named o conf/74004 [PATCH] add fam support to inetd.conf o conf/74005 [PATCH] aditional support for /etc/rc.initdiskless o conf/74006 dougb [PATCH] /etc/rc.d/named minor fixes o kern/74159 [headers] [patch] fix warnings concerned with header f o bin/74178 [patch] grdc(6) - scrolling does not work and "AM"/"PM o conf/74213 [PATCH] Connect src/etc/periodic/security/610.ipf6deni o i386/74327 i386 [pmap] [patch] mlock() causes physical memory leakage o bin/74360 [patch] ndiscvt(8) generates a driver which doesn't ma o misc/74396 [patch] "make release" fails if the cdrtools port is n o bin/74450 [libalias] [patch] enable libalias/natd to create skip o i386/74454 i386 [bsd.cpu.mk] [patch] Adding VIA Eden family o docs/74477 doc [patch] Correct several links in the contributing arti o kern/74498 [pccard] [patch] new CIS id for Intersil WiFi, pccard o bin/74500 [PATCH] allow chflags to set flags on symlinks o bin/74506 [patch] bad top command display p bin/74509 brooks [PATCH] ifconfig allows setting 33-byte SSID o kern/74549 [modules] [patch] Allow third party KLDs (eg ports) to o bin/74567 [2TB] [patch] du doesn't handle sizes >1TB o misc/74577 [patch] decorating space in Beastie menu o usb/74609 usb [usb] [patch] allowing cdma modems to work at full spe o docs/74612 doc [patch] updates to the glossary o bin/74743 [patch] wctype.c declares static array on stack o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o o conf/74817 [patch] network.subr: fixed automatic configuration of o usb/74849 usb [usb] [patch] Samsung SPH-i500 does not attach properl o usb/74880 usb [usb] [patch] Samsung N400 cellphone/acm fails to atac o ports/74907 apache [PATCH] www/mod_perl: cleanups o ports/74919 ale [PATCH] lang/php4: Add hardened-php.org patch o kern/75008 [psm] [patch] ALPS GlidePoint not recognized FreeBSD 5 o kern/75132 jhb [puc] [patch] add support for the Davicom 56PDV PCI Mo o kern/75254 [wi] [patch] PRISM3-based adapter ZCOM XI330 doesn't w o kern/75298 [pccard] [patch] add missing device id for pccard brid o kern/75316 multimedia [sound] [patch] Enable to select a recording sound sou o conf/75502 [patch] Fix LC_NUMERIC and LC_MONETARY for de_CH local o usb/75578 usb [patch] QUIRK: PNY USB flash key o kern/75582 [dc] [patch] Add support for Linksys PCMPC200 Cardbus o kern/75764 [umass] [patch] "umass0: Phase Error" - no device for o bin/75766 [patch] nfsd(8) loops with TCP + multiple -h options o kern/75934 [libcrypt] [patch] missing blowfish functionality in p o kern/75969 multimedia [sound] [patch] Support for Sigmatel STAC9766/67 codec o usb/75970 usb [usb] [patch] support for Sandisk Cruzer Micro 128MB U o kern/76081 [rl] [patch] Add support for CardBUS NIC FNW3603TX o conf/76124 [patch] Mistake in /usr/share/misc/pci_vendors o gnu/76169 [patch] Add PAM support to cvs pserver o kern/76225 [modules] [patch] WITHOUT_MODULES option for sys/modul o kern/76432 gnn [net] [patch] recursive locking in the network stack o bin/76494 [patch] passwd(1) does not indicate a successful chang o conf/76509 [patch] New locale uk_UA.CP1251 support s kern/76520 [libiconv] [patch] Add new kernel-side libiconv conver o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same o kern/76551 [re] [patch] re0: watchdog timeout o www/76586 re [patch] minor updates to en/releng/index.sgml o kern/76611 isdn [i4b] [patch] i4b itjc bad enums for PIB cycle time o conf/76626 [patch] 460.status-mail-rejects shows destination doma o kern/76678 rwatson [libpam] [patch] Allow pam_krb5 to authenticate no loc o kern/76710 [mii] [patch] rgephy does not deal with status properl o ports/76915 portmgr [patch] Handle port deinstall scripts when /var is mou o bin/77031 [patch] comm(1) unable to handle lines greater than LI o conf/77197 [patch] calendar.judaic is out of date o kern/77355 [i386] [patch] Detect i*86 subarches for uname o kern/77365 [amdpm] [patch] amdpm driver has wrong PCI device ID f o kern/77541 [em] [patch] if_oerrors book keeping error o kern/77835 stefanf [libc] [patch] res_debug.c needs const declarators in o kern/77841 [libc] [patch] cast away const in getpublickey() o ports/77857 kwm [PATCH] net/gnomemeeting: correctly determine WRKSRC o o kern/77913 [wi] [patch] Add the APDL-325 WLAN pccard to wi(4) o kern/78070 [bge] [patch] Potential null pointer dereference in bg o kern/78072 [lge] [patch] Potential memory leak in lge(4) o kern/78114 phk [geom] [patch] Solaris/x86 label structures for GEOM ( o bin/78170 [patch] Fix signal handler in bootpd o kern/78474 [kernel] [patch] swapped out procs not brought in imme o usb/78543 usb [patch] Support for Trip-Lite USB 2 Serial adapter o ports/78554 portmgr [patch] bsd.port.mk: allow install port with the same o kern/78646 [libmap] [patch] libmap should canonicalize pathnames o kern/78673 [nfs] [patch] nfs client open resets attrstamp ever if o kern/78756 phantom [libc] [patch] src/lib/libc/nls/fr_FR.ISO8859-1.msg fo o kern/78758 sos [ata] [patch] Add support for re-sizing ATA disks a ports/78760 lioux [PATCH] multimedia/kmplayer: Make TV viewing a bit mor o bin/78763 pjd [PATCH] Added jail support to ps o bin/78768 pjd [Patch] Added jail support to top o bin/78785 ipfw [ipfw] [patch] ipfw verbosity locks machine if /etc/rc o kern/78884 [nfs] [patch] nfs client cache negative lookups o conf/78906 [patch] Allow mixer_enable="NO" in rc.conf o ports/79010 portmgr [patch] bsd.port.mk - all-depends-tree target o i386/79091 i386 [i386] [patch] Small optimization for i386/support.s o kern/79139 [pci] [patch] Support for more PCIe chipsets o usb/79164 usb [usb] [patch] QUIRK: Qware BeatZkey! Pro USB mp3 playe o conf/79196 [PATCH] configurable dummynet loading from /etc/rc.co o kern/79266 [pci] [patch] RELENG_4 pci CONF1_ENABLE_MSK depend MFC o ports/79398 portmgr [patch] bsd.port.mk: add USE_MAKESELF knob p bin/79418 stefanf [patch] libedit sync from netbsd cvs o kern/79575 [md] [patch] Fixes order of disks in 'mdconfig -l' out o bin/79607 obrien grok and default to bzip2-compressed manual pages [pat a ports/79637 cjh [PATCH] print/magicfilter: update to 2.3.d o usb/79649 usb [usb] [patch] quirk: Gembird MP3 player o ports/79651 clement [patch] mail/ssmtp: add per-user smtp authentication c o bin/79690 [patch] mdmfs does not accept numeric uid/gid with -w o kern/79698 des [ichwd] [patch] ICH watchdog driver broken o conf/79701 [PATCH] wcwidth(3) returns wrong value about character o usb/79725 usb [usb] [patch] USB device speed is not double-checked o threa/79887 threads [patch] freopen() isn't thread-safe p kern/79998 yar [sk] [patch] Give sk(4) VLAN MTU capabilities o usb/80010 usb [aue] [patch] add support for the AEI USB to LAN adapt o kern/80031 [coda] [patch] Remove insque/remque from kernel land o kern/80048 [aac] [patch] support for HP ML110 G2 SATA RAID Contro o docs/80070 doc [patch] Wrong dbm_close return value described in dbm( o bin/80117 qa [sysinstall] [patch] smbfs install option for sysinsta o kern/80147 multimedia [snd_sb16] [patch] panic with the vibra16x when trying o kern/80151 multimedia [sound] [patch] Missing ESS ES1688 PCI-ID o kern/80152 multimedia [sound] [patch] SIMPLEX flag is not set properly in so o docs/80159 doc [patch] rtld(1) mentions "%m" but it's not implemented o docs/80186 imp [patch] Footnote is wrong in the /usr/src/UPDATING o kern/80234 multimedia [sound] [patch] add entry for Analog Devices AD1986 AC o bin/80236 [patch] atacontrol(8) outputs minimal usage o bin/80242 [patch] jail(8) should be able to set kern.securelevel o bin/80258 [PATCH] Comment why some Binaries are statically linke o kern/80269 [libtacplus] [patch] libtacplus tac_get_av_value will o usb/80383 usb [uhid] [patch] Add quirk for uhid to ignore certain us o bin/80411 [patch] df(1): bin/df/df.c sign errors in calls to get o bin/80421 [PATCH] whois(1) should query AfriNIC server for Afric o usb/80487 usb [usb] [patch] quirk: United MP 5512 Portable MP3 Playe o conf/80504 [patch] de_DE.ISO8859-1 libc message catalog o bin/80610 [patch] netstat(1): lost data due lu format o bin/80620 des [patch] fetch -U does not work o kern/80642 ipfw [ipfw] [patch] ipfw small patch - new RULE OPTION o bin/80687 [patch] Missing NULL termination after strncpy() in lo f ports/80705 gnome [PATCH] converters/libiconv: includes a patch for Big5 o bin/80732 [PATCH]: getty(8) and telnetd(8) ignore the 'if' optio o kern/80844 [psm] [patch] Increase compatibility of psm driver wit o kern/81013 multimedia [sound] [patch] Intel ICH3 sound chip reverts to 48KHz o bin/81035 [patch] boot0cfg emits bogus error o conf/81042 pf [pf] [patch] /etc/pf.os doesn't match FreeBSD 5.3->5.4 o ports/81070 ale [PATCH] www/php-screw: randomize CRYPTKEY o usb/81073 usb [umass] [patch] fix umass NO_GETMAXLUN quirk o amd64/81089 amd64 [bge] [patch] FreeBSD 5.4 released version can not use o ports/81188 se [PATCH] update kplayer to 0.5.3 o ports/81200 ale [patch] Mk/bsd.php.mk: add math/pecl-big_int o bin/81230 [patch] mountd does not ignore SIGPIPE o stand/81287 standards [PATCH]: fingerd(8) might send a line not ending in CR o bin/81300 [PATCH] add option to sockstat(1) to always separate o i386/81358 i386 [geode.c] [patch] add PC Engines WRAP support o ports/81428 x11 [PATCH] x11-servers/mga_hal: also install mga_drv.o p kern/81449 jkim [loader] [patch] SMBIOS scan for loader o threa/81534 threads [libc_r] [patch] libc_r close() will fail on any fd ty o kern/81588 phk [kernel] [patch] Devices with SI_CHEAPCLONE flag don't s ports/81598 jdp [PATCH] net/cvsup-mirror: add some install time option o bin/81692 [patch] atacontrol(8) support for disk APM and acousti o bin/81709 [patch] lam accepts -P but not -p o kern/81803 [ichsmb] [patch] Unsupported ICH6 SMBus controller on o bin/81837 [patch] Sort by directories first option for ls(1) o usb/81846 usb [cam] [patch] Quirks for Time DPA20B 1GB MP3 player, s kern/81867 delphij [ioctl] [patch] ioctl collision between pcvt(4) and vg o bin/81874 [patch] TCP mode in systat overwrites load average o conf/81924 [patch] Removal of duplicate fortunes o kern/81987 [libc] [patch] memory leaks in libc/rpc o bin/81989 [patch] mount_msdosfs(8): when a mask, but no dirmask o bin/82058 markm [PATCH] Ability for pw groupmod to delete members o ports/82151 perl [PATCH] mail/p5-Mail-SpamAssassin: install rcNG startu o bin/82161 [patch] m4's eval does not handle INT_MIN correctly o bin/82170 [patch] m4's eval does not work as documented o bin/82185 [patch] ndp(8) command bug o kern/82188 [netgraph] [patch] ng_fec interface not running after o kern/82189 [netgraph] [patch] ng_fec interface - problems with co o conf/82228 roberto [patch] order parsed ntpdate_hosts in /etc/rc.d/ntpdat o bin/82287 [patch] routed(8): Fix varargs usage, remove non-exist o docs/82290 hmp [patch] update to handbook firewall PF section o gnu/82351 [patch] update (385-cl3) to version 385 of the "less" o kern/82380 [libc] [patch] buildworld error in libc p kern/82381 stefanf [patch] small bug in libedit might cause abnormal prog o usb/82436 usb [patch] USL101 Host-to-Host bridge support on FreeBSD o gnu/82484 [patch] for misleading man cvs f ports/82661 portmgr [patch] Add support to filter MASTER_SITES and PATCH_S o kern/82724 ipfw [ipfw] [patch] Add setnexthop and defaultroute feature o conf/82738 [patch] add amd_program line to defaults/rc.conf o docs/82779 doc [patch] Kill entry for ddb manpage o conf/82823 [patch] little addon for /etc/periodic/400.passwdless o usb/82839 usb [patch] add support for Aceeca Mez1000 device to uviso o kern/83192 jhb [kernel] [patch] Kernel allows processes to run 1 seco o kern/83198 [patch] Missing option in template NOTES o usb/83247 usb [cdce] [patch] if_cdce.c doesn't emit USB_EVENT_DRIVER a ports/83264 trevor [PATCH] emulators/linux_base-suse-9.2: Add freetype2 o misc/83287 [patch] EXTPORTSDIR feature for src/release/Makefile o ports/83306 lioux [patch] print/lilypond 2.4.6 o usb/83353 usb [ums] [patch] ums driver limits number of buttons to 7 o ports/83373 jedgar [PATCH] databases/p5-Mysql port does not compile o www/83397 ceri [patch] Improvement to the GNATS webinterface o kern/83445 [ndis] [patch] ndis won't compile with kernel profilin o docs/83621 doc [patch]: Minor omissions in /usr/src/UPDATING o kern/83697 [snd_mss] [patch] support, docs added for full-duplex, o kern/83778 [kame] [patch] JPv6 cannot use Jumbo Frames o kern/83807 [sis] [patch] if_sis: Wake On Lan support for FreeBSD o stand/83845 standards [libm] [patch] add log2() and log2f() support for libm o conf/84030 [patch] /etc/rc.d/power_profile is not a real rc.d scr o bin/84041 [PATCH] fix for wall(1) error message o kern/84215 [jail] [patch] wildcard ip (INADDR_ANY) should not bin o kern/84219 [ncurses] [patch] ncurses.h wchar_t confliction o ports/84255 tobez [patch] lang/perl5.8 (5.8.7) and freebsd.sh patch lead p docs/84264 keramida [patch] ata(4) manpage disagrees with tuning(7) manpag o docs/84265 doc [patch] chmod(1) manpage omits implication of setting o bin/84298 [patch] allow mount(8) to recognize relative pathnames o kern/84471 multimedia [sound] [patch] no sound ICH4 (Analog Devices AD1981B s docs/84519 doc [patch] mdoc(7) manpage needs more about AUTHORS o docs/84549 doc [patch] errno(2) manpage uses "<...>" for "(..)" o conf/84581 [patch] Teach config(8) to look for kernel configurati o docs/84620 doc [patch] xargs(1) manpage has "utility" and "command" i o bin/84634 fjoe [geom] [patch] new utility to control GEOM uzip class o docs/84670 doc [patch] tput(1) manpage missing ENVIRONMENT section wi f ports/84718 girgen [PATCH] databases/postgresql74-server: Add option from o conf/84752 [patch] 100.clean-disks cleans file systems that don't o docs/84764 doc [patch] hosts.equiv(5) manpage should SEE ALSO netgrou o kern/84797 [libutil] [patch] State engine in the libutils propert o conf/84800 obrien [patch] setting CPUTYPE=nocona on an Intel system resu o kern/84823 [bpf] [patch] bpf in non-blocking mode is broken o docs/84849 doc [patch] fdisk(8) manpage doesn't warn fdisk doesn't re o bin/84911 [patch] ndisgen(8) can't cope with .sys-files that beg o docs/84955 doc [patch] mdoc(7) manpage should mention missing documen o docs/84956 doc [patch] intro(5) manpage doesn't mention API coverage o docs/84961 doc [patch] Sync NDIS documentation with reality o kern/84981 [headers] [patch] header protection for ® / ™ - o www/89382 www [PATCH] www/en/index.xsl: Small style fixes o www/89386 www [PATCH] Another 4 *.xsl files with div id upper case c o www/89389 www [PATCH] Missing space in share/sgml/includes.header.xs o ports/89398 portmgr [PATCH] bsd.wx.mk and patches o ports/89412 lioux [patch] multimedia/libdvdcss - update to 1.2.9 o conf/89423 [patch] The example make.conf has tabs before the comm o docs/89433 jesusr [patch] translation update to handbook chapter /es_ES. 864 problems total. From bugmaster at freebsd.org Tue Nov 22 15:38:12 2005 From: bugmaster at freebsd.org (FreeBSD bugmaster) Date: Tue Nov 22 15:38:29 2005 Subject: Current problem reports sorted by tag Message-ID: <200511222333.jAMNX6N8024749@freefall.freebsd.org> Problem reports for tag '2tb': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/18874 [2TB] 32bit NFS servers export wrong negative values t o kern/41723 [2TB] on 1TB fs, copying files to filesystem causes "i p bin/56606 [2TB] df cannot handle 2TB NFS volumes o bin/66984 qa [2TB] [patch] teach sysinstall about larger disks p kern/67546 [2TB] Coredumps > 2Gb do not work (on 64bits platforms o bin/74567 [2TB] [patch] du doesn't handle sizes >1TB o kern/79251 geom [2TB] newfs fails on 2.6TB gbde device o kern/84589 [2TB] 5.4-STABLE unresponsive during background fsck 2 o bin/88872 [2TB] Error 36 while sysinstall tries to create / part o bin/88873 [2TB] gpt create fails "bogus map" "unknown error: 0" 10 problems total. Problem reports for tag 'aac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/80048 [aac] [patch] support for HP ML110 G2 SATA RAID Contro o kern/81887 scsi [aac] Adaptec SCSI 2130S aac0: GetDeviceProbeInfo comm o kern/87191 scottl [aac] [patch] aac(4) panics immediately with INVARIANT o i386/87364 scottl [aac] aac controller stopped working between BETA5 and o kern/88718 [aac] [timeout] unable to install on RAID 5 and FreeBS 5 problems total. Problem reports for tag 'acpi': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/72179 i386 [acpi] [patch] Inconsistent apm(8) output regarding th o kern/74868 [acpi] ACPI enabled in 5.3 Release make Kernel reboot o i386/87568 i386 [acpi] 6.0-STABLE needs ACPI disabled but 5.4-RELEASE o kern/89411 [acpi] acpiconf bug 4 problems total. Problem reports for tag 'agp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets f i386/59854 anholt [agp] [panic] System panics when AMD 762 AGP is loaded a kern/62906 peadar [agp] [patch] AGP misconfigures i845G chipset, causing o i386/68518 i386 [agp] [hang] hangs while loading 82443BX agp during bo a kern/72224 anholt [agp] umass devices broken by DRM (AGP issue?) o i386/79141 i386 [agp] 5.4Beta1 does not recognize my intel graphics ca s kern/80396 anholt [agp] i915 AGP not supported o kern/84015 [agp] [hang] Nforce3-250Gb freezes on FreeBSD-6 beta1 o kern/89271 [radeon][agp][hang] X.org hangs when heavily using Rad 9 problems total. Problem reports for tag 'ahc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5.3 1 problem total. Problem reports for tag 'ahd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/73646 [ahd] I/O performance: with/without MEMIO option o kern/76178 scsi [ahd] Problem with ahd and large SCSI Raid system 2 problems total. Problem reports for tag 'amd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/39425 [amd] Auto mounted directory was not found at boot tim 1 problem total. Problem reports for tag 'amdpm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/77365 [amdpm] [patch] amdpm driver has wrong PCI device ID f 1 problem total. Problem reports for tag 'amr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/29727 scsi [amr] [patch] amr_enquiry3 structure in amrreg.h is in o kern/71771 [amr] Hang during heavy load with amr raid controller o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o kern/76848 [amr] amr hangs o kern/86411 scottl [amr] Very low performance of amr(4) under FreeBSD-6.0 5 problems total. Problem reports for tag 'an': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/36170 [an] [patch] an(4) does an_init() even if interface is o kern/69158 [an] Cisco MPI350 wireless card problems related to ir o kern/75407 [an] an(4): no carrier after short time o kern/85886 [an] an0: timeouts with Cisco 350 minipci 4 problems total. Problem reports for tag 'apic': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/81000 [apic] Via 8235 sound card worked great with FreeBSD 5 1 problem total. Problem reports for tag 'apm': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/31353 i386 [apm] [patch] 'shutdown -p' does not work on SMP Tyan o i386/40219 i386 [apm] apm breaks removable media o i386/40958 i386 [apm] apm on Acer TravelMate 351 could not resume o i386/44130 i386 [apm] Enabled apm hangs up FreeBSD kernel on i815 chip 4 problems total. Problem reports for tag 'ar': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/57043 i386 [ar] [hang] ar driver with 2 port PCI card locks up wh 1 problem total. Problem reports for tag 'asr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on o kern/26048 obrien [asr] 4.3-RC: SMP and asr driver don't work together o kern/88047 [asr] [panic] 6.0-RC1 reboots with SMP and asr 3 problems total. Problem reports for tag 'ata': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/57174 sos [ata] 4.9-PRERELEASE panic: ata_dmasetup: transfer act o i386/58458 i386 [ata] ATAPI-CDROM DMA Support on ALi Aladdin V Chipset o i386/58784 i386 [ata] ATA does not work in DMA mode (ASUS P55TP4N moth o kern/59624 [ata] [patch] HightPoint HPT371 support for FreeBSD 4. o i386/61063 i386 [ata] ata hangs in smp system a kern/61960 sos [ata] [patch] BigDrive support for PC-98 architecture o i386/63430 i386 [ata] TIMEOUT - ATA READ o i386/63467 i386 [ata] Sil 3114: RAID not detected using SATA o kern/68315 [ata] [patch] atacontrol(8) addspare for 4.x o kern/68546 [ata] system seems to hang during stress tests o kern/71999 [ata] [panic] recurring panic in 4.10: ata_dmasetup: t o kern/74066 [ata] acd driver fault: READ_BIG timeout o i386/74658 i386 [ata] ATAPI CD not recognized after booting FreeBSD 4. o alpha/75317 alpha [ata] [busdma] ATA DMA broken on PCalpha s i386/75387 i386 [ata] feature request: support of Promise SATAII150 TX s i386/76397 i386 [ata] ata raid crashes in g_down (heavy load) o i386/77643 sos [ata] SATA PCI controllers fail with WRITE_DMA errors o kern/78758 sos [ata] [patch] Add support for re-sizing ATA disks p kern/79332 [ata] [patch] "ffs_mountroot: can't find rootvp" after o kern/79334 [ata] ATA_IDENTIFY timed out for 5.3 and 5.4 beta 1 o kern/81438 sos [ata] Ataidle seems broken + problem with ATA wakeup a kern/83236 sos [ata] FreeBSD does not work with my ATAPI CDROM if ata o i386/83974 sos [ata] FreeBSD-6.0-BETA1 blows up with PCI SATA w/using o kern/84568 sos [ata] Sysinstall ata related panic under 6.0-BETAx o kern/85603 [ata] FS corruption and 'uncorrectable' DMA errors on s kern/86417 sos [ata] Panic when doing massive i/o operations on an AT o kern/87585 sos [ata] no SATA support w/SIS 180 RAID controller (regre f i386/87934 sos [ata] atacontrol attach ata0 causes momentary system f f i386/87975 sos [ata] [boot] no kernel support for ata pdc20622 o kern/88714 sos [ata] cannot record CD-R since 6.0 o kern/88830 sos [ata] cd drive access error (regression in 6.0-R) o kern/89227 sos [ata] [patch] Intel ICH6-M SATA controller on Vaio VGN o kern/89264 sos [ata] [panic] crash dump not implemented for RAID (ar) 33 problems total. Problem reports for tag 'atapicam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/73675 [atapicam] atapicam causes interrupt storm o amd64/86503 amd64 [atapicam] [panic] k3b crash the system like hardware 2 problems total. Problem reports for tag 'ath': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83429 [ath] ath(4) does not work with the D-Link DWL-G630 (r o kern/87758 [ath] [hang] Reboot problem with atheros wireless card 2 problems total. Problem reports for tag 'aue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/51009 [aue] [patch] buggy aue driver fixed. o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP f kern/71280 [aue] aue0 device (linksys usb100tx) doesn't work in 1 o usb/80010 usb [aue] [patch] add support for the AEI USB to LAN adapt 4 problems total. Problem reports for tag 'bfe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/72296 [bfe] bfe0: discard oversize frame (ether type 5e0 fla o i386/79784 i386 [bfe] Broadcom BCM4401 : no carrier 2 problems total. Problem reports for tag 'bge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/44500 [bge] [patch] bge(4): add AC1001 Gigabit NIC as workin o i386/45773 i386 [bge] Softboot causes autoconf failure on Broadcom 570 o i386/46484 i386 [bge] [panic] System panics upon configuration of bge o kern/61109 [bge] bge on TYAN AMD762-based Thunder/Tiger passes on o i386/62324 i386 [bge] Onboard Broadcom BCM5705 controller not initiali o kern/68351 [bge] bge0 watchdog timeout on 5.2.1 and -current, 5.1 o amd64/70500 amd64 [bge] bge driver for 3Com 3C996B on amd64 prevents cle o kern/73538 [bge] problem with the Broadcom BCM5788 Gigabit Ethern o kern/78070 [bge] [patch] Potential null pointer dereference in bg o kern/79143 [bge] Broadcom NIC driver do not work for IPMI o kern/79324 [bge] Broadcom bge chip initialization failure o amd64/81089 amd64 [bge] [patch] FreeBSD 5.4 released version can not use o kern/88741 [bge] IPMI access disabled when bge driver is loaded p kern/88940 glebius [bge] [patch] bge support for BCM5752 14 problems total. Problem reports for tag 'biosdisk': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/24997 i386 [biosdisk] [patch] /boot/loader cannot handle extended 1 problem total. Problem reports for tag 'bktr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/14166 [bktr] [patch] AVER TVPhone o kern/32812 [bktr] bktr driver missing tuner for eeprom detection. o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o kern/36415 [bktr] [patch] driver incorrectly handles the setting a kern/36451 [bktr] [patch] Japan IF frequency is incorrect o kern/37326 [bktr] smbus/bktr crash when omitting "device iicsmb" s kern/48279 [bktr] Brooktre878 may cause freeze o kern/56245 [bktr] Distorted and choppy video with bktr-driver on o kern/57603 [bktr] bktr driver: freeze on SMP machine o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o kern/79066 [bktr] bktr(4) eating about 10% CPU load once it was u o kern/81180 [bktr] bktr(4) driver cannot capture both audio and vi 12 problems total. Problem reports for tag 'boot0': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/37380 jhb [boot0] [patch] boot0 partition list is outdated o i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice 2 problems total. Problem reports for tag 'boot2': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/35262 [boot2] [patch] generation of boot block for headless 1 problem total. Problem reports for tag 'bootinst': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/22914 [bootinst] bootinst messages are not updated 1 problem total. Problem reports for tag 'bootmgr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/38826 [bootmgr] RFE: BootMgr should provide more identifying 1 problem total. Problem reports for tag 'bootp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/82491 [bootp] [patch] bootpd shouldn't ignore requests 1 problem total. Problem reports for tag 'bpf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/16644 [bpf] [patch] Bad comparison expression in bpf_filter. o kern/36219 [bpf] [patch] poll() behaves erratic on BPF file descr o kern/71711 [bpf] [patch] generate a single bpf timestamp for each o kern/76410 [bpf] [patch] Null pointer dereference in net/bpf.c o kern/83297 [bpf] Possible issue with FreeBSD 5.4 jailing and BPF o kern/84823 [bpf] [patch] bpf in non-blocking mode is broken o kern/88268 [bpf] yet another null pointer in bpf code 7 problems total. Problem reports for tag 'bridge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/44417 luigi [bridge] [patch] ipfw layer2 rules are not checked for a kern/57100 bms [bridge] disable hardware checksums when using bridge( o kern/80572 [bridge] bridge/ipfw works intermittantly. o kern/82919 [bridge] [patch] Bridge configuration update will cras o kern/86361 thompsa [bridge] bridge(4) does not work with VLAN trunks f kern/88011 thompsa [bridge] bridge and if_bridge is broken badly 6 problems total. Problem reports for tag 'bsd.cpu.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- p i386/72340 des [bsd.cpu.mk] [patch] add Pentium M, P3 M, P4 M support o i386/74454 i386 [bsd.cpu.mk] [patch] Adding VIA Eden family 2 problems total. Problem reports for tag 'bus': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/46113 i386 [bus] [patch] busspace bugs in parameter checking 1 problem total. Problem reports for tag 'busdma': S Tracker Resp. Description -------------------------------------------------------------------------------- o alpha/75317 alpha [ata] [busdma] ATA DMA broken on PCalpha o i386/76944 i386 [busdma] [patch] i386 bus_dmamap_create() bug o amd64/87977 amd64 [busdma] [panic] amd64 busdma dflt_lock called (by ata 3 problems total. Problem reports for tag 'cam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/17504 ken [cam] [patch] Another Micropolis Synchronize Cache Pro s bin/57088 [cam] [patch] for a possible fd leak in libcam.c s kern/72041 [cam] [hang] Deadlock when disk is destroyed while use o kern/76893 [cam] [patch] Fatal divide in booting processes with B o usb/81846 usb [cam] [patch] Quirks for Time DPA20B 1GB MP3 player, s kern/85975 [cam] devfs does not create entries when removable med o kern/86131 [cam] [patch] quirk for Creative MuVo slim 7 problems total. Problem reports for tag 'cardbus': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/84954 imp [CARDBUS] cbb alloc res fail (with hw.cardbus.debug=1 1 problem total. Problem reports for tag 'cdce': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/83247 usb [cdce] [patch] if_cdce.c doesn't emit USB_EVENT_DRIVER 1 problem total. Problem reports for tag 'coda': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/80031 [coda] [patch] Remove insque/remque from kernel land 1 problem total. Problem reports for tag 'crypto': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/43611 [crypto] [patch] static-ize some symbols in sys/crypto o kern/66029 [crypto] [patch] MD5 alignment problem on a TriMedia p 2 problems total. Problem reports for tag 'cue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/75710 [cue] cue0 device configuration causes kernel panic 1 problem total. Problem reports for tag 'cx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/66348 rik [cx] FR mode of cx (Cronyx Sigma) does not work for 4. 1 problem total. Problem reports for tag 'dc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/30052 mbr [dc] [patch] dc driver queues outgoing pkts indefinite o kern/50574 mbr [dc] dc driver incorrectly detects ADMtek chip model o kern/52980 mbr [dc] [patch] dc driver fails to init Intel 21143 Cardb o kern/55793 [dc] Flaky behavior of if_dc when initializing a LNE10 o kern/62333 [dc] syslog: kernel: dc0: discard oversize frame (ethe o kern/75582 [dc] [patch] Add support for Linksys PCMPC200 Cardbus o kern/79262 [dc] Adaptec ANA-6922 not fully supported o kern/82070 [dc] Not all dc(4) devices can be used: MII without an s sparc/82681 sparc64 [dc] dc state messages 9 problems total. Problem reports for tag 'de': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/15542 [de] de(4) suddenly stops working a kern/55542 andre [de] [patch] discard oversize frame (ether type 800 fl o kern/71450 [de] de(4): MAC address change on 21040 "Tulip" Ethern o kern/72293 [de] de(4) NIC performance degradation with debug.mpsa 4 problems total. Problem reports for tag 'devfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85751 [devfs] [panic] panic in devfs_setattr() when running 1 problem total. Problem reports for tag 'dhcp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/71045 [dhcp] DHCP-Request is sets other device's ip to null, 1 problem total. Problem reports for tag 'digi': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/55018 andre [digi] [patch] Digiboard PC/Xem fails to initialize wh o kern/74281 [digi] digi(4): Digiboard PCI Xem (64-ports) detection o kern/82227 [digi] Xem: chained concentrators not recognised o kern/83254 [digi] driver can't init Digiboard PC/4e 4 problems total. Problem reports for tag 'dns': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/54189 [dns] resolver should resolve hostnames with underscor 1 problem total. Problem reports for tag 'drm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85479 anholt [drm] [patch] Two small fixes for DRM/DRI o kern/87653 [drm] ATI Radeon Mobile X600SE not detected by kernel 2 problems total. Problem reports for tag 'dummynet': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same 1 problem total. Problem reports for tag 'ed': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement o i386/12088 imp [ed] [patch] ed(4) has minor problem with memory alloc o kern/80853 [ed] [patch] add support for Compex RL2000/ISA in PnP o kern/84202 [ed] [patch] Holtek HT80232 PCI NIC recognition on Fre o kern/85493 imp [ed] [patch] OLDCARD can't probe ed driver 5 problems total. Problem reports for tag 'ef': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85086 [ef] [patch] Locking fixes for ef(4) (+removes mem. le 1 problem total. Problem reports for tag 'em': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/52835 pdeuskar [em] em driver does not work with mobile-chipset o kern/59806 tackerman [em] [patch] Suspend/resume breaks em0 o i386/62280 i386 [em] em0 broken after resume in 5.2-CURRENT o kern/64878 tackerman [em] Intel 82547 CSA Driver forces system lockup when a kern/66634 tackerman [em] hard lock with em driver o kern/67242 tackerman [em] [patch] dev/em/if_em.c isn't ctags compatible a kern/72748 tackerman [em] em0 problems on t41 after updating to 5.3 a kern/72970 tackerman [em] em(4) driver can hang when mbuf starvation occurs o kern/75794 tackerman [em] em(4) driver alignment problems o kern/77541 [em] [patch] if_oerrors book keeping error o kern/77588 [em] PREEMPTION problems in combination with em driver o kern/80932 tackerman [em] [patch] Degraded performance of em driver o kern/81147 tackerman [em] [patch] em0 reinitialization while adding aliases o kern/86124 [em] dell 1850 pro/1000 slow (em problem? SMP problem? o kern/86306 [em] [patch] if_em.c locks up while trying to send a h p kern/87418 glebius [em] [patch] The em driver sometimes stop receive data 16 problems total. Problem reports for tag 'ep': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/20958 mdodd [ep] ep0 lockup with ifconfig showing OACTIVE o kern/74920 [ep] [panic] 3Com 3C509-Combo Etherlink III panics sys 2 problems total. Problem reports for tag 'ex': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/43916 [ex] [hang] Olicom OC-2220 (PC-card) hangs on ifconfig o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx o i386/85423 i386 [ex] ex(4) does not correctly recognize NIC in PnP mod 3 problems total. Problem reports for tag 'ext2fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/77826 [ext2fs] ext2fs usb filesystem will not mount RW o kern/87959 cracauer [ext2fs] no cp(1) possible, mmap returns EINVAL 2 problems total. Problem reports for tag 'fdc': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/43539 i386 [fdc] Cannot mout floppy on Compaq Proliant ML370 o kern/66876 [fdc] [patch] Cannot extract tar(1) multi-volume archi o kern/66960 [fdc] [patch] filesystems not unmounted during reboot o kern/73961 [fdc] floppy disk drive performance problem [new in 5. o kern/74827 [fdc] Problem writing data to floppies [5.3-specific] o i386/77443 i386 [fdc] can't access floppy -- regression on 5.3 o kern/84799 [fdc] [patch] can't read beyond track 0 on fdc (IBM th o i386/87968 i386 [fdc] cannot access the floppy device 8 problems total. Problem reports for tag 'fe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/88576 imp [fe] revision 1.31 to if_fe_pccard.c breaks NE200T fun 1 problem total. Problem reports for tag 'ffs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/48033 [ffs] FFS superblock flags are being ignored? o kern/89247 [ffs] [patch] QUOTA in 6.0/7.0-current leak 2 problems total. Problem reports for tag 'firewire': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/74238 firewire [firewire] fw_rcv: unknown response; firewire ad-hoc w o kern/83999 firewire [firewire] [patch] panic in fw_bus_explore due to NULL 2 problems total. Problem reports for tag 'fwip': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85434 firewire [fwip] fwip (IP over firewire) doesn't work with polli 1 problem total. Problem reports for tag 'fxp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/12543 [fxp] [patch] cumulative error counters for fxp(4) f kern/40274 [fxp] "fxp: device timeout" errors during heavy, susta o kern/80784 mux [fxp] fxp gives device timeouts o kern/85258 mux [fxp] changing promisc mode on nic can lead to kernel o kern/87194 [fxp] fxp(4) promiscuous mode seems to corrupt hw-csum 5 problems total. Problem reports for tag 'gbde': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/76538 geom [gbde] nfs-write on gbde partition stalls and continue o kern/87544 geom [gbde] mmaping large files on a gbde filesystem deadlo 2 problems total. Problem reports for tag 'geode.c': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/81358 i386 [geode.c] [patch] add PC Engines WRAP support 1 problem total. Problem reports for tag 'geom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/78114 phk [geom] [patch] Solaris/x86 label structures for GEOM ( o kern/83464 [geom] [patch] Unhandled malloc failures within libgeo o kern/84556 geom [geom] GBDE-encrypted swap causes panic at shutdown o bin/84634 fjoe [geom] [patch] new utility to control GEOM uzip class o kern/84637 pjd [geom] [patch] GEOM LABEL sometimes doesn't recognize o kern/87986 pjd [geom] [hang] gmirror and quota will hang the OS 6 problems total. Problem reports for tag 'geom_vfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/89102 geom [geom_vfs] [panic] panic when forced unmount FS from u 1 problem total. Problem reports for tag 'gif': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/58870 bms [gif] [panic] page fault in kernel mode with ifconfig f kern/71695 brooks [gif] [hang] ifconfig(8) hanging box o kern/72263 [gif] gifconfig output corruption 3 problems total. Problem reports for tag 'gre': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/47813 [gre] pseudo-device gre(4) doesn't appear to work with o kern/60183 sobomax [gre] [patch] No WCCPv2 support in gre o bin/74062 [gre] ifconfig(8) does not display tunnel endpoints fo o kern/85320 [gre] [patch] possible depletion of kernel stack in ip 4 problems total. Problem reports for tag 'headers': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/43905 [headers] [patch] kqueues: EV_SET(kevp++, ...) is non- o kern/44365 [headers] [patch] introduce ulong and unchar types o kern/45793 [headers] [patch] invalid media subtype aliases in if_ o kern/68081 [headers] [patch] sys/time.h (lint fix) o kern/74159 [headers] [patch] fix warnings concerned with header f o kern/84981 [headers] [patch] header protection for o kern/42065 [kernel] [patch] kern.ps_showallprocs has no effect on o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o kern/43577 [kernel] [patch] feature request: new kernel option SH o kern/48471 pjd [kernel] [patch] new feature: private IPC for every ja o kern/50526 [kernel] [patch] update to #! line termination s kern/50827 [kernel] [patch] new feature: add sane record locking o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o kern/57722 [kernel] [patch] uidinfo list corruption o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o o kern/61497 ups [kernel] [patch] __elfN(map_insert) bug o kern/64196 [kernel] [patch] remove the arbitrary MAXSHELLCMDLEN o kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o kern/69064 [kernel] [patch] No multiple ip4/6's could assigned to o sparc/72998 sparc64 [kernel] [patch] set_mcontext() change syscalls parame p kern/74386 emaste [kernel] [patch] Killing watchdogd does not shutdown w o kern/78474 [kernel] [patch] swapped out procs not brought in imme s kern/79339 [kernel] [patch] Kernel time code sync with improvemen o kern/81588 phk [kernel] [patch] Devices with SI_CHEAPCLONE flag don't o kern/81943 des [kernel] [patch] _assert_sbuf_integrity causes panic f p kern/82682 rwatson [kernel] "Accounting resumed" while disk fills up due o kern/83192 jhb [kernel] [patch] Kernel allows processes to run 1 seco p kern/84684 truckman [kernel] [patch] Kernel panic in kern_proc.c p kern/85176 des [kernel] [patch] optimization of fdalloc o kern/85651 [kernel] [patch] debugging code to show entries in eve o kern/85657 [kernel] [patch] capture and expose per-CPU time accou o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/86336 rwatson [kernel] LOR in kern/uipc_usrreq.c and kern/kern_descr o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o kern/88336 [kernel] [patch] setkey(8) -D fails to report all SAs o threa/89262 threads [kernel] [patch] multi-threaded process hangs in kerne 37 problems total. Problem reports for tag 'kqueue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/86065 [kqueue] system reboot without sync (and can be securi 2 problems total. Problem reports for tag 'kue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/57453 [kue] [patch] if_kue hangs boot after warm boot if fir o i386/78218 usb [kue] kue not detected on Sony PCG-F370 VAIO 2 problems total. Problem reports for tag 'lge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/31102 wpaul [lge] lge + Pentium III data transmission problem o kern/78072 [lge] [patch] Potential memory leak in lge(4) 2 problems total. Problem reports for tag 'libalias': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/50310 [libalias] [patch] natd / libalias fix to allow dcc re o kern/73034 [libalias] libalias does not handle lowercase port/epr o bin/74450 [libalias] [patch] enable libalias/natd to create skip 3 problems total. Problem reports for tag 'libarchive': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/86742 kientzle [libarchive] [patch] Add archive_open_ to read from a 1 problem total. Problem reports for tag 'libc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/19406 [libc] setenv(3) allocates memory which is not freed b o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d o kern/26486 [libc] [patch] setnetgrent hangs when netgroup contain o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/32098 [libc] semctl() does not propagate permissions o kern/35506 jon [libc] innetgr() doesn't match wildcard fields in NIS- o kern/36902 [libc] [patch] proposed new format code %N for strftim o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42956 [libc] dlclose gives "invalid shared object handle" wh o stand/51209 standards [libc] [patch] new feature: add a64l()/l64a/l64a_r fun o kern/52907 phk [libc] [patch] more malloc options for debugging progr o kern/55031 [libc] getgrent() failure with large groups o kern/56720 [libc] feature request: UNICODE support in Resolver s kern/59739 [libc] rmdir(2) and mkdir(2) both return EISDIR for ar o kern/60477 deischen [libc] [patch] need thread safe gethostent() and getse o bin/60478 deischen [libc] getaddrinfo not thread safe s kern/64875 standards [libc] [patch] [feature request] add a system call: fd o kern/68690 [libc] write(2) returns wrong value when EFAULT o kern/69825 [libc] 1st group supplied to setgroups() does not take o kern/69826 [libc] 16th group has no effect when accesing file on o kern/72498 [libc] timestamp code on jailed SMP machine generates o kern/76398 [libc] stdio can lose data in the presence of signals o kern/77835 stefanf [libc] [patch] res_debug.c needs const declarators in o kern/77841 [libc] [patch] cast away const in getpublickey() o kern/78756 phantom [libc] [patch] src/lib/libc/nls/fr_FR.ISO8859-1.msg fo s kern/79048 [libc] realloc() copies data even when the size of all o kern/81987 [libc] [patch] memory leaks in libc/rpc o kern/82380 [libc] [patch] buildworld error in libc o kern/83107 delphij [libc] [patch] libc uuid_compare() doesn't work with l o bin/83914 [libc] popen() doesn't work in static threaded program p kern/84740 tjr [libc] regcomp("\254") fails o i386/85242 i386 [libc] [patch] libc contains relocation to the .text s 32 problems total. Problem reports for tag 'libc_r': S Tracker Resp. Description -------------------------------------------------------------------------------- o threa/81534 threads [libc_r] [patch] libc_r close() will fail on any fd ty 1 problem total. Problem reports for tag 'libcrypt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/75934 [libcrypt] [patch] missing blowfish functionality in p 1 problem total. Problem reports for tag 'libdisk': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/24435 qa [libdisk] changing slice type causes Auto-partition to o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk o kern/36916 qa [libdisk] DOS active partition flag lost in libdisk an 3 problems total. Problem reports for tag 'libedit': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/89180 [libedit] [patch] bug fix for libedit 1 problem total. Problem reports for tag 'libfetch': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/85185 des [libfetch] [patch] Env Parser problem in libfetch 1 problem total. Problem reports for tag 'libiconv': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/35635 [libiconv] [patch] missing dep in libiconv prevents pa s kern/76520 [libiconv] [patch] Add new kernel-side libiconv conver 2 problems total. Problem reports for tag 'libkse': S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/73413 trhodes [libkse] [patch] pthread (libkse) library is broken on 1 problem total. Problem reports for tag 'libm': S Tracker Resp. Description -------------------------------------------------------------------------------- o stand/83845 standards [libm] [patch] add log2() and log2f() support for libm o i386/85101 i386 [libm] nearbyint always returns nan 2 problems total. Problem reports for tag 'libmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/78646 [libmap] [patch] libmap should canonicalize pathnames 1 problem total. Problem reports for tag 'libpam': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/20333 des [libpam] ftp login fails on unix password when s/key a o kern/76678 rwatson [libpam] [patch] Allow pam_krb5 to authenticate no loc 2 problems total. Problem reports for tag 'libpcap': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/58529 dwmalone [libpcap] [patch] RDWR bpf in pcap. 1 problem total. Problem reports for tag 'libstand': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo 1 problem total. Problem reports for tag 'libtacplus': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/80269 [libtacplus] [patch] libtacplus tac_get_av_value will 1 problem total. Problem reports for tag 'libthr': S Tracker Resp. Description -------------------------------------------------------------------------------- o threa/85160 threads [libthr] [patch] libobjc + libpthread/libthr crash pro 1 problem total. Problem reports for tag 'libutil': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/35774 [libutil] logwtmp: Suboptimal auditing possibilities f s kern/38347 [libutil] [patch] [feature request] new library functi o kern/40127 [libutil] [patch] Add functions for PID-file handling o kern/84797 [libutil] [patch] State engine in the libutils propert p kern/88301 brooks [libutil] unable to rsh to 5.4-STABLE system (10/14/05 o kern/89181 [libutil] [patch] lib/libutil properties_read() bug wi 6 problems total. Problem reports for tag 'libz': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/89012 [libz] FreeBSD-6.0 is still using zlib-1.2.2 1 problem total. Problem reports for tag 'linux': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/23561 emulation [linux] feature request: Linux compatibility mode does o kern/26171 emulation [linux] not work Linux-emulator, but hi is work in ear o kern/29698 emulation [linux] [patch] linux ipcs doesn'work o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu s kern/42466 emulation [linux] linux: 'ipc' typ=258 not implemented o kern/45023 emulation [linux] [patch] flexlm does not run with linux-base-7, o kern/53874 emulation [linux] /usr/ports/emulators/linux_base isn't working o kern/55835 emulation [linux] [patch] Linux IPC emulation missing SETALL sys o kern/57192 emulation [linux] [hang] linux-ibm-java1.4 freeze o kern/68131 emulation [linux] [hang] java/linux-ibm-jdk14: linux ibm jdk 1.4 o kern/72920 emulation [linux]: path "prefixing" is not done on unix domain s o kern/73777 emulation [linux] [patch] linux emulation: root dir special hand o kern/77253 emulation [linux] meminfo in linprocfs returns bad value about s o kern/77710 emulation [linux] Linux page fault sigcontext information is wro o kern/85175 emulation [linux] [patch] linux emulation layer without COMPAT_4 15 problems total. Problem reports for tag 'lnc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/26547 ambrisko [lnc] [patch] problem with shared memory mode with PCn o kern/77982 [lnc] [patch] lnc0 can NOT be detected in vmware 4.5.2 o kern/81322 [lnc] [hang] lnc driver causes lockups 3 problems total. Problem reports for tag 'loader': S Tracker Resp. Description -------------------------------------------------------------------------------- s i386/39536 i386 [loader] FreeBSD default bootloader does not load from o i386/52581 i386 [loader] boot loaders reading more than one sector at o i386/62003 i386 [loader] [patch] make /boot/loader "reboot" code same o i386/63628 bms [loader] [patch] i386 master boot record to allow boot o i386/65523 i386 [loader] [patch] PXE loader malfunction in multiple PX o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX p kern/81449 jkim [loader] [patch] SMBIOS scan for loader o i386/85652 i386 [loader] [patch] deal with out-of-memory errors during 8 problems total. Problem reports for tag 'lpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting o kern/27403 [lpt] lpt driver doesn't handle flags anymore o kern/34568 [lpt] turning printer on and off hangs the computer 3 problems total. Problem reports for tag 'mac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/63096 rwatson [mac] [patch] MAC entry point for route manipulation o kern/71677 rwatson [mac] [patch] MAC Biba / IPFW panic 2 problems total. Problem reports for tag 'makedev': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/44058 [MAKEDEV] [patch] /dev/ch* is created without group wr s bin/56012 [MAKEDEV] [patch] MAKEDEV does not allow creation of t s kern/71708 [MAKEDEV] [PATCH] MAKEDEV create n+1 bpf devices 3 problems total. Problem reports for tag 'md': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/79575 [md] [patch] Fixes order of disks in 'mdconfig -l' out o kern/80136 [md] [crash] mdconfig can reboot the system o kern/81161 [md] Images mounted through mdconfig on a read-only fs o kern/89355 [md] mdconfig -t vnode filesystem mount problem 4 problems total. Problem reports for tag 'mem': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/71334 [mem] [patch] mem_range_attr_{set|get} are no longer k 1 problem total. Problem reports for tag 'mfs': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/50856 [mfs] panic if mounting /tmp as mfs with soft-updates o kern/52445 [mfs] panic when mounting floppy on MFS filesystem o kern/57195 [mfs] mount_mfs -i 512 => panic? o kern/87255 [mfs] [panic] large malloc-backed mfs crashes the syst 4 problems total. Problem reports for tag 'mii': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/76710 [mii] [patch] rgephy does not deal with status properl 1 problem total. Problem reports for tag 'mlx': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/84163 [mlx] 6.0-BETA1 mlx driver don't find any drive 1 problem total. Problem reports for tag 'mly': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/57398 scsi [mly] Current fails to install on mly(4) based RAID di 1 problem total. Problem reports for tag 'mmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/68765 [mmap] a little data can be stored beyond EOF. 1 problem total. Problem reports for tag 'modules': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/29626 [modules] loading a module that is already compiled in o kern/48758 [modules] kldunload if_{nic} can cause kernel panic o kern/48976 [modules] nwfs.ko oddity o misc/60503 [modules] small error in modules installation o kern/62502 [modules] panic under double loading vinum.ko module o o kern/64903 [modules] panic: multiple kldload of a module compiled o kern/68076 [modules] Page fault when the sequence "kldunload ucom o kern/69502 [modules] kldload will load modules that are in the st o kern/70401 darrenr [modules] Could not load ipl.ko when no INET6 in the k o kern/74549 [modules] [patch] Allow third party KLDs (eg ports) to o kern/74809 [modules] [panic] smbfs panic if multiply mounted o kern/74977 firewire [modules] dcons.ko requires KDB support o kern/76225 [modules] [patch] WITHOUT_MODULES option for sys/modul o kern/83017 [modules] snd_ich freezes system when being kldload'ed o kern/83738 [modules] kldload hwpmc.ko fails with 'link_elf: symbo o kern/84052 [modules] [hang] 5.4-STABLE - kldunload snd_ich freeze f kern/84370 pf [modules] Unload pf.ko cause page fault o kern/88659 ipfw [modules] ipfw and ip6fw do not work properly as modul o kern/88709 [modules] [panic] sysctl -a after kldunload fdc panics o kern/88823 [modules] atapicam - kernel trap 12 on loading and unl 20 problems total. Problem reports for tag 'mount': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/5362 [mount] mount incorrectly reports / as an NFS export o kern/39329 [mount] '..' at mountpoint is subject to the permissio 2 problems total. Problem reports for tag 'mouse': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o kern/89166 [mouse] jumpy mouse movement o kern/89258 [mouse] synaptic touchpad support "worse" with hw.psm. 3 problems total. Problem reports for tag 'mpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/67047 i386 [mpt] mpt driver does not recognize messages from LSI o amd64/74608 amd64 [mpt] [hang] mpt hangs 5 minutes when booting o kern/84040 [mpt] 6.0-BETA1 mpt driver not working under VMware ES 3 problems total. Problem reports for tag 'msdosfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c a kern/21807 [msdosfs] [patch] Make System attribute correspond to a kern/21808 [msdosfs] [patch] msdosfs incorrectly handles vnode lo o kern/45558 [msdosfs] mdconfig and msdosfs make fs writes hang o kern/47628 trhodes [msdosfs] [patch] msdosfs file corruption fix o kern/62762 trhodes [msdosfs] Fsync for msdos fs does not sync entries o kern/67326 [msdosfs] crash after attempt to mount write protected o kern/68719 [msdosfs] [patch] poor performance with msdosfs and US o kern/70096 [msdosfs] [patch] full msdos file system causes corrup o amd64/73322 amd64 [msdosfs] [hang] unarchiving /etc to msdosfs locks up o kern/79441 [msdosfs] problem writing on mounted msdos-fs at /mnt o amd64/84930 amd64 [msdosfs] something wrong with msdosfs on amd64 o kern/85366 [msdosfs] [patch] MSDOSFS doesn't mark volume "clean" o kern/85649 [msdosfs] [patch] allow mounting msdos files systems a o kern/86655 [msdosfs] [patch] msdosfs incorrectly handles NT 8.3 c o kern/87368 [msdosfs] fat32 is very slow 16 problems total. Problem reports for tag 'nanobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/70795 [nanobsd] [patch] misc nanobsd fixes and improvements 1 problem total. Problem reports for tag 'ncurses': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/84219 [ncurses] [patch] ncurses.h wchar_t confliction 1 problem total. Problem reports for tag 'ndis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/73224 emulation [ndis] [patch] Lock order reversal in ntoskrnl_timerca o kern/78382 wpaul [ndis] dhclient on ndis0 causes kernel panic o kern/83445 [ndis] [patch] ndis won't compile with kernel profilin o i386/86920 i386 [ndis] ifconfig: SIOCS80211: Invalid argument (regress o i386/87630 i386 [ndis] No match for NdisIMGetCurrentPacketStack o kern/88882 [ndis] ndis IF tx/rx and other problems in 6.0-R (regr o kern/88932 [ndis] ndis do not show the correct channel when assoc o kern/88937 [ndis] ifconfig ndis does not show the correct mode 8 problems total. Problem reports for tag 'net': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/12071 fanf [net] [patch] new function: large scale IP aliasing o kern/57985 rwatson [net] [patch] Missing splx in ether_output_frame (-sta s kern/68692 andre [net] [patch] Move ARP out of routing table o kern/76432 gnn [net] [patch] recursive locking in the network stack o kern/85648 [net] [patch] provide more specific default network dr 5 problems total. Problem reports for tag 'net80211': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/61415 [net80211] [patch] disable broadcast ssid if_wi and di 1 problem total. Problem reports for tag 'netatalk': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/4184 [netatalk] [patch] minor nits in sys/netatalk 1 problem total. Problem reports for tag 'netgraph': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/63863 glebius [netgraph] [patch] feature request: implement NGM_ELEC o kern/66225 [netgraph] [patch] extend ng_eiface(4) control message f kern/72933 yar [netgraph] [patch] promisc mode on vlan interface does o sparc/80410 sparc64 [netgraph] netgraph is causing crash with mpd on sparc o kern/82188 [netgraph] [patch] ng_fec interface not running after o kern/82189 [netgraph] [patch] ng_fec interface - problems with co o kern/82881 [netgraph] [panic] ng_fec(4) causes kernel panic after o kern/87421 [netgraph] [panic]: ng_ether + ng_eiface + if_bridge o kern/89417 [netgraph] ng_netflow: flow sequence error 9 problems total. Problem reports for tag 'netinet': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/52585 bms [netinet] [patch] Kernel panic with ipfw2 and syncooki p kern/60856 bms [netinet] [patch] panic: at tcp_output(), with TCPDEBU a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat o kern/68110 hsu [netinet] [patch] RFC 3522 for -HEAD o kern/72396 [netinet] [patch] Incorrect network accounting with al o kern/72440 [netinet] [patch] Not increment ifp->if_snd.ifq_drops o kern/74935 andre [netinet] [patch] TCP simultaneous open fails. o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula 8 problems total. Problem reports for tag 'netinet6': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/72217 [netinet6] [patch] Bug in calculation of the parameter 1 problem total. Problem reports for tag 'newfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/77181 [newfs] [patch] newfs -g largevalue, mkdir, panic 1 problem total. Problem reports for tag 'nfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/4012 [nfs] 2.2-RELEASE/Digital UNIX NFSv3 0 length files a kern/14712 iedowse [nfs] root has access to NFS mounted directories with s kern/17108 [nfs] SecureRPC not supported in mount_nfs command s conf/17540 [nfs] NIS host lookups cause NFS mounts to wedge at bo o kern/19909 [nfs] Problem with NFS client in 4.0-STABLE o kern/21222 [nfs] wrong behavior of concurrent mmap()s on NFS file o bin/22291 [nfs] getcwd() fails on recently-modified NFS-mounted o conf/22308 [nfs] mounting NFS during boot blocks if host map come a kern/26142 [nfs] Unlink fails on NFS mounted filesystem o kern/27232 [nfs] On NFSv3 mounted filesystems, stat returns st_bl o kern/30971 peter [nfs] NFS client modification time resolution is not h o kern/31380 [nfs] NFS rootfs mount failure message too cryptic o kern/31790 [nfs] problem with NFS and jail() o kern/32668 peter [nfs] NFS directory removal problems manifested in por o kern/33203 [nfs] "got bad cookie" errors on NFS client o kern/35669 [nfs] NFSROOT breaks without a gateway o kern/37502 [nfs] NFS client ignores mtime.tv_usec for open/close o kern/38872 [nfs] nfs code ignores possibility of MGET(M_WAIT) fai o kern/41216 [nfs] Get "NFS append race" error o kern/43474 [nfs] [patch] dhcp.* values not set in kenv by bootp c o kern/43954 [nfs] nfs-blocked process can't return or be interrupt p kern/44336 [nfs] NFSv3 client broken - security problem with attr o kern/44580 [nfs] NFS updates file access time when file is modifi o kern/48894 [nfs] Suggested improvements to the NFS read-ahead heu o kern/52936 [nfs] Huge writes to nfs exported FAT filesystems caus o kern/54383 net [nfs] [patch] NFS root configurations without dynamic a kern/57696 [nfs] NFS client readdir terminates prematurely if ren a kern/62278 iedowse [nfs] NFS server may not set eof flag when reading las p kern/64091 peadar [nfs] nfs data corruption at end of file a kern/64816 peadar [nfs] mmap and/or ftruncate does not work correctly on o kern/66611 [nfs] Crashing NFS servers (with workaround) o kern/66786 [nfs] panic: exporting msdosfs causes nfs to panic o kern/70708 [nfs] gcore/procfs not finding /proc/pid/file on repea o kern/70880 peter [nfs] 5.3 beta1 nfs problem o kern/71391 [nfs] [panic] md via NFS file + mount -t ntfs: panic: o kern/72504 [nfs] nfsd result mbufs-overruns o kern/72630 [nfs] [hang] NFS copy of large file crash/hangs 5.2.1 o kern/73740 [nfs] [panic] 5-3-R#3 panic when accessing nfs exporte o amd64/74811 amd64 [nfs] df, nfs mount, negative Avail -> 32/64-bit confu o kern/75380 [nfs] can not open("..") from top-level directory of U o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/77432 [nfs] [patch] It is not possible to load nfs4client.ko o kern/77463 [nfs] [patch] Local DoS from user-space in NFS client o kern/77902 [nfs] NFS client should use VA_UTIMES_NULL to determin o kern/77904 [nfs] NFS server should set VA_UTIMES_NULL in a v3 SET o kern/78673 [nfs] [patch] nfs client open resets attrstamp ever if o kern/78884 [nfs] [patch] nfs client cache negative lookups o kern/79208 [nfs] Deadlock or starvation doing heavy NFS writes wi o kern/79214 [nfs] iozone hurts tcp-based NFS o kern/79336 [nfs] NFS client doesn't detect file updates on Novell o kern/79700 [nfs] suspending nfs file access hangs other access to o kern/81770 [nfs] Always "NFS append race" at every NFS mount with o kern/82805 [nfs] [panic] sched_switch ched_4bsd.c:865 / nfs_inact o kern/84500 [nfs] [panic] nfsv4 memory allocation panic o kern/84673 [nfs] NFS client problem "Stale NFS file handle" o kern/84953 [nfs] NFS locking issue in RELENG_6/i386/SMP o kern/84964 [nfs] nfs4 mount doesn't handle NFS4ERR_GRACE o kern/84965 [nfs] nfs4 mount generates NFS4ERR_BAD_SEQID o kern/84968 [nfs] programs on nfs4 mounts won't execute o kern/85894 [nfs] [panic] nfs_timer / nfs_socket.c:1146 panic o kern/86319 [nfs] [feature request] support a "noac" NFS mount fla o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos o kern/87967 [nfs] [panic] Page fault panic on NFS client. o kern/88833 [nfs] NFS mounts stuck o kern/88856 [nfs] XDR/RPC breaks when sending msgs > 9000 bytes 65 problems total. Problem reports for tag 'nge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/31940 [nge] nge(4) gigabit adapter link reset and slow trans o kern/41720 [nge] if_nge_load=YES make system not bootable p kern/86618 jhb [nge] [panic] panic with ifconfig nge 3 problems total. Problem reports for tag 'nis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/17310 [nis] [patch] NIS host name resolving may loop forever o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/40215 wpaul [nis] NIS host search not terminate o kern/44578 [nis] getnetgrent fails to read NIS netgroup map o kern/45026 [nis] Can't set next password change date on NIS serve o bin/51628 [nis] ypmatch doesn't match keys in legacy NIS servers o kern/61774 [nis] nis security issue o i386/64716 i386 [nis] mv crashes FreeBSD 5.2.1-p3 o kern/71478 [nis] NIS/NFS: res_mkquery failed [4.2] o kern/71683 [nis] NIS/NFS problem [4.8] o conf/72592 [nis] NIS Domain Master fails as client of itself o kern/86693 [nis] [patch] inconsistency between getusershell.c and 12 problems total. Problem reports for tag 'ntfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o alpha/59116 alpha [ntfs] mount_ntfs of a Windows 2000-formatted fs cause o kern/71774 [ntfs] NTFS cannot "see" files on a WinXP filesystem o kern/73484 [ntfs] Kernel panic when doing `ls` from the client si o kern/73514 [ntfs] [patch] mount_ntfs: can't access to a large fil o kern/80519 [ntfs] Write capability for ntfs filesystems does not o kern/86965 [ntfs] NTFS driver returns incorrect 'number of links' 6 problems total. Problem reports for tag 'nullfs': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/28206 bp [nullfs] [patch] umapfs/umap_vfsops.c should depend on o kern/51583 [nullfs] [patch] allow to work with devices and socket o kern/59945 [nullfs] [patch] nullfs bug: reboot after panic: null_ p kern/63662 [nullfs] using read-only NULLFS leads to panic. gdb ou o kern/87906 rodrigc [nullfs] [patch] nullfs NFS exporting 5 problems total. Problem reports for tag 'nve': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85583 obrien [nve] [timeout] send errors ("device timeout") with nV o kern/88045 obrien [nve] [patch] 6.0rc1: nve0: device timeout (51) 2 problems total. Problem reports for tag 'nwfs': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/59211 [nwfs] System crashes when moving files from NWFS moun o kern/65920 [nwfs] Mounted Netware filesystem behaves strange o kern/69100 [nwfs] panic: 5.2.1p9 kernel panics when mounting nwfs 3 problems total. Problem reports for tag 'openssl': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/80074 [openssl] Bug in OpenSSL's sk_insert() causes segfault 1 problem total. Problem reports for tag 'orm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/82978 [orm] [hang] FreeBSD hangs loading orm(4) only after r 1 problem total. Problem reports for tag 'pam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/66095 [pam] template_user is broken in pam_radius o kern/83099 des [pam] pam_login_access change causes cyrus-sasl-saslau o kern/88150 des [pam] PAM does not search /usr/local/lib for modules 3 problems total. Problem reports for tag 'pccard': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/41364 imp [pccard] NewMedia "Bus Toaster" SCSI card w/ Advansys o conf/55470 [pccard] [patch] new pccard.conf entry (I-O DATA WN-B1 o kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp o kern/62098 [pccard] [patch] Bad CISTPL_VERS_1 and clash on notebo o kern/67763 [pccard] [patch] PCMCIA: MELCO manufacturer code shoul o kern/71608 [pccard] XIRCOM REM56-100 Ethernet 10/100 can't config o kern/74498 [pccard] [patch] new CIS id for Intersil WiFi, pccard o kern/75298 [pccard] [patch] add missing device id for pccard brid o kern/82464 [pccard] Sony Ericsson GC75 GPRS MODEM not recognized 9 problems total. Problem reports for tag 'pci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/59903 [pci] [patch] "pci_find_device" returns [only/at] the o kern/60982 [pci] [patch] ID for VIA 686A Power Management Unit (f o kern/65355 [pci] [patch] TC1000 serial ports need enabling o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o kern/79139 [pci] [patch] Support for more PCIe chipsets o kern/79266 [pci] [patch] RELENG_4 pci CONF1_ENABLE_MSK depend MFC 6 problems total. Problem reports for tag 'pcn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/31456 [pcn] [patch] register number definition for AMD PCnet o kern/72966 obrien [pcn] [patch] AMD PCnet/PCI Fast Ethernet driver broke 2 problems total. Problem reports for tag 'pcvt': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/26348 [pcvt] scon -s, page fault in HP mode o i386/47223 i386 [pcvt] [PATCH] pcvt(4), ESC sequences do not change co o i386/47376 i386 [pcvt] [PATCH], pcvt(4), COLOR_KERNEL_FG, 2nd characte o stand/54833 standards [pcvt] more pcvt deficits o stand/54839 standards [pcvt] pcvt deficits o bin/71623 [pcvt] [patch] cleanup of the usr.sbin/pcvt code o i386/75887 i386 [pcvt] with vt0.disabled=0 and PCVT in kernel video/ke 7 problems total. Problem reports for tag 'pecoff': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/60963 [pecoff] [patch] Win32 Applications abort on PECOFF o kern/80742 [pecoff] [patch] Local DoS in sys/compat/pecoff (+ oth 2 problems total. Problem reports for tag 'perfmon': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/24963 i386 [perfmon] perfmon(4) doesn't work on SMP systems 1 problem total. Problem reports for tag 'pf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/81042 pf [pf] [patch] /etc/pf.os doesn't match FreeBSD 5.3->5.4 o kern/82271 pf [pf] cbq scheduler cause bad latency a kern/84544 dhartmei [pf] [patch] pfvar.h: PF_QNAME_SIZE is too small for c f kern/86072 pf [pf] Packet Filter rule not working properly (with SYN o kern/86848 [pf][multicast] destroying active syncdev leads to pan o kern/88271 [pf] [patch] pf.ko from buildkernel can't log in -curr 6 problems total. Problem reports for tag 'pfil': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/73517 [pfil] pfil_hooks (ipfw,pf etc) and ipsec processing o 1 problem total. Problem reports for tag 'picobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/29725 dwmalone [picobsd] [patch] fixed segmentation fault in simple_h o bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports negative Ipkt o misc/42115 luigi [picobsd] [patch] fix build script for 4.6-STABLE 3 problems total. Problem reports for tag 'pipe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/77493 [pipe] freebsd 5.3 + bash process substitution fails d 1 problem total. Problem reports for tag 'pkg_install': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/34628 [pkg_install] [patch] pkg-routines ignore the recorded 1 problem total. Problem reports for tag 'pmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/31427 davidxu [pmap] [patch] minor incorrect code in sys/i386/i386/p o kern/71109 alc [pmap] [patch] Possible race conditions in pmap.c o i386/74327 i386 [pmap] [patch] mlock() causes physical memory leakage 3 problems total. Problem reports for tag 'powerd': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/87689 amd64 [powerd] [hang] powerd hangs SMP Opteron 244 5-STABLE 1 problem total. Problem reports for tag 'ppbus': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/17425 [ppbus] [patch] fix two small printing errors in ppbus 1 problem total. Problem reports for tag 'ppc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/74037 [ppc] ppc(4) cannot find parallel port on Toshiba M30 1 problem total. Problem reports for tag 'ppp': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/88619 brian [ppp] ppp chat auth fails ( pppoe ) o bin/89108 [ppp] Problem in PPP implementation on FreeBSD 5.4 2 problems total. Problem reports for tag 'procfs': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/19535 [procfs] [patch] procfs_rlimit tidyup 1 problem total. Problem reports for tag 'pseudofs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85137 [pseudofs] [patch] panic due to sleep with held mutex 1 problem total. Problem reports for tag 'psm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/57230 [psm] [patch] psm(4) incorrectly identifies an Intelli o i386/65528 i386 [psm] mouse cursor disapears on moving o i386/67055 i386 [psm] Mouse (wheel) detection problem on SIS748/964 ba o kern/75008 [psm] [patch] ALPS GlidePoint not recognized FreeBSD 5 o kern/80844 [psm] [patch] Increase compatibility of psm driver wit o kern/84411 philip [psm] [patch] psm drivers adds bad buttons for Synapti o i386/85072 i386 [psm] ps/2 Mouse detection failure on compaq chipset 7 problems total. Problem reports for tag 'pst': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/74153 i386 [pst] FreeBSD 5.3 cannot boot ftom pst 1 problem total. Problem reports for tag 'pty': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/60697 [pty] [patch] pseudo-tty hack versus telnet race cause 1 problem total. Problem reports for tag 'puc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/42578 [puc] [panic] using PCI serial cards (puc) in SMP mach o kern/43716 [puc] [patch] puc driver does not recognize Lava Dual- o kern/58953 [puc] [patch] detect NetMOS-based six serial port card o kern/69730 [puc] [patch] puc driver doesn't support PC-Com 8-port o kern/72352 [puc] [patch] Support for VScom PCI-100L is missing fr o kern/75132 jhb [puc] [patch] add support for the Davicom 56PDV PCI Mo o kern/82901 [puc] ECP mode fails on NetMos ppc card - "PWord not s 7 problems total. Problem reports for tag 'radeon': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/86080 amd64 [radeon] [hang] radeon DRI causes system hang on amd64 o kern/89271 [radeon][agp][hang] X.org hangs when heavily using Rad 2 problems total. Problem reports for tag 're': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/68514 [re] Realtek driver halts on oversized frames o i386/70832 i386 [re] serious problems with RealTek NIC using re0 drive o kern/76551 [re] [patch] re0: watchdog timeout o kern/80005 [re] re(4) network interface _very_ unpredictable work o kern/81019 [re] re(4) RealTek 8169S32 behaves erratically o kern/84584 [re] re(4) spends too much time in interrupt handler ( 6 problems total. Problem reports for tag 'resolver': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/74314 [resolver] DNS resolver broken under certain jail cond 1 problem total. Problem reports for tag 'rl': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/64594 glebius [rl] 5.2-CURRENT: driver 'rl' (RealTek 8129/8139 Fast o kern/69092 [rl] kernel: rl0: watchdog timeout o i386/74966 i386 [rl] Realtek driver seems to misinterpret some packets o kern/75312 [rl] Built-in RTL8281BL on Asus Pundit AB P2800 is not o kern/76081 [rl] [patch] Add support for CardBUS NIC FNW3603TX o i386/76948 i386 [rl] Slow network with rl0 6 problems total. Problem reports for tag 'rp': S Tracker Resp. Description -------------------------------------------------------------------------------- s i386/28975 mjacob [rp] RocketPort problems o kern/44202 [rp] [patch] -stable rp driver does not work with mult 2 problems total. Problem reports for tag 'rpc': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/56461 [rpc] FreeBSD client rpc.lockd incompatible with Linux o bin/70974 [rpc] SIGSEGV in rpc.lockd 2 problems total. Problem reports for tag 'rpc.lockd': S Tracker Resp. Description -------------------------------------------------------------------------------- f bin/30661 alfred [rpc.lockd] [patch] FreeBSD-current fails to do partia 1 problem total. Problem reports for tag 'rpcbind': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/73865 [rpcbind] [patch] NOINET6=yes in /etc/make.conf ignore 1 problem total. Problem reports for tag 'rtc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/63431 [rtc] motherboard going to suspend mode stops system c o kern/70649 [rtc] system clock slows down when heavily loaded 2 problems total. Problem reports for tag 'rtld': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/88117 [rtld] [patch] support of $ORIGIN in rtld-elf. 1 problem total. Problem reports for tag 'sched_ule': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/71421 [hang] [sched_ule] filesystem operations lockups o kern/71827 jeff [sched_ule] [panic] Running java applications causes k o kern/72560 jeff [sched_ule] [patch] small cleanup of SCHED_ULE o kern/72659 jeff [sched_ule] [patch] little bug in sched_ule interactiv o kern/73225 jeff [sched_ule] [panic] reproducable Page Fault o kern/78444 jeff [sched_ule] doesn't keep track of the sleep time of a o threa/80887 jeff [sched_ule] ULE with SMP broke libpthread/libthr on 5. o kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/86067 jeff [sched_ule] 6.0-BETA4 hangs while trying idprio 9 problems total. Problem reports for tag 'scsi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/13141 se [scsi] Multiple LUN support in NCR driver is broken. f kern/17058 mjacob [scsi] tape driver can't drive devs that can't do SCSI f kern/29318 mjacob [scsi] [patch] Exabyte 8200 needs SA_QUIRK_1FM and SA_ o kern/57469 scsi [scsi] [patch] Quirk for Conner CP3500 f kern/78868 gibbs [scsi] Adaptec 29160 fails with IBM LTO-2 drive if dis 5 problems total. Problem reports for tag 'sf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/68623 [sf] [patch] sf(4) (Adaptec StarFire) multiple problem 1 problem total. Problem reports for tag 'sio': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/2298 [sio] [patch] support for DSR/DCD swapping on serial p o kern/20410 [sio] sio support for high speed NS16550A, ST16650A an o kern/20523 bde [sio] [patch] support for PCI multiport cards for sio o kern/26261 [sio] silo overflow problem in sio driver o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o kern/51982 [sio] sio1: interrupt-level buffer overflows o kern/65278 ups [sio] [patch] kgdb debugger port initialization destro o kern/81807 [sio] Silo overflows with serial multiport cards o kern/87845 [sio] [patch] sio(4) should on probe return BUS_PROBE_ 9 problems total. Problem reports for tag 'sis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/35442 [sis] [patch] Problem transmitting runts in if_sis dri o kern/35511 [sis] sis(4) multicast filtering doesn't pass some App o kern/36517 [sis] sis driver can't map ports/memory for NetGear FA o kern/64556 [sis] if_sis short cable fix problems with NetGear FA3 o kern/77631 [sis] sis network driver broken in 5.3 o amd64/78848 amd64 [sis] sis driver on FreeBSD 5.x does not work on amd64 o kern/83807 [sis] [patch] if_sis: Wake On Lan support for FreeBSD 7 problems total. Problem reports for tag 'sk': S Tracker Resp. Description -------------------------------------------------------------------------------- f i386/52556 remko [sk] Syskonnect SK9843SX, sk driver, MII not detected s kern/65817 [sk] [panic] kernel panic with GENERIC 5.2.1 and SysKo o i386/67818 bz [sk] driver watchdog timeout issue on asus p4p800 moth f i386/72378 remko [sk] NFS hangs in 5.3-BETA7 [3Com gbit card] o kern/72997 [sk] Network performance down [6-CURRENT] p kern/79998 yar [sk] [patch] Give sk(4) VLAN MTU capabilities 6 problems total. Problem reports for tag 'smbfs': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/36038 bp [smbfs] sendfile(2) on smbfs fails, exposes kernel mem o kern/36566 [smbfs] System reboot with dead smb mount and umount o kern/39043 [smbfs] Corrupted files on a FAT32 partition o kern/42652 [smbfs] error deleting r/o (by windows) files on smbfs o kern/46017 [smbfs] smb mounts break /etc/periodic/weekly/310.loca o kern/53987 [smbfs] smbfs can't access to files with symbol © in n o kern/55617 [smbfs] Accessing an nsmb-mounted drive via a smb expo o kern/61503 [smbfs] mount_smbfs does not work as non-root o kern/62746 tjr [smbfs] SMBFS and vfs.usermount. User cannot unmount o kern/65901 [smbfs] smbfs fails fsx write/truncate-down/truncate-u o kern/77958 [smbfs] can't delete read-only files via smbfs o kern/78953 bp [smbfs] smbfs getdirentries() failure causes CVS to fa o kern/80088 [smbfs] Incorrect file time setting on NTFS mounted vi o kern/80469 [smbfs] mount_smbfs causes freebsd to reboot o kern/85042 [smbfs] mount_smbfs: can't get handle to requester (no o kern/85326 [smbfs] [panic] saving a file via samba to an overquot o kern/87859 [smbfs] System reboot while umount smbfs. o kern/88266 [smbfs] smbfs does not implement UIO_NOCOPY and sendfi o kern/88657 [smbfs] windows client hang when browsing a samba shar 19 problems total. Problem reports for tag 'smp': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/36943 i386 [smp] [hang] reboot hangs on Tyan Thunder K7 with SMP o kern/67830 [smp] [patch] CPU affinity problem with forked child p o kern/74319 [smp] system reboots after few hours (5.3) o kern/77537 [smp] [hang] Conditional breakpoints hang on SMP machi o i386/81311 i386 [smp] [hang] Athlon MP SMP + 3ware + em0 = deadlock, n o kern/83406 [smp] em/bge drivers: severe performance loss under SM o amd64/87258 amd64 [smp] [boot] cannot boot with SMP and Areca ARC-1160 r o amd64/87305 amd64 [smp] Dual Opteron / FreeBSD 5 & 6 / powerd results in 8 problems total. Problem reports for tag 'snd_csa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/16879 tanimura [snd_csa] csa sound drivers seem to be using shared ir o kern/23546 tanimura [snd_csa] [patch] csa DMA-interrupt problem 2 problems total. Problem reports for tag 'snd_ich': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/88687 multimedia [snd_ich] snd_ich locks up machine 1 problem total. Problem reports for tag 'snd_mss': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83697 [snd_mss] [patch] support, docs added for full-duplex, 1 problem total. Problem reports for tag 'snd_sb16': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/80147 multimedia [snd_sb16] [patch] panic with the vibra16x when trying 1 problem total. Problem reports for tag 'snp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/47359 dd [snp] [panic] panic after kldunload snp 1 problem total. Problem reports for tag 'socket': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/21998 green [socket] [patch] ident only for outgoing connections o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ 2 problems total. Problem reports for tag 'sound': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/17542 greid [sound] random static with GUS PnP o kern/20297 multimedia [sound] [patch] Joystick is not enabled with es1370 ba s kern/21384 greid [sound] pcm driver has static in recorded audio f kern/25386 multimedia [sound] Incorrect mixer registers (line & synth) in ne f kern/26454 multimedia [sound] mixer volume settings on Maestro-2E (Diamond M f kern/29067 multimedia [sound] Yamaha OPL3Sa2 pcm/pnp stops playing f kern/29312 multimedia [sound] Using mixer on pcm misbehaves with onboard Aud f kern/31521 multimedia [sound] pcm0 plays too fast on Intel 82801BA (ICH2) f kern/35351 multimedia [sound] emu10k1: no posibility to record sound. Kernel o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. f kern/37657 multimedia [sound] /dev/dsp and /dev/audio skip the first 3200 - f kern/40122 multimedia [sound] Device pcm stopps booting Kernel 4.6 o kern/40132 multimedia [sound] [patch] enabling the joystick interface on es1 f kern/40927 multimedia [sound] Acer Labs M5451 dies with pcm:play:0 play inte f kern/41743 multimedia [sound] No sound from SiS630s controller f kern/42173 multimedia [sound] Sony VAIO FXA 53 (or FXA 679 in Mexico) hangs f kern/42564 multimedia [sound] record bug with emu10k1 driver f kern/42638 multimedia [sound] CS4326/4327 (MSS) buggy output playing 11025 x f kern/47243 multimedia [sound] Onboard CMedia CMI8738 playback noise f kern/47352 multimedia [sound] pcm/ac'97, dsp device busy o kern/48338 multimedia [sound] pcm audio driver hogs /dev/dsp?.? o kern/51145 multimedia [sound] Audio Slows during Heavy I/O o kern/53417 multimedia [sound] Bad Recordings on AC97 onboard audio system (5 o kern/54049 multimedia [sound] Sound driver reports device busy and shows non o kern/54078 multimedia [sound] Sound Plays ~10% Slow [4.8] f kern/57487 multimedia [sound] [patch] Sound stops working on my Thinkpad 560 o kern/59208 matk [sound] [patch] reduce pops and crackles and fix selec o kern/60599 multimedia [sound] [partial patch] No sound for ATI TV Wonder (st o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I o kern/60737 multimedia [sound] Sound card Turtle Beach Santa Cruz not working o kern/60761 multimedia [sound] pcm performance on emu10k1 driver o kern/62862 multimedia [sound] [patch] fix pcm vchans related crash o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o o kern/64040 multimedia [sound] crackling sound on 5.2.1-RELEASE with ESS 1868 o kern/66422 multimedia [sound] [patch] no sound on modern Sony Vaio (PCG-TR*) o kern/66642 multimedia [sound] pcm0: play: 0: play interrupt timeout, channel o kern/68122 multimedia [sound] Device busy (/dev/dsp)- insane, nothing using o kern/68515 multimedia [sound] sound card noise (ES1938, 5.0) o kern/68665 multimedia [sound] pcm doesn't detect Realtek ac97 onboard audio, a kern/69283 multimedia [sound] Via 8233 driver records at half speed in 'mono s kern/70852 multimedia [sound] via82xx PCM driver does not enable S/P-DIF out p kern/71317 sanpei [sound] [patch] Add nForce2 sound support for MSI K7N2 p kern/71726 sanpei [sound] [patch] nForce3 250(CK8S) audio support for sn o kern/72218 multimedia [sound] audio recording broken with emu10k1 on 5.3-bet o kern/72221 multimedia [sound] emu10k1 stereo channels are reversed (5.3-beta f kern/72439 multimedia [sound] Sound not functioning for VIA_8233 chipset fro o kern/72887 multimedia [sound] emu10k1: sound lag o kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible o kern/73098 multimedia [sound] Scan rate of sound card shifts when vchans > f kern/73987 multimedia [sound] Nforce2 MB sound problem o i386/74191 multimedia [sound] Notebook PC2001 Compliant AC97 audio works for o kern/75316 multimedia [sound] [patch] Enable to select a recording sound sou o kern/75687 multimedia [sound] [patch] No sound on PC which is implemented ac o kern/75894 multimedia [sound] AD1981 not probing (shuttle ST62K) o kern/75969 multimedia [sound] [patch] Support for Sigmatel STAC9766/67 codec o kern/76918 multimedia [sound] ATI AD1981 AC'97 Audio Controller not supporte o kern/79427 multimedia [sound] No sound on Compaq Armada 100S laptop's ac97 c o kern/79498 multimedia [sound] sndfile-play (and many other players) cut play o kern/79678 multimedia [sound] sound works except recording from any source o kern/79905 multimedia [sound] sis7018 sound module problem o kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: interrupt sto f kern/80041 multimedia [sound] snd_via8233 does not support VIA8233A Chipset o kern/80151 multimedia [sound] [patch] Missing ESS ES1688 PCI-ID o kern/80152 multimedia [sound] [patch] SIMPLEX flag is not set properly in so o kern/80234 multimedia [sound] [patch] add entry for Analog Devices AD1986 AC o kern/80465 multimedia [sound] pcm0:record:0: record interrupt timeout (Acer o kern/80824 multimedia [sound] kldunload can't unload sound.ko o kern/81013 multimedia [sound] [patch] Intel ICH3 sound chip reverts to 48KHz o kern/81146 multimedia [sound] Sound isn't working AT ALL for Sis7012 onboard o kern/81170 multimedia [sound] /dev/mixer misbehavior with ensoniq 1371 o kern/81599 multimedia [sound] Via VT1612A Audio not working well o kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work. o kern/84311 multimedia [sound] 82801FB/FR/FW/FRW Intel High Definition Audio o kern/84471 multimedia [sound] [patch] no sound ICH4 (Analog Devices AD1981B o kern/84507 multimedia [sound] fm801: Not every card supports variable rate o kern/85964 multimedia [sound] Can't play 24 bit audio (Audigy 2 and others) o kern/86536 multimedia [sound] /dev/mixer has no devices (still) o kern/86557 multimedia [sound] Sound Card Volume isn't adjustable -- Intel IC o kern/86747 multimedia [sound] snd_ich and snd_driver .ko's strongly load CPU o kern/87371 multimedia [sound] [panic] Force unload snd_es137x cause panic. o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup o kern/88820 multimedia [sound] Erratic recognition of VIA 8285 sound card by o kern/89046 multimedia [sound] [patch] pchan-related sound corruption in ESS o kern/89224 multimedia [sound] [panic] kernel panic after kldunload snd_maest 84 problems total. Problem reports for tag 'speaker': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/70610 i386 [speaker] [patch] spkr(4): hardcoded assumption HZ == 1 problem total. Problem reports for tag 'sym': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/27059 scsi [sym] SCSI subsystem hangs under heavy load on (Server o kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load o kern/73289 [sym] Interrupt storm on sym0 o i386/88315 i386 [sym] [hang] Symbios/LSI-HBA (SYM83C895) hangs 4 problems total. Problem reports for tag 'syscons': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/15436 [syscons] syscons extension: "propellers" o kern/31890 [syscons] [patch] new syscons font o kern/32480 [syscons] Missing graphic characters in syscons font i o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/46973 [syscons] [patch] syscons virtual terminals switching o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken p kern/71142 delphij [syscons] [patch] add vesa [1024x768] mode support o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o kern/72728 brooks [syscons] [patch] keyboard debug and reboot qualificat 9 problems total. Problem reports for tag 'sysctl': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/18154 i386 [sysctl] [patch] Add cpu class and features flags sysc f kern/31490 [sysctl] [patch] Panic in sysctl_sysctl_next_ls on emp o kern/39681 [sysctl] [patch] add hidden kernel boot tunables to sy o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o i386/73921 i386 [sysctl] [patch] sysctlbyname for machdep.tsc_freq doe 5 problems total. Problem reports for tag 'sysinstall': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/4646 qa [sysinstall] can't fixit with an NFS-mounted CD s bin/7232 qa [sysinstall] suggestion for FreeBSD installation dialo o bin/8867 qa [sysinstall] [patch] /stand/sysinstall core dumps (sig o bin/12324 qa [sysinstall] fdisk partition editor is missing ">" fla o bin/13936 qa [sysinstall] no clear indication of how much space to o bin/14318 qa [sysinstall] sysinstall upon install has some counter- o bin/15038 qa [sysinstall] easy to not notice that selection lists m o conf/16584 qa [sysinstall] Hostname field too small during install ( o bin/16948 qa [sysinstall] sysinstall/disklabel: bad partition table o bin/17546 qa [sysinstall] sysinstall does not let you configure NIS o bin/19837 ambrisko [sysinstall] [patch] run Fix It floppy from serial por o bin/20282 qa [sysinstall] sysinstall does not recover some /etc fil o bin/20391 jhb [sysinstall] sysinstall should check debug.boothowto s o bin/20908 qa [sysinstall] /stand/sysinstall too limited in selectio o conf/21994 qa [sysinstall] Config of Anonftp (at install) always cre o bin/23098 qa [sysinstall] [patch] if installing on a serial console a bin/23402 qa [sysinstall] upgrade ought to check partition sizes o bin/24907 qa [sysinstall] Options screen at MenuMedia menu problem o bin/26897 qa [sysinstall] 4.3R sysinstall fails to create swap part o bin/26919 qa [sysinstall] fdisk should ONLY set one bootable flag o bin/27216 qa [sysinstall] can not get to shell prompt from serial c o bin/27483 qa [sysinstall] [patch] make sysinstall ask for the keyma o bin/27872 qa [sysinstall] "Load Config" hangs Compaq DL360 when use a bin/28081 qa [sysinstall] /stand/sysinstall errs out if /cdrom/ alr o bin/29375 qa [sysinstall] disk editor gets confused by slices that o bin/29893 qa [sysinstall] suggestions for 4.4 sysinstall o bin/30517 qa [sysinstall] using sysinstall with install.cfg has no o bin/30837 qa [sysinstall] sysinstall doesn't set the schg flag on t o bin/31363 qa [sysinstall] "partition editor" silently corrects part f bin/32144 qa [sysinstall] unattended install with sysinstall doesn' o bin/32288 qa [sysinstall] After install: /etc/rc complains if crypt a bin/32375 qa [sysinstall] sysinstall doesn't respect User generated o bin/33370 qa [sysinstall] post-configuration issue o bin/35400 qa [sysinstall] sysinstall could improve manipulation of o bin/35925 qa [sysinstall] fixit floppy cannot be mounted on USB dri a bin/35985 qa [sysinstall] swap double mount o bin/36118 qa [sysinstall] 4.5 Upgrade says it won't touch /usr/src, o bin/36508 qa [sysinstall] installation floppy bug (4.5) o bin/36911 qa [sysinstall] installation floppies miss autoload file o bin/37160 qa [sysinstall] coredumps when trying to load package dat o bin/37710 qa [sysinstall] LAN interface in wrong state after attemp o bin/38055 qa [sysinstall] Groups (creation) item should be before U o bin/38056 qa [sysinstall] User (creation)'s "Member groups" item sh o bin/38057 qa [sysinstall] "install" document doesn't display correc o bin/38478 qa [sysinstall] In Choose Distributions screen, it's diff o bin/38480 qa [sysinstall] sysinstall should prompt for normal users o bin/38582 qa [sysinstall] sysinstall sets newfs flag after changing o bin/38583 qa [sysinstall] sysinstall installs crypto sources when / o bin/38609 qa [sysinstall] sysinstall should know the size of the va o bin/38610 qa [sysinstall] should be able to mount ISO images on DOS o bin/38854 qa [sysinstall] resetting during setup causes the target o bin/39360 qa [sysinstall] if linux emu is added as a dependency (an o bin/39574 qa [sysinstall] error mounting /dev/acd0c on /dist: No su o bin/40260 qa [sysinstall] hang when detecting devices (No CD/DVD de o bin/40391 imp [sysinstall] sysinstall with PCCARD<->ISA bridge gets o bin/41238 qa [sysinstall] problems with FreeBSD installation on a d o bin/41744 qa [sysinstall] cannot stop comat22 from being extracted o bin/41757 qa [sysinstall] sysinstall 4.6.x unstable o bin/41850 qa [sysinstall] sysinstall fails to create root filesyste o bin/41949 qa [sysinstall] sysinstall sorts /etc/rc.conf during netb o bin/42022 qa [sysinstall] non-interactive mode prompts when only a o bin/42162 qa [sysinstall] installation crashes, md0c filled up. o bin/42934 qa [sysinstall] installation procedure on install floppie o bin/44471 qa [sysinstall] 4.6 install writes MBR even when specifie o bin/44915 qa [sysinstall] 'choose installation media' choose CD-ROM o bin/45254 qa [sysinstall] [patch] sysinstall installs things it sho o bin/45565 qa [sysinstall] write error, filesystem full o bin/45608 qa [sysinstall] install should config all ether devices, o bin/46235 rwatson [sysinstall] NTP servers for Finland require updating o bin/46670 qa [sysinstall] 5.0-RC2 install leaves CD drawer locked. o bin/46905 qa [sysinstall] FreeBSD 5.x cannot be installed from mult o bin/47204 qa [sysinstall] base + XFree86 install fails -- crypto di o bin/47314 qa [sysinstall] wish: install should not require a swap p o bin/47384 qa [sysinstall] sysinstall ignores intended destination d o bin/47908 qa [sysinstall] /stand/sysinstall can't display document o bin/48341 qa [sysinstall] sysinstall deletes mbr although it should o bin/48989 qa [sysinstall] Sysinstall's partition editor gets confu o bin/52271 qa [sysinstall] sysinstall panics in machine with no hard o bin/53131 qa [sysinstall] "ALL" could not turn check BOXes ON at pa o bin/53341 qa [sysinstall] [patch] dump frequency in sysinstall is a o bin/53839 qa [sysinstall] disklabel editor fails on post-install co o bin/56952 re [sysinstall] floppy install error o bin/58008 qa [sysinstall] [patch] sysinstall postfix installation p o bin/58951 [sysinstall] some problems with 4.9-RELEASE installati o bin/59708 qa [sysinstall] [patch] add sSMTP support for Mail select o bin/60349 scottl [sysinstall] 5.2-RC1 cannot do NFS installation o bin/60350 qa [sysinstall] in Choose Distributions screen, "All" doe o bin/60662 qa [sysinstall] 5.2 Anonymous FTP server out dated. o bin/61152 qa [sysinstall] installer refuses to mount USB-floppy or o bin/61264 qa [sysinstall] unable To Use VT100 Terminal Emulator (Te o kern/61438 qa [sysinstall] 5.2 nfs tasks running by default after sy o bin/61587 qa [sysinstall] [patch] installation problem, disklabel c o i386/61603 i386 [sysinstall] wrong geometry guessed o bin/61658 qa [sysinstall] 5.2R error "Add of package qt-3.2.1 abort o bin/61811 qa [sysinstall] 5.2 release no resolv.conf created after o bin/61890 qa [sysinstall] fdisk(8) uses incorrect calculations for o bin/61937 qa [sysinstall] cannot install 5.2-REL via serial console o bin/62367 qa [sysinstall] 5.2.1-RC installation problems o bin/62375 qa [sysinstall] sysinstall core dump o bin/62702 qa [sysinstall] backup of /etc and /root during sysinstal o bin/62711 qa [sysinstall] installation: "Insert Next CD" Prompt is o bin/62833 qa [sysinstall] can't install: integer divide fault o bin/65546 qa [sysinstall] 4.10-BETA fails to install from NFS o bin/65774 qa [sysinstall] cannot run repair disk when booted from U o i386/66350 qa [sysinstall] sysinstall creates a partition of subtype o bin/66950 qa [sysinstall] upgrading to 4.10-RC3: package conflicts o bin/68047 [sysinstall] unattended install of FreeBSD 5.2.1 does o bin/69942 [sysinstall] sysinstall changes /etc/rc.conf after ins o bin/69986 qa [sysinstall] [patch] no job control in fixit shell on o bin/70002 qa [sysinstall] fails to locate FTP dirs if the OS has pa o bin/71323 qa [sysinstall] FTP download from floppy boot crashes wit o bin/72232 qa [sysinstall] Installer installs gui-enabled cvsup o bin/72895 qa [sysinstall] Sysinstall generates invalid partition ta o sparc/72962 sparc64 [sysinstall] Sysinstall panics on sparc64 if /dev/cd0 o bin/73410 [sysinstall] Sysinstall could not allocate disklabel o bin/73511 qa [sysinstall] SCSI drive install failure - RC2 o bin/73617 qa [sysinstall] fdisk editor unmarks active partition o bin/74406 qa [sysinstall] sysinstall accepts but discards media opt o bin/78964 qa [sysinstall] can not write labels to hdd on instalatio o kern/79621 qa [sysinstall] sysinstall does not create a device when o bin/79910 qa [sysinstall] Cannot escape from failed port/package in o bin/80117 qa [sysinstall] [patch] smbfs install option for sysinsta o bin/81323 qa [sysinstall] Error in installation packages "write fai p bin/82030 simon [sysinstall] Choosing an alternate default MTA o bin/83080 qa [sysinstall] DHCP configuration fails while installing s bin/84084 qa [sysinstall] FreeBSD 4.11-R won't install to 4th part o bin/84208 qa [sysinstall] "Leave the MBR untouched" option not work f bin/84667 qa [sysinstall] annoying installation problem o bin/84668 qa [sysinstall] ssh and sysinstall problem o bin/85367 qa [sysinstall] [patch] fix package categories in index.c o bin/86454 qa [sysinstall] sysinstall terminates with signal 10 if I o bin/86600 qa [sysinstall] Sysinstall boot manager screen is mislead o bin/86665 qa [sysinstall] sysinstall binary upgrade clobbers named. o bin/86859 qa [sysinstall] Installer should ask about Linux earlier o bin/88826 qa [sysinstall] sysinstall infinity wait for da0 o bin/89144 [sysinstall] failed to install 2 packages on 6.0 disk 136 problems total. Problem reports for tag 'sysv': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/75541 [sysv] [patch] Forgotten tunables for sysvmsg module 1 problem total. Problem reports for tag 'threads': S Tracker Resp. Description -------------------------------------------------------------------------------- o threa/39922 threads [threads] [patch] Threaded applications executed with 1 problem total. Problem reports for tag 'ti': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/40516 [ti] [patch] ti driver has no baudrate set o amd64/63188 amd64 [ti] ti(4) broken on amd64 2 problems total. Problem reports for tag 'twe': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/50201 [twe] 3ware RAID 5 resulting in data corruption o kern/61669 [twe] writing to 3ware escalade spends 90% of cpu in s o kern/66185 [twe] twe driver generates gratuitous warning on shutd o kern/70360 [twe] Random lock-ups with 3ware RAID 5 under FreeBSD o kern/72906 [twe] twe0 idefinite wait buffer 5 problems total. Problem reports for tag 'txp': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/62753 obrien [txp] [panic] txp(4) panics on amd4 1 problem total. Problem reports for tag 'ucom': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/83977 usb [ucom] [panic] ucom1: open bulk out error (addr 2): IN o kern/86763 [ucom] kernel: ucom0: ucomwritecb: IOERROR 2 problems total. Problem reports for tag 'udav': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/80776 usb [udav] UDAV device driver shouldn't use usb_add_task 1 problem total. Problem reports for tag 'udf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/65300 [udf] Can't use sendfile(2) to download files in UDF D o kern/77234 [udf] [patch] corrupted data is read from UDF filesyst o kern/78987 scottl [udf] [patch] udf fs: readdir returns error when it sh o kern/84983 scottl [udf] [patch] udf filesystem: stat-ting files could ra 4 problems total. Problem reports for tag 'ufs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/26323 [ufs] [patch] Quota system creates zero-length files o kern/33940 [ufs] [patch] quotactl allows compromise gid-quotas o kern/48393 mckusick [ufs] ufs2 snapshot code bugs o kern/58373 mckusick [ufs] ufs inconsistency between 4.9-RC and 5.1 o amd64/89202 amd64 [ufs] [panic] Kernel crash when accessing filesystem w 5 problems total. Problem reports for tag 'ugen': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/53025 usb [ugen] [patch] ugen does not allow O_NONBLOCK for inte o usb/56513 usb [ugen] [panic] panic in ugen w/ moused -p /dev/ugen0 o usb/62309 usb [ugen] [panic] panic: ugen(4) driver o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction o usb/81308 usb [ugen] [patch] polling a ugen(4) control endpoint caus 5 problems total. Problem reports for tag 'uhid': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/63837 usb [uhid] [patch] USB: hid_is_collection() only looks for o usb/80383 usb [uhid] [patch] Add quirk for uhid to ignore certain us o usb/85992 usb [uhid] [patch] USB stops working when trying to read f 3 problems total. Problem reports for tag 'uma': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85971 jeff [uma] [patch] minor optimization to uma 1 problem total. Problem reports for tag 'umapfs': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/74708 [umapfs] [panic] UMAPFS kernel panic 1 problem total. Problem reports for tag 'umass': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/57085 sanpei [umass] umass0 problems, with Sony Vio/USB memory stic o usb/65436 usb [umass] [patch] add quirk for PNY Attache 256MB USB 2. o i386/70028 i386 [umass] umass issue in the boot prcess on SONY Laptop o usb/71605 usb [umass] [patch] umass doesn't recognize multiple slots o usb/74358 usb [umass] unplugging at boot time an umass device crashe o usb/74690 usb [umass] [patch] support for SanDisk 8-in-1 in umass.c o usb/74771 usb [umass] mounting write-protected umass device as read/ o kern/75764 [umass] [patch] "umass0: Phase Error" - no device for o usb/76461 usb [umass] disklabel of umass(4)-CAM(4)-da(4) not used by o usb/81073 usb [umass] [patch] fix umass NO_GETMAXLUN quirk o usb/84326 usb [umass] Panic trying to connect SCSI tape drive via US o usb/89196 usb [umass] [patch] Kingston DataTraveler 2.0 doesn't like 12 problems total. Problem reports for tag 'ums': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/55555 usb [ums] system freezes with access to /dev/ums0 o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 o usb/83353 usb [ums] [patch] ums driver limits number of buttons to 7 3 problems total. Problem reports for tag 'unionfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/17819 [unionfs] Build ports on nfs & union mount panics kern a kern/27250 bp [unionfs] [patch] unionfs filesystem panics in large n o kern/27571 bp [unionfs] Changing policy of shadowing files and direc s kern/52110 green [unionfs] FS corruption when using unionfs s kern/52745 [unionfs] Fatal trap 12: page fault while in kernel mo s kern/54534 [unionfs] unionfs && mfs|md crashing machine a kern/56381 das [unionfs] panic: page fault in fifo_close() ... s kern/66066 [unionfs] panic: ufs_direnter: compact2 o kern/66152 [unionfs] laying unionfs over another unionfs mount ca o kern/66829 [unionfs] mounting fdesc union on /dev panics 4.10-pre s kern/67706 [unionfs] cvs update over a union mount slows and then o kern/73094 [unionfs] system runs out of vnodes o bin/75585 [unionfs] mount -p on unionfs results in non parsable o kern/84107 [unionfs] [panic] unionfs related panic o kern/84498 [unionfs] [hang] file system hangs when jail starts if s kern/86596 [unionfs] unionfs -b brokes file modes 16 problems total. Problem reports for tag 'ural': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/88182 [ural] wep is broken in ural(4) hostap mode 1 problem total. Problem reports for tag 'usb': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/40948 usb [usb] USB HP CDW8200 does not work o usb/41415 usb [usb] [patch] Some USB scanners cannot talk to uscanne o kern/51958 usb [usb] [patch] update for urio driver o kern/52026 usb [usb] feature request: umass driver support for InSyst o usb/56095 usb [usb] [patch] QUIRK: Apacer Pen Drive fails to work s usb/60276 usb [usb] Kernel panic when plugging in USB (umass) device o usb/61234 usb [usb] [patch] usbhidaction(1) doesn't support using an o usb/61627 usb [usb] [patch] New USB printer not supported correctly o usb/62088 usb [usb] Logitech Cordless/Optical Mouse not working o usb/63621 usb [usb] USB MemoryStick Reader stalls/crashes system o kern/65769 usb [usb] Call to tcflush(x, TCIFLUSH) stops input on usb- f kern/66547 usb [usb] Palm Tungsten T USB does not initialize correctl o usb/68412 usb [usb] [patch] QUIRK: Philips KEY013 USB MP3 player o usb/70523 usb [usb] [patch] umct sending/receiving wrong characters o usb/70942 usb [usb] Genius Wireless USB mouse: moused doesn't work c o usb/71155 usb [usb] misbehaving usb-printer hangs processes, causes o usb/71416 usb [usb] Cryptoflex e-gate USB token (ugen0) detach is no o usb/71417 usb [usb] Cryptoflex e-gate USB token (ugen0) communicatio o usb/71455 usb [usb] Slow USB umass performance of 5.3 o usb/72344 usb [usb] [patch] QUIRK: Dane-Elec zMate 512 MB USB flash o i386/72380 usb [usb] USB does not work [dual Celeron Abit] o usb/73056 usb [usb] Sun Microsystems Type 6 USB mouse not working in o kern/73388 brooks [usb] usb-keyboard stops working o usb/73553 brooks [usb] Microsoft USB Internet Keyboard not recongized o usb/74609 usb [usb] [patch] allowing cdma modems to work at full spe o usb/74849 usb [usb] [patch] Samsung SPH-i500 does not attach properl o usb/74880 usb [usb] [patch] Samsung N400 cellphone/acm fails to atac o usb/75970 usb [usb] [patch] support for Sandisk Cruzer Micro 128MB U o usb/79164 usb [usb] [patch] QUIRK: Qware BeatZkey! Pro USB mp3 playe o usb/79649 usb [usb] [patch] quirk: Gembird MP3 player o usb/79656 usb [usb] RHSC interrupts lost o usb/79722 usb [usb] wrong alignments in ehci.h o usb/79723 usb [usb] prepare for high speed isochronous transfers o usb/79725 usb [usb] [patch] USB device speed is not double-checked o usb/80487 usb [usb] [patch] quirk: United MP 5512 Portable MP3 Playe o usb/82350 usb [usb] null pointer dereference in USB stack o usb/83504 usb [usb] SpeedTouch USB stop working on recent current (a o usb/83677 usb [usb] usb controller not detected o usb/84336 usb [usb] [reboot] instant system reboot when unmounting a o usb/86767 usb [usb] bogus "slice starts beyond end of the disk:..." 40 problems total. Problem reports for tag 'usbdevs': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/70362 sanpei [usbdevs] [patch] LaCie 160GB USB drive f usb/70835 sanpei [usbdevs] [patch] scsi_da does not recognize SANDISK C 2 problems total. Problem reports for tag 'uscanner': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/32652 usb [uscanner] [patch] A new ioctl to uscanner o kern/65428 [uscanner] [panic] uscanner(4)-related repeatable kern o usb/86094 usb [uscanner] [patch] Support for Epson 2480 scanner o usb/87395 usb [uscanner] [patch] Adding support for Canon CanoScan D 4 problems total. Problem reports for tag 'vfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/55297 [vfs] [panic] kernel panic after running XFree86 o kern/68459 [vfs] [patch] Patches to mknod(2) behave more like Lin o kern/74976 [vfs] [panic] 5.3-STABLE: vn_finished_write triggered o kern/78434 [vfs] [patch] vfs_mount: -current does not cdboot 4 problems total. Problem reports for tag 'vga': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/64114 [vga] [patch] bad vertical refresh for console using R 1 problem total. Problem reports for tag 'vge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/81644 [vge] vge(4) does not work properly when loaded as a K o kern/82497 [vge] vge(4) on AMD64 only works when loaded late, not o amd64/87316 amd64 [vge] "vge0 attach returned 6" on FreeBSD 6.0-RC1 amd6 3 problems total. Problem reports for tag 'vinum': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/37675 le [vinum] Page fault when newfs'ing a vinum volume while o kern/40001 le [vinum] vinum showing -2 drives after removing several o kern/41740 le [vinum] page fault while rebuilding; inability to hot- f kern/47452 le [vinum] df(1) reports filesystem empty when it isn't o conf/47566 le [vinum] [patch] add vinum status verification to perio f kern/52916 le [vinum] vinum causes panic after start/stop/... cycle, o bin/55366 le [vinum] [patch] vinum(8) makes /dev/vinum with wrong o o kern/55934 le [vinum] [workaround] kernel panics while restoring int o kern/57961 le [vinum] kmem_malloc(65536): kmem_map too small: 202833 f kern/58391 le [vinum] Trap 12 with heavy disk load on ide vinum mirr o kern/58752 le [vinum] vinum panics on create/resetconfig o kern/59303 le [vinum] vinum crashes kernel if concurrent reviving at o kern/59878 le [vinum] vinum panics 5.1 system o kern/62228 le [vinum] Kernel improperly identifies partition size of o kern/68991 le [vinum] vinum doesn't care which type a partition is o kern/74971 le [vinum] vinum creates (shows) incorrect volume (size) o amd64/75043 le [vinum] [panic] booting from mirrored vinum drive on a o kern/75211 le [vinum] vinum writes several errors to stdout. o kern/76237 le [vinum] [panic] ufs_baddir, possible link to reviving o kern/76792 le [vinum] vinum not working with aac disk devices o kern/79035 le [vinum] gvinum unable to create a striped set of mirro o kern/81282 le [vinum] [panic] Check parity with gvinum causes panic f kern/85329 [vinum] vinum dumpconfig destroys openmask and let Fre 23 problems total. Problem reports for tag 'vm': S Tracker Resp. Description -------------------------------------------------------------------------------- s i386/22944 tegge [vm] [patch] isa_dmainit fails on machines with 512MB o kern/32659 [vm] [patch] vm and vnode leak with vm.swap_idle_enabl o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o i386/42766 i386 [vm] [patch] proposal to perform reboot via jump to BI o kern/70587 [vm] [patch] NULL pointer dereference in vm_pageout_sc o kern/71258 [vm] [patch] anonymous mmappings not always page align o kern/71792 [vm] [patch] Wrong/missing 'goto' target label in cont o kern/78179 [vm] [patch] bus_dmamem_alloc() with BUS_DMA_NOWAIT ca o kern/78946 [vm] vm_pageout_flush: partially invalid page 9 problems total. Problem reports for tag 'vn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/44744 [vn] [patch] VN devices can hang system FreeBSD v4.5 1 problem total. Problem reports for tag 'vpd': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/67011 mdodd [vpd] [patch] MFC of vpd driver for IBM xSeries etc 1 problem total. Problem reports for tag 'vr': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/41138 [vr] vr0 locks up on one hub, OK on another o kern/78388 [vr] vr network drivers cause watchdog timeout o kern/87506 [vr] [patch] Fix alias support on vr interfaces o kern/89305 [vr] [patch] D-Link NIC with VIA Rhine II, lost of Net 4 problems total. Problem reports for tag 'wi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/39928 imp [wi] wi0 timeouts and hangs the system while sending d o kern/43625 imp [wi] wi(4) driver hangs after long data transfers o kern/59183 imp [wi] wi problems with wi_cmd o kern/69019 [wi] wlan stalling after 2-3 hrs of moderate traffic o i386/69722 i386 [wi] wi0: init failed, Lucent Technologies WaveLAN/IEE o kern/72924 [wi] 4.10 wi driver timeout problem with Global Sun Te o kern/73871 [wi] Intersil Prism wireless wi0 locks up, "busy bit w o kern/74495 [wi] wi(4) wlan driver device freeze (5.3-STABLE) o kern/75254 [wi] [patch] PRISM3-based adapter ZCOM XI330 doesn't w o kern/75823 [wi] wi0 interface self-destructs after a couple hours o kern/77913 [wi] [patch] Add the APDL-325 WLAN pccard to wi(4) s kern/79323 [wi] authmod setup with ifconfig on dlink wlan card fa 12 problems total. Problem reports for tag 'wlan': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/88793 [wlan] wlan(4) broken, sends corrupted packets with iw 1 problem total. Problem reports for tag 'xe': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/78657 i386 [xe] [hang] error installing 5.3-RELEASE due to Compaq o kern/85266 [xe] [patch] xe(4) driver does not recognise Xircom XE o kern/85477 [xe] [patch] fix driver message in if_xe.c 3 problems total. Problem reports for tag 'xl': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/58888 [xl] 4.9-RELEASE installation fails (xl causes kernel o kern/66564 [xl] 3c920-MV00 PHY detection problem o kern/76207 [xl] [patch] Null pointer dereference in xl_detach() o kern/77239 [xl] 3Com 3CXFEM656C does not seem to be supported by o kern/78791 [xl] xl(4) input errors and speed problem o kern/79160 [xl] [patch] xl_detach cause panic o kern/83809 [xl] Problem with mutex or lock and if_xl. o kern/87114 [xl] xl0 : watchdog timeout on 6.0 (regression) 8 problems total. Problem reports for tag 'zlib': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl 1 problem total. From linimon at FreeBSD.org Tue Nov 22 16:34:37 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Tue Nov 22 16:34:56 2005 Subject: kern/89440: Re: i386/71470: [hang] Asus P4P800-E Promise 20378 RAID Message-ID: <200511230034.jAN0YaCq034212@freefall.freebsd.org> Old Synopsis: Re:Problem Report i386/71470 : [hang] Asus P4P800-E Promise 20378 RAID New Synopsis: Re: i386/71470: [hang] Asus P4P800-E Promise 20378 RAID State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Wed Nov 23 00:33:36 GMT 2005 State-Changed-Why: Misfiled followup to i386/71470; content migrated. I have changed the Synopsis to one that would have automatically been correctly picked up by GNATS. Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Wed Nov 23 00:33:36 GMT 2005 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=89440 From linimon at FreeBSD.org Tue Nov 22 17:37:09 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Tue Nov 22 17:37:30 2005 Subject: bin/85049: rbootd(8) spams console (regression) Message-ID: <200511230137.jAN1b7Vw042955@freefall.freebsd.org> Synopsis: rbootd(8) spams console (regression) State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Wed Nov 23 01:36:16 GMT 2005 State-Changed-Why: How soon after boot do these message start appearing? I am particularly curious about the 'firmware' message. http://www.freebsd.org/cgi/query-pr.cgi?pr=85049 From linimon at FreeBSD.org Tue Nov 22 19:05:47 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Tue Nov 22 19:06:48 2005 Subject: kern/75233: [fd] breaking fdformat /dev/fd0 resets device permissions and perhaps causes unkillable process Message-ID: <200511230303.jAN33M8D052992@freefall.freebsd.org> Synopsis: [fd] breaking fdformat /dev/fd0 resets device permissions and perhaps causes unkillable process State-Changed-From-To: open->suspended State-Changed-By: linimon State-Changed-When: Wed Nov 23 03:02:59 GMT 2005 State-Changed-Why: Mark suspended while waiting for someone to investigate this edge case. http://www.freebsd.org/cgi/query-pr.cgi?pr=75233 From linimon at FreeBSD.org Tue Nov 22 19:08:38 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Tue Nov 22 19:09:00 2005 Subject: kern/76080: [ata] [panic] "bio_completed .. greater than bio_length" panic using SONY CRX1611 CD/RW Message-ID: <200511230305.jAN35goH057884@freefall.freebsd.org> Synopsis: [ata] [panic] "bio_completed .. greater than bio_length" panic using SONY CRX1611 CD/RW State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Wed Nov 23 03:05:22 GMT 2005 State-Changed-Why: Is this still a problem on 6.0-RELEASE? http://www.freebsd.org/cgi/query-pr.cgi?pr=76080 From linimon at FreeBSD.org Tue Nov 22 19:10:33 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Tue Nov 22 19:10:45 2005 Subject: kern/77439: [ath] WAG511 NETGEAR pccard does not attach (Dell Inspiron 8000) Message-ID: <200511230307.jAN37k6m058039@freefall.freebsd.org> Synopsis: [ath] WAG511 NETGEAR pccard does not attach (Dell Inspiron 8000) State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Wed Nov 23 03:07:29 GMT 2005 State-Changed-Why: Is this still a problem in 6.0-RELEASE? http://www.freebsd.org/cgi/query-pr.cgi?pr=77439 From linimon at FreeBSD.org Tue Nov 22 19:34:29 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Tue Nov 22 19:34:40 2005 Subject: kern/85804: [panic] after chown -R from chrooted shell Message-ID: <200511230334.jAN3YMm7060850@freefall.freebsd.org> Synopsis: [panic] after chown -R from chrooted shell State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Wed Nov 23 03:33:58 GMT 2005 State-Changed-Why: Now that the release is out, is this still a problem? http://www.freebsd.org/cgi/query-pr.cgi?pr=85804 From yoichi at FreeBSD.org Tue Nov 22 20:40:33 2005 From: yoichi at FreeBSD.org (Yoichi Nakayama) Date: Tue Nov 22 20:40:45 2005 Subject: kern/79160: [xl] [patch] xl_detach cause panic Message-ID: <200511230440.jAN4eQkh073389@freefall.freebsd.org> The following reply was made to PR kern/79160; it has been noted by GNATS. From: Yoichi Nakayama To: bug-followup@FreeBSD.org Cc: yoichi@FreeBSD.org Subject: Re: kern/79160: [xl] [patch] xl_detach cause panic Date: Wed, 23 Nov 2005 13:38:53 +0900 I've updated to 7-current system yesterday, and there is no panic described in this PR. Close this PR, please. -- Yoichi NAKAYAMA From linimon at FreeBSD.org Tue Nov 22 20:43:28 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Tue Nov 22 20:43:39 2005 Subject: kern/79160: [xl] [patch] xl_detach cause panic Message-ID: <200511230443.jAN4hHSC073525@freefall.freebsd.org> Synopsis: [xl] [patch] xl_detach cause panic State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Wed Nov 23 04:42:49 GMT 2005 State-Changed-Why: Apparently fixed in -CURRENT. http://www.freebsd.org/cgi/query-pr.cgi?pr=79160 From LBaron at FreeBSDsystems.COM Tue Nov 22 20:50:13 2005 From: LBaron at FreeBSDsystems.COM (Lanny Baron) Date: Tue Nov 22 20:50:25 2005 Subject: misc/89447: Serial console speed not working properly Message-ID: <200511230449.jAN4nT03046907@www.freebsd.org> >Number: 89447 >Category: misc >Synopsis: Serial console speed not working properly >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 Nov 23 04:50:11 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Lanny Baron >Release: 6.0/AMD64 >Organization: FreeBSD Systems >Environment: FreeBSD inet1864.freebsdsystems.com 6.0-RELEASE FreeBSD 6.0-RELEASE #0: Tue Nov 22 16:29:16 PST 2005 root@inet1864.freebsdsystems.com:/usr/src/sys/amd64/compile/SMP amd64 >Description: When changing /etc/ttys line to : ttyd0 "/usr/libexec/getty 3wire.115200" dialup on secure and changing a terminal Server's line to use 115200, there is no more communication and you cannot use the redirected console. If you leave the line above in /etc/ttys as shown and change back the term server back to 9600, console redirection works again. The above situation was not this way in 5.4 et al. >How-To-Repeat: Simply setup a redirected console and change the appropriate serial terminal line in /etc/ttys so that you have a line similar to: ttyd0 "/usr/libexec/getty 3wire.115200" dialup on secure >Fix: >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Tue Nov 22 20:57:21 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Tue Nov 22 20:57:33 2005 Subject: kern/80938: [geom] gmirror: DEVFS Overflow table Message-ID: <200511230457.jAN4vL6k074254@freefall.freebsd.org> Synopsis: [geom] gmirror: DEVFS Overflow table Responsible-Changed-From-To: freebsd-bugs->freebsd-geom Responsible-Changed-By: linimon Responsible-Changed-When: Wed Nov 23 04:57:11 GMT 2005 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=80938 From jhb at freebsd.org Wed Nov 23 06:30:40 2005 From: jhb at freebsd.org (John Baldwin) Date: Wed Nov 23 06:31:13 2005 Subject: kern/70881: 5.3 beta1 kernel.generic missing from /boot/kernel/ Message-ID: <200511231430.jANEUXvS053810@freefall.freebsd.org> The following reply was made to PR kern/70881; it has been noted by GNATS. From: John Baldwin To: bug-followup@freebsd.org, fbsd_user@a1poweruser.com Cc: re@freebsd.org, brooks@freebsd.org Subject: Re: kern/70881: 5.3 beta1 kernel.generic missing from /boot/kernel/ Date: Wed, 23 Nov 2005 09:23:36 -0500 This is still true in 6.0. It could be fixed by defaulting the value of th= e=20 'KERNELS' variable in src/release/Makefile to 'GENERIC' which would result = in=20 GENERIC getting installed in /boot/GENERIC and bootable from the loader via= =20 'boot GENERIC'. However, as it is currently written, the GENERIC kernel=20 wouldn't include any modules (axeing -DNO_MODULES in the .for loop in=20 release.3 would fix this). =2D-=20 John Baldwin =A0<>< =A0http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" =A0=3D =A0http://www.FreeBSD.org From jhb at FreeBSD.org Wed Nov 23 06:31:28 2005 From: jhb at FreeBSD.org (John Baldwin) Date: Wed Nov 23 06:31:57 2005 Subject: kern/83529: partition table corruption using wdc/wd driver Message-ID: <200511231431.jANEVSgi054769@freefall.freebsd.org> Synopsis: partition table corruption using wdc/wd driver State-Changed-From-To: open->closed State-Changed-By: jhb State-Changed-When: Wed Nov 23 14:30:50 GMT 2005 State-Changed-Why: Use the ata(4) driver instead of wd(4). http://www.freebsd.org/cgi/query-pr.cgi?pr=83529 From jhb at freebsd.org Wed Nov 23 07:20:39 2005 From: jhb at freebsd.org (John Baldwin) Date: Wed Nov 23 07:20:51 2005 Subject: kern/71800: 5.3-RELEASE crash (infinite IRQ list dump) (SMP-related) Message-ID: <200511231520.jANFKVOE061165@freefall.freebsd.org> The following reply was made to PR kern/71800; it has been noted by GNATS. From: John Baldwin To: bug-followup@freebsd.org, vivek@khera.org Cc: Subject: Re: kern/71800: 5.3-RELEASE crash (infinite IRQ list dump) (SMP-related) Date: Wed, 23 Nov 2005 09:26:55 -0500 Can you test 5.4 and 6.0 to see if they exhibit the same problem? The=20 interrupt output you are seeing is from the DDB command 'show intrcnt', and= I=20 have no idea why that function would be called during shutdown. =2D-=20 John Baldwin =A0<>< =A0http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" =A0=3D =A0http://www.FreeBSD.org From vivek at khera.org Wed Nov 23 07:30:31 2005 From: vivek at khera.org (Vivek Khera) Date: Wed Nov 23 07:30:55 2005 Subject: kern/71800: 5.3-RELEASE crash (infinite IRQ list dump) (SMP-related) Message-ID: <200511231530.jANFUK9G061410@freefall.freebsd.org> The following reply was made to PR kern/71800; it has been noted by GNATS. From: Vivek Khera To: John Baldwin Cc: bug-followup@freebsd.org Subject: Re: kern/71800: 5.3-RELEASE crash (infinite IRQ list dump) (SMP-related) Date: Wed, 23 Nov 2005 10:23:24 -0500 On Nov 23, 2005, at 9:26 AM, John Baldwin wrote: > Can you test 5.4 and 6.0 to see if they exhibit the same problem? The > interrupt output you are seeing is from the DDB command 'show > intrcnt', and I > have no idea why that function would be called during shutdown. > > -- > John Baldwin <>< http://www.FreeBSD.org/~jhb/ > "Power Users Use the Power to Serve" = http://www.FreeBSD.org man, I forgot all about this PR.... apparently 5.4 and/or 6.0 solve the problem since I no longer see this happen. I suppose we close this PR now. From linimon at FreeBSD.org Wed Nov 23 08:20:27 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Wed Nov 23 08:21:08 2005 Subject: bin/89452: Re: bin/38168: [patch] feature request: installing curses-based versions of programs and terminfo database Message-ID: <200511231620.jANGKPps070064@freefall.freebsd.org> Old Synopsis: Problem Report bin/38168 : [patch] feature request: installing curses-based versions of programs and terminfo database New Synopsis: Re: bin/38168: [patch] feature request: installing curses-based versions of programs and terminfo database State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Wed Nov 23 16:19:19 GMT 2005 State-Changed-Why: Misfiled followup to bin/38168; content migrated. (Synopsis corrected to the format GNATS wants.) Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Wed Nov 23 16:19:19 GMT 2005 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=89452 From peter.edwards at vordel.com Wed Nov 23 10:50:37 2005 From: peter.edwards at vordel.com (Peter Edwards) Date: Wed Nov 23 10:50:57 2005 Subject: kern/87658: IO::AIO test suite loops infinitely on 5.4-RELEASE-p5 Message-ID: <200511231850.jANIobZv087839@freefall.freebsd.org> The following reply was made to PR kern/87658; it has been noted by GNATS. From: Peter Edwards To: bug-followup@FreeBSD.org, niallm@avernus.net Cc: Subject: Re: kern/87658: IO::AIO test suite loops infinitely on 5.4-RELEASE-p5 Date: Wed, 23 Nov 2005 18:48:48 +0000 There are two distinct problems here, one which causes a crash on 5.x, the other causing problems for 6.x First off, perl on 5.x is not linked with -lpthread, as a result, the threading library is in something of a muddle when it loads dynamic modules that need thread support. You can hack your way out of this with env LD_PRELOAD=/usr/lib/libpthread.so perl The second problem is that the AIO implementation creates IO stacks with tiny threads (8K), but has two local functions with 4K on-stack buffers ("readahead", and "sendfile_") which GCC appears to helpfully inline into "aio_proc", allocating more than 8K of stack space up front. This is easy enough to fix: --------8<-------- --- AIO.xs.orig Wed Nov 23 18:17:53 2005 +++ AIO.xs Mon Nov 21 20:51:47 2005 @@ -36,7 +36,7 @@ #if __ia64 # define STACKSIZE 65536 #else -# define STACKSIZE 8192 +# define STACKSIZE 16384 #endif enum { --------8<-------- I'd have thought there was enough info available to the compiler to re-use the same 4K of stack for both inlined functions, rather than allocating separate space for each, but I'm not a compiler expert. At best, it seems like a POLA violation, but it looks more like a bug to me: The compiler on FreeBSD 5.x doesn't seem to do it... This e-mail is business-confidential and may be privileged. If you are not the intended recipient, please notify us immediately and delete it. If the email does not relate to Vordel's business then it is neither from nor authorized by Vordel. Thank you. From peadar at FreeBSD.org Wed Nov 23 11:02:09 2005 From: peadar at FreeBSD.org (Peter Edwards) Date: Wed Nov 23 11:02:43 2005 Subject: kern/87658: IO::AIO test suite loops infinitely on 5.4-RELEASE-p5 Message-ID: <200511231901.jANJ1t70088626@freefall.freebsd.org> Synopsis: IO::AIO test suite loops infinitely on 5.4-RELEASE-p5 State-Changed-From-To: open->analyzed State-Changed-By: peadar State-Changed-When: Wed Nov 23 19:00:10 GMT 2005 State-Changed-Why: Problem described by previous post. http://www.freebsd.org/cgi/query-pr.cgi?pr=87658 From jhb at FreeBSD.org Wed Nov 23 11:02:31 2005 From: jhb at FreeBSD.org (John Baldwin) Date: Wed Nov 23 11:02:45 2005 Subject: kern/71800: 5.3-RELEASE crash (infinite IRQ list dump) (SMP-related) Message-ID: <200511231902.jANJ2HxL088675@freefall.freebsd.org> Synopsis: 5.3-RELEASE crash (infinite IRQ list dump) (SMP-related) State-Changed-From-To: open->closed State-Changed-By: jhb State-Changed-When: Wed Nov 23 19:01:25 GMT 2005 State-Changed-Why: Submitter reports it is fixed in 5.4 and 6.0. http://www.freebsd.org/cgi/query-pr.cgi?pr=71800 From rodrigc at FreeBSD.org Wed Nov 23 13:06:37 2005 From: rodrigc at FreeBSD.org (Craig Rodrigues) Date: Wed Nov 23 13:06:48 2005 Subject: conf/79715: MNT_NODEV should be removed from sys/mount.h Message-ID: <200511232106.jANL6TW2013219@freefall.freebsd.org> Synopsis: MNT_NODEV should be removed from sys/mount.h Responsible-Changed-From-To: freebsd-bugs->rodrigc Responsible-Changed-By: rodrigc Responsible-Changed-When: Wed Nov 23 21:05:31 GMT 2005 Responsible-Changed-Why: Taking this, since I am looking at a lot of filesystem mounting stuff. http://www.freebsd.org/cgi/query-pr.cgi?pr=79715 From gael.roualland at dial.oleane.com Wed Nov 23 13:51:16 2005 From: gael.roualland at dial.oleane.com (Gael Roualland) Date: Wed Nov 23 13:51:42 2005 Subject: bin/89472: ipfw2 no longer supports filtering IPv6-over-IPv4 on 6.0-RELEASE Message-ID: <200511232143.jANLh7x3022902@jerry.priv> >Number: 89472 >Category: bin >Synopsis: ipfw2 no longer supports filtering IPv6-over-IPv4 on 6.0-RELEASE >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 Nov 23 21:50:15 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Gael Roualland >Release: FreeBSD 6.0-RELEASE i386 >Organization: >Environment: System: FreeBSD jerry.priv 6.0-RELEASE FreeBSD 6.0-RELEASE #0: Sat Nov 19 20:48:17 CET 2005 gael@jerry:/home/cvsup/obj/home/cvsup/src/sys/JERRY i386 >Description: Before ipfw2 knows about IPv6, it was possible to filter IPv6 traffic which was tunneled in IPv4 by doing something as ipfw add allow ipv6 from a.b.c.d to me where a.b.c.d was the tunnel end. Now that ipfw2 does ipv6, such a line is interpreted as being an IPv6 rule, and is rejected since the specified IP address is not an IPv6. The alternate syntax 'allow ip from a.b.c.d to me proto ipv6' is accepted by ipfw, but does not work in the kernel since the first proto test (IPv4) does not match the extracted protocol of the packet (IPv6) >How-To-Repeat: ipfw add allow ipv6 from a.b.c.d to me >Fix: Workaround : change the "ipv6" protocol to "all", and trust the end of the tunnel... The real fix would IMHO to add a different test for the inner protocol carried by a packet in addition to the protocol packet itself. >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Wed Nov 23 14:42:11 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Wed Nov 23 14:42:41 2005 Subject: kern/89472: [ipfw] ipfw2 no longer supports filtering IPv6-over-IPv4 on 6.0-RELEASE Message-ID: <200511232242.jANMgAMs024743@freefall.freebsd.org> Synopsis: [ipfw] ipfw2 no longer supports filtering IPv6-over-IPv4 on 6.0-RELEASE Responsible-Changed-From-To: freebsd-bugs->freebsd-ipfw Responsible-Changed-By: linimon Responsible-Changed-When: Wed Nov 23 22:41:56 GMT 2005 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=89472 From robbak at gmail.com Wed Nov 23 15:11:24 2005 From: robbak at gmail.com (Robert Backhaus) Date: Wed Nov 23 15:11:36 2005 Subject: kern/76080: [ata] [panic] "bio_completed .. greater than bio_length" panic using SONY CRX1611 CD/RW In-Reply-To: <200511230305.jAN35goH057884@freefall.freebsd.org> References: <200511230305.jAN35goH057884@freefall.freebsd.org> Message-ID: On 11/23/05, Mark Linimon wrote: > Synopsis: [ata] [panic] "bio_completed .. greater than bio_length" panic using SONY CRX1611 CD/RW > > State-Changed-From-To: open->feedback > State-Changed-By: linimon > State-Changed-When: Wed Nov 23 03:05:22 GMT 2005 > State-Changed-Why: > Is this still a problem on 6.0-RELEASE? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=76080 > I don't know off hand, as I have retired that drive from active service on my 6.0 machine. I should be able to give it a shot tomorrow, time permitting. From fcreid at ourcorner.org Wed Nov 23 16:38:26 2005 From: fcreid at ourcorner.org (Frank Reid) Date: Wed Nov 23 16:49:52 2005 Subject: FW: mount_smbfs Message-ID: <20051124003824.E2CA243D58@mx1.FreeBSD.org> -----Original Message----- From: Frank Reid [mailto:fcreid@ourcorner.org] Sent: Wednesday, November 23, 2005 7:11 PM To: 'bp@freebsd.org' Subject: mount_smbfs In the most current FreeBSD 7.0-CURRENT, I am having issues connecting to a Windows Millennium share using mount_smbfs. The remote share appears to mount without an error. However, whenever I try to access the mount point on the FreeBSD host, this error is reported: RPC struct is bad The directory structure is unreadable. mount_smbfs still works fine with other Windows shares, including Windows 2000 and XP. Any idea what the problem might be? Frank Reid From rodrigc at crodrigues.org Wed Nov 23 17:43:50 2005 From: rodrigc at crodrigues.org (Craig Rodrigues) Date: Wed Nov 23 17:45:29 2005 Subject: FW: mount_smbfs In-Reply-To: <20051124003824.E2CA243D58@mx1.FreeBSD.org> References: <20051124003824.E2CA243D58@mx1.FreeBSD.org> Message-ID: <20051124014325.GA14046@crodrigues.org> On Wed, Nov 23, 2005 at 07:36:27PM -0500, Frank Reid wrote: > In the most current FreeBSD 7.0-CURRENT, I am having issues connecting to a > Windows Millennium share using mount_smbfs. The remote share appears to > mount without an error. However, whenever I try to access the mount point > on the FreeBSD host, this error is reported: > > RPC struct is bad Is this posting relevant to your problem: http://lists.freebsd.org/pipermail/freebsd-questions/2003-October/024040.html Also, using Ethereal ( http://www.ethereal.com ) to analyze the traffic between your FreeBSD and Windows Millenium machines might be useful. -- Craig Rodrigues rodrigc@crodrigues.org From fcreid at ourcorner.org Wed Nov 23 19:23:31 2005 From: fcreid at ourcorner.org (Frank Reid) Date: Wed Nov 23 19:23:43 2005 Subject: FW: mount_smbfs In-Reply-To: <20051124014325.GA14046@crodrigues.org> Message-ID: <20051124032325.D6E4D43D53@mx1.FreeBSD.org> On Wed, Nov 23, 2005 at 07:36:27PM -0500, Frank Reid wrote: > In the most current FreeBSD 7.0-CURRENT, I am having issues connecting to a > Windows Millennium share using mount_smbfs. The remote share appears to > mount without an error. However, whenever I try to access the mount point > on the FreeBSD host, this error is reported: > > RPC struct is bad > > Is this posting relevant to your problem: > > http://lists.freebsd.org/pipermail/freebsd-questions/2003-October/024040.htm l > > Also, using Ethereal ( http://www.ethereal.com ) > to analyze the traffic between your FreeBSD and Windows Millenium > machines might be useful. Thanks for the reply. Yes, I've researched all the relevant past articles describing this error. To my knowledge, Windows ME doesn't support share-level passwords. In fact, the share mounts properly and enumerates the directory from three other Linux machines also on the LAN (and the Windows machines, of course). This changed (broke) with a cvsup within the past week or so. I'm not familiar with how to use Ethereal to diagnose the problem or capture the packets, but I'll give it a try. From john at jnielsen.net Wed Nov 23 22:51:27 2005 From: john at jnielsen.net (John Nielsen) Date: Wed Nov 23 22:52:40 2005 Subject: kern/89481: Spelling error in ata-lowlevel.c Message-ID: <200511240258.jAO2wDpG098920@ns1.jnielsen.net> >Number: 89481 >Category: kern >Synopsis: Spelling error in ata-lowlevel.c >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 Nov 24 06:50:29 GMT 2005 >Closed-Date: >Last-Modified: >Originator: John Nielsen >Release: FreeBSD 4.9-RELEASE-p13-jc2 i386 >Organization: >Environment: System: FreeBSD ns1.jnielsen.net 4.9-RELEASE-p13-jc2 FreeBSD 4.9-RELEASE-p13-jc2 #9: Tue Jun 7 00:30:36 PDT 2005 user@jail16.johncompanies.com:/usr/obj/usr/src/sys/jail16 i386 >Description: "issuing" is misspelled twice in src/sys/dev/ata/ata-lowlevel.c. It appears as "issueing" (an extra 'e') on lines 99 and 142 of version 1.69.2.2 of the file (6-STABLE), and presumably in other branches as well. >How-To-Repeat: See description >Fix: >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Wed Nov 23 22:56:46 2005 From: linimon at FreeBSD.org (Mark Linimon) Date: Wed Nov 23 22:57:30 2005 Subject: kern/89481: [ata] Spelling error in ata-lowlevel.c Message-ID: <200511240656.jAO6uRmi002716@freefall.freebsd.org> Old Synopsis: Spelling error in ata-lowlevel.c New Synopsis: [ata] Spelling error in ata-lowlevel.c Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: linimon Responsible-Changed-When: Thu Nov 24 06:55:57 GMT 2005 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=89481 From bp at freebsd.org Wed Nov 23 23:18:32 2005 From: bp at freebsd.org (Boris Popov) Date: Wed Nov 23 23:18:52 2005 Subject: FW: mount_smbfs In-Reply-To: <20051124032325.D6E4D43D53@mx1.FreeBSD.org> References: <20051124014325.GA14046@crodrigues.org> <20051124032325.D6E4D43D53@mx1.FreeBSD.org> Message-ID: <20051124071828.GL6770@vertex.kz> On Wed, Nov 23, 2005 at 10:21:18PM -0500, Frank Reid wrote: > > Thanks for the reply. Yes, I've researched all the relevant past articles > describing this error. To my knowledge, Windows ME doesn't support > share-level passwords. In fact, the share mounts properly and enumerates > the directory from three other Linux machines also on the LAN (and the > Windows machines, of course). This changed (broke) with a cvsup within the > past week or so. Try to backout rev 1.16 of sys/fs/smbfs/smbfs_smb.c and tell me if this helps. This patch was heavily tested on NT-like machines but may break with w9x family. -- Boris Popov From fcreid at ourcorner.org Thu Nov 24 03:41:28 2005 From: fcreid at ourcorner.org (Frank Reid) Date: Thu Nov 24 03:41:39 2005 Subject: FW: mount_smbfs In-Reply-To: <20051124071828.GL6770@vertex.kz> Message-ID: <20051124114122.D6DB843D75@mx1.FreeBSD.org> > > Thanks for the reply. Yes, I've researched all the relevant past articles > > describing this error. To my knowledge, Windows ME doesn't support > > share-level passwords. In fact, the share mounts properly and enumerates > > the directory from three other Linux machines also on the LAN (and the > > Windows machines, of course). This changed (broke) with a cvsup within the > > past week or so. > Try to backout rev 1.16 of sys/fs/smbfs/smbfs_smb.c and tell me > if this helps. This patch was heavily tested on NT-like machines but may > break with w9x family. Unfortunately, just backing out that one change ("ctx->f_flags |= SMBFS_RDD_EOF | SMBFS_RDD_NOCLOSE;") did not correct this problem. By the way, I did mention that the W2K/XP machine shares still load and access properly on the same machine, right? It's just this one Win ME machine share that doesn't any longer. From bp at freebsd.org Thu Nov 24 03:50:56 2005 From: bp at freebsd.org ('Boris Popov') Date: Thu Nov 24 03:52:13 2005 Subject: FW: mount_smbfs In-Reply-To: <20051124114122.D6DB843D75@mx1.FreeBSD.org> References: <20051124071828.GL6770@vertex.kz> <20051124114122.D6DB843D75@mx1.FreeBSD.org> Message-ID: <20051124115035.GO6770@vertex.kz> On Thu, Nov 24, 2005 at 06:39:19AM -0500, Frank Reid wrote: > > > Try to backout rev 1.16 of sys/fs/smbfs/smbfs_smb.c and tell me > > if this helps. This patch was heavily tested on NT-like machines but may > > break with w9x family. > > Unfortunately, just backing out that one change ("ctx->f_flags |= > SMBFS_RDD_EOF | SMBFS_RDD_NOCLOSE;") did not correct this problem. By the > way, I did mention that the W2K/XP machine shares still load and access > properly on the same machine, right? It's just this one Win ME machine > share that doesn't any longer. Well, there wasn't any other major changes except one done by Craig on Wed Nov 16 02:26:25 2005 UTC, which fits into "week or so". I don't see right now how it can break ME machines. Hm, only if it inadvertently changes order of some operations. -- Boris Popov http://rbp.euro.ru From fcreid at ourcorner.org Thu Nov 24 04:07:15 2005 From: fcreid at ourcorner.org (Frank Reid) Date: Thu Nov 24 04:07:41 2005 Subject: FW: mount_smbfs In-Reply-To: <20051124115035.GO6770@vertex.kz> Message-ID: <20051124120640.1A9DC43D92@mx1.FreeBSD.org> On Thu, Nov 24, 2005 at 06:39:19AM -0500, Frank Reid wrote: > > > Try to backout rev 1.16 of sys/fs/smbfs/smbfs_smb.c and tell me > > if this helps. This patch was heavily tested on NT-like machines but may > > break with w9x family. > > Unfortunately, just backing out that one change ("ctx->f_flags |= > SMBFS_RDD_EOF | SMBFS_RDD_NOCLOSE;") did not correct this problem. By the > way, I did mention that the W2K/XP machine shares still load and access > properly on the same machine, right? It's just this one Win ME machine > share that doesn't any longer. > Well, there wasn't any other major changes except one done by > Craig on Wed Nov 16 02:26:25 2005 UTC, which fits into "week or so". I don't > see right now how it can break ME machines. Hm, only if it inadvertently > changes order of some operations. Appreciate the consideration. Here's another interesting thing. Although the mounted share returns the "RPC struct is bad" when accessing, it appears to "wake up" and become accessible at some point. For some background, I use the Win ME box to share data to a FreeBSD application. It's a FreeBSD Synchronet BBS, and the data are Fidonet mail packets created on the Win ME machine. I have a cron entry that imports/exports that data each hour. That usually fails to find any of the mail packets that exist in the mounted share directory. However, at some point, the cron job succeeds and does find the data. I do not have any crontab or other process (other than FreeBSD itself) that would "refresh" the connection to the mounted share. From fcreid at ourcorner.org Thu Nov 24 05:11:56 2005 From: fcreid at ourcorner.org (Frank Reid) Date: Thu Nov 24 05:15:26 2005 Subject: FW: mount_smbfs In-Reply-To: <016501c5f0ef$3a012250$d100a8c0@FRAD.ORG> Message-ID: <20051124131150.3BC0F43D73@mx1.FreeBSD.org> On Thu, Nov 24, 2005 at 06:39:19AM -0500, Frank Reid wrote: > > > Try to backout rev 1.16 of sys/fs/smbfs/smbfs_smb.c and tell me > > if this helps. This patch was heavily tested on NT-like machines but may > > break with w9x family. > > Unfortunately, just backing out that one change ("ctx->f_flags |= > SMBFS_RDD_EOF | SMBFS_RDD_NOCLOSE;") did not correct this problem. By the > way, I did mention that the W2K/XP machine shares still load and access > properly on the same machine, right? It's just this one Win ME machine > share that doesn't any longer. > Well, there wasn't any other major changes except one done by > Craig on Wed Nov 16 02:26:25 2005 UTC, which fits into "week or so". I don't > see right now how it can break ME machines. Hm, only if it inadvertently > changes order of some operations. I tried reverting to smbfs_vfsops.c 1.3.6, but after doing so all shares (including the W2K) refused to mount with an error "mount_smbfs: mount error: " so there must be more to it than just the single file. I wish I could be of more help on this for you. Frank From rodrigc at crodrigues.org Thu Nov 24 07:02:13 2005 From: rodrigc at crodrigues.org (Craig Rodrigues) Date: Thu Nov 24 07:02:27 2005 Subject: FW: mount_smbfs In-Reply-To: <20051124131200.E7B4C5A7A8@storm.easydns.com> References: <016501c5f0ef$3a012250$d100a8c0@FRAD.ORG> <20051124131200.E7B4C5A7A8@storm.easydns.com> Message-ID: <20051124144836.GA902@crodrigues.org> On Thu, Nov 24, 2005 at 08:09:49AM -0500, Frank Reid wrote: > error: " so there must be more to it than just the single file. I wish I > could be of more help on this for you. You could be more helpful by debugging with Ethereal, to see what is causing the bad RPC packet error. -- Craig Rodrigues rodrigc@crodrigues.org From fcreid at ourcorner.org Thu Nov 24 07:04:26 2005 From: fcreid at ourcorner.org (Frank Reid) Date: Thu Nov 24 07:04:44 2005 Subject: FW: mount_smbfs In-Reply-To: <20051124144836.GA902@crodrigues.org> Message-ID: <20051124150406.47D2443D76@mx1.FreeBSD.org> > You could be more helpful by debugging with Ethereal, to see what > is causing the bad RPC packet error. I'm building Ethereal from ports now. Again, I'm not familiar with the tool. Will the process to capture what's needed be self-explanatory? Frank From dado at kulichki.com Thu Nov 24 10:51:15 2005 From: dado at kulichki.com (Evgenii Davidov) Date: Thu Nov 24 10:58:22 2005 Subject: kernel panic question In-Reply-To: References: Message-ID: <20051124182932.GQ5393@kulichki.com> i have 4.11-RELEASE-p13 on a such smp machine: http://www.giga-byte.com/Server/Products/Products_RackmountServer_GS-SR125.htm i've tested it with memtest and cpuburn for a day but with site with simple perl scripts it crashes every hour with errors: Nov 23 14:27:44 /kernel: panic: lockmgr: non-zero exclusive count Nov 23 14:33:27 /kernel: panic: pmap_release: non ptd page Nov 23 21:19:14 /kernel: panic: vm_page_free: freeing free page Nov 23 23:43:23 /kernel: panic: lockmgr: pid 43952, not exclusive lock holder -1 unlocking Nov 24 01:09:10 /kernel: panic: vm_page_remove(): page not found in hash i changed the memory but it didn't help tell me please -- is it problem with hadrware or i have to upgrade to 5 or 6 release or smth? thanks here is one backtrace: #3 0xc022af58 in trap_fatal (frame=0xe6134e80, eva=1310724) at ../../i386/i386/trap.c:974 #4 0xc022abe9 in trap_pfault (frame=0xe6134e80, usermode=0, eva=1310724) at ../../i386/i386/trap.c:867 #5 0xc022a787 in trap (frame={tf_fs = -1071513576, tf_es = -1063780336, tf_ds = -1063780336, tf_edi = -434397204, tf_esi = 1310720, tf_ebp = -434942256, tf_isp = -434942292, tf_ebx = 1310720, tf_edx = -1846526017, tf_ecx = 1, tf_eax = -1077936128, tf_trapno = 12, tf_err = 0, tf_eip = -1071476769, tf_cs = 8, tf_eflags = 66054, tf_esp = -434397312, tf_ss = -525428224}) at ../../i386/i386/trap.c:466 #6 0xc0228fdf in pmap_remove_pages (pmap=0xe61b9fec, sva=0, eva=3217031168) at ../../i386/i386/pmap.c:2747 #7 0xc016a91f in exit1 (p=0xe0ae9a00, rv=15) at ../../kern/kern_exit.c:225 #8 0xc01745ea in sigexit (p=0xe0ae9a00, sig=15) at ../../kern/kern_sig.c:1504 #9 0xc0174364 in postsig (sig=15) at ../../kern/kern_sig.c:1407 #10 0xc022aa9f in trap (frame={tf_fs = 201588783, tf_es = 168034351, tf_ds = 47, tf_edi = 201626080, tf_esi = 168071648, tf_ebp = 0, tf_isp = -434941996, tf_ebx = -2, tf_edx = 5, tf_ecx = -14852320, tf_eax = 1073741824, tf_trapno = 7, tf_err = 0, tf_eip = 134512949, ---Type to continue, or q to quit--- tf_cs = 31, tf_eflags = 658, tf_esp = -1077937264, tf_ss = 47}) at ../../i386/i386/trap.c:197 here is my dmesg: vm_page_free: pindex(67), busy(0), PG_BUSY(1), hold(0) panic: vm_page_free: freeing free page mp_lock = 01000001; cpuid = 1; lapic.id = 01000000 boot() called on cpu#1 syncing disks... 70 1 1 1 1 1 1 1 5 system full cpu_reset_proxy: Grabbed mp lock for BSP cpu_reset_proxy: Stopped CPU 1 Copyright (c) 1992-2005 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.11-RELEASE-p13 #1: Fri Nov 18 13:23:58 MSK 2005 root@ku:/usr/src/sys/compile/KU Timecounter "i8254" frequency 1193182 Hz CPU: Intel(R) Xeon(TM) CPU 3.06GHz (1600.06-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0xf29 Stepping = 9 Features=0xbfebfbff real memory = 1073676288 (1048512K bytes) avail memory = 1041809408 (1017392K bytes) Programming 24 pins in IOAPIC #0 IOAPIC #0 intpin 2 -> irq 0 Programming 24 pins in IOAPIC #1 Programming 24 pins in IOAPIC #2 FreeBSD/SMP: Multiprocessor motherboard: 2 CPUs cpu0 (BSP): apic id: 0, version: 0x00050014, at 0xfee00000 cpu1 (AP): apic id: 1, version: 0x00050014, at 0xfee00000 io0 (APIC): apic id: 7, version: 0x00178020, at 0xfec00000 io1 (APIC): apic id: 8, version: 0x00178020, at 0xfec82000 io2 (APIC): apic id: 9, version: 0x00178020, at 0xfec82400 Preloaded elf kernel "kernel" at 0xc0308000. Warning: Pentium 4 CPU: PSE disabled Pentium Pro MTRR support enabled md0: Malloc disk Using $PIR table, 12 entries at 0xc00f7980 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard IOAPIC #0 intpin 16 -> irq 2 IOAPIC #0 intpin 19 -> irq 9 IOAPIC #0 intpin 18 -> irq 10 IOAPIC #0 intpin 17 -> irq 11 pci0: on pcib0 pcib1: at device 4.0 on pci0 pci2: on pcib1 pci2: (vendor=0x8086, dev=0x1461) at 28.0 pcib2: at device 29.0 on pci2 IOAPIC #2 intpin 0 -> irq 16 IOAPIC #2 intpin 1 -> irq 17 pci4: on pcib2 em0: port 0xb800-0xb83f mem 0xefdc0000-0xefddffff irq 16 at device 2.0 on pci4 em0: Speed:N/A Duplex:N/A em1: port 0xbc00-0xbc3f mem 0xefde0000-0xefdfffff irq 17 at device 3.0 on pci4 em1: Speed:N/A Duplex:N/A pci2: (vendor=0x8086, dev=0x1461) at 30.0 pcib3: at device 31.0 on pci2 IOAPIC #1 intpin 2 -> irq 18 IOAPIC #1 intpin 3 -> irq 19 pci3: on pcib3 ahc0: port 0xac00-0xacff mem 0xefcff000-0xefcfffff irq 18 at device 6.0 on pci3 aic7899: Ultra160 Wide Channel A, SCSI Id=7, 32/253 SCBs ahc1: port 0xa800-0xa8ff mem 0xefcfe000-0xefcfefff irq 19 at device 6.1 on pci3 aic7899: Ultra160 Wide Channel B, SCSI Id=7, 32/253 SCBs pci0: at 29.0 irq 2 pci0: at 29.1 irq 9 pcib4: at device 30.0 on pci0 pci1: on pcib4 pci1: at 9.0 irq 10 isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0xff00-0xff0f,0-0x3,0-0x7,0-0x3,0-0x7 irq 10 at device 31.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: (vendor=0x8086, dev=0x2483) at 31.3 irq 11 orm0: