From owner-freebsd-bugs@FreeBSD.ORG Sun Jul 25 01:50:02 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 600EC1065677 for ; Sun, 25 Jul 2010 01:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 523AC8FC12 for ; Sun, 25 Jul 2010 01:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6P1o19C051717 for ; Sun, 25 Jul 2010 01:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6P1o1rJ051716; Sun, 25 Jul 2010 01:50:01 GMT (envelope-from gnats) Resent-Date: Sun, 25 Jul 2010 01:50:01 GMT Resent-Message-Id: <201007250150.o6P1o1rJ051716@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dan Ponte Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5DFCA106566B for ; Sun, 25 Jul 2010 01:49:02 +0000 (UTC) (envelope-from dcp1990@fez.theamigan.net) Received: from vms173007pub.verizon.net (vms173007pub.verizon.net [206.46.173.7]) by mx1.freebsd.org (Postfix) with ESMTP id 536D18FC0A for ; Sun, 25 Jul 2010 01:48:10 +0000 (UTC) Received: from fez.theamigan.net ([unknown] [72.87.82.41]) by vms173007.mailsrvcs.net (Sun Java(tm) System Messaging Server 7u2-7.02 32bit (built Apr 16 2009)) with ESMTPA id <0L63001DC8VDDEN2@vms173007.mailsrvcs.net> for FreeBSD-gnats-submit@freebsd.org; Sat, 24 Jul 2010 19:47:39 -0500 (CDT) Received: from fez.theamigan.net (dcp1990@localhost [127.0.0.1]) by fez.theamigan.net (8.14.4/8.14.4) with ESMTP id o6P0lbCu003448; Sat, 24 Jul 2010 20:47:37 -0400 Received: (from dcp1990@localhost) by fez.theamigan.net (8.14.4/8.14.4/Submit) id o6P0lbNT003447; Sat, 24 Jul 2010 20:47:37 -0400 (EDT envelope-from dcp1990) Message-Id: <201007250047.o6P0lbNT003447@fez.theamigan.net> Date: Sat, 24 Jul 2010 20:47:37 -0400 (EDT) From: Dan Ponte To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: amigan@gmail.com Subject: bin/148915: [patch] fix telnetd if and im options to behave like getty X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dan Ponte List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jul 2010 01:50:02 -0000 >Number: 148915 >Category: bin >Synopsis: [patch] fix telnetd if and im options to behave like getty >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jul 25 01:50:01 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Dan Ponte >Release: FreeBSD 8.1-PRERELEASE amd64 >Organization: D3ath D3sk Records >Environment: System: FreeBSD fez.theamigan.net 8.1-PRERELEASE FreeBSD 8.1-PRERELEASE #2: Wed Jul 14 14:05:35 EDT 2010 root@fez.theamigan.net:/usr/obj/usr/src/sys/FEZ8 amd64 >Description: This patch fixes telnetd to behave exactly as getty does when if and im are encountered. If both are encountered, if= outputs before im=. Otherwise, whichever is set in gettytab is output. This patch improves upon bin/80732 and bin/23562 to make telnetd's handling of these options similar to getty's. It also makes sure that %h works inside the issue file (which requires the putf() to occur after the hostname editing is complete). >How-To-Repeat: >Fix: Apply the following patch to src/contrib/telnet/telnetd/telnetd.c. --- telnetd.c.diff begins here --- --- telnetd.c.orig 2009-08-03 04:13:06.000000000 -0400 +++ telnetd.c 2010-07-24 19:58:11.000000000 -0400 @@ -742,6 +742,8 @@ char *HE; char *HN; char *IM; + char *IF = NULL; + char issbuf[BUFSIZ]; int nfd; /* @@ -907,17 +909,47 @@ HE = Getstr("he", &cp); HN = Getstr("hn", &cp); IM = Getstr("im", &cp); + IF = Getstr("if", &cp); + if (HN && *HN) (void) strlcpy(host_name, HN, sizeof(host_name)); - if (IM == 0) + else + gethostname(host_name, sizeof(host_name)); + + if(IM == NULL) IM = strdup(""); + + } else { IM = strdup(DEFAULT_IM); HE = 0; } edithost(HE, host_name); + + bzero(issbuf, sizeof(issbuf)); + + if (IF != NULL) { + int tfd; + struct stat tst; + char *tbf; + + tfd = open(IF, O_RDONLY); + if (tfd == -1) { + IF = NULL; + } else { + fstat(tfd, &tst); + tbf = (char*)mmap(NULL, tst.st_size, PROT_READ, + 0, tfd, 0); + strlcpy(issbuf, tbf, sizeof(issbuf)); + munmap(tbf, tst.st_size); + close(tfd); + } + } + if (hostinfo && *IM) - putf(IM, ptyibuf2); + strlcat(issbuf, IM, sizeof(issbuf)); + + putf(issbuf, ptyibuf2); if (pcc) (void) strncat(ptyibuf2, ptyip, pcc+1); --- telnetd.c.diff ends here --- Thanks. -Dan >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jul 25 12:10:05 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D7D81065686 for ; Sun, 25 Jul 2010 12:10:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E67948FC29 for ; Sun, 25 Jul 2010 12:10:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6PCA4Fw097407 for ; Sun, 25 Jul 2010 12:10:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6PCA4bT097406; Sun, 25 Jul 2010 12:10:04 GMT (envelope-from gnats) Resent-Date: Sun, 25 Jul 2010 12:10:04 GMT Resent-Message-Id: <201007251210.o6PCA4bT097406@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, tedm@ipinc.net Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6C7921065672 for ; Sun, 25 Jul 2010 12:07:32 +0000 (UTC) (envelope-from tedm@ipinc.net) Received: from mail.ipinc.net (mail.ipinc.net [65.75.192.11]) by mx1.freebsd.org (Postfix) with ESMTP id 597D88FC1F for ; Sun, 25 Jul 2010 12:07:32 +0000 (UTC) Received: from dns2.ipinc.net (dns2.ipinc.net [65.75.192.254]) by mail.ipinc.net (8.14.4/8.14.4) with ESMTP id o6PBTQLl073859 for ; Sun, 25 Jul 2010 04:29:26 -0700 (PDT) (envelope-from tedm@ipinc.net) Received: from dns2.ipinc.net (localhost [127.0.0.1]) by dns2.ipinc.net (8.14.3/8.14.3) with ESMTP id o6PBUr6u002603 for ; Sun, 25 Jul 2010 04:30:53 -0700 (PDT) (envelope-from tedm@ipinc.net) Received: (from root@localhost) by dns2.ipinc.net (8.14.3/8.14.3/Submit) id o6PBUrBk002602; Sun, 25 Jul 2010 04:30:53 -0700 (PDT) (envelope-from tedm) Message-Id: <201007251130.o6PBUrBk002602@dns2.ipinc.net> Date: Sun, 25 Jul 2010 04:30:53 -0700 (PDT) From: tedm@ipinc.net To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: misc/148922: uptime command output inconsistency after boot X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: tedm@ipinc.net List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jul 2010 12:10:05 -0000 >Number: 148922 >Category: misc >Synopsis: uptime command output inconsistency after boot >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 Jul 25 12:10:04 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Ted Mittelstaedt >Release: FreeBSD 8.0-RELEASE i386 >Organization: Internet Partners, Inc. >Environment: System: FreeBSD dns2.ipinc.net 8.0-RELEASE FreeBSD 8.0-RELEASE #0: Sat Nov 21 15:48:17 UTC 2009 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: After boot, the uptime command produces inconsistent output. Here is output from a machine that was just booted a few minutes ago: 4:16AM up 3:06, 1 user, load averages: 0.02, 0.08, 0.07 Here is output from an 8.0 system that has been up for a while: 4:41PM up 1 day, 10:22, 1 user, load averages: 0.00, 0.00, 0.00 Here is output from a FreeBSD 7.3 system that was rebooted a few minutes ago: 4:06AM up 8 mins, 1 user, load averages: 0.01, 0.10, 0.07 As you can see, the "minutes" field is missing from the 8.0 system that had been rebooted recently. The bug must have been introduced when the XX:XX time printout was added to the uptime output. >How-To-Repeat: run uptime on a recently booted system. Run uptime on a system that has been up for a day. Compare the results. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jul 25 13:30:07 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 83C9A106567A for ; Sun, 25 Jul 2010 13:30:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6DD4C8FC24 for ; Sun, 25 Jul 2010 13:30:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6PDU79W077510 for ; Sun, 25 Jul 2010 13:30:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6PDU7w5077504; Sun, 25 Jul 2010 13:30:07 GMT (envelope-from gnats) Resent-Date: Sun, 25 Jul 2010 13:30:07 GMT Resent-Message-Id: <201007251330.o6PDU7w5077504@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Fmyoen Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B3C80106566C for ; Sun, 25 Jul 2010 13:29:30 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id C832C8FC1A for ; Sun, 25 Jul 2010 13:29:30 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6PDTUVO031770 for ; Sun, 25 Jul 2010 13:29:30 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6PDTUEZ031768; Sun, 25 Jul 2010 13:29:30 GMT (envelope-from nobody) Message-Id: <201007251329.o6PDTUEZ031768@www.freebsd.org> Date: Sun, 25 Jul 2010 13:29:30 GMT From: Fmyoen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/148928: Problem with loading of ipfw NAT rules during system startup X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jul 2010 13:30:07 -0000 >Number: 148928 >Category: misc >Synopsis: Problem with loading of ipfw NAT rules during system startup >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 Jul 25 13:30:06 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Fmyoen >Release: 8.1-RELEASE >Organization: Fmyoen >Environment: FreeBSD ... 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:55:53 UTC 2010 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: It looks like during system startup (in some setups?) ipdivet.ko kernel module loads later than the default /etc/rc.firewall script executes, and thus script fails to properly add NAT related ipfw rules. In my case it was this rule: if [ -n "${natd_interface}" ]; then ${fwcmd} add 50 divert natd ip4 from any to any via ${natd_interface} fi This results in: ipfw: getsockopt(IP_FW_ADD): Invalid argument So after every reboot I should manually run sh /etc/rc.firewall to flush and add ipfw rules once again. I've got this problem at least on two my PCs and at least one guy has similar problem as reported here http://www.opennet.ru/openforum/vsluhforumID3/69154.html#26. Here is parts of my configuration files although I doubt it would help: rc.conf: ifconfig_vr1="dhcp" gateway_enable="YES" # IPFW firewall_enable="YES" firewall_type="OPEN" # NAT natd_program="/sbin/natd" natd_enable="YES" natd_interface="vr1" natd_flags="-m" sysctl.conf: net.inet.ip.fw.one_pass=0 >How-To-Repeat: Reboot PC. >Fix: echo 'ipdivert_load="YES"' >> /boot/loader.conf causes normal rule execution during startup. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jul 25 17:48:26 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2335110657D3; Sun, 25 Jul 2010 17:48:26 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 00B9F8FC12; Sun, 25 Jul 2010 17:48:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6PHmPts031005; Sun, 25 Jul 2010 17:48:25 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6PHmPOM031001; Sun, 25 Jul 2010 17:48:25 GMT (envelope-from linimon) Date: Sun, 25 Jul 2010 17:48:25 GMT Message-Id: <201007251748.o6PHmPOM031001@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ipfw@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/148928: [ipfw] Problem with loading of ipfw NAT rules during system startup X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jul 2010 17:48:26 -0000 Old Synopsis: Problem with loading of ipfw NAT rules during system startup New Synopsis: [ipfw] Problem with loading of ipfw NAT rules during system startup Responsible-Changed-From-To: freebsd-bugs->freebsd-ipfw Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jul 25 17:48:11 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=148928 From owner-freebsd-bugs@FreeBSD.ORG Mon Jul 26 11:09:21 2010 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F16241065677 for ; Mon, 26 Jul 2010 11:09:21 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CA01A8FC18 for ; Mon, 26 Jul 2010 11:09:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6QB9LdH082510 for ; Mon, 26 Jul 2010 11:09:21 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6QB9KqR082508 for freebsd-bugs@FreeBSD.org; Mon, 26 Jul 2010 11:09:20 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 26 Jul 2010 11:09:20 GMT Message-Id: <201007261109.o6QB9KqR082508@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Cc: Subject: Current problem reports containing patches X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2010 11:09:22 -0000 (Note: an HTML version of this report is available at http://people.freebsd.org/~linimon/studies/prs/prs_for_tag_patch.html .) S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/148955 avilla [patch] graphics/opencv: use libv4l, fix gcc45 build o ports/148953 [PATCH] x11-fonts/dejavu: simplify Makefile, take main f ports/148951 mm [PATCH] lang/php52: update to 5.2.14 o ports/148948 tdb [patch] sysutils/freecolor: mark as only for i386, res o ports/148947 perl [PATCH] databases/p5-DBI: update to 1.613 o ports/148940 ahze [PATCH] print/py-cups: update to 1.9.51, take maintain o ports/148938 mnag [patch] devel/libevent: clock_gettime(2) is in libc, n f ports/148937 [PATCH] print/cups-samba: improve installation message o ports/148936 delphij [PATCH] net/openldap24-server: fix build openldap24-cl o ports/148934 mnag [PATCH] databases/memcached: update to 1.4.5 f ports/148932 [patch] math/units update to 1.88 f ports/148925 [PATCH] net/nss_ldap: Use $SUB_FILES instead of invoki o ports/148924 anders [PATCH] multimedia/ffmpeg2theora: update to 0.27 o ports/148918 openoffice [patch] editors/openoffice.org-3-devel/Makefile fixes o bin/148915 [patch] fix telnetd(8) if and im options to behave lik o ports/148897 clsung [PATCH] devel/p5-Module-Build: use YAML::Tiny o ports/148896 skv [PATCH] lang/perl5.12: remove duplicated entry in pkg- o bin/148894 [patch] Batch of typo fixes for HEAD src files o docs/148891 doc [patch] Fix a few typos in non-source files (HEAD) f ports/148887 [PATCH] dns/opendnssec: [SUMMARIZE CHANGES] o ports/148886 wen [PATCH] dns/rubygem-dnsruby: update to 1.48 o kern/148885 ipfw [ipfw] [patch] ipfw netgraph ignores net.inet.ip.fw.on o kern/148881 [libdisk] [patch] libdisk emits errors w/ disks that c o ports/148880 philip [patch] games/wesnoth: remove NLS option, plug gettext o ports/148879 portmgr [patch] Mk/bsd.port.mk: extend IA32_BINARY_PORT to sup o ports/148878 clsung [patch] port security/snort update to 2.8.6.1 o ports/148877 clsung [PATCH] update textproc/nltk to 2.0b8 o ports/148876 nivit [PATCH] update devel/py-configobj to 4.7.2 o ports/148875 ale [patch] Fix www/tomcat6 rc script o ports/148870 [PATCH] databases/slony1v2: update to 2.0.4 o ports/148869 mnag [patch] www/lighttpd - - set the correct signal for si o ports/148868 [patch] mail/spampd - set the correct signal for sig_s o ports/148867 az [patch] net-p2p/dcd - set the correct signal for sig_s o ports/148865 [PATCH] update devel/activitymail to 1.26 f ports/148863 makc [patch] update plasma-applet-cwp 1.0.4 -> 1.1.1 o ports/148858 [PATCH] security/chaosreader: fix "devision by zero" e o kern/148857 bz [patch] [ip6] Panics due to insufficient locking in ne o ports/148856 danger [patch] www/uwsgi update to 0.9.5.4 o ports/148854 miwi [PATCH]security/tor-devel: update to 0.2.2.14-alpha o ports/148851 mono [PATCH] www/moonshine: update to 0.7 o ports/148850 [PATCH] update net/scapy to 2.1.1 o ports/148843 bland [PATCH] devel/py26-icu: add support for ICU 4.4 o ports/148842 sobomax [PATCH] devel/py26-interface: update to 1.0 o ports/148838 krion [PATCH] devel/pcre: update to 8.10 o ports/148837 [PATCH] databases/postgresql-server: fix build with ic o bin/148836 roberto [ntp] [patch] Update to NTP in base system o docs/148825 doc [patch] pom(6): a typo in the manpage o ports/148824 apache [PATCH] devel/apr1: fix build with databases/db50 (WIT o www/148823 www [patch] Catchup ru/index.xsl with last rev 1.169 bette f ports/148822 wxs [patch] sysutils/coreutils update to 8.5 o kern/148820 [patch] [ext2fs] duplicated comment block cleanup f ports/148819 lioux [PATCH] www/opera-linuxplugins: Update to 10.60 build f ports/148818 lioux [PATCH] www/opera: Update to 10.60 build 6386 f ports/148813 [PATCH] www/httrack: fix menu icons display o ports/148808 [patch] Mk/bsd.licenses.mk: fix filename collisions o bin/148806 imp [patch] pc-sysinstall(8) misc cleanup f ports/148803 wxs [patch] databases/couchdb -- update to 1.0.0 f ports/148802 glarkin [PATCH] audio/audacity-devel: Fix build error and othe o kern/148801 [kernel] [patch] obsolete CAPABILITIES comment after s o www/148795 www [patch] ru/about.sgml: MFen 1.3 -> 1.14 o kern/148785 [twa] [patch] twa driver doesn't pass proper max. io s o ports/148783 portmgr [bsd.port.mk] [patch] add LATEST_LINK and CONFLICTS to o ports/148769 dinoex [PATCH] net/sixxs-aiccu: revamp rc script, add seconda o conf/148758 [build] [patch] wpi license not required when building o ports/148754 portmgr [patch] Mk/bsd.port.mk: allow using MAKE_JOBS_NUMBER w f ports/148753 java [patch] java/openjdk6 does not respect MAKE_JOBS_(SAFE o ports/148742 lev [PATCH] devel/subversion: remove dependency autodetect o ports/148719 jhay [PATCH] net/p5-Net-SMPP: update to 1.14 o ports/148715 wxs [patch] port sysutils/bacula-server small fix for scri o kern/148710 [sysctl][patch] Document sys/kern sysctls f ports/148707 wxs [PATCH] mail/postgrey: update to 1.33 o ports/148704 clsung [PATCH] databases/p5-BerkeleyDB: update to 0.42 o docs/148701 doc [patch] crypto(9): Minor typographical error p docs/148697 doc [patch] u3g.4 duplicate "Is" o ports/148695 portmgr [bsd.port.mk] [patch] Easier / automatic regression-te o ports/148690 [patch] graphics/gcolor2: fix for running on amd64 o bin/148686 [patch] ftp-proxy(8): ftp-proxy -T tag patch for FBSD o www/148684 www [patch] ru/releng/index.sgml: MFen 1.95 -> 1.286 o docs/148681 doc [patch] ng_atm(4): Minor typographical error o docs/148680 doc [sysctl][patch] Document some sys/kern sysctls f ports/148672 glewis [PATCH] java/eclipse-sysdeo-tomcat: update path for ne f ports/148671 glewis [PATCH] java/eclipse-sqlexplorer: update path for new o ports/148668 glewis [PATCH] java/eclipse-PropertiesEditor: update path for f ports/148665 glewis [PATCH] java/eclipse-lomboz: update path for new eclip f ports/148663 glewis [PATCH] java/eclipse-log4e: update patch for new eclip o bin/148661 imp [patch] pc-sysinstall(8) updates to support ftp instal f ports/148650 [patch] www/tomcat55 remove java hardcoding o kern/148646 des [linprocfs] [patch] Implementation of the "environ" fi o kern/148644 ed [uart] [patch] vgetty play voice file fails with 8.0 R f ports/148641 [PATCH] graphics/ipe: Update to latest version (now us o ports/148640 acm [PATCH] upgrade games/ufoai & games/ufoai-data to the o ports/148630 sobomax [PATCH] net/asterisk16: fix asterisk16 compilation wit o ports/148621 girgen [PATCH] java/eclipse-cdt: update path for new eclipse f ports/148618 glewis [PATCH] java/eclipse-clay-core: update path for new ec f ports/148615 glewis [PATCH] java/eclipse-EPIC: Update path for new eclipse f ports/148613 glewis [PATCH] devel/mercurialeclipse: Update path for new ec f ports/148612 glewis [PATCH] devel/subclipse: Update paths for new eclipse o ports/148611 [PATCH] www/tomcat55: update to 5.5.30 o kern/148609 [libdialog] [patch] printing to a checklist window on o bin/148606 imp [patch] pc-sysinstall(8) updates to support installati o ports/148604 clsung [patch] textproc/diffstat: prefer xz(1) over lzcat(1) o ports/148599 [patch] devel/bmake: update to 20100618 snapshot o ports/148597 trasz [PATCH] emulators/lisaem: remove bash building depende o ports/148593 nivit [PATCH] devel/py26-virtualenv: remove useless bash dep f ports/148589 wen [patch] update astro/gpsd f ports/148583 sylvio [PATCH] databases/dbtool: remove bash dependency o kern/148580 [sysctl][patch] Document some sys/kern sysctls o ports/148544 flz [PATCH] devel/cgit: update to 0.8.3.2 f ports/148543 sahil [PATCH] www/grails: upgrade to 1.2.3 p docs/148535 doc [patch] kldload.8 -q option corrections p docs/148534 doc [patch] iscontrol.8 missing option o bin/148528 cperciva [patch] portsnap(8): add new command mode o kern/148510 [sysctl][patch] Document some sysctls o i386/148509 i386 [boot] [patch] Improvements to i386/boot2's comments f ports/148503 [patch] graphics/mupdf: remove forceful optimization p docs/148499 maxim [patch] fix spelling in exports(5) o ports/148486 nivit [patch] update databases/py-sqlalchemy to 1.6.2 o ports/148485 itetcu [patch] port mail/dspam small Makefile fix o ports/148475 gecko [patch] Mk/bsd.gecko.mk: use tar(1) for copying trees o ports/148448 obrien [patch] lang/pcc update o ports/148406 python [PATCH] lang/python26: fix build backage without threa o ports/148403 [patch] ftp/proftpd-devel Add shaper module option f ports/148371 sahil [PATCH] mail/dbmail: update to 2.2.16 o kern/148367 [syscons] [patch] Add loader tunable to override SC_HI f ports/148364 araujo [PATCH] sysutils/eiciel update to 0.9.8 o ports/148363 [PATCH] net/rtg: stop overwriting user configs, added o ports/148362 rene [PATCH] net/mDNSResponder update to 214.3.2 o bin/148350 sysinstall [patch] sysinstall(8) does not set "ntpdate chosen ser p i386/148344 tijl [patch] i386 mcontext has fsbase and gsbase fields swa o ports/148325 [patch] net-p2p/amule2: fix WITHOUT_NLS plist and gcc4 f ports/148321 [PATCH] mail/quickml: user USERS/GROUPS o ports/148320 lth [PATCH] net-mgmt/ifgraph: use USERS/GROUPS o ports/148319 decke [PATCH] net-mgmt/nefu: convert to USERS/GROUPS o ports/148314 stas [PATCH] editors/slime: update to 20100622 and cleanup f ports/148310 ashish [PATCH] devel/scons doesn't respect NO_INSTALL_MANPAGE f ports/148309 nemoliu [PATCH] net/p5-IO-INET6: rename to net/p5-IO-Socket-IN o kern/148307 adrian [ath] [patch] Incorrect alignment checks in sys/mips/a o bin/148296 fs [zfs] [loader] [patch] Very slow probe in /usr/src/sys o ports/148282 [PATCH] www/xpi-tabmixplus: fix XPI_ID f ports/148269 glarkin [PATCH] sysutils/ipmitool: Code cleanup found when bui o kern/148260 pf [pf] [patch] pf rdr incompatible with dummynet p bin/148253 brucec [patch] sysinstall(8): sysinstall partition= cre o ports/148250 portmgr [bsd.port.mk] [patch] xz memory limit prevents port bu f ports/148223 mva [PATCH] editors/hte ability to install as hte instead o ports/148213 girgen [PATCH] databases/postgresql-jdbc: update to 8.4.701 ( o ports/148207 stas [PATCH] lang/sbcl: update to 1.0.39.0 f ports/148206 miwi [patch] databases/pecl-memcache - fix delete with rece o ports/148200 mm [patch] fix multimedia/ffmpeg build on powerpc64 o ports/148190 portmgr [patch] Fix some spelling and grammar mistakes in bsd. o usb/148189 remko [usbdevs] [usb8] [patch] provide descriptive string fo f ports/148168 [PATCH] update deskutils/alexandria to 0.6.6 o ports/148166 demon [patch] port devel/p5-Locale-gettext package do not fo o ports/148162 mnag [PATCH] databases/sqlite3 fails with NO_INSTALL_MANPAG r ports/148158 portmgr [PATCH] net/p5-IO-Socket-INET6: update to 2.65 o conf/148144 ipfw [patch] add ipfw_nat support for rc.firewall simple ty o ports/148120 pgollucci [PATCH] update devel/rubygem-spruz 0.1.1 -> 0.1.3 o ports/148119 pgollucci [PATCH] update ftp/rubygem-curb 0.7.5 -> 0.7.7 o ports/148097 emulation [patch] suggested addition to linux_base-* packages to s ports/148090 [PATCH] security/ike: update to 2.1.5 o kern/148087 [libfetch] [patch] Fetch doesn't supply proxy auth cre o ports/148075 jkim [PATCH] audio/oss: oss/files path issue with soundon s o ports/148068 mbr [PATCH] emulators/open-vm-tools: enhance RC script o ports/148055 girgen [PATCH] databases/p5-postgresql-plperl: fix package/ru f ports/148036 [PATCH] ports-mgmt/p5-FreeBSD-Ports-INDEXhash: require o ports/148035 x11 [patch] x11/xdm Fix auth in case of ro /usr o ports/148026 python [PATCH] security/py-twistedConch: missing run depedenc f ports/148019 oliver [PATCH] x11-toolkits/libxfce4gui: Fix pkg-plist and WI o conf/148017 hrs [stf] [patch] rc script for stf does not honour create p kern/148013 yongari [rl] [patch] add WoL support to rl(4) o ports/148005 mm [patch] devel/binutils: add gold option o kern/147998 [kernel] [patch] NFS -mapall group permissions ignored o conf/147992 [termcap] [patch] xterm-256color is a 8 colors termina f ports/147982 [patch] multimedia/xmms-weasel fix depends o ports/147981 [patch] multimedia/xmms-status-plugin fix depends o ports/147979 netchild [patch] mail/claws-mail: Unrecognized options passed t f ports/147977 [patch] irc/ratbox-services mark MAKE_JOBS_UNSAFE o ports/147975 itetcu [patch] audio/xmms-curses fix depends f ports/147973 [patch] audio/xmmsctrl fix depends o ports/147972 mm [PATCH] databases/adodb5: update to 5.11 o bin/147938 [patch] mt(8): ioctl sign-extension warnings from some o bin/147934 [patch] top(1) lies about system uptime f ports/147907 [patch] www/tclhttpd don't hardcode -j2 o ports/147898 [patch] sysutils/uhidd: open /usr/local/etc/uhidd.conf o bin/147887 [patch] Invalid extension type displayed with setkey(8 a ports/147884 jpaetzel [PATCH] devel/popt: update to 1.16 o kern/147881 fs [zfs] [patch] ZFS "sharenfs" doesn't allow different " f ports/147873 [PATCH] mail/mail-notification: [fix broken icons] o ports/147872 uqs [PATCH] graphics/feh: update to 1.7 o ports/147861 bf [patch] fix math/maxima with LC_MESSAGES f ports/147860 rene [PATCH] multimedia/mplayer: optionify libmng o kern/147855 [ipmi] [patch] kernel panic when IPMI enabled on some o ports/147841 mnag [patch] databases/sqlite3: add SECURE_DELETE option o kern/147839 [libc] [patch] syscall(2) with wrong argument causing o ports/147835 miwi [PATCH] devel/py-DecoratorTools: update to 1.8, take m o ports/147806 apache [PATCH] www/apache20: httpd doesn't start with WITH_LD o ports/147800 pgollucci [PATCH]: databases/rubygem-datamapper 1.0.0 overhaul o ports/147791 [patch] Update sysutils/arcconf to v6_50_18570 o ports/147754 pgollucci [PATCH] www/p5-Catalyst-Plugin-Unicode-Encoding: updat o ports/147753 pgollucci [PATCH] www/p5-Catalyst-Plugin-Session-Store-Delegate: o ports/147752 pgollucci [PATCH] www/p5-Catalyst-Plugin-Scheduler: update to 0. o ports/147751 pgollucci [PATCH] www/p5-Catalyst-Plugin-Params-Nested: update t o ports/147732 mnag [patch] port mail/postfix-current update from 20100323 a ports/147731 sahil [patch] port mail/postfix update VDA patch from 2.6.5 o kern/147726 [termcap] [patch] termcap needs an entry for rxvt-256c o ports/147723 mm [PATCH] devel/libevent: update to 1.4.14b o ports/147706 [patch][maintainer] www/rssdler: make xmlUnEscape and o ports/147701 portmgr [bsd.port.mk] [patch] bsd.port.mk incorrectly names DE o bin/147700 [patch] pkg_add(1): support xz format for packages o conf/147685 rc [rc.d] [patch] new feature for /etc/rc.d/fsck o ports/147683 [PATCH] multimedia/playd2: deprecate port o conf/147681 [network.subr][patch] Add inet6 keyword if it wasn't s o ports/147674 stas [PATCH] textproc/ruby18-rss.alt: update to 0.2.6 o kern/147664 geom [geom] [patch] Add the ability to create linux and fat o ports/147657 rene [PATCH] net/mDNSResponder: update to 214.3, take maint o ports/147646 x11 [PATCH] graphics/libGL: fix linking with newer gcc and o kern/147638 rpaulo [PATCH] [ath] Atheros R9280 has probrem at 8.1-PRERELE o ports/147634 apache [PATCH] www/mod_memcache: Conver to AP_FAST_BUILD / AP o ports/147626 pgollucci [PATCH] www/p5-WWW-Search: update to 2.508 o ports/147625 pgollucci [PATCH] textproc/p5-XML-Compile: update to 1.15 o ports/147624 pgollucci [PATCH] textproc/p5-Lingua-EN-Tagger: update to 0.16 o ports/147623 pgollucci [PATCH] sysutils/p5-mogilefs-server: update to 2.36 o ports/147622 pgollucci [PATCH] sysutils/p5-MogileFS-Utils: update to 2.16 o ports/147621 pgollucci [PATCH] sysutils/p5-MogileFS-Client: update to 1.11 o ports/147620 pgollucci [PATCH] security/p5-Module-Signature: update to 0.64 o ports/147619 pgollucci [PATCH] net/p5-XML-Compile-SOAP: update to 2.14 o ports/147618 pgollucci [PATCH] net/p5-Net-Twitter: update to 3.13003 o ports/147617 pgollucci [PATCH] net/p5-Net-GitHub: update to 0.22 o ports/147616 pgollucci [PATCH] misc/p5-Software-License: update to 0.101410 o ports/147615 pgollucci [PATCH] graphics/p5-Image-Compare: update to 0.8 o ports/147614 pgollucci [PATCH] dns/p5-Net-Domain-ExpireDate: update to 0.98 o ports/147613 pgollucci [PATCH] devel/p5-threads: update to 1.77 o ports/147612 pgollucci [PATCH] devel/p5-Module-Install: update to 0.99 o ports/147611 pgollucci [PATCH] devel/p5-Log-Dispatch-Config: update to 1.03 o ports/147610 pgollucci [PATCH] devel/p5-Data-ObjectDriver: update to 0.07 o ports/147609 pgollucci [PATCH] devel/p5-Algorithm-Networksort: update to 1.09 o ports/147608 pgollucci [PATCH] devel/p5-Algorithm-Cluster: update to 1.49 o ports/147607 pgollucci [PATCH] databases/p5-BerkeleyDB: update to 0.42 o ports/147606 pgollucci [PATCH] converters/p5-JSON-XS: update to 2.29 o kern/147599 [libm] [patch] Import netbsd complex functions into ou o kern/147583 [puc] [patch] sys/dev/puc/pucdata.c: incorrect clock v o ports/147568 x11 [patch] powerpc64 support for x11-servers/xorg-server o ports/147557 clsung [PATCH] security/snort: fix snortsam patch for 2.8.5.3 o ports/147547 ruby [PATCH]: Mk/bsd.ruby.mk: support --no-rdoc for -DNOPOR o ports/147525 kuriyama [PATCH] devel/rubygem-msgpack: update to 0.4.2 o ports/147500 [patch] Make deskutils/xpad usable o ports/147476 portmgr [PATCH] Mk/bsd.port.mk: fix 'make deinstall' for @comm o misc/147471 mips [headers] [patch] whitespace discrepancy in sys/mips/i o misc/147470 imp [patch] typo and mistake in UPDATING file p kern/147466 multimedia [snd_hda] [patch] Thinkpad t510, codecs not recognized o misc/147463 [tools] [patch] Patch for tools/regression/lib/libc/st o conf/147444 rc [rc.d] [patch] /etc/rc.d/zfs stop not called on reboot o ports/147413 pgollucci [PATCH] www/p5-HTML-Selector-XPath: update to 0.04 o ports/147411 pgollucci [PATCH] www/p5-Catalyst-Plugin-Unicode-Encoding: updat o ports/147410 pgollucci [PATCH] www/p5-Catalyst-Plugin-Session-Store-Delegate: o ports/147409 pgollucci [PATCH] www/p5-Catalyst-Plugin-Scheduler: Fix build an o ports/147408 pgollucci [PATCH] www/p5-Catalyst-Plugin-Params-Nested: update t o ports/147404 pgollucci [PATCH] www/p5-CGI-Application-Plugin-AutoRunmode: upd o ports/147402 pgollucci [PATCH] textproc/p5-Perl-Critic-Bangs: update to 1.06 o ports/147400 pgollucci [PATCH] textproc/p5-EBook-Tools: update to 0.4.8 o ports/147399 pgollucci [PATCH] sysutils/p5-ZConf-Cron: update to 1.1.0 o ports/147398 pgollucci [PATCH] net-mgmt/p5-Nagios-Plugin: update to 0.34 o ports/147397 pgollucci [PATCH] net/p5-Net-LDAP-Makepath: Add missing depends o ports/147396 pgollucci [PATCH] net/p5-Net-LDAP-AutoServer: Add missing depend o ports/147391 pgollucci [PATCH] net/p5-Net-Google-Calendar: update to 0.99 o ports/147386 pgollucci [PATCH] devel/p5-threads-shared: update to 1.33 o ports/147385 pgollucci [PATCH] devel/p5-pip: update to 1.18 o ports/147381 pgollucci [PATCH] devel/p5-Tie-DB_FileLock: update to 0.11 o ports/147380 pgollucci [PATCH] devel/p5-Thread-Cancel: update to 1.11 o ports/147379 pgollucci [PATCH] devel/p5-Test-Strict: update to 0.14 o ports/147378 pgollucci [PATCH] devel/p5-Sub-WrapPackages: update to 2.0 o ports/147377 pgollucci [PATCH] devel/p5-Rose-Object: update to 0.858 o ports/147376 pgollucci [PATCH] devel/p5-Rose-DateTime: update to 0.534 o ports/147374 pgollucci [PATCH] devel/p5-POE-XS-Loop-Poll: update to 1.000 o ports/147373 pgollucci [PATCH] devel/p5-Object-InsideOut: update to 3.67 o ports/147371 pgollucci [PATCH] devel/p5-ExtUtils-XSpp: update to 0.11 o ports/147364 pgollucci [PATCH] devel/p5-CPAN-SQLite: update to 0.199 o ports/147363 pgollucci [PATCH] databases/p5-DBIx-Class-QueryLog: update to 1. o ports/147361 pgollucci [PATCH] devel/p5-Class-Adapter: update to 1.07 o ports/147360 pgollucci [PATCH] comms/p5-SMS-Send-TW-emome: update to 0.04 o ports/147359 pgollucci [PATCH] databases/p5-Rose-DB: update to 0.761 o kern/147352 net [netinet] [patch] replace printf() with log() for "Lim o ports/147346 makc [PATCH] sync in last of print/hplip personal patches. o ports/147318 x11 [Patch]graphics/libdrm:Fix the PLIST when define WITHO o ports/147316 mnag [patch] misc/pecl-timezonedb is too old o ports/147296 portmgr [PATCH] Mk/bsd.licenses.mk: Fix leftovers with custom o kern/147292 fs [nfs] [patch] readahead missing in nfs client options o ports/147287 [PATCH] sysutils/openipmi: support sensors for Sun Fir o kern/147237 [psm] [patch] There is no IBM/Lenovo TrackPoint suppor o ports/147232 pav [patch] port irc/inspircd is out of date o ports/147221 [patch] japanese/lynx: Update to the latest stable rel o ports/147220 [patch] japanese/lynx-current: Update to the latest cu o bin/147175 [kerberos] [patch] libhx509.so containes references to o ports/147147 apache [PATCH] www/mod_log_dbd: cleanups o ports/147145 apache [PATCH] www/mod_clamav: clean sup o ports/147137 ruby MK/bsd.ruby.mk: [patch]: support devel/rubygem-rake un o kern/147127 [pccard] [patch] Fix panic in pccard.c p conf/147126 brucec [firewire] [patch] missing firewire part in defaults/l o i386/147120 i386 [loader] [patch] consistently use 'x86' keyword in loa p docs/147119 uqs [geom] [patch] fix a typo in gsched(8) manual o ports/147114 portmgr Mk/bsd.port.mk: [patch]: remove last vestige of APACHE o ports/147111 ruby [PATCH] lang/ruby19: support security/openssl o ports/147051 python [patch] update devel/py-ctypes to 1.02 and adjust supp o ports/147009 pgollucci Mk/bsd.apache.mk: [patch] default to www/apache22 s ports/146950 brooks [PATCH] sysutils/ganglia-webfrontend: devel/apr* shoul f ports/146945 ume [PATCH] security/cyrus-sasl: pkg-plist is broken o bin/146916 ed [patch] sh(1) uses dumb terminal in single-user mode p usb/146907 gavin [rue] [patch] OQO model01 network does not work on Fre o kern/146889 [libc] [patch] Not having NET_RT_IFLIST #defined cause o ports/146876 mnag [PATCH] databases/sqlite3: recover missing dependency o ports/146872 wen [maintainer-update] [patch] games/eduke32 : update to o usb/146871 usb [usbdevs] [usb8] [patch] provide descriprive string fo o ports/146863 ruby [patch] lang/ruby19: remove extra `-g' from CFLAGS and o bin/146859 [patch] pkg_create(1): libpkg/msg.c removal and relate o ports/146858 ruby [patch] ports-mgmt/portupgrade-devel: respect LOCALBAS o bin/146857 [patch] pkg_create(8): fix missing error call in uname o bin/146855 brucec [patch] sysinstall(8): address possible QA issues with o bin/146835 [patch] ifmcstat(8) fails to build without KVM and wit o conf/146828 [patch] conf/newvers.sh: respect LOCALBASE and MAKEOBJ o ports/146826 krion [patch] lang/gawk: prevent makeinfo banner from appear o ports/146823 python [patch] lang/python26: knob to build _ctypes module ag o bin/146821 [patch] info(1): respect LOCALBASE for INFODIR o ports/146816 portmgr [patch] Mk/bsd.port.mk: loosen SU_CMD & su(1) cohesion o conf/146793 [kbdmap] [patch] Danish kbdmap for MacBook o ports/146773 stas [patch] lang/sbcl: /etc/sbclrc -> PREFIX/etc/sbclrc o kern/146759 net [cxgb] [patch] cxgb panic calling cxgb_set_lro() witho o kern/146758 multimedia [sound] [patch] fix volume control in spicds o ports/146754 miwi [patch] new port: add devel/atf framework to ports f ports/146736 lwhsu [PATCH] net/tintin++: update to 2.00.1 o ports/146720 obrien [PATCH] net/rdesktop: add LIBAO and LIBSAMPLERATE opti f ports/146713 stefan [patch] net-mgmt/argus-monitor update o ports/146711 brooks [PATCH] devel/llvm: should run-depend on Perl f ports/146706 skv [PATCH] mail/libdomainkeys: [SUMMARIZE CHANGES] o bin/146687 [tools] [patch] Fix QA issues with tools/regression/ai o ports/146685 acm [PATCH] games/naev: update to 0.4.2 o ports/146684 acm [PATCH] games/naev-data: update to 0.4.2 o ports/146657 girgen [Patch]databases/postgresql84-server:add option of sup o kern/146628 net [tcp] [patch] TCP does not clear DF when MTU is below o ports/146623 stas [PATCH]lang/sbcl: update to 1.0.38 o kern/146592 [libpcap] [patch] libpcap 1.0.0 doesn't have error mes o kern/146588 [kernel] [patch] sys/kern/kern_uuid.c has a le16dec be o ports/146560 edwin [PATCH] www/mod_encoding: drop support for apache_vers a ports/146556 dinoex [patch] ftp/vsftpd rc script doesn't support vsftpd_fl o ports/146551 fjoe [patch] x11-toolkits/wxgtk28: move gstreamer and mspac o bin/146541 [patch] add check option to md5(1) o ports/146507 nivit [patch] devel/py-Jinja2: enable speedups o ports/146496 portmgr [bsd.port.mk] [PATCH] Removing ${PORTSDIR} from depend p usb/146483 thompsa [usbdevs] [patch] Another USB FTDI device o conf/146439 [patch] remove share/man/man1aout o ports/146435 wes [PATCH] mail/mimedefang - Update to 2.68 and a few add o kern/146429 pjd [geli][panic][patch] kernel panic if geli autodetach i o ports/146422 gnome [patch] x11-toolkits/gtk20: experimental DIRECTFB targ o ports/146421 gnome [patch] graphics/cairo: add DIRECTFB knob o kern/146410 pjd [zfs] [patch] bad file copy performance from UFS to ZF o ports/146380 [patch] comms/xastir: Xastir grabs mouse pointer and w o kern/146375 fs [nfs] [patch] Typos in macro variables names in sys/fs p usb/146367 thompsa [usb8] [patch] Revision 205728: broken bluetooth mouse o ports/146366 sergei [patch] mail/offlineimap: update to 6.2.0.10 git-3c4de o ports/146351 portmgr [patch] [bsd.port.mk] Retire INSTALLS_SHLIB o ports/146347 portmgr [patch] [bsd.port.mk] fix USE_DOS2UNIX info output o ports/146335 nobutaka [patch] www/w3m: various PREFIX/LOCALBASE fixes o bin/146331 [PATCH] Grow ps(1) with "gid" and "group" keywords o ports/146262 x11 [patch] x11/xinit: use PREFIX in the man page o ports/146257 itetcu [patch][repocopy] sysutils/bsdstats: improper use of L o bin/146254 [PATCH] mdmfs(8): Add -k option to specify a skeldir o kern/146250 net [netinet] [patch] Races on interface alias removal o ports/146247 hrs [patch] japanese/font-mplus: fix plist and non-LOCALBA o ports/146225 nivit [PATCH] Update databases/py-sqlalchemy to 0.6.0 o docs/146195 doc [patch] wrap ata.4 lines on terminal boundary o kern/146190 vanhu [ipsec][patch] NAT traversal does not work in transpor o ports/146184 x11 [patch] graphics/libGL: install target fails on 2nd ru f ports/146183 [patch] mail/mutt-devel: add OPTIONS support o ports/146176 mlaier [patch] sysutils/pfstat: add rc.d script for pfstatd(8 p kern/146167 jhb [ptrace] [patch] ptrace PT_DETACH undocumented behavio o ports/146147 ale [patch] mail/roundcube: add installer and scripts o ports/146145 stas [patch] net-mgmt/flow-tools: add OPTIONS support o ports/146132 stas [PATCH] converters/ruby-iconv: add a do-clean target o ports/146131 glewis [PATCH] java/jdk15-16 make files/license.sh more verbo o misc/146119 [tools] [patch] (attempt to) cleanup tools/tools/umast o misc/146088 [tools] [patch] netrate/tcpconnect incorrectly uses er o misc/146086 [tools] [patch] 64-bit aware printf() fixes at tools/t o ports/146083 mnag [PATCH] databases/sqlite3: fix 'make package' when NO_ o ports/146067 portmgr [patch] [bsd.port.mk] remove compatibility describe ta o conf/146064 [patch] allow users to specify location for backups in o conf/146053 rc [patch] [request] shutdown of jails breaks inter-jail o docs/146047 doc [kld] [patch] the kldstat(2) manual needs to be more p o amd64/145991 amd64 [patch] Add a requires line to /sys/amd64/conf/NOTES o misc/145962 [nanobsd] [patch] improved cfg save script o misc/145961 [patch] [nanobsd] improved flash update script o kern/145960 [mfi] [patch] make MFI_STAT_INVALID_STATUS error more o ports/145955 portmgr [bsd.port.mk] [patch] make fetch-required-list in a po o kern/145946 [patch] feature request: VDSO and shared pages o kern/145940 des [crypto] [patch] OpenSSH_5.4p1 - do not prepend Author o bin/145934 [patch] add count option to netstat(1) o kern/145737 bz [netinet] [patch] Wrong UDP checksum not ignored as ex p kern/145736 bz [netinet] [patch] Access to freed mbuf in ip_forward w o kern/145733 ipfw [ipfw] [patch] ipfw flaws with ipv6 fragments o docs/145719 doc [patch] 7.3 relnotes erroneously describes new getpage o i386/145718 i386 [est] [patch] fix freq calculation from MSR for CPUs w o ports/145704 miwi [patch] Update-request: audio/xmms2-scrobbler o bin/145694 [patch] enable config(8) execution outside of the kern o ports/145598 portmgr [patch] Templates/BSD.local.dist o kern/145590 [kernel] [[patch] SIG_ATOMIC_{MIN,MAX} does not match o usb/145455 usb [usb8] [patch] USB debug support cannot be disabled o conf/145440 rc [rc.d] [patch] add multiple fib support (setfib) in /e o kern/145434 [kernel] [patch] Kernel messages about processes don't o conf/145399 rc [patch] rc.d scripts are unable to start/stop programs o misc/145395 [nanobsd] [patch] Extremely slow nanobsd disk image cr o conf/145344 rc [patch] Fix kitchen sink approach for rc.d scripts ins s ports/145301 gnome [patch] sysutils/hal: /usr/local/etc/rc.d/hald startup o ports/145294 skreuzer [PATCH] www/rt: update to 3.8.7 o ports/145293 timur net/samba3 includes the wrong talloc.h [patch] p bin/145101 portmgr [patch] pkg_version(1) - remove hardcoded INDEX filena s bin/145100 portmgr [patch] pkg_add(1) - remove hardcoded versioning data f ports/145094 [patch][repocopy] audio/linux-nerodigitalaudio: update o bin/145063 acpi [patch] powerd(8): Add -m and -M (minimum and maximum o docs/145051 doc [patch] missing closing parenthesis in 7.3 relnotes ar o conf/145009 rc [patch] rc.subr(8): rc.conf should allow mac label con a bin/145000 portmgr [patch] pkg_create(1) needs realpath(3) on -p argument p bin/144921 portmgr [patch] pkg_add(1): Replace vsystem'ed call to mkdir(1 p bin/144920 portmgr [patch] pkg_add(1): Remove useless chmod after mkdtemp p bin/144919 portmgr [patch] pkg_add(1): Remove partially downloaded file o a bin/144918 portmgr [patch] pkg_add(1): Remove reference to /usr/X11R6/bin o ports/144894 gnome [PATCH] finance/gnucash: Chase finance/aqbanking shlib o ports/144888 ale [PATCH] databases/mysql51-server: specify USE_LDCONFIG o docs/144881 doc [patch][handbook] Reference to incorrect manual page o kern/144874 net [if_bridge] [patch] if_bridge frees mbuf after pfil ho o ports/144868 obrien [PATCH] textproc/urlview: attempts to build X11 even i f ports/144857 [patch] audio/abraca: update to 0.4.3 a ports/144855 cy [patch] sysutils/syslog-ng3 Makefile lacks sql-enable o ports/144852 makc [patch] sysutils/ntfsprogs - improvements to mkntfs o kern/144824 [boot] [patch] boot problem on USB (root partition mou o ports/144821 miwi [patch] audio/xmms2 : update to version 0.7 DrNo. o ports/144791 ale [patch] databases/mysql40-server fix build with gcc42 o ports/144769 ruby [PATCH] ports-mgmt/portupgrade should have a configura o bin/144723 [patch] port over coverity SA NULL deref warning fix f o bin/144722 [patch] port over character escape fix for hexdump(1) o kern/144695 [vfs] [patch] race condition in mounting a root-fs on o ports/144660 alepulver [patch] graphics/grx update to 2.4.8 o bin/144652 [PATCH] pwd_mkdb(8) copies comments to /etc/passwd o docs/144630 doc [patch] domainname(1) manpage contains old information f ports/144617 [PATCH] net-mgmt/docsis: Fix build on systems where GC o ports/144605 ruby [PATCH] Get ports-mgmt/portupgrade to build under Ruby o ports/144603 des [PATCH] sysutils/munin-node: fix postfix logfile o ports/144602 des [PATCH] sysutils/munin-node: Use jot(1) instead of seq p kern/144584 [linprocfs][patch] bogus values in linprocfs o kern/144561 net [ixgbe] [patch] ixgbe driver errors o conf/144548 brian [boot] [patch] Enable automatic detection of amd64/i38 o docs/144534 doc [patch] fdescfs(5) and devfs(5) both provide /dev/fd/{ o bin/144531 [PATCH] cp(1) show percentage complete p kern/144505 weongyo [bwn] [patch] Error in macro CALC_COEFF2. o ports/144482 portmgr [bsd.port.mk] [patch] actual-package-depends rejects o o kern/144458 fs [nfs] [patch] nfsd fails as a kld o bin/144446 [patch] db(3) fails with large block sizes o misc/144442 [build] [patch] remove unnecessary group and passwd en o bin/144411 [patch] mtree(8) doesn't reject non-regular files for o docs/144408 doc [patch] update makefs(8) (remove device option) o amd64/144405 amd64 [build] [patch] include /usr/obj/lib32 in cleanworld t o bin/144388 [patch] different behavior of make(1) between command o ports/144335 python [PATCH] www/py-webhelpers does not use PYTHONPREFIX_SI p kern/144307 jh [libc] [patch] ENOENT set unnecessarily under certain o bin/144306 [libm] [patch] Nasty bug in jn(3) a bin/144300 brucec [patch] mdconfig(8): mdconfig -{d,l}n doesn't work o ports/144287 x11 [PATCH] graphics/libGL and friends: Fix build with new o bin/144285 [patch] ps(1): ps -axo user,%cpu,%mem - most processes o conf/144243 [patch] Add NIS related files to OptionalObsoleteFiles a ports/144224 mono [PATCH] lang/mono Fix build with new GCC o conf/144213 rc [rc.d] [patch] Disappearing zvols on reboot o kern/144194 dchagin [linux] [patch] linuxulator: 2 exec bug fixes o ports/144110 mnag [PATCH] www/lighttpd: support IPv6 addresses in mod_ex o ports/144044 gecko [PATCH] www/firefox: Makefile.webplugins target order o ports/143981 des [patch] shells/zsh: ZSH_MEM, ZSH_SECURE_FREE, DEBUG o kern/143868 net [ath] [patch] allow Atheros watchdog timeout to be tun o misc/143831 [bsd.own.mk] [patch] Fix missing atm -> bsnmp dependen o bin/143830 [patch] atmconfig(8): Fix conditional inclusion for sb o misc/143785 [build] [patch] add passive mode to pkg_add cdrtools i o bin/143732 [patch] mtree(8) does a full hierarchy walk when reque o kern/143703 [route] [patch] ECMP Phase 1 fixes for FreeBSD 7.2 o bin/143699 [patch] extend brandelf's OS knowledge o kern/143653 ipfw [ipfw] [patch] ipfw nat redirect_port "buf is too smal o conf/143637 rc [patch] ntpdate(8) support for ntp-servers supplied by o kern/143622 net [pfil] [patch] unlock pfil lock while calling firewall o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result o ports/143584 brooks [PATCH] security/ca_root_nss: Incorrect file name / ve o bin/143572 [zfs] zpool(1): [patch] The verbose output from iostat o bin/143570 [patch] stock ftpd(8) does not handle "filesize" limit o bin/143533 [patch] Changes to support Sun jumpstart via bootparam o bin/143504 pf [patch] outgoing states are not killed by authpf(8) p usb/143448 gavin [usbdevs] [usb8] [patch] QUIRK: JMicron JM20336 USB/SA o ports/143384 ale [PATCH] databases/mysql50-server: switch to using USER o bin/143375 [patch] awk(1) trashes memory with regexp and ^ anchor o bin/143373 [patch] awk(1) tolower/toupper functions don't support o kern/143370 [new driver] [patch] New splash_txt module - support f o bin/143369 [patch] awk(1) doesn't handle RS as a regexp but as a o bin/143368 [patch] awk(1): number of open files is limited to sma o bin/143367 [patch] awk(1) treats -Ft as -F o bin/143365 [patch] incorrect regexp matching in awk(1) o bin/143363 [patch] incorrect handling of \ at the end of line in o kern/143345 fs [ext2fs] [patch] extfs minor header cleanups to better f ports/143344 stefan [PATCH] sysutils/dtc: unbreak port o ports/143334 wes [PATCH] devel/poco-ssl: unbreak port o docs/143330 doc [patch] strtonum(3) does undocumented clobbering of er o kern/143298 secteam [random] [patch] random_yarrow_block() doesn't actuall o bin/143271 [patch] whatis(1) should print error message to stderr o gnu/143254 [patch] groff(1) build in base system does not honor P o ports/143194 lioux [PATCH] net-p2p/i2p: use $SUB_FILES to update pkg-mess f usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google o bin/143142 cperciva [PATCH] Fix non-POSIX compliant multiline conditional a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J o ports/143095 clsung [PATCH] Change default socket of ClamAV for security/c o bin/143090 [PATCH] Let indent(1) handle widecharacter literals co o conf/143085 rc [patch] ftp-proxy(8) rc(8) with multiple instances o conf/143084 rc [jail] [patch]: fix rc.d/jail creating stray softlinks o kern/143073 [patch][panic] unp_gc panic (race with uipc_detach) o bin/143058 [patch] mdconfig(8): make mdconfig -o reserve default o usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d o docs/143041 doc [patch] doc/en__US.ISO8859-1 refers to slip, slirp, sl o kern/143033 [headers] [patch] _SWAP not listed in comment in sys/q s ports/143024 [PATCH] sysutils/puppet: add possobility to rc script o kern/142999 [puc] [patch] add support for the I-O DATA RSA-PCI2/R o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 o conf/142973 rc [jail] [patch] Strange counter init value in jail rc s conf/142972 jail [jail] [patch] Support JAILv2 and vnet in rc.d/jail o bin/142960 sysinstall [patch] sysinstall(8) comparison of cdrom.inf CD_VERSI f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE o kern/142937 bz [ipsec] [patch] IPSec doesn't work with link-local add p kern/142927 thompsa [vlan] [patch] handle parent interface link layer addr o kern/142924 fs [ext2fs] [patch] Small cleanup for the inode struct in o bin/142913 [patch] netstat(1) -w should produce error message if o bin/142912 [patch] nfsstat(1) -w should produce error message if o bin/142911 [patch] vmstat(8) -w should produce error message if f o ports/142837 emulation [patch] emulators/linux_base-* packages fails to insta o ports/142824 [patch] security/openssh-portable: add VersionAddendum o conf/142817 pf [patch] etc/rc.d/pf: silence pfctl o bin/142814 [patch] add beginning and end offset options to md5(1) o ports/142812 nivit [PATCH] math/mprime: Use SUB_FILES to update files o ports/142769 sergei [PATCH] mail/offlineimap: use $SUB_FILES to dynamicall o ports/142743 stas [PATCH] devel/cross-binutils: installed by *-rtems-gcc o ports/142739 rnoland [PATCH] x11-wm/libcompizconfig Patch not needed on rec o ports/142736 gecko [PATCH]www/firefox3*: unbreak with recent versions of o ports/142734 gshapiro [PATCH] mail/listmanager: Support NOPORTSDOCS & DATA, f ports/142704 java [PATCH] java/jai-imageio: use $SUB_FILES to dynamicall a bin/142570 portmgr [PATCH] clean up quiet mode (-q | --quiet) output of p a bin/142529 dougb [build] [patch] make delete-old removes BIND files whe o bin/142526 [patch] Cleanups and updates to newfs_msdos(8) o conf/142434 rc [patch] Add cpuset(1) support to rc.subr(8) o ports/142423 des [PATCH] sysutils/munin-node: Correct default postfix p p docs/142418 bcr [PATCH] newfs_msdos(8) doc fix o kern/142401 fs [ntfs] [patch] Minor updates to NTFS from NetBSD p docs/142367 roam [patch] wlan(4) does not document requirement for kern o ports/142322 timur [patch] net/samba33: smbstatus got error: messaging_td o bin/142258 [patch] rtld(1): add ability to log or print rtld erro p kern/142197 rpaulo [ndis] [patch] ndis is missing media status reporting o ports/142165 ale [PATCH] lang/php5: add optional patch for gd2 o ports/142151 wosch [patch] ports-mgmt/portcheckout to use variables inste o ports/142115 nivit [patch] Extract textproc/py-genshi during installation f kern/142085 gavin [puc] [patch] Few lines to pucdata.c to support for Te o kern/142082 dchagin [patch] [panic] linuxulator: getppid: use after free o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- o ports/142000 wxs [patch] Wrong MAIL_GID when configuring mail/mailman f p kern/141939 edwin [libc] [patch] strptime(3) confuses July with June wit o kern/141934 scsi [cam] [patch] add support for SEAGATE DAT Scopion 130 o conf/141909 rc rc.subr(8): [patch] add rc.conf.d support to /usr/loca o bin/141890 [patch] slapd(8): The slapd server starts/restarts way a ports/141795 dinoex graphics/jasper: ensure that configure script has exec o kern/141777 net [rum] [patch] Support usbdevs / rum(4) for Buffalo WLI p bin/141753 jh [libc] [patch] double-free in reallocf(3) o kern/141682 [libc] [patch] Faster version of strncpy(3) o conf/141678 rc [patch] A minor enhancement to how /etc/rc.d/jail dete o kern/141655 [sio] [patch] Serial Console failure on Dell servers o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o ports/141640 krion [patch] mail/exim: fix pcre linking o ports/141521 lth [PATCH] net/p5-POE-Component-Server-Twirc: update to 0 o ports/141472 des [PATCH] shells/zsh: add linsysfs to (u)mount -t comple o kern/141439 dchagin [linux] [patch] linux_exit_group kills group leader p docs/141353 jhb [NOTES] [patch] i386 NOTES says building acpi into ker o conf/141317 jail [patch] uncorrect jail stop in /etc/rc.d/jail o ports/141281 anders [patch] security/pwman o docs/141245 blackend [handbook][patch] Chapter 31.3 Wireless Networking: Up p bin/141175 kientzle [patch] New cpio(1) in FreeBSD 8 regressed and left ou p docs/141125 brucec [patch] Typo of "NUL" in getline.3 man page o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot p ports/141033 gnome [PATCH] allow to build devel/libsoup without gnome o ports/140939 secteam [patch] security/vuxml: fix and extend files/newentry. f ports/140791 bf [PATCH] textproc/libtre: Fix build on systems where GC f ports/140790 lioux [PATCH] mail/crm114: Fix build on systems where GCC st o kern/140752 [ata] [patch] HDD power-off procedure is not clean o kern/140728 net [em] [patch] Fast irq registration in em driver o kern/140690 [libc] [patch] swab(3) with negative len should do not o kern/140661 fs [zfs] [patch] /boot/loader fails to work on a GPT/ZFS- o conf/140650 [build] [patch] WITHOUT_MODULES cannot be used from ke o kern/140647 net [em] [patch] e1000 driver does not correctly handle mu o kern/140619 net [ifnet] [patch] refine obsolete if_var.h comments desc o kern/140614 usb [uplcom] [patch] adding support for Radio Shack Gigwar o kern/140597 net [netinet] [patch] implement Lost Retransmission Detect o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja o kern/140567 net [ath] [patch] ath is not worked on my notebook PC o docs/140495 doc [patch] /etc/rc.conf.d is not documented in rc.conf(5) p bin/140493 jh [patch] truss(1) log file descriptor shared with trace o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d p docs/140458 bcr [patch] Grammar fix for to{upper,lower}(3) o docs/140457 doc [patch] Grammar fix for isspace(3) p docs/140456 roam [patch] Grammar fix for isprint(3) o docs/140444 doc [patch] New Traditional Chinese translation of custom- o conf/140440 rc [patch] allow local command files in rc.{suspend,resum p bin/140384 uqs [patch] chio(8) fix some harmless uninitialized argume o docs/140369 doc [patch] src/contrib/pf/man/pf.4 o kern/140349 [libpcap] [patch] libpcap's parser doesn't recognize n o bin/140304 [patch] add MAILFROM ability to cron(8) o conf/140261 rc [patch] Improve flexibility of mdconfig2 startup scrip o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI s ports/140216 gnome [patch] devel/nspr does not check POLLHUP in PR_Connec o ports/140188 itetcu [PATCH] some ports need adjustment to properly expand o kern/140185 [patch] expand_number(3) does not detect overflow in n o misc/140173 [nanobsd] [patch] Small nanobsd pkg install change o bin/140151 [patch] hexdump(1): Fix potential setlocale(3) in hexd o bin/140143 [patch] dlopen(3) doesn't promote RTLD_GLOBAL for link o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file o conf/139997 kbdmap(1): [patch] Swissgerman keyboard support for Ma s usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o ports/139872 sergei [PATCH] ports-mgmt/porttools: improve port's directory p kern/139847 jh [geom_mbr] [patch] load/unload causes system to hang o bin/139802 uqs [patch] fsck_msdosfs(8): sync with NetBSD sources, inc o ports/139794 stas [PATCH] net/ruby-ldap: update to 0.9.9 o i386/139743 i386 [ichsmb] [patch] ichsmb driver doesn't detects SMB bus o docs/139705 remko [patch] tunefs(8) man page bugs section ambiguous on a o ports/139630 itetcu [PATCH] deskutils/treeline: update to 1.3.0 p bin/139606 portmgr [patch] pkg_add(1) coredumps silently on atlantis syml o kern/139604 [patch] [ichwd] watchdog sometimes does not enable o bin/139601 [patch] make(1): variable substitution for $@ in depen o kern/139597 fs [patch] [tmpfs] tmpfs initializes va_gen but doesn't u f ports/139587 edwin [PATCH] games/xrally: fix broken mtree with custom PRE f kern/139576 ed [syscons] [patch] blink screen too noisy o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o bin/139389 [patch] Change top(1) to display thread IDs o bin/139346 net [patch] arp(8) add option to remove static entries lis o bin/139345 [patch] handle SIGINFO in sleep(1), etc. p bin/139319 uqs [patch] flex(1): fix prototypes, esp. when YY_NO_INPUT p kern/139312 delphij [tmpfs] [patch] tmpfs mmap synchronization bug o kern/139271 [pci] [patch] sysutils/hpacucli does not work on the a o kern/139268 net [if_bridge] [patch] allow if_bridge to forward just VL o docs/139153 doc [patch] the hier(7) man page needs to be updated o kern/139144 [keyboard] [patch] CapsLock LED should not depend on k o kern/139080 [libc] [patch] closelog() can close negative file desc o kern/139019 [libc] [patch] Add xdr_sizeof() to libc. a bin/139015 portmgr [patch] pkg_info(1): fix exit code for pkg_info -g o ports/139011 x11 [patch] Add options to support GLX TLS in x11-servers o ports/138929 [PATCH] security/heimdal update to 1.2.1 o bin/138926 cperciva [patch] freebsd-update(8) allows unattended upgrade o bin/138855 [patch] if the hostname is empty, opiepasswd(1) create o i386/138737 i386 [endian] [patch] Patch for bswap64(9) operation on IA o conf/138692 [request] [patch] 450.status-security should exit with o kern/138620 net [lagg] [patch] lagg port bpf-writes blocked o kern/138421 fs [ufs] [patch] remove UFS label limitations p kern/138390 brueffer [gif] [patch] NULL pointer dereference in gif_input() p kern/138388 brueffer [ppbus] [patch] NULL pointer dereference in pcfclock_o p kern/138387 brueffer [ppbus] [patch] NULL pointer dereference in lptopen() p kern/138384 brueffer [ips] [patch] NULL pointer dereference in ipsd_dump() o kern/138381 np [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ o kern/138341 [nanobsd] [patch] 8.0-BETA3: nanobsd build broken due o conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a o bin/138150 [build] [patch] fix for src/etc/Makefile mtree p usb/138138 gavin [u3g] [patch] [usb67] Novatel U760 for u3g (Verizon an p bin/138131 [patch] pstat(8): pstat -t coredumps when reading from o bin/137864 sysinstall [patch] sysinstall(8): add possibility to shutdown/pow o bin/137841 net [patch] wpa_supplicant(8) cannot verify SHA256 signed o kern/137819 [libc] [patch] fpurge(3) violates stdio invariant o kern/137775 net [netgraph] [patch] Add XMIT_FAILOVER to ng_one2many o ports/137731 x11 [patch] x11-drivers/xf86-input-vmmouse p docs/137723 remko [patch] share/man/man5/make.conf.5 : document WWWSUPFI o ports/137691 avilla [PATCH] New port for semantik (kdissert II) o kern/137678 [libstand] [patch] libstand's bootp/dhcp code always u o conf/137671 [patch][request] enhance beastie.4th: possibility to d o gnu/137665 [patch] dialog(1) goes into tight loop on encountering o ports/137664 mnag [PATCH] www/lighttpd adds mod_geoip (shar) s ports/137587 kde [PATCH] audio/arts: Add more OPTIONS and proper CONFIG o bin/137484 net [patch] Integer overflow in wpa_supplicant(8) base64 e o conf/137470 rc [PATCH] /etc/rc.d/mdconfig2 : prioritize cli parameter o kern/137436 [puc] [patch] Fix puc driver to support newer Timedia o bin/137379 [patch] ppp(8) new command iface name to rename tun in o bin/137365 [patch] let last(1) read from stdin via "-f -" o kern/137307 [libc] [patch] Enhance strptime(3) to support %U and % f usb/137190 usb [usb8][patch] inhibit spurious button releases for som o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo p usb/137188 usb [usb8][patch] correctly handle USB report descriptors f bin/137180 usb [build] [patch] building world for 8.0-BETA2 fails on o bin/137156 [patch] fix dump(8) cryptic output on reporting progre o kern/137145 net [mbuf] [patch] Reference count computing isn't correct o bin/136994 net [patch] ifconfig(8) print carp mac address o ports/136917 python [patch] lang/python26: gettext detection o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic o bin/136857 [patch] du(1): permit per directory only sum (no herit f ports/136764 skreuzer [PATCH] net-mgmt/nagios-plugins: Dont truncate proc a p usb/136761 usb [usbdevs][usb67][patch] Teach usbdevs / u3g(4) about H o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa o gnu/136705 [patch] gdb(1): remove a semicolon from i386-tdep.c . o kern/136695 ipfw [ipfw] [patch] fwd reached after skipto in dynamic rul o kern/136669 [libc] [patch] setmode(3) should always set errno on e o bin/136661 net [patch] ndp(8) ignores -f option o bin/136354 [patch] powerd(8): Support for maxspeed in adaptive mo o conf/136336 [termcap] [patch] missing entry for "center of keypad" o ports/136291 openoffice [patch] editors/openoffice.org-3: gpatch failure o kern/136159 [kthread] [patch] tsleep with PDROP in kthread_suspend p bin/135918 [boot0] [patch] Make BootEasy compatible with NT Drive o bin/135718 [patch] enhance qsort(3) to properly handle 32-bit ali o bin/135700 [patch] Add an ability to run inetd(8) with P_PROTECTE f ports/135674 yzlin [PATCH] some PHP-related knobs should be placed before o ports/135670 ale [PATCH] databases/mysql50-server: in mysql-client mysq o ports/135649 portmgr Mk/bsd.port.mk: [patch], fix documentation relating to p kern/135628 remko [umass] [patch] add a device quirk for Myson Heden 881 o kern/135608 [patch] sysctl(8) should be able to handle byte values o bin/135565 randi [patch] a patch for sysinstall(8) to look at UFS parti o ports/135500 obrien net/rdesktop sound does not work [PATCH] o kern/135485 [modules] [patch] During a shutdown, kernel modules sh o docs/135475 doc [patch] jot(1) manpage and behaviour differ o ports/135471 secteam [patch] ports-mgmt/portaudit-db packaudit.conf sourced o bin/135349 acpi [patch] teach acpidump(8) to disassemble arbitrary mem o usb/135348 usb [umass] [patch] USB Drive Hangs with ZFS (JMicron USB2 o ports/135337 emulation [PATCH] emulators/linux_base-f10: incorrect bash usage p misc/135301 remko [tinybsd] [patch] Patch for fix architecture support f o bin/135159 portmgr [patch] pkg_delete(1) segfaults on empty @pkgdep lines o kern/135070 acpi [acpi] [patch] BIOS resource allocation and FreeBSD AC o bin/134975 ipfw [patch] ipfw(8) can't work with set in rule file. o misc/134920 [headers] [patch] Large upgrades from source cause com o bin/134919 [patch] add information to truss(1) when tracing linux o conf/134918 rc [patch] rc.subr fails to detect perl daemons o kern/134878 [puc] [patch] Add support for Oxford OXPCIe954 and OXP o conf/134660 rc [patch] rc-script for initializing ng_netflow+ng_ipfw o ports/134643 x11 [patch] x11-servers/xorg-server - Unbreak Xorg 7.4 ser o usb/134631 usb [usbdevs] [patch] WiSPY DBx support requires usb tweak o gnu/134604 [gcclibs] [patch] Memory leak in gcclibs/libgomp o i386/134586 jhb [i386] [patch] Incorrect machine check exception handl s kern/134517 yongari [rl] [patch] Realtek 8111C Driver Backport for FreeBSD o arm/134368 arm [patch] nslu2_led driver for the LEDs on the NSLU2 o arm/134338 arm [patch] Lock GPIO accesses on ixp425 o kern/134249 [libiconv] [patch] ignore case for character set names o i386/134242 i386 [boot0] [patch] improvement i386 boot0 error diagnose o kern/134225 [libexec] [patch] Reduce disk write load from save-ent p arm/134092 cognet [patch] NSLU.hints contains wrong hints for on board n p docs/134053 danger [patch] arp(8) manpage should mention ndp(8) in See Al o kern/134010 [libgssapi][patch] Buffer overflow and use-after-free o conf/134006 rc [patch] Unload console screensaver kernel modules if s o ports/133946 x11 x11-servers/xorg-server [patch] X crashes in xinerama o conf/133890 rc [patch] sshd(8): add multiple profiles to the rc.d scr o bin/133860 [patch] lorder(1) misses symbols defined in read only o bin/133834 [patch] chat(8): terminate()/fatal() infinity mutual r o ports/133815 portmgr [PATCH] bsd.port.mk: implements fakeroot for the ports o kern/133786 net [netinet] [patch] ip_input might cause kernel panic o kern/133776 [libc] [patch] snprintf(3) and vsnprintf(3) do not pro o kern/133775 [patch] gdb(1) debugscripts: fix proc address print in o conf/133715 [terminfo] [patch] no terminfo for rxvt-unicode termin o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa o ports/133457 eclipse [PATCH] java/eclipse-webtools: update to 3.0.3 o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o bin/133227 edwin [patch] whois(1): add support for SLD whois server loo o kern/133174 fs [msdosfs] [patch] msdosfs must support utf-encoded int o ports/133146 [patch] x11-fonts/dejavu: install fontconfig configura o bin/132993 [patch] bsnmpd(1) - bad IfPoll timer interval o conf/132851 net [patch] rc.conf(5): allow to setfib(1) for service run o bin/132845 geom [geom] [patch] ggated(8) does not close files opened a o docs/132839 doc [patch] Fix example script in ldap-auth article p docs/132834 trhodes [patch] Punctuation inconsistency in chgrp.1 and cut.1 o kern/132832 net [netinet] [patch] tcp_output() might generate invalid p usb/132799 gavin [usb][patch]GENESYS USB2IDE requires NO_SYNCHRONIZE_CA o bin/132798 net [patch] ggatec(8): ggated/ggatec connection slowdown p o usb/132785 usb [usb] [patch] Gemtech remote powersocket is classed as o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all o bin/132692 [patch] getent(1): no support for netgroup o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec o ports/132579 cy [patch] sysutils/screen: fix build with externel compi p docs/132546 trhodes [patch] sync vm_map_lock(9) with recent locking change o kern/132497 rwatson [boot] [patch] Stale pre-5.x mbuf references in new Bo o conf/132483 rc rc.subr(8) [patch] setfib(1) support for rc.subr o conf/132476 rc [rc.d] [patch] add support setfib(1) in rc.d/routing p docs/132392 trhodes [PATCH] remove leftovers of libkse from pthread.3 o bin/132367 [patch] less(1)/more(1) fchmod(2) `/dev/null' to 0600 o docs/132311 doc [patch] man5/nsmb.conf.5 o bin/132302 [patch] smbutil(1): contrib/smbfs subr.c: saved passwo o ports/132294 stas [PATCH] lang/ruby18: Add option to build with Profile- o ports/132293 stas [PATCH] lang/ruby19: Add option to build with Profile- o kern/132273 geom glabel(8): [patch] failing on journaled partition o kern/132271 [puc] [patch] puc support for a generic card o ports/132213 anders [patch] mail/imap-uw: Add support for ~/mail as defaul o kern/132172 [patch] [panic] Page fault panic in scioctl and consol o bin/132114 randi [patch] add new 'docs' virtual category to sysinstall o bin/132112 [patch] devd(8) unnecessarily reconfigures carp(4) int o kern/132104 [kernel] [patch] kenv(1) buffer overflow o usb/132080 usb [patch] [usb] [rum] Kernel panic after NOMEM caused by o bin/132008 [PATCH] config(8) to allow using section/nosection in o kern/132001 [patch] [ixgb] driver update o kern/131933 [uart] [patch] Cannot detect Sony Ericsson GC89 EDGE/W o ports/131930 x11 [PATCH] x11-servers/xorg-server coredumps on exit o docs/131918 doc [patch] Fixes for the BPF(4) man page o usb/131912 usb [uslcom] [patch] New devices using Silicon Labs chips o usb/131900 usb [usbdevs] [patch] Additional product identification co o docs/131684 doc [patch] articles/linux-comparison: replace Addenda by o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o docs/131625 doc [patch] Typos in ed(1) man page o docs/131590 doc [patch] whitespace-only change of developers-handbook/ o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm o kern/131536 net [netinet] [patch] kernel does allow manipulation of su o bin/131427 [patch] Add to fetch(1) an ability to limit a number o p bin/131250 brian [patch] ppp(8) proxyarp does not work o bin/131143 [patch] amd(8) causes annoying "embedded slash in map o usb/131123 usb [patch] re-add UQ_ASSUME_CM_OVER_DATA USB quirk o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ p docs/130895 gavin [patch] No man page installed for padlock(4) on amd64 p bin/130874 jh [patch] fix typo in nvi(1) (subsitution -> substitutio o misc/130856 [build] [patch] make installworld work when WITHOUT_GA o kern/130749 [libc] [patch] nscache.c/nscachedcli.c - return error p kern/130735 scsi [cam] [patch] pass M_NOWAIT to the malloc() call insid o kern/130657 bz [ip6] [patch] ipv6 class option o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a p docs/130548 geom [patch] gjournal(8) man page is missing sysctls o ports/130387 portmgr [PATCH] Mk/bsd.port.mk - Add macros for COPYTREE_WWW a a kern/130386 rwatson [patch] add locking for generic interface address mani o bin/130366 randi [patch] sysinstall(8): Minor correction to sysinstall o kern/130286 [patch] hifn(4) changes p bin/130159 brian [patch] ppp(8) fails to correctly set routes o bin/130132 ipfw [patch] ipfw(8): no way to get mask from ipfw pipe sho p kern/130107 imp [devctl] [patch] in devctl_queue_data(): possible use o bin/130056 [patch] have nfsstat(1) use strtonum instead of atoi o bin/129965 gavin [patch] ps(1): ps -lH doesn't show the proper CPU# o usb/129945 usb [usb67] [usbdevs] [patch] add u3g support for Longchee o kern/129861 pf [pf] [patch] Argument names reversed in pf_table.c:_co p usb/129858 remko [usb] [patch] Need to add quirk to da_scsi.c to suppor o bin/129814 [patch] support of per script nice(1) value in periodi o bin/129764 [patch] unbreak sbin/newfs build for the 8-CURRENT o usb/129758 usb [uftdi] [patch] add Pyramid LCD usb support o ports/129741 portmgr [patch] bsd.port.mk: support systems that have been bu o conf/129697 brucec [patch] fix misbehavior of periodic/daily/100.clean-di p bin/129630 uqs [patch] bsnmpd(1): teach hostres module about ZFS o bin/129620 [patch] Incorrect bzip2(1) behavior o ports/129553 hrs [patch] print/acroread8 can't launch some programs due o usb/129522 usb [ubsa] [usb67] [patch] add support for ZTE AC8700 mode o ports/129422 ume [patch] mail/cyrus-imapd23: add patch for autocreate I o bin/129405 [patch] tcsh(1) vfork bugs p docs/129398 trhodes [patch] ddb(8): various tweaks to ddb-related man page o kern/129352 net [xl] [patch] xl0 watchdog timeout o usb/129251 usb [usbdevs] [usb67] [patch] Liebert UPS being assigned u o kern/129231 fs [ufs] [patch] New UFS mount (norandom) option - mostly o ports/129210 portmgr [patch] Instrument bsd.port.mk to detect unstripped bi o usb/129173 usb [uplcom] [patch] Add support for Corega CG-USBRS232R a o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o kern/129059 fs [zfs] [patch] ZFS bootloader whitelistable via WITHOUT o docs/129024 keramida [patch] ipfw(8) improvements o usb/128977 usb [usb67] [patch] uaudio is not full duplex p usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o gnu/128645 [patch] grep(1): teach grep -r to how to ignore direct f kern/128639 acpi [patch] [acpi_asus] acpi for ASUS A6F,A3E,A3F,A3N not f kern/128634 acpi [patch] fix acpi_asus(4) in asus a6f laptop p bin/128616 kientzle [patch] bsdtar(1) error message typo p misc/128610 kensmith [patch] /usr/src: the iso.1 target of make release do o kern/128608 imp [pccbb] [patch] add support for powering down and up C o bin/128605 secteam [patch] dhclient(8) - security issue o bin/128587 kensmith [patch] sysinstall(8) uses first mirror in Turkey even o bin/128582 [patch] wpa_cli(8): activate readline(3) support o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when p bin/128561 kientzle [patch] compile warning fixes for bsdtar test harness o bin/128493 [patch] find(1) exits if -fstype test fails with EACCE o usb/128485 usb [umodem] [patch] Nokia N80 modem support o ports/128467 ale [patch] databases/php4-dba: change Berkeley DB detecti o misc/128444 [build] [patch] create USB stick install image o conf/128433 [patch] Add option to allow a full login when doing 's o bin/128427 [patch] mdfs(8): mount_mfs warns "chmod: Read-only fil o usb/128324 usb [uplcom] [patch] remove baud rate restriction for PL23 o conf/128299 rc [patch] /etc/rc.d/geli does not mount partitions using o bin/128295 net [patch] ifconfig(8) does not print TOE4 or TOE6 capabi o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi o kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets p docs/128222 trhodes [patch] man page truss(1) claims that init(8) can be t p docs/128089 kientzle [patch] Incorrect type in archive_write(3) manpage o kern/128040 [pccbb] [patch] System hangs when PCMCIA-CF adapter pl o kern/128037 [pccbb] [patch] System hang on shutdown with PCMCIA-CF o kern/128036 [sio] [patch] serial console mostly ignores typein to p i386/128014 phk [geode] [patch] AMD Geode CS5536 watchdog(9) not disab p bin/127986 [patch] ee(1): fix compiler warnings caused by use of o usb/127980 usb [umass] [patch] Fix Samsung YP U2 MP3 player on 7.x an o kern/127928 net [tcp] [patch] TCP bandwidth gets squeezed every time t o bin/127918 [patch] ATA Security support for atacontrol(8) o conf/127917 rc [patch] dumpon rejects on start with physmem>swap even o docs/127908 doc [patch] readdir(3) error documentation o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion p docs/127840 murray [patch] fix entity references in release/doc/en_US.ISO p kern/127834 rstone [ixgbe] [patch] wrong error counting o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o kern/127717 [ata] [patch] - support write cache toggling per devic o bin/127633 edwin [patch] Update top(1) to 3.8b1 f ports/127608 marius [patch] sysutils/cdrtools - cdrecord: fix device enume p docs/127602 trhodes [patch] Incomplete information in nsswitch.conf(5) p usb/127549 usb [umass] [usb67] [patch] Meizu MiniPlayer M6 (SL) requi f usb/127543 usb [patch] [ubsa] Support Option Globetrotter HSDPA modem o bin/127532 [patch] install(1): install -S Not Safe in Jail with s p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c p docs/127432 remko [patch] update fsck_ffs(8) man-page with regarding to p docs/127406 usb [patch] update umodem man page: Sony Ericsson W810i o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a a bin/127331 edwin [patch] top(1) only shows cputime used by one process o ports/127303 kuriyama [patch] misc/amanda-server Add pkg-install to create m p kern/127289 [ata] [patch] new pci ids for SiI3132 present on adapt o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped o bin/127265 [patch] ddb(4): Adding the ddb command set from module o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l o ports/127214 secteam [PATCH] ports-mgmt/portaudit: Please change to U p kern/127213 delphij [tmpfs] [patch] sendfile on tmpfs data corruption o kern/127121 pf [pf] [patch] pf incorrect log priority o kern/127042 pf [pf] [patch] pf recursion panic if interface group is p kern/127040 davidxu [patch] mqueuefs(5) witness panic o bin/127034 [patch] Add option to count apparent size to du(1) p kern/126984 glebius [carp] [patch] add carp userland notifications via dev p kern/126926 [build] [patch] Add MACHINE to dmesg o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c p conf/126841 philip [syscons] [patch] Add eee900 keyboard layout to /usr/s o kern/126688 net [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and p bin/126657 [patch] w(1) breaks multibyte date format o docs/126590 doc [patch] Write routine called forever in Sample Echo Ps p misc/126435 ed [patch] /usr/share/examples/drivers/make_pseudo_driver o bin/126433 [patch] some missing checks in rm(1) o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped p bin/126324 rc [patch] rc.d/tmp: Prevent mounting /tmp in second tim o kern/126300 [build] [patch] Add missing -mno-sse3 flag for AMD64 t p docs/126227 trhodes [patch] kthread(9) refers to non-existent manpage, des o kern/126075 net [inet] [patch] internet control accesses beyond end of o ports/125996 danfe [patch] x11/nvidia-driver - remove pkg_info statements o bin/125922 net [patch] Deadlock in arp(8) p bin/125878 kmacy [patch] [request] Add zfs/zpool to rescue programs. o kern/125859 [ata] [patch] sata access failure [regression] o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o bin/125707 [patch] powerd(8): force a method of battery state que o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc p docs/125639 trhodes [patch] kldunloadf(2) does not mention about possible a kern/125613 trasz [ufs] [patch] ACL problems with special files o conf/125551 [patch] building WLAN userland should be optional o kern/125496 [ar] [patch] free memory on ataraid module unload o kern/125454 [digi] [patch] device digi (PC/Xe 64K 16 ports) not wo o bin/125449 [patch] awk(1): /usr/bin/awk fails mawk's FPE test o bin/125370 ipfw [ipfw] [patch] increase a line buffer limit o bin/125350 des [libfetch] [patch] src/lib/libfetch add support for de p docs/125253 trhodes [patch] jail(2) does not mention about possible error p kern/125181 thompsa [ndis] [patch] with wep enters kdb.enter.unknown, pani a kern/125139 brooks [patch] [ata] bugs in ATAPI CD tray control p bin/125098 [patch] ee(1) consume 100% cpu usage o conf/125041 [patch] New file: /etc/periodic/security/810.loginok o kern/125034 [devfs] [patch] devfs does not apply rules to newly cr o kern/125030 [devfs] [patch] Command 'devfs ruleset 0' causes panic o kern/125009 [patch] access(2) grants root execute perms for non-ex o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o kern/124963 alc [vm] [patch] old pagezero fixes for alc o kern/124881 [devfs] [patch] [request] Add possibility to check whi p kern/124853 gonzo [devfs.rules] [patch] devfs_ruleset_use may use freed o bin/124822 [editline] [patch] Editline's ed-search-{prev,next}-hi o conf/124747 rc [patch] savecore can't create dump from encrypted swap o kern/124744 acpi [acpi] [patch] incorrect _BST result validation for To a docs/124716 trhodes [patch] GEOM RAID1 handbook example only covers boot p p conf/124641 gabor [patch] new periodic script for checking for ports wit p kern/124621 fs [ext3] [patch] Cannot mount ext2fs partition o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o misc/124431 bde [build] [patch] minor revision of BDECFLAGS p bin/124392 rink [patch] bootparamd(8) does not work on arm p misc/124385 mtm [build] [patch] usr.sbin/ngctl/main.c fails to compile p bin/124342 mtm ggated(8): [patch] sbin/ggate/ggated/ggated.c fails to p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/124225 net [ndis] [patch] ndis network driver sometimes loses net o kern/124164 [patch] Add SHA-256/512 hash algorithm to crypt(3) p bin/124052 [patch] adduser(8) throws errors when -f input file in p kern/123961 net [vr] [patch] Allow vr interface to handle vlans o kern/123892 net [tap] [patch] No buffer space available o kern/123858 net [stf] [patch] stf not usable behind a NAT p bin/123807 imp [patch] timed(8) does not run on arm (incorrect getopt o conf/123734 rc [patch] Chipset VIA CX700 requires extra initializatio o bin/123703 [patch] timed(8): qualify bad diagnostic in src/usr.sb o bin/123693 [patch] burncd(8): workaround for busy cd-writer while o bin/123553 [patch] Prevent indent(1) from splitting unrecognized o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail p kern/123518 [patch] src/sys/kern.mk fails to disable -msse3 for am o docs/123484 edwin [patch] teach pxeboot.8 about ISC DHCP v3 o bin/123418 [patch] du(1): add -g (Gbyte) option to du(1) + manpag o usb/123352 usb [usbdevs] [patch] Add Option GTMAX3.6/7.2 and Quallcom o usb/123351 usb [usbdevs] [patch] Add Reiner SCT cyberJack, Omnikey [2 p bin/123329 phk [patch] usage strings for fifolog_create(1) and fifolo o misc/123240 [nanobsd] [patch] rerunning nanobsd.inc.sh fails becau o bin/123237 randi sysinstall(8): [patch]: sysinstall(8) -- remove dummy o conf/123222 rc [patch] Add rtprio(1)/idprio(1) support to rc.subr(8). o ports/123185 portmgr [patch] Mk/bsd.port.mk - Add extended description to O o kern/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc o misc/123156 [build] [patch] make.conf update to "make update" sect o misc/123155 [build] [patch] src/Makefile.inc1 bug: remove obsolete p kern/123147 remko [ti] [patch] ti(4) doesn't use mii, but kernel configs o conf/123119 ipfw [patch] rc script for ipfw does not handle IPv6 f docs/123038 trhodes [patch] update to projects/c99/index.sgml p docs/123035 trhodes [patch] bugs in refuse.README a bin/123021 [patch] mount(8): mount -p shows incorrect mount optio a bin/123015 brooks [patch] rc.conf(8): implement automated creation of /e o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um o usb/122956 usb [ubsa] [patch] add support for Novatel Wireless XU870 o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa o conf/122883 [patch] login class for ukrainian users accounts o ports/122877 portmgr [patch] Mk/bsd.port.mk - Show all pkg-message files o usb/122819 usb [usb] [patch] Patch to provide dynamic additions to th o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE o bin/122652 [patch] du(1) support for inode count o i386/122623 i386 [build] [patch] bsd.cpu.mk doesn't handle opteron/athl o usb/122621 usb [new driver] [patch] New driver for Sierra Wireless 3G o bin/122519 [patch] ppp(8): ppp provides deficient DNS info o conf/122477 rc [patch] /etc/rc.d/mdconfig and mdconfig2 are ignoring f misc/122300 kensmith [build] [patch] SEPARATE_LIVEFS arch dependent set but p kern/122288 jh [md] [patch] mdconfig(8) returning negative unit numbe o bin/122271 [patch] usr.bin/xinstall - Add support for -D option ( o conf/122170 rc [patch] [request] New feature: notify admin via page o p bin/122137 [patch] Have crontab(1) use snprintf instead of sprint p bin/122070 [patch] crontab(1): Zero out pw_passwd in crontab o bin/122043 [patch] du(1) does not support byte-count-based report o conf/122037 [patch] add rsync example for inetd.conf o usb/122025 usb [uscanner] [patch] uscanner does not attach to Epson R o stand/121921 standards [patch] Add leap second support to at(1), atrun(8) o kern/121917 [boot] [patch] Broken boot on Asus P4P800-VM after upg s ports/121902 gabor [PATCH] textproc/ispell add OPTIONS o bin/121895 net [patch] rtsol(8)/rtsold(8) doesn't handle managed netw o usb/121755 usb [ohci] [patch] Fix panic after ohci/uhub cardbus devic o kern/121706 net [netinet] [patch] "rtfree: 0xc4383870 has 1 refs" emit o ports/121672 wes [Patch] mail/mimedefang: opt out of clamav use f kern/121660 jkoshy [hwpmc] [patch] hwpmc(4) incorrectly handles PMC sampl o kern/121656 [libc] [patch] telldir(3) issues o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o kern/121559 geom [patch] [geom] geom label class allows to create inacc o kern/121504 acpi [patch] Correctly set hw.acpi.osname on certain machin p docs/121490 brueffer [patch] Multiple typos ("in in") in /usr/src files o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o usb/121426 usb [patch] [uscanner] add HP ScanJet 3570C o bin/121366 fs [zfs] [patch] Automatic disk scrubbing from periodic(8 o bin/121359 net [patch] [security] ppp(8): fix local stack overflow in o bin/121243 des [patch] passwd(1) patch for usage with PAM/LDAP p usb/121184 usb [uipaq] [patch] add ids from linux ipaq driver (plus a o docs/121173 doc [patch] mq_getattr(2): mq_flags mistakenly described a p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o ports/121143 markus [PATCH] audio/cdparanoia: rip multisession CDs correct o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/121102 acpi [acpi_fujitsu] [patch] update acpi_fujitsu for the P80 o kern/121073 [kernel] [patch] run chroot as an unprivileged user o conf/121064 [patch] Use ASCII characters for box/line characters i o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o bin/120994 [patch] alignment violation in chap module of ppp(8) c o conf/120993 [patch] 340.noid -- Add "find -x" capability (don't cr o bin/120990 [patch] support "BIOS Boot" partition type in gpt(8) o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada p docs/120945 net [patch] ip6(4) man page lacks documentation for TCLASS p bin/120891 dwmalone [patch] enhancement to syslogd(8) - always printing lo o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/120872 [libkvm] [patch] fstat exit on signal 11 p bin/120870 jh [patch] truss(1) shows 'pipe' system call as having 6 o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o usb/120572 usb [umass] [patch] quirk to support ASUS P535 as umass (a o ports/120532 portmgr [PATCH] bsd.port.mk - add more recursive-foo targets o kern/120515 acpi [acpi] [patch] acpi_alloc_wakeup_handler: can't alloc o kern/120483 fs [ntfs] [patch] NTFS filesystem locking changes o kern/120482 fs [ntfs] [patch] Sync style changes between NetBSD and F o conf/120431 rc [patch] devfs.rules are not initialized under certain o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac o conf/120263 [patch] 800.loginfail misses relevant security informa o bin/120256 [patch] ftp(1): ftp -u URL/ returns a -1 o amd64/120202 amd64 [amd64] [patch] [panic] kernel panic at start_all_aps, p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o bin/120114 [patch] reboot(8) - add features available in Solaris. o kern/120073 [new driver] [patch] add support for Meinberg PCI-base o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c o usb/119981 usb [axe] [patch] add support for LOGITEC LAN-GTJ/U2 gigab p threa/119920 deischen [patch] fork broken in libpthread o conf/119874 rc [patch] "/etc/rc.d/pf reload" fails if there are macro o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o ports/119710 sumikawa [patch] net/netcat - nc command runs BSD nc instead of o kern/119668 scsi [cam] [patch] certain errors are too verbose comparing o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch p bin/119610 wkoszek [patch] config(8): config -x appends unwanted trailing o kern/119606 [sio] [patch] PCMCIA card not attached to driver o amd64/119591 amd64 [amd64] [patch] time_t on 64-bit architecture o kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o bin/119483 [patch] vidcontrol(1) misses latest VESA mode (off-by- o conf/119464 [patch] [request] Add 'sorted' option to etc/periodic/ o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose p docs/119329 trhodes [patch] Fix misleading man 1 split p kern/119298 kan [xfs] [patch] 7-Stable/sys/modules/xfs fails to make f o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun o kern/119205 [dc] [patch] Collect various stats regarding dc(4) int o kern/119202 [kernel] [patch] Add generic support for disabling dev o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and f i386/119175 i386 [busdma] [patch] Typo in bus_dmamem_alloc() o usb/119150 remko [usbdevs] [patch] new usbdevs for CDMA 1xEVDO devices o bin/119077 sysinstall [patch] sysinstall(8) - reading packages from index is o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o docs/118902 doc [patch] wrong signatures in d2i_RSAPublicKey man pages p bin/118874 [patch] tftpd(8): add TFTP Option Extension (rfc 2347) p conf/118770 mtm [patch] rc.d scripts: print information instead of sil o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o bin/118723 gcooper [patch] od(1)/hexdump(1) truncates last partial repeat o kern/118713 fs [minidump] [patch] Display media size required for a k p kern/118540 kaiw [elf] [patch] update sys/sys/elf_common.h with new ema o kern/118493 weongyo [ndis] [patch] a trivial fix when ndis sets `ndis_reso o usb/118485 usb [usbdevs] [patch] Logitech Headset Workaround o kern/118447 [ata] [patch] Troublesome DMA modes with VIA Apollo VP p kern/118439 thompsa [ndis] [patch] if_ndis - fix a panic when ndis_attach( p usb/118374 attilio [ubsa] [patch] support Option GlobeTrotter Max 3.6 wir p kern/118370 thompsa [ndis] [patch] if_ndis - fix a scanning problem of Mar o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o bin/118325 rc [patch] [request] new periodic script to test statuses p kern/118317 delphij [zlib] [patch] Incorrect gzeof() return value in zlib o bin/118297 weongyo [patch] ndiscvt(8): sort a output format. o bin/118296 weongyo [patch] ndiscvt(8) can't parse a STRING WORD pattern w o bin/118295 weongyo [patch] ndiscvt(8) makes a syntax error when it proces o bin/118294 weongyo [patch] ndiscvt(8) can't parse WORD which includes '(' a kern/118238 net [bce] [patch] bce driver shows "no carrier" on Intel S o kern/118222 [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work o bin/118205 [patch] [request] new options -r to pkill(1) a pid aft o bin/118144 des [patch] pam_lastlog doesn't check return values in pam o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi o bin/118123 [patch] chat(8) has infinite recursion bug o bin/118114 [patch] update manctl(8) o conf/118111 [patch] [request] Add MAC address based interface rena o bin/118069 [patch] camcontrol(8) should be able to leave device s o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o conf/117935 rc [patch] ppp fails to start at boot because of missing s bin/117830 [patch] who(1) no longer displays entries for folk log f bin/117751 [patch] [request] Make pw(8) support "-d" argument o bin/117733 [patch] [request] allow to tee(1) to sockets, descript o kern/117709 simon [libcrypto] [patch] Base openssl does not define OPENS o bin/117687 [patch] fstab(5) format cannot handle spaces f bin/117603 linimon [patch] dump(8) hangs on SMP - 4way and higher. o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant o usb/117546 remko [uftdi] [patch] Add MaxStream ZigBee product ID to uft o bin/117520 mux [patch] csup(1) not-really-equivalent to cvsup o kern/117510 [headers] [patch] sys/cdefs.h lacks support for PCC o bin/117339 net [patch] route(8): loading routing management commands o bin/117277 des [patch] fetch(1): fetch's resume mode doesn't verify t o usb/117205 remko [uscanner] [patch] uscanner support for HP ScanJet 447 o bin/117191 antoine [patch] OptionalObsoleteFiles.inc - Add files to remov p usb/117185 thompsa [umodem] [patch] Add support for UNION interface descr o bin/117093 kensmith [patch] [request] Teach sysinstall(8) to load config f p ports/116984 apache [patch] www/apache13-modssl missing perl5.8 as RUN_DEP o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f o usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th o kern/116837 bz [tun] [panic] [patch] ifconfig tunX destroy: panic o stand/116826 standards [patch] sh support for POSIX character classes o bin/116643 net [patch] [request] fstat(1): add INET/INET6 socket deta p kern/116608 fs [msdosfs] [patch] msdosfs fails to check mount options s ports/116601 portmgr [patch] bsd.port.mk - fail if dependency failed o bin/116425 [patch] [request] ls(1) options for pre-sort of direct o conf/116416 mtm [patch] [request] per-jail rc.conf(5) style configurat o ports/116219 edwin [patch] Add @rmtry to bsd.port.mk o bin/116209 [patch] [request] decimal suffix in split(1) p conf/116071 brucec [patch] loader.conf update some variables o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from o bin/115960 des sshd's X11 forwarding broken on IPv6 only machine [pat o bin/115946 des [libpam] [patch] not thread-safe o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad o amd64/115581 amd64 [Makefile] [patch] -mfancy-math-387 has no effect o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o bin/115486 [patch] [request] newsyslog(8) -- provide ability to c o bin/115447 harti [patch] [request] teach make(1) to respect TMPDIR envi o bin/115431 [patch] [request] improvement to split(1): add -B swit o kern/115371 imp [cardbus] [patch] Device removal leaves resource datab p kern/115196 brooks [libc] [patch] [request] Implement getgroupmembership( o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's o kern/115133 scottl [mpt] [mfi] [patch] Patches to make mfi support LSI SA o docs/115065 doc [patch] sync ps.1 with p_flag and keywords o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o kern/114915 net [patch] [pcn] pcn (sys/pci/if_pcn.c) ethernet driver f o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala o kern/114714 thompsa [gre] [patch] gre(4) is not MPSAFE and does not suppor p kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas o bin/114468 fs [patch] [request] add -d option to umount(8) to detach o bin/114465 [patch] [request] script(1): add really cool -d, -p & o kern/114451 [nfs] [patch] prevent NFS server possible crash o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti f kern/114331 vanhu [crypto] [patch] VIA padlock freesession bug o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o kern/114291 kmacy [RFE] [modules] [patch] add dynamic module references o ports/114231 edwin [patch] multimedia/audacious-plugins - audacious/plugi o ports/114167 portmgr [patch] bsd.port.mk - ignoring major numbers in LIB_DE p conf/114101 se [patch] Add ZFS to periodic locate run s bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection o bin/114059 [patch] shutdown(8) should fall back to exec reboot/ha o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff o bin/113979 sysinstall [patch] sysinstall(8) does not support UFS1 filesystem s kern/113950 multimedia [sound] [patch] [request] add per-vchan mixer support o conf/113915 rc [patch] ndis wireless driver fails to associate when i o conf/113913 [patch] [requst] new file /etc/periodic/daily/490.stat o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o bin/113838 fs [patch] [request] mount(8): add support for relative p o bin/113825 [patch] [libc] [ggated] Fix -STABLE build with -fno-st o docs/113803 ipfw [patch] ipfw(8) - don't get bitten by the fwd rule o bin/113702 portmgr [patch] bad output from "pkginfo -g" o bin/113682 brucec [patch] sysinstall(8) warns for invalid geometry which o bin/113518 [patch] make(1): Prevent execution when command is a c o bin/113398 [libc] [patch] initgroups fails rather than truncates o gnu/113343 [patch] grep(1) outputs NOT-matched lines (with multi- p kern/113266 harti [libgssapi] [patch] Missing handling of mech_type in g o bin/113239 [patch] atrun(8) loses jobs due to race condition o bin/113230 des [pam] [patch] const-ify PAM-headers o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o i386/113110 i386 [mk] [patch] i686 is not an alias of pentiumpro on GCC o bin/113074 [patch] ppp(8): include for strcasecmp(3) o usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in o bin/113049 fs [patch] [request] make quot(8) use getopt(3) and show o conf/112997 [patch] Add note about the 'native' mtune option to sh p bin/112955 des [patch] login(1): add netgroup support back to pam_log p docs/112935 remko [patch] newfs_msdos(8): document 4.3g limit on files w o bin/112794 [patch] [request] pam_exec(8): allow pam_exec to expor o kern/112775 [libmd] [patch] libmd(3) bug for some zero-length file p bin/112694 jon [patch] segfault in pam_lastlog(8) on sshd exit when n o bin/112673 portmgr [patch] pkg_add(1): pkg_add -S leaks the temp dir o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b o conf/112558 [patch] /etc/periodic/daily/200.backup-passwd poor han o bin/112557 net [patch] ppp(8) lock file should not use symlink name o bin/112556 [patch]: sysctl(8) needs to fix multi-lineal descripti p kern/112554 silby [kernel] [patch] unp_gc is overly agressive and remove s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f o kern/112477 marius [ofw] [patch] Add support to set the node and type on o bin/112379 [patch] [request] lockf(1): on closing stdin, stdout, p ports/112347 obrien [PATCH] editors/vim re-enable WITH_TCL o bin/112336 [patch] install(1): install -S (safe copy) with -C or s gnu/112215 obrien [patch] gcc(1): "gcc -m32" attempts to link against 64 o bin/111978 [patch] [request] make syspath list for mount(8) confi o kern/111537 kmacy [inet6] [patch] ip6_input() treats mbuf cluster wrong o bin/111493 [patch] routed(8) doesn't use multicasts for RIPv2 via o power/111296 ppc [kernel] [patch] [request] Support IMISS, DLMISS an DS o bin/111024 [request] [patch] atacontrol(8): support for stand-by o kern/110995 kmacy [loader] [patch] loader wastes space worth symtab size o conf/110993 [patch] /etc/netstart should start rpcbind o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated f kern/110720 kmacy [net] [patch] [request] support for interface descript o ports/110533 olgeni [patch] WITHOUT_NLS support for www/neon and www/sitec o kern/110392 scottl [hptmv] [patch] hptmv very old and missing important f o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o kern/110284 kmacy [if_ethersubr] [patch] Invalid Assumption in SIOCSIFAD o docs/110253 doc [patch] rtprio(1): remove processing starvation commen o kern/110249 kmacy [kernel] [regression] [patch] setsockopt() error regre o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o bin/110146 [patch] [request] Allow arbitrary gdb(1) options to by o bin/110068 [patch] rewrite of mdmfs(8) in shell o docs/110062 doc [patch] mount_nfs(8) fails to mention a failure condit o docs/110061 doc [patch] tuning(7) missing reference to vfs.read_max o kern/110017 [libexec] [patch] serial port console output garbled a ports/109580 glewis [patch] math/gnuplot does not include bsd.emacs.mk whe o conf/109562 rc [rc.d] [patch] [request] Make rc.d/devfs usable from c o bin/109521 [patch] chio(1): 'chio return' breaks on non-voltag ch o ports/109501 krion [PATCH] add some configurable vars to mail/exim o bin/109478 [libc] [patch] adopt reentrant syslog functions from O f kern/109477 yongari [vr] [patch] onboard via vt6103 ethernet does not work o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o bin/109413 jhb [patch] top(1) shows at least 50% idle when hyperthrea o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o kern/109251 net [re] [patch] if_re cardbus card won't attach o kern/109232 imp [sio] [patch] ibufsize calculation wrong causing data o docs/109008 csjp [patch] add summary of kern/48198 to jexec(8) p bin/108368 [patch] tip(1) coredumped when 'du' capability is used o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o kern/107944 net [wi] [patch] Forget to unlock mutex-locks o ports/107816 roam [patch] The IPv6 patch breaks the location feature of o kern/107707 geom [geom] [patch] [request] add new class geom_xbox360 to p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X o usb/107243 usb [usb67] [cam] [quirk] [patch] Apacer USB Flash Drive q o conf/107035 net [patch] bridge(8): bridge interface given in rc.conf n o bin/106872 [patch] [request] extattr support for find(1) f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 o bin/106734 [patch] [request] bzip2(1): SSE2 optimization for bzip o kern/106722 glebius [net] [patch] ifconfig may not connect an interface to o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/106645 [uart] [patch] uart device description in 7-CURRENT is o ports/106483 portmgr [patch] embed distfile information in +CONTENTS o bin/106431 [patch] atacontrol(8): Inform user of ata RAID5 acting o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag p bin/106049 [patch] tftpd(8) - improve -w option to support unique o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p o bin/105614 [patch] setkey(8): Creating NULL encryption ESP SAs wi o kern/105604 [bktr] [patch] add support for Pixelview PlayTV Pro 2 o conf/105568 rc [patch] [request] Add more flexibility to rc.conf, to o docs/105456 keramida [patch] overhaul of the security chapter (14) o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o www/105333 blackend [patch] Base selection in events in libcommon.xsl does o kern/105330 ipfw [ipfw] [patch] ipfw (dummynet) does not allow to set q o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp p conf/105100 [patch] [locale] no support for lv (latvian) locale o bin/104921 ipfw [patch] ipfw(8) sometimes treats ipv6 input as ipv4 (a o kern/104882 [iicbb] [patch] pvr250 and pvrxxx drivers need iicbb p o kern/104851 net [inet6] [patch] On link routes not configured when usi o bin/104746 [patch] traceroute(8): 'traceroute -e -P TCP' cannot w o stand/104743 standards [headers] [patch] Wrong values for _POSIX_ minimal lim o kern/104738 mlaier [inet] [patch] Reentrant problem with inet_ntoa in the o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o bin/104553 [patch] [request] Add login group support to login.acc o conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o gnu/104533 bugmeister [patch] [request] make send-pr(1) read configuration f o docs/104493 roberto [patch] Wrong description in ntp.conf(5) (CURRENT and p kern/104389 jh [geom] [patch] sys/geom/geom_dump.c doesn't encode XML f usb/104352 gavin [usb67] [ural] [rum] [patch] ural driver doesnt work f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive p kern/104212 [puc] [patch] support for Kuroutoshikou SERIAL4P-LPPCI o bin/104092 [patch] iostat(8): missing blanks in iostat output o kern/103862 [fdc] [patch] Error with fdformat on -CURRENT o bin/103682 [patch] [request] nfsstat(1) should use %u instead of f kern/103615 emaste [aac] [patch] aac(4) update to the last version availa o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele o ports/102946 secteam [patch] ports-mgmt/portaudit a bin/102834 [patch] mail(1) hangs on the sigsuspend system call in o bin/102793 edwin [patch] [request] top(1): display feature of current C o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE p bin/102638 brucec [patch] sysinstall(8): custom dist set always install o bin/102609 [patch] Add filtering capability to date(1) o kern/102540 net [netgraph] [patch] supporting vlan(4) by ng_fec(4) o conf/102502 net [netgraph] [patch] ifconfig name does't rename netgrap o kern/102471 ipfw [ipfw] [patch] add tos and dscp support o kern/102390 [pppd] [patch] kernel pppd don't using pam o bin/102357 [patch] tcsh(1)/csh(1) jobs control: sometimes 'fg' co o bin/102299 [patch] grep(1) malloc abuse? o bin/102162 [patch] tftpd(8): Limit port range for tftpd o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o usb/101775 usb [usb67] [usb8] [libusbhid] [patch] possible error in r o usb/101761 usb [usb67] [patch] [request] usb.h: increase maximal size o threa/101323 threads [patch] fork(2) in threaded programs broken. o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 o bin/100956 remko [patch] support setting carp device state with ifconfi o bin/100921 [patch] tftpd(8): libexec/tftpd: `-w' non-traditional o bin/100914 [patch] tftpd(8): libexec/tftpd: write access control o docs/100803 jhb [patch] the man page about ithread is expired. o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, o conf/100616 [patch] syslog.conf: lines after exclamation point ign a bin/100496 [patch] Fix to get rid of the telnet(1) to cisco probl o bin/100424 [patch] ssh(1): SSH option BindAddress is ignored by o o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam a bin/100089 [patch] ftp(1): default ftp application of FreeBSD giv o bin/100018 [patch] newsyslog(8) does not check size if time_at is o stand/100017 standards [Patch] Add fuser(1) functionality to fstat(1) o kern/99979 [patch] Get Ready for Kernel Module in C++ o bin/99896 gad [patch] lpr(1): lpr -r flag has no effect o bin/99800 [libc] [patch] Add support for profiling multiple exec o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s o misc/99627 [build] [patch] make update & CVSROOT o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o conf/99444 rc [patch] Enhancement: rc.subr could easily support star o conf/99328 linimon [patch] updates for src/share/examples/cvsup o bin/99307 [patch] mount_nfs(8) incompatible with zVM VMNFS 3A0 o bin/99217 [patch] pam_ssh(8) waits for a wrong ssh-agent PID at o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l o gnu/99173 [patch] replace gnu patch with a bsd-licensed one. f kern/99068 [linux] [patch] Linux emulator crashed by java, when c o kern/99017 [ata] [patch] FreeBSD versions above 5.3 panic if atap o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel o kern/98962 remko [ata] [burncd]: [patch] writing >1 session on ATAPI CD o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH o bin/98577 [patch] dhclient(8): the link check by dhclient slows o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled f docs/98344 linimon [patch] An update of the article "Choosing the FreeBSD o kern/98091 scottl [mfi] [patch] Makefile style of mfi kernel module brok o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid o kern/97377 fs [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/97329 [nfs] [patch] code simplification o kern/97153 [patch] When -NO_KERBEROS is set, libcom_err still get o bin/97083 [patch] passwd(1) does not support _PWF_HESIOD o bin/97002 [patch] cron(8) fails quietly if /usr/sbin/sendmail is o kern/97000 [kernel] [patch] bogus "All threads purged from ugen0. o kern/96999 [procfs] [patch] procfs reports incorrect information o bin/96854 imp [patch] devd(8) parses events incorrectly in some case a bin/96840 [libc] [patch] getgrent() does not return large groups o conf/96746 [nanobsd] [patch] Configuration changes and README for f kern/96743 yongari [sk] [patch] broken 32-bit register operations o bin/96540 [patch] catman(1) does not deal correctly with hard-li o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o kern/96346 [modules] [patch] disable build of modules that are al o conf/96343 rc [patch] rc.d order change to start inet6 before pf o conf/96247 [patch] 550.ipfwlimit reports logs even if log size is o stand/96236 standards [patch] [posix] sed(1) incorrectly describes a functio o kern/96030 net [bfe] [patch] Install hangs with Broadcomm 440x NIC in p bin/95979 obrien [patch] burncd(8) fails to fixate CDs p bin/95715 [patch] random(6) busy loop under some conditions o bin/95698 philip [patch] moused(8): Software control of sysmouse o kern/95661 [pci] [patch] pci_pci still not correct for initializi o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo o kern/95277 net [netinet] [patch] IP Encapsulation mask_match() return o kern/95239 [libc] [patch] nftw(3) returns EINVAL for large values s ports/95085 portmgr [PATCH]: bsd.port.mk: Add knob to allow for mutually e o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o bin/95082 [patch] ping(8) won't handle large preload patterns p bin/95079 jh [patch] apply(1) dies when there are two %1 in command o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o kern/94772 [fifo] [patch] FIFOs (named pipes) + select() == broke o ports/94690 ume [patch] Daemons in /usr/local/etc/rc.d/ must do "setss o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o docs/94625 doc [patch] growfs man page -- document "panic: not enough o bin/94546 [patch] Make telnet(1) accept 'host:port' on command l o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind o www/94423 danger [patch] XML'ified release todo list o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/94273 bz [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o bin/94052 [patch] Adds option to script(1) to suppress carriage- o bin/94032 portmgr [patch] Enhancement to pkg_add(1) to add -4 flag to fo o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o bin/93857 [patch] new utility: kiconv_cs_preload(8): Utility for o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o kern/93705 standards [headers] [patch] ENODATA and EGREGIOUS (for glibc com o docs/93683 chinsan [patch] some typos in klist(1) o misc/93661 [patch] loader(8): prevent *.4th files and friends fro o gnu/93566 [patch] sort(1): numeric sort is broken on multi-byte p bin/93473 des [patch] Let pam_unix(8) use "passwordtime" from login. o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work p kern/93331 [kernel] [patch] broken asm in kernel o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support o gnu/93127 [patch] add __FreeBSD_kernel__ to pre-defines o kern/92880 net [libc] [patch] almost rewritten inet_network(3) functi o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID o conf/92523 rc [patch] allow rc scripts to kill process after a timeo s ports/92434 portmgr [patch] Mk/bsd.port.mk automatic show pkg-message o kern/92412 [libexec] [patch] rpc.rstatd reports bogus packets/per o stand/92362 standards [headers] [patch] Missing SIGPOLL in kernel headers o kern/92238 [ata] [patch] Spurious "atapci1: failed to enable memo o kern/92092 [iicbus] [patch] Panic if device with iicbus child is o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o i386/91871 brucec [boot1] [patch] boot1: jump to 0xf000:0xfff0 instead o s kern/91777 net [ipf] [patch] wrong behaviour with skip rule inside an o conf/91732 [patch] 800.loginfail: fix log message grep expression o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 f kern/91476 gavin [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o kern/91347 rodrigc [pci] [patch] Add another PCI-e chipset for extended c o bin/91299 yar [patch] add ftpd(8) SITE SHA256 command o kern/91134 fs [smbfs] [patch] Preserve access and modification time o bin/91101 edwin [patch] whereis(1): make more readable o bin/91034 [patch] minor fix to iostat(8) so that columns line up o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o bin/90690 [patch] ps(1) errorneously respects terminal column se o bin/90680 [patch] make(1) thinks "^.for.o:" is a directive (".fo o ports/90436 portmgr [patch] Add a way to handle configuration files to bsd o bin/90311 [patch] add "eject" to mt(1) o bin/90130 [patch] sysctl(8): print temperature in celsius only w o bin/90114 [patch] pw(8) takes strings after option -g for GID 0 s bin/90082 [syscons] [patch] curses ACS line graphics support for o bin/89988 [patch] bootparamd(8) null host support and whoami fix o conf/89870 rc [patch] [request] make netif verbose rc.conf toggle o bin/89799 [patch] Making natd(8) not require a newline at the en o bin/89770 des [patch] pam_krb5 'authentication token failure' in pas o bin/89762 edwin [patch] top(1) startup is very slow on system with man f kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o bin/89410 [patch] sh(1) missing \u interpolation and bug/fix in o bin/89326 [patch] Add pattern matching to login.access(5) p docs/89325 trhodes [patch] Clarification of kbdmap(5), atkbd(4) and kbdco s kern/89305 vwe [vr] [patch] D-Link NIC with VIA Rhine II, lost of Net o conf/89061 rc [patch] IPv6 6to4 auto-configuration enhancement o conf/88913 rc [patch] wrapper support for rc.subr o bin/88821 pjd [patch] IPv6 support for ggated(8) o bin/88780 [patch] Baseline ipmon(8) uses LOG_LOCAL0 syslog, not o bin/88655 [patch] tcsh(1): /bin/tcsh ls-F : Floating exception ( a bin/88538 [patch] tcsh(1) ls-F spacing incorrect. o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs o bin/88215 [patch] syslogd(8) does not pass cleanly parameters to o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o bin/87966 [patch] newfs(8): introduce -A flag for newfs to enabl o bin/87792 [patch] very bad performance of cp(1) via NFS, possibl o kern/87729 phk [libc] [patch] most calls to malloc(3) generate warnin o bin/87651 [patch] fsck(8) (on superblock error) tells wrong man o kern/87506 net [vr] [patch] Fix alias support on vr interfaces s ports/87420 portmgr [patch] bsd.port.mk: implementing WITH_OPENLDAP_VER to o ports/87397 edwin [patch] incorrect use of PAPERSIZE make variable in so o www/87119 hrs [patch] encode copyright and such symbolically o kern/87032 ipfw [ipfw] [patch] ipfw ioctl interface implementation o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos o kern/86871 net [tcp] [patch] allocation logic for PCBs in TIME_WAIT s o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o bin/86765 fs [patch] bsdlabel(8) assigning wrong fs type. o bin/86635 pf [patch] pfctl(8): allow new page character (^L) in pf. o bin/86485 [patch] hexdump(1): hexdump -s speedup on /dev a stand/86484 standards [patch] mkfifo(1) uses wrong permissions s bin/86388 [patch] periodic(8) daily should backup bsdlabel(8) / o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/85971 jeff [uma] [patch] minor optimization to uma o gnu/85895 [patch] cc -print-search-dirs returns (null) o kern/85886 [an] [patch] an0: timeouts with Cisco 350 minipci o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/85657 [kernel] [patch] capture and expose per-CPU time accou o i386/85656 i386 [i386] [patch] expose more i386 specific CPU informati o i386/85655 i386 [i386] [patch] expose cpu info for i386 systems o i386/85653 i386 [i386] [patch] relieve hangs in tight loops in process o i386/85652 i386 [loader] [patch] deal with out-of-memory errors during o kern/85651 [kernel] [patch] debugging code to show entries in eve o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo o kern/85493 imp [ed] [patch] OLDCARD can't probe ed driver p kern/85320 gonzo [gre] [patch] possible depletion of kernel stack in ip f kern/85137 des [pseudofs] [patch] panic due to sleep with held mutex o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le o kern/84981 [headers] [patch] header protection for with aroun o bin/78170 [patch] Fix signal handler in bootpd(8) o kern/78114 phk [geom] [patch] Solaris/x86 label structures for GEOM ( p kern/77913 net [wi] [patch] Add the APDL-325 WLAN pccard to wi(4) s kern/77355 [i386] [patch] Detect i*86 subarches for uname s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match p bin/77031 [patch] comm(1) unable to handle lines greater than LI o kern/76893 [cam] [patch] Fatal divide in booting processes with B o bin/76711 [patch] rm(1): parse error in rm.c:check() while parsi o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o conf/76626 [patch] 460.status-mail-rejects shows destination doma o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same s kern/76520 [libiconv] [patch] Add new kernel-side libiconv conver o bin/76362 [patch] sys directory link points to wrong location p docs/76333 trhodes [patch] ferror(3): EOF indicator can be cleared by not o gnu/76169 [patch] Add PAM support to cvs pserver o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/75934 [libcrypt] [patch] missing blowfish functionality in p o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o docs/75711 keramida [patch] opendir(3) missing ERRORS section o bin/75258 [patch] dd(1) has not async signal safe interrupt hand o kern/75132 jhb [puc] [patch] add support for the Davicom 56PDV PCI Mo o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula s kern/74986 jfv [patch] sysctlize a parameter of if_em's interrupt mod o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o s usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o kern/74450 [libalias] [patch] enable libalias/natd to create skip o bin/74360 [patch] ndiscvt(8) generates a driver which doesn't ma o conf/74213 darrenr [patch] Connect src/etc/periodic/security/610.ipf6deni o bin/74178 [patch] grdc(6) - scrolling does not work and "AM"/"PM o bin/74127 [patch] patch(1) may misapply hunks with too little co o conf/74004 [patch] add fam support to inetd.conf o conf/73786 [patch] added WARNING in spanish to stable-supfile o kern/73777 emulation [linux] [patch] linux emulation: root dir special hand o conf/73677 rc [patch] add support for powernow states to power_profi f conf/73337 delphij [nsswitch.conf] [patch] potential invalid free o kern/73328 edwin [patch] top(1) shows NICE as -111 on processes started o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX o conf/72901 [patch]: dot.profile: prevent printing when doing an s o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o conf/72465 [patch] United States International keyboard layout fo o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o conf/72277 [patch] update for /usr/share/skel o conf/71994 [patch] dot.login: login shell may unnecessarily print s bin/71855 [patch] making kdump(1) WARNS=6 clean o bin/71749 [patch] truss -f causes circular wait when traced proc o bin/71671 [patch] cleanup of the usr.sbin/apmd code o bin/71667 [patch] cleanup of the usr.sbin/bootparamd code o bin/71665 [patch] cleanup of the usr.sbin/dconschat code o bin/71661 [patch] cleanup of the usr.sbin/keyserv code o bin/71631 [patch] cleanup of the usr.sbin/pppctl code o bin/71630 [patch] cleanup of the usr.sbin/pppd code o bin/71629 [patch] cleanup of the usr.sbin/pppstats code o bin/71628 [patch] cleanup of the usr.sbin/rpcbind code o bin/71625 [patch] [nis] cleanup of the usr.sbin/rpc.ypupdated co o bin/71622 [patch] sicontrol(8): cleanup of the usr.sbin/sicontro p bin/71621 [patch] sliplogin(8): cleanup of the usr.sbin/sliplogi o bin/71618 [patch] timed(8): cleanup of the usr.sbin/timed code o bin/71617 [patch] [nis] ypserv(8): cleanup of the usr.sbin/ypser o bin/71616 [patch] [nis] yp_mkdb(8): cleanup of the usr.sbin/yp_m o bin/71613 [patch] traceroute(8): cleanup of the usr.sbin/tracero o bin/71602 [patch] uninitialized "len" used instead of "slen" wit s bin/71290 des [patch] passwd(1) cannot change passwords other than N o stand/70813 standards [patch] ls(1) not Posix compliant o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m f i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice o usb/70523 usb [umct] [patch] umct sending/receiving wrong characters o bin/70245 ru [patch] [build] Change to src/release/Makefile to aid p kern/70096 trhodes [msdosfs] [patch] full msdos file system causes corrup o bin/69986 sysinstall sysinstall(8): [patch] no job control in fixit shell o o bin/69875 [patch] mlxcontrol(8): `mlxcontrol status ' p docs/69861 trhodes [patch] usr.bin/csplit/csplit.1 does not document POSI o kern/69650 [patch] make getserv* functions work with nsdispatch o bin/69398 [patch] login(1) cleartext display of password in logi o bin/69268 [patch] Fix ndiscvt(8) to warn you if it's going to ge o bin/69083 [patch] vi(1) basic modelines for contrib/nvi o bin/69010 [patch] [build] Portability fixes for FreeBSD build ut o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports a kern/68905 secteam [patch] core dumps are assigned wrong ownership o bin/68797 [patch] cut(1): fflush after each write if an option i o bin/68586 dwmalone [patch] allow syslogd(8) to forward to non-default por o bin/68437 [patch] conscontrol(8) DEVDIR -> _PATH_DEV fix and mor o bin/68328 [patch] syslogd(8) enable configuration of extra liste s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction o conf/68108 [patch] Adding mac-address /conf selector to diskless o kern/67830 [smp] [patch] CPU affinity problem with forked child p p bin/67550 [patch] tftpd(8) Add BLK_SIZE option to tftpd server o bin/67231 [patch] pam_krb5 doesn't honor default flags from /etc o bin/66988 [patch] apm(8) check validation of the returned values o kern/66960 [fdc] [patch] filesystems not unmounted during reboot o bin/66893 [patch] [nis] rpc.yppasswdd(8): Linux NIS clients conn s ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/obj/usr/ports s ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java ports p docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to non-existent a o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/66225 net [netgraph] [patch] extend ng_eiface(4) control message o kern/66029 [crypto] [patch] MD5 alignment problem on a TriMedia p o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr s ports/65804 portmgr [PATCH] bsd.port.mk is gratuitously slow o bin/65803 gad [patch] ps(1) enhancements (posix syntax, and more) o kern/65355 [pci] [patch] TC1000 serial ports need enabling o bin/65306 obrien [patch] [build] Portability fixes for FreeBSD build ut o bin/65228 [Patch] Allow rup(1) to parse hostnames from a defined s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( a kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr p kern/64556 brucec [sis] [patch] if_sis short cable fix problems with Net o bin/64327 [patch] make(1): document surprising behaviour of assi o kern/64196 [kernel] [patch] remove the arbitrary MAXSHELLCMDLEN o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/64114 [vga] [patch] bad vertical refresh for console using R o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE f usb/63837 linimon [uhid] [patch] USB: hid_is_collection() only looks for a bin/63197 [patch] tftp(1) Bus error, core dumped a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea o bin/62077 [sound] [patch] Make it possible to abbreviate mixer(8 o i386/62003 remko [loader] [patch] make /boot/loader "reboot" code same o bin/61978 delphij [patch] sync setkey(8) token.l with KAME f kern/61960 linimon [ata] [patch] BigDrive support for PC-98 architecture a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat s kern/61497 ups [kernel] [patch] __elfN(map_insert) bug s i386/61481 [patch] a mechanism to wire io-channel-check to userla o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o bin/61239 [patch] bootp enhancement, places the dhcp tags into t o bin/60892 [patch] added -p option to kldxref(8) to allow creatio o bin/60834 [patch] ftpd(8) send_data()+oldway: anonymous transfer o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I s ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify GnuPG signat o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp s kern/60293 net [patch] FreeBSD arp poison patch o kern/59903 [pci] [patch] "pci_find_device" returns [only/at] the o bin/59777 [patch] ftpd(8)/FreeBSD 5: potential username enumerat o bin/59775 [patch] ftpd(8)/FreeBSD 5: incorrect reply for "unimpl o bin/59774 [patch] ftpd(8)/FreeBSD 5: syslog facility may be chan o bin/59772 [patch] ftpd(8)/FreeBSD 5: support for tcp_wrappers in a kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI o docs/59735 kensmith [patch] Adding a reference to Icelandic Rsync to mirro o bin/59708 sysinstall sysinstall(8): [patch] add sSMTP support for Mail sele o usb/59698 usb [keyboard] [patch] Rework of ukbd HID to AT code trans o conf/59600 [patch] Improved us.emacs.kbd mapping o bin/59564 [patch] from(1) add option (-S) to also display subjec o www/59307 remko [patch] xml/xsl'ify & update publications page o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o docs/59240 blackend [patch] handbook update: linux MATLAB o bin/59220 obrien [patch] systat(1) device select (:only) broken o docs/59044 doc [patch] doc.docbook.mk does not properly handle a sour o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at p kern/58687 deischen [libc] [patch] gethostbyname(3) leaks kqueue file desc o bin/58483 [patch] mount(8): allow type special or node relative o bin/58012 [patch] tftpd(8) Multihomed tftpd enhancement o bin/57715 [patch] tcopy(1) enhancement o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets o kern/57522 [patch] New PID allocater algorithm from NetBSD o conf/57517 [patch] add parameter for /etc/periodic/daily/210.back s bin/57407 [patch] Better NTP support for dhclient(8) and friends o docs/57298 blackend [patch] add using compact flash cards info to handbook s bin/57255 usb [patch] usbd(8) and multi-function devices s amd64/57250 kmacy [amd64] [patch] Broken PTRACE_GETFPREGS and PTRACE_SET s bin/57088 [cam] [patch] for a possible fd leak in libcam.c s bin/57018 [patch] convert growfs(8) to use libufs(3) o conf/56934 rc [patch] rc.firewall rules for natd expect an interface o bin/56648 [patch] enable rcorder(8) to use a directory for locat o stand/56476 standards [patch] cd9660 unicode support simple hack o kern/56451 des [linprocfs] [patch] /compat/linux/proc/cpuinfo gives w o bin/56447 [patch] extend mt(1) command for AIT-2 tape drives o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 o kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw o docs/55883 kensmith [patch] handbook advanced-networking/chapter.sgml s ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to use ${PORTSDIR a kern/55542 andre [de] [patch] discard oversize frame (ether type 800 fl o bin/55539 [patch] Parse fstab(5) with spaces in path names o misc/55387 [build] [patch] users LD_LIBRARY_PATH can interfere wi p kern/55018 andre [digi] [patch] Digiboard PC/Xem fails to initialize wh o conf/55015 [patch] 700.kernelmsg: Security check output enhacemen o kern/54891 [libalias] [patch] libalias(3)/natd(8) and exporting c o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o bin/54594 [patch] make(1) apply regexps to the entire variable - o docs/54461 kensmith [patch] Possible additions to Handbook (Basics and Use s bin/54446 portmgr [patch] pkg_delete(1) doesn't honour symlinks, portupg o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o kern/54383 net [nfs] [patch] NFS root configurations without dynamic o conf/54170 [patch] error from weekly periodic script 330.catman s stand/53682 [feature request] [patch] add fuser(1) utility o bin/53341 sysinstall sysinstall(8): [patch] dump frequency in sysinstall is s ports/52765 portmgr [patch] Uncompressing manual pages may fail due too "a o kern/52725 [patch] installincludes for kmods s ports/52706 portmgr [patch] bsd.port.mk issues warning if a site is explic o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx s docs/52071 delphij [patch] Add more information about soft updates into a s usb/51958 usb [urio] [patch] update for urio driver o kern/51583 fs [nullfs] [patch] allow to work with devices and socket s kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o kern/51274 ipfw [ipfw] [patch] ipfw2 create dynamic rules with parent o ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILES o bin/51148 [patch] Control the cache size for pwd_mkdb(8) to spee s bin/51137 [patch] config(8) should check if a scheduler is selec o kern/51009 [aue] [patch] buggy aue driver fixed. s kern/50827 [kernel] [patch] [request] add sane record locking o docs/50773 jmg [patch] NFS problems by jumbo frames to mention in bge o kern/50526 [kernel] [patch] update to #! line termination o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o bin/50300 [patch] make the loader(8) use of terminal-control seq o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation o misc/50106 [build] [patch] make 'make release' more flexible behi o kern/49039 [sio] [patch] add support for RS485 hardware where dir a bin/49023 gad [patch] to lpd(8) (printjob.c) to pass source filename s bin/48962 des [patch] modify fetch(1) to allow bandwidth limiting p bin/48730 obrien [patch] burncd(8) does not handle signals and causes d o gnu/48638 [libdialog] [patch] some bug fixes in libdialog o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/48471 pjd [jail] [patch] [request] private IPC for every jail o conf/48444 [patch] security.functions: count connection attempts o bin/48443 mtm [patch] periodic(8) executes too many files o conf/48325 [patch] /etc/periodic/security/100.chksetuid doesn't w o bin/48183 marcel [patch] gdb(1) on a core(5)-file from a threaded proce o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o conf/48133 [patch] /etc/rc: improved vi recovery notification o docs/48101 doc [patch] add documentation on the fixit disk to the FAQ p docs/47818 trhodes [patch] ln(1) manpage is confusing o bin/47815 [patch] stty(1) -all should work. o docs/47594 remko [patch] passwd(5) incorrectly states allowed username o bin/47576 edwin [patch] factor(6)ing of negative numbers o conf/47566 [vinum] [patch] add vinum status verification to perio o bin/47540 [patch] Make natd(8) configurable in running state wit o kern/46973 [syscons] [patch] [request] syscons virtual terminals o bin/46888 gad [patch] Add script run hook to newsyslog(8) o bin/46758 [patch] moused(8) enhancements o bin/46352 [patch] login(1) open file descriptors and signal hand o bin/46328 gad [patch] patch for lpd(8) o kern/46159 ipfw [ipfw] [patch] [request] ipfw dynamic rules lifetime f o kern/45729 [libexec] [patch] make rbootd transfer the default fil o conf/45704 [patch] request to change cp866b font to cp866 s bin/45547 [patch] make burncd(8) handle .wav files. o bin/45529 gcooper [patch] hexdump(1) core-dumps with certain args o bin/45333 [patch] New option -r for chown(8) and chgrp(1) o conf/45226 rc [patch] Fix for rc.network, ppp-user annoyance o conf/45222 [patch] daily rejected mail hosts report too long p bin/45193 [patch] truss(1) can't truss itself o docs/45011 trhodes [patch] style(9): '->' and '.' don't require spaces o gnu/44984 bugmeister [patch] send-pr(1) can use environmental variable $FRO o conf/44717 [patch] update login.conf and unify login capabilities o gnu/44564 peter [patch] Aborted cvs session causes an endless loop in o kern/44365 [headers] [patch] introduce ulong and unchar types o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o kern/44202 [rp] [patch] -stable rp driver does not work with mult o conf/44170 rc [patch] Add ability to run multiple pppoed(8) on start o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i o docs/43823 doc [patch] update to environ(7) manpage o bin/43819 [patch] changed truss(1) output for utrace calls o kern/43716 [puc] [patch] puc driver does not recognize Lava Dual- o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl o kern/43611 [crypto] [patch] static-ize some symbols in sys/crypto o bin/43582 [patch] passwd(1) fails on nonexistent users o kern/43577 [kernel] [patch] [request] new kernel option SHUTDOWN_ o conf/43500 [patch] rc.syscons "allscreens" improvements o bin/43434 [patch] new option to dmesg(8) which allows to display o bin/43337 des [patch] fetch(1) -s fails if -4 or possibly other opti o bin/42974 [patch] syslogd(8): add ISO 8601 date format option o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42422 [libc] [patch] dbm_delete returns -1 instead of 1 when o kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa o kern/42386 [libkvm] [patch] cleaning code from warnings in libkvm o bin/42336 [patch] ISO-fication of /usr/src/contrib/tcp_wrappers: o kern/42274 [kernel] [patch] Convert defined variable into tuneabl a bin/41947 gcooper [patch] hexdump(1) unprintable ASCII enhancement o docs/41879 hrs [patch] cleanup to DOCROOT/share/sgml/freebsd.dsl o docs/41824 murray [patch] LANG is not documented in setlocale(3) o bin/41817 [patch] pw(8): pw groupshow doesn't include the login a bin/41583 [patch] mtree(8) assorted mtree bugs o bin/41556 obrien [patch] wtmp patch for ftpd(8) o kern/41543 emulation [patch] [request] easier wine/w23 support o kern/41307 [libalias] [patch] logging of links lifecycle (add/del o bin/41271 [patch] non-suid crontab(1) o bin/41190 [patch] sed(1) report the { linenum instead of EOF lin o bin/41159 [patch] new sed(1) -c option to allow ; as a separator o conf/40777 [patch] disktab does not support 2.88MB floppies o bin/40597 [patch] add fdisk(8) ability of showing extended parti o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > a bin/40282 [patch] kill(1) has bad error checking for command lin s kern/40021 [build] [patch] use ld(1) to build kernel with linked- o kern/40017 [patch] allows config(8) to specify config metadata di s threa/39922 threads [threads] [patch] Threaded applications executed with o kern/39681 [sysctl] [patch] add hidden kernel boot tunables to sy o ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DIR o conf/39505 [patch] automate BUILDNAME variable for releases o bin/39463 mtm [patch] Add several options to fingerd(8) o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o docs/38982 doc [patch] developers-handbook/Jail fix o bin/38727 [patch] mptable(1) should complain about garbage argum a kern/38554 net [patch] changing interface ipaddress doesn't seem to w s kern/38347 [libutil] [patch] [request] new library function abs2r o bin/38168 [patch] [request] installing curses-based versions of o gnu/37910 bugmeister [patch] make send-pr(1) respect &'s in /etc/{master.}p o bin/37844 [patch] [build] make knob to not install progs with su o conf/37569 [patch] Extend fstab(5) format to allow for spaces in o kern/37555 [kernel] [patch] vnode flags appear to be changed in n o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o i386/37523 davidxu [i386] [patch] lock for bios16 call and vm86call o bin/37442 [patch] sleep(1) to support time multipliers s kern/37441 davidxu [isa] [patch] ISA PNP parse problem o bin/37437 [patch] [request] Add HTTP-style support to vis(1)/unv o bin/37083 [patch] [request] small improvement to talk(1): add cl o bin/37013 [patch] ls(1) directory name output trailing slash dup o kern/36916 randi [libdisk] [patch] DOS active partition flag lost in li o kern/36902 [libc] [patch] proposed new format code %N for strftim o bin/36556 [patch] regular expressions for tcpwrappers o bin/36553 gad [patch] [request] Two new features in newsyslog(8) a kern/36451 [bktr] [patch] Japan IF frequency is incorrect o kern/36415 [bktr] [patch] driver incorrectly handles the setting o bin/36374 [patch] apmd(8): fix core dumps, other improvements o bin/36262 [patch] Fixed rusers(1) idle-time reporting to use min o kern/36170 [an] [patch] an(4) does an_init() even if interface is o bin/36143 [patch] moused(8): add dynamic (non linear) mouse acce o bin/35886 [patch] pax(1) enhancement: custom time format for lis o conf/35545 [patch] enhanced periodic scripts: 100.clean-disks, 10 o misc/35542 bde [build] [patch] BDECFLAGS needs -U__STRICT_ANSI__ o kern/35442 net [sis] [patch] Problem transmitting runts in if_sis dri o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o bin/35113 [patch] grdc(6) enhancement: countdown timer mode o bin/35109 edwin [patch] morse(6) add ability to decode morse code o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/34628 portmgr [patch] pkg_add(1) pkg-routines ignore the recorded md o bin/34412 [patch] tftp(1) will still try and receive traffic eve o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( o bin/33809 mux [patch] mount_nfs(8) has trouble with embedded ':' in o bin/33774 [patch] for killall(1) s docs/33589 doc [patch] to doc.docbook.mk to post process .tex files. o bin/32808 dwmalone [patch] tcpd.h lacks prototype for hosts_ctl s threa/32295 threads [libc_r] [patch] pthread(3) dont dequeue signals o bin/31987 [patch] allow dump(8) to notify operators by mail(1) o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/31890 [syscons] [patch] new syscons font o gnu/31772 [patch] New option in dialog(1) s bin/31304 [patch] fix crunchgen(1) to work with more contrib-kin o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk o conf/30938 [patch] Improving behavior of /etc/periodic/daily/110. o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem o conf/30812 [patch] giant termcap database update o bin/30654 gad [patch] Added ability for newsyslog(8) to archive logs o bin/30542 [patch] add -q option to shut up killall(1) o conf/30399 brueffer [bsd.cpu.mk] [patch] Have Fortran use the CPUTYPE vari o kern/30321 [patch] strftime(3) '%s' format does not work properly o kern/30052 [dc] [patch] dc driver queues outgoing pkts indefinite a docs/30008 doc [patch] French softupdates document should be translat o bin/29897 des [patch] pam_unix(8) loginclass passwd_prompt o kern/29698 emulation [linux] [patch] linux ipcs doesn'work s kern/29423 [request] [patch] new feature: kernel security hooks i o bin/29363 gad [patch] newsyslog(8) can support time as extension o kern/29355 mux [kernel] [patch] add lchflags support s bin/29292 [patch] addition to burncd(8) for specific handling of o bin/28789 [patch] last(1) does not filter for uucp connects o bin/28620 ru [patch] install(1) has no way to pass options to strip o bin/28364 [patch] flex(1) generated files fail to compile cleanl o conf/28236 [patch] iso-8859-1_to_cp437.scm doesn't contain some u o docs/27605 doc [patch] Cross-document references () o bin/27306 marcel [patch] hw watchpoints work unreliable under gdb(1) o kern/26787 [patch] sysctl change request o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting o bin/26486 remko [libc] [patch] setnetgrent hangs when netgroup contain s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password f kern/24959 kmacy [patch] proper TCP_NOPUSH/TCP_CORK compatibility o bin/24485 [patch] to make cron(8) handle clock jumps o bin/23562 markm [patch] telnetd(8) doesn't show message in file specif o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem a bin/23254 [patch] yacc(1) accepts bad grammer p bin/23098 brucec sysinstall(8): [patch] if installing on a serial conso o conf/23063 net [arp] [patch] for static ARP tables in rc.network s i386/22944 alc [vm] [patch] isa_dmainit fails on machines with 512MB s kern/22417 gibbs [adw] [patch] advansys wide scsi driver does not suppo o kern/21998 kmacy [socket] [patch] ident only for outgoing connections a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to o conf/21675 [patch] Better and more disktab entries for MO drives p bin/21089 jh [patch] vi(1) silently corrupts open file on SIGINT wh o bin/20501 [patch] dump(8) extra flag to dump to offline autoload o bin/19837 ambrisko sysinstall(8): [patch] run Fix It floppy from serial p p bin/19773 [patch] telnet(1) infinite loop depending on how fds a o kern/19756 [patch] Inability to use linux extended partition (typ s kern/19535 [procfs] [patch] procfs_rlimit tidyup o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation o kern/18271 [patch] simplelock: klds not portable across UP and SM s bin/18100 [patch] update to src/usr.bin/from/from.c for multiple o kern/17504 [cam] [patch] Another Micropolis Synchronize Cache Pro o kern/17425 [ppbus] [patch] fix two small printing errors in ppbus p bin/17363 [patch] crontab(1) leaves files in /var/cron/tabs when o bin/17289 gad [patch] wrong permissions on /var/run/printer o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c o bin/15619 peter [patch] standard pppd(8) doesn't authenticate users wi o bin/15205 [patch] Addition to random(6) o bin/15168 [patch] Adding tracklist support to fdformat(1) p conf/15010 keramida [patch] rc.firewall: "client" firewall configuration k s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai f kern/13326 kmacy [headers] [patch] additional timeval interfaces for Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5467E10656A6 for ; Mon, 26 Jul 2010 11:14:47 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 46BBD8FC12 for ; Mon, 26 Jul 2010 11:14:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6QBElGt093723 for ; Mon, 26 Jul 2010 11:14:47 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6QB9LjX082514 for freebsd-bugs@FreeBSD.org; Mon, 26 Jul 2010 11:09:21 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 26 Jul 2010 11:09:21 GMT Message-Id: <201007261109.o6QB9LjX082514@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Cc: Subject: Current problem reports sorted by tag X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2010 11:14:47 -0000 (Note: a better version of this report is available at http://people.freebsd.org/~linimon/studies/prs/pr_tag_index.html .) Problem reports for tag '2tb': S Tracker Resp. Description -------------------------------------------------------------------------------- p bin/147572 sbruno [2tb] mptutil(8) doesn't support configs over 2TB o bin/143389 [2tb] fdisk(8) cannot handle above 1TB under i386 syst f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks o kern/118912 fs [2tb] disk sizing/geometry problem with large array s bin/111146 fs [2tb] fsck(8) fails on 6T filesystem o bin/107829 fs [2TB] fdisk(8): invalid boundary checking in fdisk / w o kern/84589 fs [2TB] 5.4-STABLE unresponsive during background fsck 2 o kern/79251 geom [2TB] newfs fails on 2.6TB gbde device o kern/18874 fs [2TB] 32bit NFS servers export wrong negative values t 9 problems total. Problem reports for tag 'aac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148083 scsi [aac] Strange device reporting o kern/144648 scsi [aac] Strange values of speed and bus width in dmesg f kern/123666 scsi [aac] attach fails with Adaptec SAS RAID 3805 controll f kern/103615 emaste [aac] [patch] aac(4) update to the last version availa o kern/91910 scottl [aac] [regression] aac driver hangs on Dell PE800 with 5 problems total. Problem reports for tag 'acl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/110915 rwatson [acl] ACL's don't work with SUIDDIR o kern/58941 rwatson [acl] acl under ufs2 doesn't handle disk corruption, p 2 problems total. Problem reports for tag 'acpi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147858 [acpi] acpi_hp not working when loaded via loader.conf o i386/146715 acpi [acpi] Suspend works, resume not on a HP Probook 4510s o kern/145306 acpi [acpi]: Can't change brightness on HP ProBook 4510s o amd64/144551 acpi [acpi] ACPI issues on SuperMicro X7SPA-H o i386/144045 acpi [acpi] [panic] kernel trap with acpi enabled o i386/143798 acpi [acpi] shutdown problem with SiS K7S5A o kern/143420 acpi [acpi] ACPI issues with Toshiba o kern/142263 acpi [acpi] ACPI regression on Asus K8N7-E deluxe motherboa o kern/142009 acpi [acpi] [panic] Panic in AcpiNsGetAttachedObject o amd64/140751 acpi [acpi] BIOS resource allocation and FreeBSD ACPI in TO o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A o kern/139088 acpi [acpi] ACPI Exception: AE_AML_INFINITE_LOOP error o amd64/138210 acpi [acpi] acer aspire 5536 ACPI problems (S3, brightness, o kern/137042 acpi [acpi] hp laptop's lcd not wakes up after suspend to r o i386/136008 acpi [acpi] Dell Vostro 1310 will not shutdown (Requires us o kern/135070 acpi [acpi] [patch] BIOS resource allocation and FreeBSD AC o kern/132602 acpi [acpi] ACPI Problem with Intel SS4200: System does not f i386/132535 gavin [acpi] if ACPI enabled, i can't change brightness leve o kern/130683 acpi [ACPI] shutdown hangs after syncing disks - ACPI race? o i386/129953 acpi [acpi] ACPI timeout (CDROM) with Shuttle X27D o kern/129618 acpi [acpi] Problem with ACPI on HP Pavilion DV2899 laptop o kern/129563 acpi [acpi] sleep broken on IBM/Lenovo T61 in amd64 mode o i386/126162 i386 [acpi] ACPI autoload failed : loading required module o kern/124744 acpi [acpi] [patch] incorrect _BST result validation for To o kern/124412 acpi [acpi] power off error on Toshiba M40 laptop o kern/123039 acpi [acpi] ACPI AML_BUFFER_LIMIT errors during boot o kern/120515 acpi [acpi] [patch] acpi_alloc_wakeup_handler: can't alloc o kern/119356 acpi [acpi]: i386 ACPI wakeup not work due resource exhaust o kern/119200 acpi [acpi] Lid close switch suspends CPU for 1 second on H o kern/118973 acpi [acpi]: Kernel panic with acpi boot o amd64/117316 amd64 [acpi] ACPI lockups on SuperMicro motherboard o kern/116939 acpi [acpi] PCI-to-PCI misconfigured for bus three and can o i386/114562 acpi [acpi] cardbus is dead after s3 on Thinkpad T43 with a o kern/114165 acpi [acpi] Dell C810 - ACPI problem s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f o kern/108954 acpi [acpi] 'sleep(1)' sleeps >1 seconds when speedstep (Cx o kern/108695 acpi [acpi]: Fatal trap 9: general protection fault when in o kern/108488 acpi [acpi] ACPI-1304: *** Error: Method execution failed o kern/108017 acpi [acpi]: Acer Aspire 5600 o kern/106924 acpi [acpi] ACPI resume returns g_vfs_done() errors and ker o kern/105537 acpi [acpi] problems in acpi on HP Compaq nc6320 o kern/102783 [acpi] hw.acpi has thermal controls backwards when ext s kern/91038 acpi [panic] [ata] [acpi] 6.0-RELEASE on Fujitsu Siemens Am 43 problems total. Problem reports for tag 'acpi_fujitsu': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/121102 acpi [acpi_fujitsu] [patch] update acpi_fujitsu for the P80 1 problem total. Problem reports for tag 'adw': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/22417 gibbs [adw] [patch] advansys wide scsi driver does not suppo 1 problem total. Problem reports for tag 'ae': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/145918 yongari [ae] After spontaneous ae0 "watchdog timeout", "stray 1 problem total. Problem reports for tag 'age': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/136482 yongari [age] Attansic L1 Gigabit Ethernet recieves multicasts 1 problem total. Problem reports for tag 'agp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/118962 rnoland [agp] Intel GMA 3000 Video Controller Not Recognized U o kern/103733 rnoland [agp] i915 driver on hp dc7100: device not recognized o kern/72224 [agp] umass devices broken by DRM (AGP issue?) o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets 4 problems total. Problem reports for tag 'aha': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/83765 [aha] Adaptec 1542-CP requires plug-and-play switch se 1 problem total. Problem reports for tag 'ahc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/123674 scsi [ahc] ahc driver dumping o kern/99954 scsi [ahc] reading from DVD failes on 6.x [regression] o kern/92798 scsi [ahc] SCSI problem with timeouts o kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5.3 s kern/45568 gibbs [ahc] ahc(A19160) pci parity error s kern/9927 gibbs [ahc] the ahc driver doesn't correctly grok switched S 6 problems total. Problem reports for tag 'ahci': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/148526 amd64 [ahci] ahci driver does not boot on AMD chip o kern/146464 [ahci] DVD device unusable with ahci(4) 2 problems total. Problem reports for tag 'ahd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/129602 scsi [ahd] ahd(4) gets confused and wedges SCSI bus o amd64/123520 amd64 [ahd] unable to boot from net while using ahd o kern/110847 scsi [ahd] Tyan U320 onboard problem with more than 3 disks s kern/105533 [ahd] adaptec 29320 causes panic with over 4GB o kern/85768 gibbs [ahd] aic79xx driver timeouts with U160 target (free l o kern/76178 scsi [ahd] Problem with ahd and large SCSI Raid system 6 problems total. Problem reports for tag 'aic': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114489 scottl [aic] [panic] _mtx_lock_sleep: in aic7xxx_osm.h (with o kern/114459 [aic] [panic] FreeBSD-CURRENT crash during boot with A 2 problems total. Problem reports for tag 'alc': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/148772 yongari [alc] alc0 does not send/receive packets if not plugge o kern/147985 net [alc] alc network driver + tso ( + vlan ? ) does not w 2 problems total. Problem reports for tag 'altq': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) o kern/131753 net [altq] [panic] kernel panic in hfsc_dequeue s kern/94182 [altq] [request] altq support for vlan driver 3 problems total. Problem reports for tag 'amd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/124667 scsi [amd] [panic] FreeBSD-7 kernel page faults at amd-scsi 1 problem total. Problem reports for tag 'amd64': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/127397 amd64 [amd64] 32bit application on FreeBSD-6.3 amd64 gets SI o amd64/120202 amd64 [amd64] [patch] [panic] kernel panic at start_all_aps, o amd64/119591 amd64 [amd64] [patch] time_t on 64-bit architecture o kern/117607 [amd64] dev.cpu.0.freq not showing up any longer on am s amd64/57250 kmacy [amd64] [patch] Broken PTRACE_GETFPREGS and PTRACE_SET 5 problems total. Problem reports for tag 'amr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114438 [amr] Anomalous performance with multiple arrays and a o kern/113098 [amr] Cannot read from amrd while under heavy load o kern/99529 [amr] DELL PowerEdge 2600 with streamer PowerVault 100 o kern/94139 scottl [amr] [regression] amr broken with LSILogic MegaRAID S o kern/86411 scottl [amr] Very low performance of amr(4) under FreeBSD-6.0 o kern/76848 [amr] amr hangs o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o kern/71771 [amr] Hang during heavy load with amr raid controller 8 problems total. Problem reports for tag 'an': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/128602 net [an] wpa_supplicant(8) crashes with an(4) o kern/85886 [an] [patch] an0: timeouts with Cisco 350 minipci s kern/75407 net [an] an(4): no carrier after short time o kern/36170 [an] [patch] an(4) does an_init() even if interface is 4 problems total. Problem reports for tag 'apic': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131571 gavin [apic] [panic] Running with APIC enabled crashes a Sup f kern/81000 acpi [apic] Via 8235 sound card worked great with FreeBSD 5 2 problems total. Problem reports for tag 'apm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138870 [apm] 8.0beta4 PnP problem? lost synaptics trackpad in 1 problem total. Problem reports for tag 'ar': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/126419 [ar] Fails to boot from RAID10 volume under the Intel o kern/125759 [ar] Fatal Trap 12 when ICH9R RAID becomes degraded o kern/125496 [ar] [patch] free memory on ataraid module unload o kern/108924 [ar] Panics when Intel MatrixRAID RAID1 is degraded o kern/101926 [ar] 6.1-STABLE crashes under heavy disk I/O and acces o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o kern/99850 [ar] ataraid hangs in g_waitidle when attaching to nVi o kern/98804 [ar] VIA V-RAID metadata mis-read (MSI K8MMV with the o kern/94393 [ar] PseudoRAID loses track of the master disk o kern/93771 [ar] [panic] atacontrol status ar1 causes panic 10 problems total. Problem reports for tag 'arcmsr': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/148502 delphij [arcmsr] arcmsr driver offlines all devices on a SAS p o kern/107206 [arcmsr] Background fsck causes kernel panic with arcm 2 problems total. Problem reports for tag 'arp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148784 net [arp] arp pub not working properly o kern/146539 net [arp] arp pub not working properly o kern/145300 qingli [arp] ARP table mapping is not refreshed on a MAC addr o kern/144777 net [arp] proxyarp broken in 8.0 [regression] o kern/140358 qingli 8.0RC2: [arp] arp: writing to routing socket: Invalid o kern/140051 net [bce] [arp] ARP not sent through Bridge Firewall with o kern/139204 net [arp] DHCP server replies rejected, ARP entry lost bef f bin/127719 net [arp] arp: Segmentation fault (core dumped) o kern/125920 net [arp] Kernel Routing Table loses Ethernet Link status o kern/119432 net [arp] route add -host -iface causes arp e o conf/23063 net [arp] [patch] for static ARP tables in rc.network 11 problems total. Problem reports for tag 'asr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/102612 [asr] da0 not detected when sharing bus with ch0 devic o amd64/91405 amd64 [asr] [panic] Kernel panic caused by asr on 6.0-amd64 o kern/88047 [asr] [panic] 6.0-RC1 reboots with SMP and asr o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on 4 problems total. Problem reports for tag 'ata': S Tracker Resp. Description -------------------------------------------------------------------------------- s amd64/148489 amd64 [ata] Generic driver is used for Nvidia SATA (nforce? o kern/148361 [ata] [panic] Kernel Panic, With Faulty Drives o kern/146661 [ata] damage files on ufs on ata pseudo raid when runn o kern/146270 [ata] Divide by zero in ata driver o kern/144930 [ata] SATA DVD Drive is not detected o kern/144770 [ata] hard drive spindown functionality broken? o bin/144641 [ata] burncd(8) freezes whole system while trying to b o i386/144326 i386 [ata] PERC H200 Integrated/Adapter not recognized on D f amd64/144151 amd64 [ata] Can not burn CD/DVD with AHCI enabled f amd64/144113 amd64 [ata] 8.0-RELEASE fails to detect SATA hard disks on a o kern/144055 [ata] [panic] kernel panic on IBM x226 with SATA drive o kern/143805 [ata] WARNING - READ_DMA48 UDMA ICRC error with 63XXES f kern/143374 [ata] notebook with SATA now says: DMA limited to UDMA s amd64/143173 amd64 [ata] Promise FastTrack TX4 + SATA DVD, installer can' o kern/143126 [ata] Data loss on read timeout o kern/142802 [ata] [panic] on removing drive: recursed on non-recur f kern/142510 [ata] [panic] FreeBSD 8.0-RELEASE panic'ed after remov o i386/142421 i386 [ata] optical drives not found o kern/141841 [ata] Controller ST-Lab A-173 (Sil3512) lost the HDD d o kern/141653 [ata] [panic] Panic in ata? o amd64/141112 amd64 [ata] [panic] Kernel panic when booting with any sATA o kern/140752 [ata] [patch] HDD power-off procedure is not clean f kern/139653 [ata] READ_BIG sluggish ata CD/DVD performance on HP D o kern/139027 [ata] DVD RW is not recognized on ASUS K40IN laptop wh o kern/138967 [ata] HDD write error: g_vfs_done(): ... ]error = 1 o kern/138851 [ata] FreeBSD by default does not support ATAPI CDs o kern/138537 [ata] [panic] Memory modified after free o kern/137181 [ata] Promise SATA controller SX4-M PDC20621 does not o kern/136356 [ata] SATA / ICH7 problems o kern/135690 [panic] [ata] ufs_dirbad: /backuphd: bad dir ino 22259 o kern/135497 [ata] JMicron JMB363 controller does not recognize PAT o amd64/135040 amd64 [ata] FreeBSD/amd64 does not (always) detect disk on S o kern/134520 [ata] SAS HD not detected on LSI SAS1078 (Acer Altos R f kern/134398 gavin [ata] problems with udma modes on atapi ixp600 o kern/133593 [ata] `atacontrol spindown` won't affect disk until so o kern/132252 [ata] No CD/DVD devices found! o amd64/131906 amd64 [ata] SATA data corruption with Promise PDC20378 (amd6 f kern/131796 [ata] Introducing new USB or eSATA disks results in at o kern/130794 [ata] hw.ata.ata_dma_limit without any effect o kern/130726 [ata] DMA errors accessing multiple SATA channels f amd64/130365 gavin [ata] Elitegroup A780GM-A Chipset:AMD 780G&SB700 IDE c o kern/130171 [ata] UDMA CF cards do not work with FreeBSD o amd64/129667 amd64 [ata] Elitegroup A780GM-A IDE controller not recognize o kern/129373 [ata] [panic] Panic in ata-queue, VIA CLE266, 7.1-BETA o kern/128035 [ata] unexpexted detach of external SATA drive f kern/127813 linimon [ata] ata diver dma mode work incorrectly on chip vt82 o kern/127717 [ata] [patch] - support write cache toggling per devic f kern/127517 [ata] sata does not detect SATA-300 disk but instead d p kern/127411 [ata] [panic] ata panics on bad block o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a p kern/127289 [ata] [patch] new pci ids for SiI3132 present on adapt p kern/127250 [ata] Kerneltrap 12 with atacontrol f kern/127119 [ata] incorrect ata device probing o kern/126142 [ata] M5281: READ DMA faults, device detaching o kern/125859 [ata] [patch] sata access failure [regression] a kern/125139 brooks [patch] [ata] bugs in ATAPI CD tray control o kern/124670 [ata] large file operation on RAID cause many GEOM err o kern/123887 [ata] PDC20262 does not support 48 bit DMA access o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE f kern/122368 [ata]: Failure to support SATA/PATA drives on 6.3 and o kern/122291 [ata] acd0: timeout waiting to issue command / acd0: e p kern/122045 [ata] [panic] reiniting detached ata channel kills the f kern/121703 [ata] Cannot fdisk/gpt with 1TB SATA disk and 965QM Mo o kern/121686 [ata] bogus CHS to LBA mapping in (at least) ata o i386/121675 mav [ata] incorrect fallback to udma33 with CF memory inst o kern/121461 [ata] SATA Hard disks are not detected on SiS 180/181 o kern/121396 [ata] 7.0 fails on mcp55 sata controller [regression] o kern/121350 [ata] [panic] initiate_write_inodeblock_ufs2: already o kern/120717 [ata] boot problem when recognizing ata1 o kern/120534 [ata] Troubles in work with SAS controller Adaptec 941 o kern/120296 [ata] Unstable SATA on MB with Nvidia MCP 570 SLI chip o kern/120177 [ata] ATA DMA modes don't work on CF cards o kern/120009 [ata] Burning on FreeBSD is destroying SONY CD-Rs o kern/119894 [ata] Initialization of disc controller fails [regress o kern/119877 [ata] OS Fails to detect hard disks on HP Proliant ML1 o kern/119838 [ata] udma100 enabled althrough improper cable on nVid o kern/119374 [ata] [regression] ATAPI or ATAPICAM bug (regression i f kern/119303 linimon [ata] SATA HDD missing in 7.0-RC1, ok in 7.0-BETA4; at o kern/119140 [ata] [panic] Kernel panic with sata drive and dma pro o kern/118573 [ata] FreeBSD doesnt support my optical drive o kern/118447 [ata] [patch] Troublesome DMA modes with VIA Apollo VP o kern/118342 [ata] Unable to mount root on ata drive w/ Cyrix 5530 s kern/118158 [ata] SONY SDX-570V (ATAPI) hangs frequently o kern/117972 [ata] SATA DLT V4 not recognized properly o kern/117443 [ata] [hang] system hang with ataidle o kern/117421 [ata] [hang] System hang with failing SATA disk (SiI31 o amd64/117296 amd64 [ata] I don`t see second SATA IDE on VIA VT8237A o kern/116935 [ata] Intermittent error with Promise PDC40718 o kern/116415 [ata] 6.2-STABLE does not work on Gigabyte GA-P35-S3 ( o kern/116270 [ata] READ_DMA48 UDMA ICRC error s amd64/115815 amd64 [ata] [request] Gigabyte GA-M61P-S3 Motherboard unsupp o kern/115479 [ata] [request] ASUS P5K SE need more support o kern/115232 [ata] Audio CD tracks not displayed properly by atapi o kern/115152 [ata] Sil 3512 SATA controller panics on 6.2 o kern/114213 [ata] optical drive not detected in the 6.x series of o kern/112282 [ata] atacontrol(8): changing DMA modes when disk is r o kern/111196 [ata] [hang] SATA drives cause errors and cause system o kern/110407 [ata] ATA drivers not recognizing Seagate CF Microdriv o kern/109736 [ata] FreeBSD install from CD can't find & mount NEC A o kern/108379 [ata] Secondary SATA drive not detected by FreeBSD 6.2 o amd64/107639 [ata] Kernel Panic/Crash on dd if=/dev/ad4 of=/dev/ad6 o kern/107622 [ata] can't boot on HP Pavilion dv6000 / problem with o kern/106432 [ata] Record of disks (DVD-R) through the k3b program s kern/106340 [ata] [request] Need to control disk write cache on pe f amd64/105531 amd64 [ata] gigabyte GA-M51GM-S2G / nVidia nForce 430 - does s kern/104950 [ata] [request] no support for SATA controller Initio f i386/104719 i386 [ata] Seagate ST3802110A errors/delays when using PIO4 o kern/103883 [ata] DMA is not defaulted on WDMA device (SIS integra p kern/103075 [ata] SATA disk attach/unplug from a MV88SX5041 freeze o kern/101734 [ata] -CURRENT cannot see SATA drive on ASUS A8N-SLI ( o kern/99652 [ata] nVidia nForce MCP51 controller hangs w/ 2 drives o kern/99088 [ata] Critical Problems with VIA 8251 SATA2/RAID Contr o kern/99017 [ata] [patch] FreeBSD versions above 5.3 panic if atap o kern/98962 remko [ata] [burncd]: [patch] writing >1 session on ATAPI CD f i386/98765 i386 [ata] timeouts on sata drive (Asus a7n8x-e) o kern/97996 [ata] DMA is broken for VIA 82C596B UDMA66controller f i386/97263 i386 [ata] FreeBSD only detects first drive on PDC20378 378 f i386/96302 gavin [ata] nVidia nForce CK804 SATA300 controller not recog o kern/96171 [ata] burncd (ATA driver) fails to write in vcd mode o amd64/95888 amd64 [ata] kernel: ad2: TIMEOUT - WRITE_DMA retrying on HP o kern/94155 [ata] 6.1 CF reader problem: "ad1: FAILURE - SETFEATUR o kern/93885 [ata] ata(4) failure: SETFEATURES SET TRANSFER MODE se o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID o kern/92238 [ata] [patch] Spurious "atapci1: failed to enable memo s kern/91290 [ata] ata(4) error on 7.0-CURRENT-20051229-SNAP-PC98 s kern/91038 acpi [panic] [ata] [acpi] 6.0-RELEASE on Fujitsu Siemens Am o kern/90206 [ata] [reboot] Server reboot after "FAILURE - out of m o kern/85450 [ata] [panic] subdisk6 detached (appears to be a sata o kern/79783 [ata] hw.ata.atapi_dma=1 reduces HDD writing transfer o kern/78758 [ata] [patch] Add support for re-sizing ATA disks f kern/61960 linimon [ata] [patch] BigDrive support for PC-98 architecture o kern/36911 [ata] ATA cannot be disabled with hints or through BIO 132 problems total. Problem reports for tag 'atapicam': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/118161 [atapicam] failure message from ATAPI CDROM in the boo o kern/117028 [atapicam] [panic] brelse: free buffer onto another qu o kern/116701 [atapicam] atapicam hangs initializing SATA DVDRs on s o kern/106490 [atapicam] atapicam fails with ATAPI-CD/DVD drives att o kern/100516 [atapicam] atapicam with ITE IT8212F crashes the syste f i386/99608 i386 [atapicam] ATAPI or CAM crash on FreeBSD 6.1-stable wi o kern/95407 [atapicam] atapicam, cd and /etc/rc.d/devfs problem o kern/91572 [atapicam] [panic] writing to UFS/softupdates DVD medi a kern/78929 [atapicam] atapicam prevents boot, system hangs o kern/60699 [atapicam] DVD Multidrive udma mode autosensed wrong 10 problems total. Problem reports for tag 'ataraid': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148748 [ataraid] Metadata Read Write Inconsistency o kern/134887 [ataraid] source consistency problem o kern/134054 [ataraid] [panic] traps kernel on boot if Intel Matrix o i386/89249 [ataraid] HighPoint RocketRAID 1520 (HPT372N) can't wr 4 problems total. Problem reports for tag 'ath': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148322 net [ath] Triggering atheros wifi beacon misses in hostap o kern/148317 net [ath] FreeBSD 7.x hostap memory leak in net80211 or At o kern/148307 adrian [ath] [patch] Incorrect alignment checks in sys/mips/a o kern/148112 net [ath] Atheros 9285 cannot register with wifi AP (timeo o kern/148078 net [ath] wireless networking stops functioning o kern/147638 rpaulo [PATCH] [ath] Atheros R9280 has probrem at 8.1-PRERELE o kern/146517 net [ath] [wlan] device timeouts for ath wlan device on re o kern/145826 net [ath] Unable to configure adhoc mode on ath0/wlan0 o kern/143868 net [ath] [patch] allow Atheros watchdog timeout to be tun o kern/140796 net [ath] [panic] privileged instruction fault o kern/140567 net [ath] [patch] ath is not worked on my notebook PC o kern/140245 net [ath] [panic] Kernel panic during network activity on o kern/137592 net [ath] panic - 7-STABLE (Aug 7, 2009 UTC) crashes on ne o kern/136836 net [ath] atheros card stops functioning after about 12 ho f kern/135427 vwe [ath] [hang] System freezes when loading Atheros drive o kern/132722 net [ath] Wifi ath0 associates fine with AP, but DHCP or I o kern/129750 net [ath] Atheros AR5006 exits on "cannot map register spa o kern/126475 net [ath] [panic] ath pcmcia card inevitably panics under o kern/126214 net [ath] txpower problem with Atheros wifi card o kern/125721 [ath] Terrible throughput/high ping latency with Ubiqu o kern/125617 [ath] ath(4) related panic o kern/125501 [ath] atheros cardbus driver hangs o kern/125332 [ath] [hang] crash under any non-tiny networking under o kern/122697 net [ath] Atheros card is not well supported f kern/121394 sam [ath] FreeBSD access point (ath0) fails 100% of the ti o kern/121061 sam [ath] [panic] panic while ejecting ath(4)-adapter duri o kern/120376 imp [ath] High interrupt load when booting with ath (PCMCI o kern/120282 imp [ath] [panic] resource_list_release: resource entry is f kern/119345 vwe [ath] Unsuported Atheros 5424/2424 and CPU speedstep n s kern/117513 vwe [panic] [ath] Fatal trap 12: page fault while in kerne s kern/116444 vwe [ath] Atheros 5005G (AR5212) miniPCI: unable to attach f kern/115226 vwe [ath] ath0: unable to attach hardware; HAL status 13 o kern/107279 [ath] panic: ath_start: attempted use of a free mbuf! o kern/105348 net [ath] ath device stopps TX f sparc/94483 sam [ath] ath_hal does not work on 6-release/sparc64 o kern/93886 net [ath] Atheros/D-Link DWL-G650 long delay to associate f kern/88082 net [ath] [panic] cts protection for ath0 causes panic 37 problems total. Problem reports for tag 'aue': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis o usb/131576 usb [aue] ADMtek USB To LAN Converter can't send data o kern/91311 net [aue] aue interface hanging o usb/71280 usb [aue] aue0 device (linksys usb100tx) doesn't work in 1 o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o kern/51009 [aue] [patch] buggy aue driver fixed. 6 problems total. Problem reports for tag 'axe': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/146153 usb [axe] [usb8] Hosts in network doesn't receive any pack f usb/140883 usb [axe] [usb8] USB gigabit ethernet hangs after short pe o usb/119981 usb [axe] [patch] add support for LOGITEC LAN-GTJ/U2 gigab o usb/88408 usb [axe] axe0 read PHY failed 4 problems total. Problem reports for tag 'bce': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140051 net [bce] [arp] ARP not sent through Bridge Firewall with o amd64/131209 amd64 [panic] [bce] 7.1-STABLE amd64 crash - m0 NULL o kern/125389 [ipmi] [bce] IPMI problem with bce f kern/123172 net [bce] Watchdog timeout problems with if_bce a kern/118238 net [bce] [patch] bce driver shows "no carrier" on Intel S o kern/108542 net [bce] Huge network latencies with 6.2-RELEASE / STABLE o kern/100858 davidch [bce] Broadcom bce driver and SMP hangup 7 problems total. Problem reports for tag 'bfe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/96030 net [bfe] [patch] Install hangs with Broadcomm 440x NIC in 1 problem total. Problem reports for tag 'bge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148108 net [bge] FreeBSD 7.2 or 8.0 does not recognize, 4.11 can f kern/145621 yongari [bge] [panic] bge watchdog timeout --resetting -> cras f kern/138694 yongari [bge] FreeBSD 6.3 release does not recognize Broadcom o kern/137279 yongari [bge] [panic] Page fault (fatal trap 12) NFS server w/ o kern/136876 net [bge] bge will not resume properly after suspend f kern/133328 yongari [bge] [panic] Kernel panics with Windows7 client f kern/132991 yongari [bge] if_bge low performance problem f kern/127587 yongari [bge] [request] if_bge(4) doesn't support BCM576X fami o kern/123347 net [bge] bge1: watchdog timeout -- linkstate changed to D o kern/121080 net [bge] IPv6 NUD problem on multi address config on bge0 o kern/120791 [bge] The Broadcom BCM5703 A2 NIC is running a lot of f kern/112570 yongari [bge] packet loss with bge driver on BCM5704 chipset o kern/109733 net [bge] bge link state issues [regression] o kern/104862 [bge] BCM5704 only works at 10Mbit o kern/104826 andre [bge] FreeBSD 6.1 not RFC 768 (UDP) compliant on Compa f kern/104485 yongari [bge] Broadcom BCM5704C: Intermittent on newer chip ve o kern/103715 [bge] [request] Broadcom BCM5708SKFB not recognised by o kern/94424 [bge] BGE5721 or BGE5750? o kern/94162 net [bge] 6.x kenel stale with bge(4) f kern/92090 yongari [bge] bge0: watchdog timeout -- resetting f kern/73538 net [bge] problem with the Broadcom BCM5788 Gigabit Ethern f i386/45773 yongari [bge] Softboot causes autoconf failure on Broadcom 570 22 problems total. Problem reports for tag 'binutils': S Tracker Resp. Description -------------------------------------------------------------------------------- a gnu/138983 [binutils] System binutils too old for modern CPUs (la 1 problem total. Problem reports for tag 'bktr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o kern/105604 [bktr] [patch] add support for Pixelview PlayTV Pro 2 o kern/104675 [bktr] METEORSINPUT seemingly not setting input o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o kern/81180 [bktr] bktr(4) driver cannot capture both audio and vi o kern/79066 [bktr] bktr(4) eating about 10% CPU load once it was u s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o kern/57603 [bktr] bktr driver: freeze on SMP machine o kern/56245 [bktr] Distorted and choppy video with bktr-driver on s kern/48279 [bktr] Brooktre878 may cause freeze o kern/37326 [bktr] smbus/bktr crash when omitting "device iicsmb" a kern/36451 [bktr] [patch] Japan IF frequency is incorrect o kern/36415 [bktr] [patch] driver incorrectly handles the setting o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o kern/32812 [bktr] bktr driver missing tuner for eeprom detection. 19 problems total. Problem reports for tag 'bluetooth': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140590 net [bluetooth] ng_ubt(4) ng_l2cap_process_cmd_rej warning o kern/99200 usb [bluetooth] SMP-Kernel crashes reliably when Bluetooth 2 problems total. Problem reports for tag 'boot0': S Tracker Resp. Description -------------------------------------------------------------------------------- p bin/135918 [boot0] [patch] Make BootEasy compatible with NT Drive o i386/134242 i386 [boot0] [patch] improvement i386 boot0 error diagnose f i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice 3 problems total. Problem reports for tag 'boot1': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/91871 brucec [boot1] [patch] boot1: jump to 0xf000:0xfff0 instead o 1 problem total. Problem reports for tag 'bootinst': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/22914 brucec [bootinst] bootinst messages are not updated 1 problem total. Problem reports for tag 'bpf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133490 net [bpf] [panic] 'kmem_map too small' panic on Dell r900 f kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. 3 problems total. Problem reports for tag 'bsd.cpu.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/30399 brueffer [bsd.cpu.mk] [patch] Have Fortran use the CPUTYPE vari 1 problem total. Problem reports for tag 'bsd.own.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/143831 [bsd.own.mk] [patch] Fix missing atm -> bsnmp dependen 1 problem total. Problem reports for tag 'bsd.port.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/148783 portmgr [bsd.port.mk] [patch] add LATEST_LINK and CONFLICTS to o ports/148695 portmgr [bsd.port.mk] [patch] Easier / automatic regression-te s ports/148637 portmgr [bsd.port.mk] Options are ignored for any port that de o ports/148250 portmgr [bsd.port.mk] [patch] xz memory limit prevents port bu o ports/147701 portmgr [bsd.port.mk] [patch] bsd.port.mk incorrectly names DE o ports/146787 miwi [bsd.port.mk] create a treadle to prevent early-check o ports/146496 portmgr [bsd.port.mk] [PATCH] Removing ${PORTSDIR} from depend o ports/146351 portmgr [patch] [bsd.port.mk] Retire INSTALLS_SHLIB o ports/146347 portmgr [patch] [bsd.port.mk] fix USE_DOS2UNIX info output o ports/146067 portmgr [patch] [bsd.port.mk] remove compatibility describe ta o ports/145955 portmgr [bsd.port.mk] [patch] make fetch-required-list in a po s ports/144533 portmgr [bsd.port.mk] ports tree Makefiles fail to setup a sta o ports/144482 portmgr [bsd.port.mk] [patch] actual-package-depends rejects o o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o ports/138228 portmgr [bsd.port.mk] New opt-in knob to compile ports with SS o ports/135221 portmgr [bsd.port.mk] unified support for LINUX_OSRELEASE depe 16 problems total. Problem reports for tag 'bsd.python.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/133081 python [bsd.python.mk] PYEASYINSTALL_ARCHDEP=yes makes broken 1 problem total. Problem reports for tag 'busdma': S Tracker Resp. Description -------------------------------------------------------------------------------- f i386/119175 i386 [busdma] [patch] Typo in bus_dmamem_alloc() o amd64/93961 amd64 [busdma] Problem in bounce buffer handling in sys/amd6 2 problems total. Problem reports for tag 'bwi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140066 net [bwi] install report for 8.0 RC 2 (multiple problems) 1 problem total. Problem reports for tag 'bwn': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/144724 weongyo [bwn] if_bwn does not pass traffic when in PIO mode p kern/144505 weongyo [bwn] [patch] Error in macro CALC_COEFF2. 2 problems total. Problem reports for tag 'cam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148070 [cam] [panic] panic: _mtx_lock_sleep: recursed on non- o kern/141934 scsi [cam] [patch] add support for SEAGATE DAT Scopion 130 o kern/138622 [cam] CAMIOCOMMAND ioctl failed: Inappropriate ioctl f p kern/130735 scsi [cam] [patch] pass M_NOWAIT to the malloc() call insid o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o kern/119668 scsi [cam] [patch] certain errors are too verbose comparing o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X o usb/107243 usb [usb67] [cam] [quirk] [patch] Apacer USB Flash Drive q o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB s kern/85975 [cam] devfs does not create entries when removable med o kern/76893 [cam] [patch] Fatal divide in booting processes with B s kern/72041 [cam] [hang] Deadlock when disk is destroyed while use s bin/57088 [cam] [patch] for a possible fd leak in libcam.c s kern/28840 gibbs [cam] Possible interrupt masking trouble in sys/cam/ca s i386/17662 gibbs [cam] cam_xpt.c incorrectly disables tagged queuing fo o kern/17504 [cam] [patch] Another Micropolis Synchronize Cache Pro 21 problems total. Problem reports for tag 'cardbus': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/125880 imp [cardbus] Cardbus cards Don't function on TI PCIxx12 C o kern/122749 [cardbus] cardbus problem on IBM Thinkpad T60P o kern/121761 [cardbus] [dc] a cardbus dc0 causes a system freeze wh o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't o kern/121759 [cardbus] [dc] cardbus dc0 initialization failure at o a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad o kern/115371 imp [cardbus] [patch] Device removal leaves resource datab o kern/84954 imp [CARDBUS] cbb alloc res fail (with hw.cardbus.debug=1 8 problems total. Problem reports for tag 'carp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147950 virtualization[vimage] [carp] VIMAGE + CARP = kernel crash o kern/144572 net [carp] CARP preemption mode traffic partially goes to o kern/141023 net [carp] CARP arp replays with wrong src mac o kern/133218 net [carp] [hang] use of carp(4) causes system to freeze o kern/132285 net [carp] alias gives incorrect hash in dmesg o kern/132107 net [carp] carp(4) advskew setting ignored when carp IP us o kern/129508 net [carp] [panic] Kernel panic with EtherIP (may be relat o kern/127050 net [carp] ipv6 does not work on carp interfaces [regressi p kern/126984 glebius [carp] [patch] add carp userland notifications via dev o kern/126945 net [carp] CARP interface destruction with ifconfig destro o kern/126714 net [carp] CARP interface renaming makes system no longer o kern/125816 net [carp] [if_bridge] carp stuck in init when using bridg f kern/125442 gonzo [carp] [lagg] CARP combined with LAGG causes system pa o kern/120130 net [carp] [panic] carp causes kernel panics in any conste o kern/117448 net [carp] 6.2 kernel crash [regression] o kern/117000 glebius [carp] CARP using address-less host NIC (carpdev) o kern/114095 pf [carp] carp+pf delay with high state limit 17 problems total. Problem reports for tag 'cbb': S Tracker Resp. Description -------------------------------------------------------------------------------- f amd64/123275 amd64 [cbb] [pcmcia] cbb/pcmcia drivers on amd64 failure [re o kern/114550 [cbb] Cardbus WiFi card activation problem 2 problems total. Problem reports for tag 'cd9660': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/130941 gavin [panic] [cd9660] [geom] unexpected crash due to page f o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui 2 problems total. Problem reports for tag 'cdce': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/143620 usb [cdce] [usb8] the module if_cdce doesn't support my Op 1 problem total. Problem reports for tag 'ciss': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146287 scsi [ciss] ciss(4) cannot see more than one SmartArray con o kern/144301 scsi [ciss] [hang] HP proliant server locks when using ciss o kern/132250 scsi [ciss] ciss driver does not support more then 15 drive o kern/125723 [ciss] System randomly crashes or can not boot - ciss o kern/125647 [ciss] [panic] System randomly crashes - ciss driver o kern/115997 scottl [ciss] [panic] [patch?] kernel panics on heavy disk I/ o kern/109813 [ciss] ciss(4) driver API header is not installed 7 problems total. Problem reports for tag 'cpu': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145385 [cpu] Logical processor cannot be disabled for some SM 1 problem total. Problem reports for tag 'cpufreq': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146436 [cpufreq] [panic] Panic when changing profile to econo o kern/143227 [panic] [cpufreq] free: address has not been allocated o kern/140658 [cpufreq] dev.cpu.0.cx_lowest=C3 from /etc/sysctl.conf f kern/140361 [cpufreq] speed-stepping broken on PhenomII (acpi?) o i386/139115 i386 [cpufreq] low cpu frequency reported [regression] o amd64/122695 amd64 [cpufreq] Lack of cpufreq control using amd64 eith cor o kern/121768 [cpufreq] cpufreq module RELENG_6 -> 7 regressions on o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de o amd64/114270 amd64 [cpufreq] cpufreq doesnt work when compiled in to kern 9 problems total. Problem reports for tag 'crypto': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145940 des [crypto] [patch] OpenSSH_5.4p1 - do not prepend Author o kern/136123 [crypto] device crypto breaks sparc64 kernel o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o kern/132129 [crypto] Device crypto makes the kernel unbootable o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac o kern/115695 [crypto] When "device padlock" defined first ssh to ma f kern/114331 vanhu [crypto] [patch] VIA padlock freesession bug o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o kern/91407 [crypto] [panic] Kernel panic when heavily loading cry o kern/66029 [crypto] [patch] MD5 alignment problem on a TriMedia p o kern/43611 [crypto] [patch] static-ize some symbols in sys/crypto 11 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 'cxgb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146759 net [cxgb] [patch] cxgb panic calling cxgb_set_lro() witho o kern/138381 np [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ o kern/125806 np [cxgb] cxgb packet counters do not work 3 problems total. Problem reports for tag 'cy': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/126098 [cy] 6.3 only sees 16 ports on 32 port Cyclades Cyclom 1 problem total. Problem reports for tag 'dc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/121761 [cardbus] [dc] a cardbus dc0 causes a system freeze wh o kern/121759 [cardbus] [dc] cardbus dc0 initialization failure at o o kern/119205 [dc] [patch] Collect various stats regarding dc(4) int s kern/92279 net [dc] Core faults everytime I reboot, possible NIC issu o kern/82070 [dc] Not all dc(4) devices can be used: MII without an f kern/79262 net [dc] Adaptec ANA-6922 not fully supported o kern/55793 [dc] Flaky behavior of if_dc when initializing a LNE10 o kern/30052 [dc] [patch] dc driver queues outgoing pkts indefinite 8 problems total. Problem reports for tag 'de': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133495 [de] interface not properly initialized on boot o kern/71450 [de] de(4): MAC address change on 21040 "Tulip" Ethern a kern/55542 andre [de] [patch] discard oversize frame (ether type 800 fl 3 problems total. Problem reports for tag 'devctl': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/130107 imp [devctl] [patch] in devctl_queue_data(): possible use 1 problem total. Problem reports for tag 'devd': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. 1 problem total. Problem reports for tag 'devfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125034 [devfs] [patch] devfs does not apply rules to newly cr o kern/125030 [devfs] [patch] Command 'devfs ruleset 0' causes panic o kern/124881 [devfs] [patch] [request] Add possibility to check whi o kern/123287 [devfs] structure used after freed in destroy_devl() i o kern/122838 [devfs] devfs doesn't handle complex paths (like zvol/ o kern/114057 [devfs] devfs symlink over device doesn't work o conf/91342 [devfs] Errors in devfs.rules files don't get logged o kern/87836 [devfs] If using ATAPICAM with cd(dvd)rw without media 8 problems total. Problem reports for tag 'devfs.rules': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/124853 gonzo [devfs.rules] [patch] devfs_ruleset_use may use freed 1 problem total. Problem reports for tag 'digi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125454 [digi] [patch] device digi (PC/Xe 64K 16 ports) not wo o kern/83254 [digi] driver can't init Digiboard PC/4e o kern/82227 [digi] Xem: chained concentrators not recognised o kern/74281 [digi] digi(4): Digiboard PCI Xem (64-ports) detection p kern/55018 andre [digi] [patch] Digiboard PC/Xem fails to initialize wh 5 problems total. Problem reports for tag 'disklabel': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145309 fs [disklabel]: Editing disk label invalidates the whole 1 problem total. Problem reports for tag 'diskless': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/87586 [diskless] [vm] [panic] Unable to use networked swap i 1 problem total. Problem reports for tag 'dri': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/123775 [dri] DRI Broken under freebsd7-stable/i386 o kern/119507 [dri] mach64.o kernel module version is 1.0.0, but ver o kern/107342 [dri] Radeon dri breaks system o amd64/97337 amd64 [dri] xorg reboots system if dri module is enabled 4 problems total. Problem reports for tag 'drm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134800 [drm] radeon driver freezes Xorg server with drmwtq o kern/128648 [drm] [hang] crash when using 3D-acceleration with Int f kern/126113 rnoland [drm] Issues with DRM with Intel GM965 chipset f kern/121550 [drm] Can't config graphics for ATI Radeon Xpress 200M f kern/120262 rnoland [drm] "0MB"; no dri with i915G [regression] o kern/116435 [drm] drm/i915 reports memory leak o kern/114995 [drm] acpi_video prevents savage drm from loading succ o kern/114677 [drm] Xorg will not run with dri glx and drm on ATI Ra o kern/114546 [drm] [panic] Sleeping thread owns a non-sleepable loc o kern/114406 [drm] ATI Radeon Mobility X600 not supported by agp de o kern/93770 [drm] ati 9600 PRO radeon not recognized by the system o kern/90237 [drm] [panic] panic in sis DRM s kern/87653 [drm] ATI Radeon Mobile X600SE not detected by kernel o kern/82064 [drm] DRM not working with SMP 14 problems total. Problem reports for tag 'dtrace': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141452 [dtrace] DTrace stops tracing because of struct thread o kern/134408 [dtrace] [panic] "opensnoop" DTrace script panics ever o kern/130998 [dtrace] DTrace stops tracing because of struct thread o kern/127441 [dtrace] Dtrace timestamp variable is wrapping as if d o kern/127440 [dtrace] Dtrace arg0/arg1 variables don't contain retu 5 problems total. Problem reports for tag 'dummynet': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147245 net [dummynet] dummynet skip traffic over configured limit o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result f kern/142951 ipfw [dummynet] using pipes&queues gives OUCH! pipe should o kern/138850 net [dummynet] dummynet doesn't work correctly on a bridge o kern/134157 net [dummynet] dummynet loads cpu for 100% and make a syst o kern/133969 net [dummynet] [panic] Fatal trap 12: page fault while in o kern/133968 net [dummynet] [panic] dummynet kernel panic o kern/121382 ipfw [dummynet]: 6.3-RELEASE-p1 page fault in dummynet (cor f kern/118128 oleg [dummynet] Dummynet cause kernel trap or system freeze o kern/106316 net [dummynet] dummynet with multipass ipfw drops packets o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same 11 problems total. Problem reports for tag 'ed': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/122195 net [ed] Alignment problems in if_ed o kern/85493 imp [ed] [patch] OLDCARD can't probe ed driver o kern/84202 net [ed] [patch] Holtek HT80232 PCI NIC recognition on Fre o kern/80853 net [ed] [patch] add support for Compex RL2000/ISA in PnP p i386/12088 imp [ed] [patch] ed(4) has minor problem with memory alloc o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement 6 problems total. Problem reports for tag 'editline': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/124822 [editline] [patch] Editline's ed-search-{prev,next}-hi 1 problem total. Problem reports for tag 'ef': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le 1 problem total. Problem reports for tag 'ehci': S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/141918 sparc64 [ehci] ehci_interrupt: unrecoverable error, controller o usb/122547 usb [ehci] USB Printer not being recognized after reboot o usb/115400 usb [ehci] Problem with EHCI on ASUS M2N4-SLI f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 o usb/91906 usb [ehci] [hang] FreeBSD hangs while booting with USB leg o usb/82660 usb [ehci] [panic] EHCI: I/O stuck in state 'physrd'/panic o usb/81621 usb [ehci] [hang] external hd hangs under load on ehci 8 problems total. Problem reports for tag 'elf': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/118540 kaiw [elf] [patch] update sys/sys/elf_common.h with new ema 1 problem total. Problem reports for tag 'em': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148004 net [em] Inconsistent networking with em driver on FreeBSD o kern/147989 net [em] em Receive errors / CRC Errors / Alignment Errors o kern/146263 net [em] [panic] Panic in em(4) SIOCADDMULTI/em_set_multi/ o kern/144680 net [em] em(4) problem with dual-port adapter o kern/143939 net [ipfw] [em] ipfw nat and em interface rxcsum problem o kern/143573 net [em] em(4) NIC crashes intermittently o kern/143285 net [em] [regression] jumbo frames broken in 8.0 o kern/142518 net [em] [lagg] Problem on 8.0-STABLE with em and lagg o kern/142019 net [em] em needs "ifconfig em0 down up" when link was gon o kern/141843 net [em] [vlan] Intel txcsum and assigned vlan invoke wron p kern/141646 eri [em] em(4) + lagg(4) + vlan(4) generates ISL-tagged fr o kern/141285 net [em] hangs down/up intel nic during creating vlan o kern/140778 net [em] randomly panic in vlan/em o kern/140728 net [em] [patch] Fast irq registration in em driver o kern/140647 net [em] [patch] e1000 driver does not correctly handle mu o kern/140326 net [em] em0: watchdog timeout when communicating to windo o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) o kern/136168 net [em] em driver initialization fails on Intel 5000PSL m o kern/134956 net [em] FreeBSD 7.1 & 7.2, Intel PRO/1000 PT Quad Port Se o kern/134079 net [em] "em0: Invalid MAC address" in FreeBSD-Current ( 8 o kern/122928 net [em] interface watchdog timeouts and stops receiving p o kern/122772 net [em] em0 taskq panic, tcp reassembly bug causes radix o kern/122373 jfv [em]: unable to recieve on em 82542 w/o promisc o kern/122058 net [em] [panic] Panic on em1: taskq o kern/121624 net [em] [regression] Intel em WOL fails after upgrade to o kern/121298 net [em] [panic] Fatal trap 12: page fault while in kernel o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o kern/119754 jfv [em] em hung after "watchdog timeout -- resetting" on o kern/118927 jfv [em] em(4) broken: link state changed to DOWN (/UP), l o kern/118695 jfv [em] device polling + vlan causes panic on "em" interf o kern/117926 jfv [em] Intel S5000-based mobo, em driver does not attach o kern/117043 net [em] Intel PWLA8492MT Dual-Port Network adapter EEPROM o kern/115930 jfv [em]: Dell nic enumeration problem o kern/112937 jfv [em] Panic in em(4) when issuing a SIOCGIFADDR ioctl o kern/112702 jfv [em] em driver doesn't use MSI on MSI capable device o kern/104978 jfv [em] jumbo frames has been broken in RELENG_6 by last o kern/103256 jfv [em] em0: watchdog timeout -- resetting (6.1-STABLE) f i386/102562 i386 [em] no traffic pass through a em card after approx. a o kern/101226 jfv [em] Access to IPMI module is lost when the em driver o amd64/92337 amd64 [em] FreeBSD 6.0 Release Intel Pro 1000 MT em1 no buff o kern/91594 net [em] FreeBSD > 5.4 w/ACPI fails to detect Intel Pro/10 o kern/80932 jfv [em] [patch] Degraded performance of em driver 42 problems total. Problem reports for tag 'endian': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/138737 i386 [endian] [patch] Patch for bswap64(9) operation on IA 1 problem total. Problem reports for tag 'epair': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147769 bz [epair] 'ifconfig epair0 create' hangs the whole syste 1 problem total. Problem reports for tag 'est': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/145718 i386 [est] [patch] fix freq calculation from MSR for CPUs w o i386/133388 i386 [est] est causes wrong dev.cpu.0.freq_levels values f amd64/121590 amd64 [est] [p4tcc] [acpi_perf] setting dev.cpu.0.freq somet 3 problems total. Problem reports for tag 'ex': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx 1 problem total. Problem reports for tag 'ext2fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148820 [patch] [ext2fs] duplicated comment block cleanup o kern/143345 fs [ext2fs] [patch] extfs minor header cleanups to better o kern/142924 fs [ext2fs] [patch] Small cleanup for the inode struct in o kern/142597 fs [ext2fs] ext2fs does not work on filesystems with real o kern/104133 fs [ext2fs] EXT2FS module corrupts EXT2/3 filesystems 5 problems total. Problem reports for tag 'ext3': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/124621 fs [ext3] [patch] Cannot mount ext2fs partition 1 problem total. Problem reports for tag 'fdc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/119618 [fdc] Double Density Disks do not work correctly o kern/103862 [fdc] [patch] Error with fdformat on -CURRENT o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid s kern/97266 [fdc] System hangs at kernel time after boot: /dev/fd0 f kern/91476 gavin [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/84799 [fdc] [patch] can't read beyond track 0 on fdc (IBM th o kern/79944 [fdc] virtual floppy controller of Virtual PC does not s kern/75233 [fdc] breaking fdformat /dev/fd0 resets device permiss o kern/74827 [fdc] Problem writing data to floppies o kern/73961 [fdc] floppy disk drive performance problem [new in 5. o kern/66960 [fdc] [patch] filesystems not unmounted during reboot 11 problems total. Problem reports for tag 'ffs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136944 fs [ffs] [lor] bufwait/snaplk (fsync) o amd64/133977 amd64 [panic] [ffs] "panic: ffs_blkfree: freeing free block" o kern/125895 fs [ffs] [panic] kernel: panic: ffs_blkfree: freeing free o kern/123778 vwe [panic] [ffs] [msgs] server reboots when running 130.c o kern/122380 fs [ffs] ffs_valloc:dup alloc (Soekris 4801/7.0/USB Flash o kern/116913 fs [ffs] [panic] ffs_blkfree: freeing free block o kern/116583 fs [ffs] [hang] System freezes for short time when using o kern/92272 fs [ffs] [hang] Filling a filesystem while creating a sna f kern/53137 jh [ffs] [panic] background fscking causing ffs_valloc pa 9 problems total. Problem reports for tag 'fifo': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/94772 [fifo] [patch] FIFOs (named pipes) + select() == broke o kern/76525 [fifo] select() hangs on EOF from named pipe (FIFO) o kern/76144 [fifo] poll doesn't set POLLHUP when FIFO is closed 3 problems total. Problem reports for tag 'firewire': S Tracker Resp. Description -------------------------------------------------------------------------------- p conf/147126 brucec [firewire] [patch] missing firewire part in defaults/l o kern/144843 firewire [firewire] [panic] fwcontrol(8) -S causes kernel panic o kern/143623 firewire [firewire] firewire fails to attach DV camera and down o kern/139549 firewire [firewire] reconnecting a firewire disk does not cause o kern/129261 simokawa [firewire] Kernel crash on boot with disconnected fire p kern/125673 firewire [firewire] [panic] FreeBSD7 panics when kldunloading f o kern/122951 firewire [firewire] video-transfer via fwcontrol triggers a pan o kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o kern/118093 firewire [firewire] firewire bus reset hogs CPU, causing data t p kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o kern/113785 firewire [firewire] dropouts when playing DV on firewire o kern/97208 firewire [firewire] System hangs / locks up when a firewire dis o kern/74238 firewire [firewire] fw_rcv: unknown response; firewire ad-hoc w o kern/73313 simokawa [firewire] Maxtor Onetouch drivers hang or corrupt dat 14 problems total. Problem reports for tag 'flowtable': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148018 [flowtable] flowtable crashes on ia64 o kern/146792 net [flowtable] flowcleaner 100% cpu's core load o kern/144917 [flowtable] [panic] flowtable crashes system [regressi 3 problems total. Problem reports for tag 'fpa': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/101061 vwe [fpa] fea/fpa (DEC FDDI NIC) driver causes kernel pani 1 problem total. Problem reports for tag 'fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/122172 fs [fs]: amd(8) automount daemon dies on 6.3-STABLE i386, f kern/120991 fs [panic] [fs] [snapshot] System crashes when manipulati 2 problems total. Problem reports for tag 'fwip': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139162 net [fwip] [panic] 8.0-RC1 panics if using IP over firewir 1 problem total. Problem reports for tag 'fwohci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136946 firewire [fwohci] fwohci throws an"unrecoverable error" upon re 1 problem total. Problem reports for tag 'fxp': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/144492 yongari [fxp] The fxp driver does not handle Frame Check Seque o kern/124904 yongari [fxp] EEPROM corruption with Compaq NC3163 NIC f kern/113427 yongari [fxp] fxp0: device timeout when writing to USB and pla o kern/103332 yongari [fxp] fxp driver does not work correctly on Intel 8255 o kern/85258 mux [fxp] changing promisc mode on nic can lead to kernel o kern/12543 [fxp] [patch] cumulative error counters for fxp(4) 6 problems total. Problem reports for tag 'gbde': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/119293 [gbde] gbde swap encryption forces gmirror to rebuild o kern/87544 geom [gbde] mmaping large files on a gbde filesystem deadlo o kern/66162 phk [gbde] gbde destroy error 3 problems total. Problem reports for tag 'gcclibs': S Tracker Resp. Description -------------------------------------------------------------------------------- o gnu/134604 [gcclibs] [patch] Memory leak in gcclibs/libgomp 1 problem total. Problem reports for tag 'geli': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146429 pjd [geli][panic][patch] kernel panic if geli autodetach i o kern/134113 geom [geli] Problem setting secondary GELI key o kern/133931 geom [geli] [request] intentionally wrong password to destr o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/120090 [geli] geli boot password input fails when using usb k o kern/120066 [geli] geli boot password input fail when using serial o kern/117188 [geli] System crashes/reboots on access to file on GEL o bin/116782 [geli] geli not updated on migrate from 6.1 to 6.2 rel o kern/115856 geom [geli] ZFS thought it was degraded when it should have o kern/111967 [geli] glabel - label is seemingly not written to disk o amd64/110599 amd64 [geli] geli attach to gmirror device hangs and cannot o kern/105368 [geli] geli passphrase prompt malfunctioning when moun o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE o kern/88601 geom [geli] geli cause kernel panic under heavy disk usage 14 problems total. Problem reports for tag 'geode': S Tracker Resp. Description -------------------------------------------------------------------------------- p i386/128014 phk [geode] [patch] AMD Geode CS5536 watchdog(9) not disab f i386/98215 i386 [geode] [regression] FreeBSD can no longer boot Geode 2 problems total. Problem reports for tag 'geom': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/148688 ae [geom][panic] panic when committing undone partitionin p kern/148687 ae [geom] gpart prints invalid partition number when dest o kern/148540 geom [geom] geom_sched breaks ata devices o kern/147852 geom [geom] [panic] graid3 panic: wrong offset 16384 for se o kern/147851 geom [geom] [panic] graid3 panic: g_read_data: invalid leng o kern/147664 geom [geom] [patch] Add the ability to create linux and fat p docs/147119 uqs [geom] [patch] fix a typo in gsched(8) manual o kern/145818 geom [geom] geom_stat_open showing cached information for n o kern/145042 geom [geom] System stops booting after printing message "GE o docs/145037 doc [geom] [request] the geom manual sections are sorted i o kern/144962 geom [geom] panic when accessing GPT disk with a large numb o kern/144905 geom [geom][gpart] panic in gpart_ctlreq when unplugging ca o kern/142563 geom [geom] [hang] ioctl freeze in zpool f kern/142365 geom [geom] FreeBSD RAID1 (gmirror) is much slower than Lin o kern/141740 geom [geom] gjournal(8): g_journal_destroy concurrent error o kern/140352 geom [geom] gjournal + glabel not working f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks o kern/135898 geom [geom] Severe filesystem corruption - large files or l o kern/134044 geom [geom] gmirror(8) overwrites fs with stale data from r o bin/132845 geom [geom] [patch] ggated(8) does not close files opened a o kern/131353 geom [geom] gjournal(8) kernel lock f kern/130941 gavin [panic] [cd9660] [geom] unexpected crash due to page f o kern/129674 geom [geom] gjournal root did not mount on boot o kern/129245 geom [geom] gcache is more suitable for suffix based provid o kern/123122 geom [geom] GEOM / gjournal kernel lock o kern/122738 geom [geom] gmirror list "losts consumers" after gmirror de f kern/122415 geom [geom] UFS labels are being constantly created and rem o kern/122067 geom [geom] [panic] Geom crashed during boot o kern/121559 geom [patch] [geom] geom label class allows to create inacc o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o kern/114532 geom [geom] GEOM_MIRROR shows up in kldstat even if compile o kern/113837 geom [geom] unable to access 1024 sector size storage o kern/113419 geom [geom] geom fox multipathing not failing back o kern/107707 geom [geom] [patch] [request] add new class geom_xbox360 to p kern/104389 jh [geom] [patch] sys/geom/geom_dump.c doesn't encode XML o kern/94632 geom [geom] Kernel output resets input while GELI asks for o kern/90582 geom [geom] [panic] Restore cause panic string (ffs_blkfree o kern/84556 geom [geom] [panic] GBDE-encrypted swap causes panic at shu o kern/78114 phk [geom] [patch] Solaris/x86 label structures for GEOM ( 40 problems total. Problem reports for tag 'geom_mbr': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/139847 jh [geom_mbr] [patch] load/unload causes system to hang 1 problem total. Problem reports for tag 'geom_part': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/141235 geom [geom_part] 8.0 no longer provides /dev entries for al f bin/140900 gavin [geom_part] sysinstall(8) problems: "unable to make de f kern/140836 gavin [geom_part]? - failed to upgrade to 8.0-RELEASE 3 problems total. Problem reports for tag 'gif': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143846 net [gif] bringing gif3 tunnel down causes gif0 tunnel to o kern/143208 net [ipsec] [gif] IPSec over gif interface not working p kern/138390 brueffer [gif] [patch] NULL pointer dereference in gif_input() o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o kern/121642 bz [ipsec] [gif]: When using IPSec, tcpdump shows non-dec o kern/121443 net [gif] [lor] icmp6_input/nd6_lookup f kern/108197 jinmei [panic] [gif] [ip6] if_delmulti reference counting pan o conf/97014 [gif] gifconfig_gif? in rc.conf does not recognize IPv o conf/96094 [gif] startup scripts do not configure gif interfaces o kern/95532 [gif] if_gif has artificial limitations 10 problems total. Problem reports for tag 'gjournal': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127420 fs [gjournal] [panic] Journal overflow on gmirrored gjour o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o kern/123962 geom [panic] [gjournal] gjournal (455Gb data, 8Gb journal), o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass 4 problems total. Problem reports for tag 'glxsb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec 1 problem total. Problem reports for tag 'gmirror': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147667 geom [gmirror] Booting with one component of a gmirror, the o kern/134922 geom [gmirror] [panic] kernel panic when use fdisk on disk f kern/132242 geom [gmirror] gmirror.ko fails to fully initialize f kern/128276 geom [gmirror] machine lock up when gmirror module is used o kern/121364 geom [gmirror] Removing all providers create a "zombie" mir f kern/113957 geom [gmirror] gmirror is intermittently reporting a degrad 6 problems total. Problem reports for tag 'gre': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138407 net [gre] gre(4) interface does not come up after reboot o kern/135948 pf [pf] [gre] pf not natting gre protocol o kern/125239 net [gre] kernel crash when using gre f kern/122065 bz [ipsec] [gre] gre over ipsec not working o kern/114714 thompsa [gre] [patch] gre(4) is not MPSAFE and does not suppor o conf/111557 [gre] link1 flag doesn't work as intended when specifi p kern/85320 gonzo [gre] [patch] possible depletion of kernel stack in ip s kern/47813 [gre] pseudo-device gre(4) doesn't appear to work with 8 problems total. Problem reports for tag 'handbook': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/148405 doc [handbook] Handbook instructions to populate diskless o docs/145817 doc [handbook] I believe the freebsd-update handbook page o docs/145631 doc [handbook] References to ttyd0 serial devices in handb o docs/144893 doc [handbook] handbook section 18.16.1 Disk Encryption wi o docs/144881 doc [patch][handbook] Reference to incorrect manual page o docs/144543 doc [handbook] IPFW doc change o docs/144515 doc [handbook] Expand handbook Table of contents o docs/143416 doc [handbook] IPFW handbook page issues o docs/141245 blackend [handbook][patch] Chapter 31.3 Wireless Networking: Up o docs/140918 doc [handbook] update 8.0 handbook about serial port /dev o docs/140082 bland [handbook] handbook/jails: russian translation is miss o docs/137762 doc [handbook] proposed: mention "make delete-old" in sec o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa o docs/136666 doc [handbook] Configure serial port for remote kernel deb o docs/132718 doc [handbook] Information about adding a new mirror is ou o docs/132113 doc [handbook] Update handbook jails creation o docs/121585 doc [handbook] Wrong multicast specification 17 problems total. Problem reports for tag 'headers': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/147471 mips [headers] [patch] whitespace discrepancy in sys/mips/i o kern/143033 [headers] [patch] _SWAP not listed in comment in sys/q o kern/139403 [headers] absense of AUE_NULL o kern/137443 [headers] Including /usr/include/rpc/xdr.h fails with o kern/136386 [headers] [request] Can the following bluez macros be o kern/136216 [headers] Missing prototype declaration for setfib() o o misc/134920 [headers] [patch] Large upgrades from source cause com o kern/133710 [headers] net/bpf.h and netgraph/ng_message.h should i o kern/127623 [headers] header definition for cftime is missing. o kern/117510 [headers] [patch] sys/cdefs.h lacks support for PCC o kern/113256 [headers] _limits.h for some CPU has wrong definitions o bin/106355 [headers] macros in stdio.h non-portable (e.g., C++ :: o stand/104743 standards [headers] [patch] Wrong values for _POSIX_ minimal lim o kern/103022 cperciva [headers] /usr/include/crypto/rijndael.h is wrong o stand/96016 standards [headers] clock_getres et al should be in o kern/93705 standards [headers] [patch] ENODATA and EGREGIOUS (for glibc com o stand/92362 standards [headers] [patch] Missing SIGPOLL in kernel headers o kern/84981 [headers] [patch] header protection for -interfac a kern/122565 bz [ipsec] [ip6] Possible memory overwrite for IPv6 IPsec s conf/121812 [ip6] [request] ipv6_gateway_enable incorrectly disabl f kern/119516 net [ip6] [panic] _mtx_lock_sleep: recursed on non-recursi o kern/118880 bz [ip6] IP_RECVDSTADDR & IP_SENDSRCADDR not implemented o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti f kern/108197 jinmei [panic] [gif] [ip6] if_delmulti reference counting pan o kern/100219 bz [ip6] IPV6_PKTOPTIONS and possible mbuf exhaustion. o kern/83778 [ip6] [patch] JPv6 cannot use Jumbo Frames o kern/77341 net [ip6] problems with IPV6 implementation 23 problems total. Problem reports for tag 'ipf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/123796 net [ipf] FreeBSD 6.1+VPN+ipnat+ipf: port mapping does not o kern/106438 net [ipf] ipfilter: keep state does not seem to allow repl o kern/101948 net [ipf] [panic] Kernel Panic Trap No 12 Page Fault - cau o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel s kern/91777 net [ipf] [patch] wrong behaviour with skip rule inside an o kern/87521 net [ipf] [panic] using ipfilter "auth" keyword leads to k o kern/86103 net [ipf] Illegal NAT Traversal in IPFilter o kern/79895 net [ipf] 5.4-RC2 breaks ipfilter NAT when using netgraph o kern/78090 net [ipf] ipf filtering on bridged packets doesn't work if o kern/77273 net [ipf] ipfilter breaks ipv6 statefull filtering on 5.3 s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o kern/70904 net [ipf] ipfilter ipnat problem with h323 proxy support o kern/34665 net [ipf] [hang] ipfilter rcmd proxy "hangs". o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c 14 problems total. Problem reports for tag 'ipfilter': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139565 net [ipfilter] ipfilter ioctl SIOCDELST broken o kern/139058 net [ipfilter] mbuf cluster leak on FreeBSD 7.2 o kern/138177 net [ipfilter] FreeBSD crashing repeatedly in ip_nat.c:257 3 problems total. Problem reports for tag 'ipfw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148928 ipfw [ipfw] Problem with loading of ipfw NAT rules during s o kern/148885 ipfw [ipfw] [patch] ipfw netgraph ignores net.inet.ip.fw.on o kern/148827 ipfw [ipfw] divert broken with in-kernel ipfw o kern/148689 ipfw [ipfw] antispoof wrongly triggers on link local IPv6 a o kern/148430 ipfw [ipfw] IPFW schedule delete broken. o kern/148157 ipfw [ipfw] IPFW in kernel nat BUG found in FreeBSD 8.1-PRE o conf/148137 ipfw [ipfw] call order of natd and ipfw startup scripts o kern/148091 ipfw [ipfw] ipfw ipv6 handling broken. o kern/147720 ipfw [ipfw] ipfw dynamic rules and fwd o kern/145733 ipfw [ipfw] [patch] ipfw flaws with ipv6 fragments o kern/145305 ipfw [ipfw] ipfw problems, panics, data corruption, ipv6 so o kern/145167 ipfw [ipfw] ipfw nat does not follow its documentation o kern/144869 ipfw [ipfw] [panic] Instant kernel panic when adding NAT ru f kern/144315 net [ipfw] [panic] freebsd 8-stable reboot after add ipfw o kern/144269 ipfw [ipfw] problem with ipfw tables o kern/144187 ipfw [ipfw] deadlock using multiple ipfw nat and multiple l o kern/143973 ipfw [ipfw] [panic] ipfw forward option causes kernel reboo o kern/143939 net [ipfw] [em] ipfw nat and em interface rxcsum problem o kern/143653 ipfw [ipfw] [patch] ipfw nat redirect_port "buf is too smal o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result o kern/143474 ipfw [ipfw] ipfw table contains the same address o kern/139581 ipfw [ipfw] "ipfw pipe" not limiting bandwidth o kern/139226 ipfw [ipfw] install_state: entry already present, done o kern/137346 ipfw [ipfw] ipfw nat redirect_proto is broken o kern/137232 ipfw [ipfw] parser troubles o kern/136695 ipfw [ipfw] [patch] fwd reached after skipto in dynamic rul o kern/135476 ipfw [ipfw] IPFW table breaks after adding a large number o o kern/132774 rwatson [ipfw] IPFW with uid/gid/jail rules may lead to lockup o kern/132553 ipfw [ipfw] ipfw doesn't understand ftp-data port o kern/131817 ipfw [ipfw] blocks layer2 packets that should not be blocke o kern/131601 ipfw [ipfw] [panic] 7-STABLE panic in nat_finalise (tcp=0) o kern/131558 ipfw [ipfw] Inconsistent "via" ipfw behavior o kern/130109 net [ipfw] Can not set fib for packets originated from loc o kern/129103 ipfw [ipfw] IPFW check state does not work =( o kern/129093 ipfw [ipfw] ipfw nat must not drop packets o kern/129036 ipfw [ipfw] 'ipfw fwd' does not change outgoing interface n o kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l o kern/127209 ipfw [ipfw] IPFW table become corrupted after many changes o bin/125370 ipfw [ipfw] [patch] increase a line buffer limit a kern/123358 [ipfw] ipfw add 1000 allow IP from any to any doesn't o kern/122963 ipfw [ipfw] tcpdump does not show packets redirected by 'ip o kern/122109 piso [ipfw] ipfw nat traceroute problem o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/118993 ipfw [ipfw] page fault - probably it's a locking problem o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from f kern/112708 linimon [ipfw] ipfw is seems to be broken to limit number of c o kern/112561 ipfw [ipfw] ipfw fwd does not work with some TCP packets f kern/107305 linimon [ipfw] ipfw fwd doesn't seem to work o kern/105330 ipfw [ipfw] [patch] ipfw (dummynet) does not allow to set q o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o kern/103328 ipfw [ipfw] [request] sugestions about ipfw table o kern/102471 ipfw [ipfw] [patch] add tos and dscp support o kern/98831 ipfw [ipfw] ipfw has UDP hickups o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to o kern/97504 ipfw [ipfw] IPFW Rules bug o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o kern/93300 ipfw [ipfw] ipfw pipe lost packets o kern/91847 ipfw [ipfw] ipfw with vlanX as the device o kern/87032 ipfw [ipfw] [patch] ipfw ioctl interface implementation o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o bin/83046 ipfw [ipfw] ipfw2 error: "setup" is allowed for icmp, but s o kern/82724 ipfw [ipfw] [patch] [request] Add setnexthop and defaultrou s kern/80642 ipfw [ipfw] [patch] ipfw small patch - new RULE OPTION o kern/74104 ipfw [ipfw] ipfw2/1 conflict not detected or reported, manp o kern/73910 ipfw [ipfw] serious bug on forwarding of packets after NAT o kern/72987 ipfw [ipfw] ipfw/dummynet pipe/queue 'queue [BYTES]KBytes ( o kern/71366 ipfw [ipfw] "ipfw fwd" sometimes rewrites destination mac a o kern/69963 ipfw [ipfw] install_state warning about already existing en o kern/62042 luigi [ipfw] ipfw can't no more reject icmp (icmptypes 8) o kern/60719 ipfw [ipfw] Headerless fragments generate cryptic error mes o kern/56031 luigi [ipfw] ipfw hangs on every invocation o kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw s kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o kern/51274 ipfw [ipfw] [patch] ipfw2 create dynamic rules with parent o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o kern/46159 ipfw [ipfw] [patch] [request] ipfw dynamic rules lifetime f a kern/26534 ipfw [ipfw] Add an option to ipfw to log gid/uid of who cau 79 problems total. Problem reports for tag 'ipl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132554 net [ipl] There is no ippool start script/ipfilter magic t o kern/121534 darrenr [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: 2 problems total. Problem reports for tag 'ipmi': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/148546 jhb [ipmi] Buffer overrun in the impi driver while process o kern/147855 [ipmi] [patch] kernel panic when IPMI enabled on some o kern/125389 [ipmi] [bce] IPMI problem with bce a kern/123904 [ipmi] ipmi(4) reports negative temperature values on f i386/105175 i386 [ipmi] ipmi acpi trouble on supermicro server a kern/103041 linimon [ipmi] unloading ipmi panics Dell PE 2850, ipmi doesn' o kern/79143 [ipmi] Broadcom NIC driver do not work for IPMI 7 problems total. Problem reports for tag 'ipnat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127233 darrenr [ipnat]: ipnat + ipfilter source routing not handling o kern/115239 net [ipnat] panic with 'kmem_map too small' using ipnat o kern/91908 darrenr [ipnat] loading ipl.ko to the kernel compiled with opt 3 problems total. Problem reports for tag 'ips': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/138384 brueffer [ips] [patch] NULL pointer dereference in ipsd_dump() f i386/121903 i386 [ips] [boot] can't boot on IBM x235 ServeRaid 6M [regr o kern/93750 [ips] Boot hangs on ips0: resetting adapter, this may o kern/92164 scottl [ips] [lor] SCSI target mode LOR o kern/57832 scottl [ips] softdep_deallocate_dependencies: dangling deps 5 problems total. Problem reports for tag 'ipsec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147894 net [ipsec] IPv6-in-IPv4 does not work inside an ESP-only o kern/146190 vanhu [ipsec][patch] NAT traversal does not work in transpor o kern/143593 net [ipsec] When using IPSec, tcpdump doesn't show outgoin o kern/143208 net [ipsec] [gif] IPSec over gif interface not working o kern/142937 bz [ipsec] [patch] IPSec doesn't work with link-local add o kern/142741 bz [libipsec] [ipsec] Wrong use of constant PF_UNSPEC in o kern/139387 net [ipsec] Wrong lenth of PF_KEY messages in promiscuous p kern/138439 vanhu [IPSec] Tunnel with IPv4 and IPv6 o kern/137309 bz [ipsec] sequence number in a SADB_X_SPDGET response is o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o kern/129517 net [ipsec] [panic] double fault / stack overflow s conf/128030 bz [ipsec] [request] Isn't it time to enable IPsec in GEN o kern/123463 net [ipsec] [panic] repeatable crash related to ipsec-tool f kern/123066 vanhu [ipsec] [panic] kernel trap with ipsec a kern/122565 bz [ipsec] [ip6] Possible memory overwrite for IPv6 IPsec o kern/122563 bz [ipsec] KEY_FREESAV() in FreeBSD-Release7.0 o kern/122562 bz [ipsec] IPsec AH tunneled packet mis handling? f kern/122065 bz [ipsec] [gre] gre over ipsec not working o kern/121642 bz [ipsec] [gif]: When using IPSec, tcpdump shows non-dec o kern/121373 bz [ipsec] New IPSEC & IPV6 & AH+ESP Broken o kern/112722 net [ipsec] [udp] IP v4 udp fragmented packet reject f kern/110959 bz [ipsec] Filtering incoming packets with enc0 does not o kern/103135 net [ipsec] ipsec with ipfw divert (not NAT) encodes a pac a kern/95307 vanhu [ipsec] Panic (race condition?) in ipsec_process_done o kern/94273 bz [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs 27 problems total. Problem reports for tag 'ipw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142766 net [ipw] [regression] ipw(4) with Intel PRO/wireless 2100 f kern/131087 net [ipw] [panic] ipw / iwi - no sent/received packets; iw o kern/126339 net [ipw] ipw driver drops the connection o kern/118534 [ipw] bitrate and power wifi can't change/set ipw Inte o kern/110140 net [ipw] ipw fails under load o kern/84861 thompsa [ipw] [patch] still can't get working ipw(4) with adho a kern/82926 thompsa [ipw] ipw(4) doesn't seem to do WPA, also leaves entri 7 problems total. Problem reports for tag 'ipx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83368 [ipx] [patch] incorrect handling of malloc failures wi 1 problem total. Problem reports for tag 'irq': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143837 [irq] [panic] nmi_calltrap in irq257: bce1 o kern/143521 [irq] [panic] nmi_calltrap in siopoll() o i386/141942 i386 [irq] interrupt storm (VIA 6421A atapci controller) o i386/141119 i386 [irq] Stop starting on computer with ISA network card o i386/140645 i386 [irq] High INTERRUPT rate on CPU 0 o kern/119696 [irq] [ral] ral device causes massive interrupt storm o usb/119513 usb [irq] inserting dlink dwl-g630 wireless card results i o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o kern/113138 [irq] interrupt storm on 6.x kernels on an MS-1029 (AM o kern/103532 [irq] Interrupt storm in 6.2-PRERELEASE [regression] o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o 11 problems total. Problem reports for tag 'isa': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/37441 davidxu [isa] [patch] ISA PNP parse problem 1 problem total. Problem reports for tag 'iscsi': S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/121676 scsi [iscsi] iscontrol do not connect iscsi-target on sparc 1 problem total. Problem reports for tag 'iso9660': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/95222 fs [iso9660] File sections on ISO9660 level 3 CDs ignored 1 problem total. Problem reports for tag 'isp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127927 scsi [isp] isp(4) target driver crashes kernel when set up 1 problem total. Problem reports for tag 'iwi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144755 net [iwi] [panic] iwi panic when issuing /etc/rc.d/netif r o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- o kern/131153 net [iwi] iwi doesn't see a wireless network o kern/127826 net [iwi] iwi0 driver has reduced performance and connecti o kern/124767 net [iwi] Wireless connection using iwi0 driver (Intel 220 o kern/123559 net [iwi] iwi periodically disassociates/associates [regre a kern/122597 thompsa [iwi] Intel iwi fails after 3 - 4 hours of use"firmwar o kern/116185 net [iwi] if_iwi driver leads system to reboot 8 problems total. Problem reports for tag 'iwn': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/132625 bschmidt [iwn] iwn drivers don't support setting country 1 problem total. Problem reports for tag 'ixgbe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144561 net [ixgbe] [patch] ixgbe driver errors p kern/144494 brueffer [ixgbe] ixgbe driver not built as module o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when p kern/127834 rstone [ixgbe] [patch] wrong error counting o kern/126688 net [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and 5 problems total. Problem reports for tag 'jail': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147162 jail [jail] [panic] Page Fault / Kernel panic when jail sta o kern/145444 secteam [jail] sysinstall and sade can access host's disks fro o kern/143503 secteam [jail] Security bug: jailed shell has access outside o o conf/143084 rc [jail] [patch]: fix rc.d/jail creating stray softlinks o conf/142973 rc [jail] [patch] Strange counter init value in jail rc s conf/142972 jail [jail] [patch] Support JAILv2 and vnet in rc.d/jail o kern/133265 jail [jail] is there a solution how to run nfs client in ja o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/119842 jail [smbfs] [jail] "Bad address" with smbfs inside a jail o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o bin/78763 pjd [patch] [jail] Added jail support to ps(1) o kern/48471 pjd [jail] [patch] [request] private IPC for every jail o bin/32828 jail [jail] w(1) incorrectly handles stale utmp slots with s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai 14 problems total. Problem reports for tag 'joy': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/64588 [joy] [request] Extend joystick driver architecture to 1 problem total. Problem reports for tag 'kbdmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/146793 [kbdmap] [patch] Danish kbdmap for MacBook 1 problem total. Problem reports for tag 'kbdmux': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c 1 problem total. Problem reports for tag 'kerberos': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/147175 [kerberos] [patch] libhx509.so containes references to o bin/45830 [kerberos] KDC has problems when listening to IPv6 and 2 problems total. Problem reports for tag 'kernel': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148801 [kernel] [patch] obsolete CAPABILITIES comment after s o kern/148781 [kernel] SIGPIPE after update to 8.1-RC2 o kern/147998 [kernel] [patch] NFS -mapall group permissions ignored o kern/146588 [kernel] [patch] sys/kern/kern_uuid.c has a le16dec be p kern/145865 [kernel] [panic] kernel memory leak with disabled devd o kern/145590 [kernel] [[patch] SIG_ATOMIC_{MIN,MAX} does not match o kern/145434 [kernel] [patch] Kernel messages about processes don't o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o kern/138117 [kernel] [panic] spin lock held too long o kern/133985 [kernel] kern.cp_time returns all zeros and stops incr o kern/132104 [kernel] [patch] kenv(1) buffer overflow o kern/131597 [kernel] c++ exceptions very slow on FreeBSD 7.1/amd64 o kern/130261 [kernel] [panic] kernel panic in/below sys_pipe.c:knli o kern/129164 [kernel] Wrong priority value for normal processes o amd64/124134 amd64 [kernel] The kernel doesn't follow the calling convent o kern/121073 [kernel] [patch] run chroot as an unprivileged user o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose o kern/119202 [kernel] [patch] Add generic support for disabling dev o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas p kern/112554 silby [kernel] [patch] unp_gc is overly agressive and remove o power/111296 ppc [kernel] [patch] [request] Support IMISS, DLMISS an DS o kern/110249 kmacy [kernel] [regression] [patch] setsockopt() error regre o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled o kern/97000 [kernel] [patch] bogus "All threads purged from ugen0. o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o kern/93887 [kernel] cpu_spinwait calls missing in subr_smp.c p kern/93331 [kernel] [patch] broken asm in kernel o kern/92023 [kernel] 'options DEVICE_POLLING' makes loadavg wrong o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/85657 [kernel] [patch] capture and expose per-CPU time accou o kern/85651 [kernel] [patch] debugging code to show entries in eve o usb/83504 usb [kernel] [patch] SpeedTouch USB stop working on recent o kern/81588 phk [kernel] [patch] Devices with SI_CHEAPCLONE flag don't s kern/79339 [kernel] [patch] Kernel time code sync with improvemen s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o kern/64196 [kernel] [patch] remove the arbitrary MAXSHELLCMDLEN s kern/61497 ups [kernel] [patch] __elfN(map_insert) bug o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o kern/53447 alfred [kernel] poll(2) semantics differ from susV3/POSIX s kern/50827 [kernel] [patch] [request] add sane record locking o kern/50526 [kernel] [patch] update to #! line termination o kern/43577 [kernel] [patch] [request] new kernel option SHUTDOWN_ o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > o kern/37555 [kernel] [patch] vnode flags appear to be changed in n o kern/29355 mux [kernel] [patch] add lchflags support 52 problems total. Problem reports for tag 'keyboard': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/145165 usb [keyboard] [usb8] ukbd_set_leds_callback: error=USB_ER f kern/144938 usb [keyboard] [boot] Boot Failure with Apple (MB869LL/A) o kern/142390 [keyboard] 30th console switch hangs computer complete o kern/139144 [keyboard] [patch] CapsLock LED should not depend on k o usb/135542 usb [keyboard] boot loader does not work with a usb keyboa o kern/135164 [keyboard] UK currency key inactive o kern/128172 gavin [keyboard] Remote Console (Keyboard) of AOC-SIM1U+ not o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc o usb/125088 usb [keyboard] Touchpad not detected on Adesso AKB-430UG U o usb/121708 usb [keyboard] nforce 650i mobo w/ usb keyboard infinite k o kern/118021 randi [keyboard] 7.0 Beta 2 sysinstall keyboard emits contro o kern/115253 [keyboard] Wireless keyboard not working at boot o kern/103498 [keyboard] momentary system "pauses" when switching VT o kern/102784 [keyboard] system crashes when using hardware function o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, o usb/99538 usb [keyboard] while using USB keyboard default params of o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar s usb/95348 usb [keyboard] USB keyboard unplug causes noise on screen f i386/93793 i386 [keyboard] Keyboard stops working after a shutdown -p o kern/80694 [keyboard] [patch] atkbd looped on Acer TravelMate 270 o kern/77091 [keyboard] Keyboard quits working under X with MAXCONS o usb/59698 usb [keyboard] [patch] Rework of ukbd HID to AT code trans o kern/41215 [keyboard] console revert back to kbd0 (AT) after KVM o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( 24 problems total. Problem reports for tag 'kld': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/146047 doc [kld] [patch] the kldstat(2) manual needs to be more p o docs/142938 wkoszek [kld] share/examples: fix warnings 2 problems total. Problem reports for tag 'kqueue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137246 [kqueue] kevents not generated for file writes through o i386/129550 i386 [pae] [kqueue] crash with PAE kernel o kern/125356 [kqueue] [panic] Repeated panic in kqueue_close from k o kern/116770 [kqueue] Unfortunate fifo/O_NONBLOCK/kevent interactio o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o kern/89775 [kqueue] [hang] kevent hangs on second wait for /dev/d o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i 8 problems total. Problem reports for tag 'kthread': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136159 [kthread] [patch] tsleep with PDROP in kthread_suspend 1 problem total. Problem reports for tag 'ktr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/108100 [ktr] sysctl debug.ktr.alq_enable=1 results in reboot 1 problem total. Problem reports for tag 'lagg': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145728 net [lagg] Stops working lagg between two servers. o kern/142518 net [em] [lagg] Problem on 8.0-STABLE with em and lagg o kern/139117 net [lagg] + wlan boot timing (EBUSY) o kern/138620 net [lagg] [patch] lagg port bpf-writes blocked o kern/137089 net [lagg] lagg falsely triggers IPv6 duplicate address de o kern/132715 jfv [lagg] [panic] Panic when creating vlan's on lagg inte f kern/125442 gonzo [carp] [lagg] CARP combined with LAGG causes system pa o kern/123279 thompsa [lagg] order of operations dependancy in bringing up l o kern/122954 net [lagg] IPv6 EUI64 incorrectly chosen for lagg devices f kern/122780 net [lagg] tcpdump on lagg interface during high pps wedge 10 problems total. Problem reports for tag 'libalias': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/115526 piso [libalias] libalias doesn't free memory o kern/105579 piso [libalias] dcc resume over natd in 6.x o kern/74450 [libalias] [patch] enable libalias/natd to create skip o kern/54891 [libalias] [patch] libalias(3)/natd(8) and exporting c o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o kern/41307 [libalias] [patch] logging of links lifecycle (add/del 6 problems total. Problem reports for tag 'libarchive': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/121556 kientzle [libarchive] ISO9660 decompression extension unsupport 1 problem total. Problem reports for tag 'libc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148581 [libc] fopen(3) fails with EMFILE if there are more th o kern/148179 [libc] Possible Memory Leak in getaddrinfo(3) o kern/147839 [libc] [patch] syscall(2) with wrong argument causing o kern/147756 [libc] open_socket_in: Protocol not supported - after o kern/147647 [libc] select(2) wakes after 24 hours even if timeout o kern/146889 [libc] [patch] Not having NET_RT_IFLIST #defined cause o kern/146845 net [libc] close(2) returns error 54 (connection reset by p kern/144307 jh [libc] [patch] ENOENT set unnecessarily under certain o kern/143037 [libc] strtod(3) doesn't always round to the nearest o kern/143029 [libc] poll(2) can return too large a number o kern/142772 net [libc] lla_lookup: new lle malloc failed o kern/142389 [libc] libc LDAP problem after 7.2-RELEASE-p1 [regress o kern/142173 [libc] localeconv(3): two-byte ascii thousands_sep p kern/141939 edwin [libc] [patch] strptime(3) confuses July with June wit p bin/141753 jh [libc] [patch] double-free in reallocf(3) s stand/141705 standards [libc] [request] libc lacks cexp (and friends) o kern/141682 [libc] [patch] Faster version of strncpy(3) o threa/141198 threads [libc] src/lib/libc/stdio does not properly initialize o kern/140690 [libc] [patch] swab(3) with negative len should do not o kern/139734 [libc] res_send calls getsockname(2) instead of getpee o kern/139080 [libc] [patch] closelog() can close negative file desc o kern/139019 [libc] [patch] Add xdr_sizeof() to libc. o kern/137819 [libc] [patch] fpurge(3) violates stdio invariant o kern/137307 [libc] [patch] Enhance strptime(3) to support %U and % o kern/136669 [libc] [patch] setmode(3) should always set errno on e o kern/134391 [libc] dladdr(3) does effectively not work on main pro o kern/133776 [libc] [patch] snprintf(3) and vsnprintf(3) do not pro o kern/133246 [libc] dlclose(3) gives segfault when called in the fi o kern/131623 ume [libc] gethostbyname(2): output of gethostbyname_r doe f kern/131602 gavin [libc] sendfile(2) sends corrupted data o kern/130749 [libc] [patch] nscache.c/nscachedcli.c - return error a bin/130504 dds [libc] Serious bug in regular expression library (rege o kern/128933 [libc] realpath(3) does not follow SUS specification f o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion o kern/126289 [libc] select(2) apparently consumes cpu when it shoul o kern/125382 [libc] open(2): ENOSPC may be misleading, consider EIO p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under o kern/124160 net [libc] connect(2) function loops indefinitely o kern/123095 [libc] sendfile(2): Suspected sendfile data corruption f kern/122061 [libc] dlsym(3) is very slow when a symbol cannot be f o kern/121656 [libc] [patch] telldir(3) issues o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT p bin/116074 jilles [libc] fnmatch() does not handle FNM_PERIOD correctly o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware p kern/115196 brooks [libc] [patch] [request] Implement getgroupmembership( s kern/114578 [libc] wide character printing using swprintf(dst, n, o bin/113825 [patch] [libc] [ggated] Fix -STABLE build with -fno-st o bin/113398 [libc] [patch] initgroups fails rather than truncates o bin/109478 [libc] [patch] adopt reentrant syslog functions from O o bin/108118 [libc] files should not cache their EOF status p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o kern/103312 [libc] dlsym(NULL,) doesn't work properly o bin/102515 [libc] fsck_ufs crashes if no console at all o kern/100709 net [libc] getaddrinfo(3) should return TTL info o bin/99800 [libc] [patch] Add support for profiling multiple exec a bin/96840 [libc] [patch] getgrent() does not return large groups o kern/95239 [libc] [patch] nftw(3) returns EINVAL for large values o bin/95002 [libc] hash db source code has a bug which prevents us o stand/94729 standards [libc] fcntl() throws undocumented ENOTTY o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind o kern/93197 [libc] strptime(3) succeeds on formats it should fail o kern/93093 [libc] xdr_string might call strlen(3) on NULL o kern/92880 net [libc] [patch] almost rewritten inet_network(3) functi p kern/90580 jilles [libc] wordexp(3) fails to check for EINTR o kern/87729 phk [libc] [patch] most calls to malloc(3) generate warnin o kern/82980 [libc] realpath(3) treats regular files as directories s kern/79048 [libc] realloc() copies data even when the size of all o kern/76485 [libc] sched_getparam(2) returns weird priority number o kern/76398 [libc] stdio can lose data in the presence of signals o kern/75855 adrian [libc] getpwent(3) functions on 5.3 with large passwor s bin/75767 [libc] [request] "fdclose" function in libc o kern/70511 [libc] When fread(3)ing with buffering turned off, man o kern/69826 [libc] 16th group has no effect when accesing file on o kern/69825 [libc] 1st group supplied to setgroups() does not take o kern/68690 [libc] write(2) returns wrong value when EFAULT s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( a kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI p kern/58687 deischen [libc] [patch] gethostbyname(3) leaks kqueue file desc s kern/56720 [libc] [request] UNICODE support in Resolver o kern/46866 [libc] NIS-based getpwent(3) falsely returns NULL o kern/42956 [libc] dlclose gives "invalid shared object handle" wh o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42422 [libc] [patch] dbm_delete returns -1 instead of 1 when o kern/36902 [libc] [patch] proposed new format code %N for strftim o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/31906 [libc] No method available to unwind atexit(3) stack w o kern/31647 net [libc] socket calls can return undocumented EINVAL o kern/30186 net [libc] getaddrinfo(3) does not handle incorrect servna o kern/27835 standards [libc] execve() doesn't conform to execve(2) spec in s o bin/26486 remko [libc] [patch] setnetgrent hangs when netgroup contain o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d 91 problems total. Problem reports for tag 'libc_r': S Tracker Resp. Description -------------------------------------------------------------------------------- s threa/32295 threads [libc_r] [patch] pthread(3) dont dequeue signals 1 problem total. Problem reports for tag 'libcrypt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/120075 [libcrypt] Incompatible EOS of key in crypt(3) o kern/75934 [libcrypt] [patch] missing blowfish functionality in p 2 problems total. Problem reports for tag 'libcrypto': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/117709 simon [libcrypto] [patch] Base openssl does not define OPENS 1 problem total. Problem reports for tag 'libdialog': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148609 [libdialog] [patch] printing to a checklist window on o gnu/48638 [libdialog] [patch] some bug fixes in libdialog 2 problems total. Problem reports for tag 'libdisk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148881 [libdisk] [patch] libdisk emits errors w/ disks that c o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o kern/42217 [libdisk] libdisk segfaults with 1024 bytes/sector dis o kern/36916 randi [libdisk] [patch] DOS active partition flag lost in li o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk 5 problems total. Problem reports for tag 'libedit': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145528 [libedit] ftp(1) crashes in libedit when cancelling a o kern/117348 [libedit] Loading history file sometimes fails in libe 2 problems total. Problem reports for tag 'libelf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134502 [libelf] why 32 bit app not use /libexec/ld-elf32.so.1 1 problem total. Problem reports for tag 'libexec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134225 [libexec] [patch] Reduce disk write load from save-ent o kern/110017 [libexec] [patch] serial port console output garbled o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo o kern/92412 [libexec] [patch] rpc.rstatd reports bogus packets/per o kern/45729 [libexec] [patch] make rbootd transfer the default fil 5 problems total. Problem reports for tag 'libfetch': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148087 [libfetch] [patch] Fetch doesn't supply proxy auth cre o kern/140835 [libfetch] fetchParseURL(3) returns success with inval o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped o bin/125350 des [libfetch] [patch] src/lib/libfetch add support for de o kern/116005 des [libfetch] libfetch accepts invalid URLs o kern/98873 des [libfetch] allow fetch(3) to force using of ipv4 or ip 6 problems total. Problem reports for tag 'libgcc': S Tracker Resp. Description -------------------------------------------------------------------------------- o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi 1 problem total. Problem reports for tag 'libgssapi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147454 [libgssapi] libgssapi (heimdal) broken in head/, stabl o kern/134010 [libgssapi][patch] Buffer overflow and use-after-free p kern/113266 harti [libgssapi] [patch] Missing handling of mech_type in g 3 problems total. Problem reports for tag 'libiconv': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134249 [libiconv] [patch] ignore case for character set names s kern/76520 [libiconv] [patch] Add new kernel-side libiconv conver 2 problems total. Problem reports for tag 'libipsec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142741 bz [libipsec] [ipsec] Wrong use of constant PF_UNSPEC in 1 problem total. Problem reports for tag 'libkrb': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/29062 markm [libkrb] krb4 and krb5 multiply defined version symbol 1 problem total. Problem reports for tag 'libkvm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/120872 [libkvm] [patch] fstat exit on signal 11 o kern/95405 [libkvm] libkvm does not support /dev/fwmem0.0 in Free o kern/83364 [patch] [libkvm] improper handling of malloc failures, o kern/42386 [libkvm] [patch] cleaning code from warnings in libkvm 4 problems total. Problem reports for tag 'libm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147599 [libm] [patch] Import netbsd complex functions into ou o bin/144306 [libm] [patch] Nasty bug in jn(3) o stand/143358 standards [libm] nearbyint(3) raises spurious inexact exception o kern/133583 [libm] fma(3) does not respect rounding mode using ext o stand/83845 standards [libm] [patch] add log2() and log2f() support for libm 5 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 'libmd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112775 [libmd] [patch] libmd(3) bug for some zero-length file 1 problem total. Problem reports for tag 'libpam': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/141016 [libpam] PAM checks in sshd too few? o kern/137586 des [libpam] Need to build pam_ssh module even it openssh o bin/115946 des [libpam] [patch] not thread-safe o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc s kern/20333 des [libpam] ftp login fails on unix password when s/key a 11 problems total. Problem reports for tag 'libpcap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146592 [libpcap] [patch] libpcap 1.0.0 doesn't have error mes o kern/144325 [libpcap] tcpdump compiles complex expression to incor o kern/140349 [libpcap] [patch] libpcap's parser doesn't recognize n 3 problems total. Problem reports for tag 'librpcsvc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa 1 problem total. Problem reports for tag 'libstand': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137678 [libstand] [patch] libstand's bootp/dhcp code always u o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo o kern/83424 [libstand] [patch] improper handling of malloc failure 3 problems 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 'libteken': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141928 ed [libteken] either xterm -C or ioctl TIOCCONS is broken o kern/141632 ed [libteken] vidcontrol -T cons25 doesn't work with 'mod 2 problems total. Problem reports for tag 'libusb': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/140325 thompsa [libusb] [usb8] Missing/incorrect initialisation and m o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker 2 problems total. Problem reports for tag 'libusbhid': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/101775 usb [usb67] [usb8] [libusbhid] [patch] possible error in r o kern/83451 [libusbhid] [patch] improper handling of malloc failur 2 problems total. Problem reports for tag 'libutil': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/84797 [libutil] [patch] State engine in the libutils propert s kern/38347 [libutil] [patch] [request] new library function abs2r o kern/35774 [libutil] logwtmp: Suboptimal auditing possibilities f 3 problems total. Problem reports for tag 'libvgl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83426 [libvgl] [patch] improper handling of malloc failures 1 problem total. Problem reports for tag 'libwrap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all 1 problem total. Problem reports for tag 'linprocfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148646 des [linprocfs] [patch] Implementation of the "environ" fi p kern/144584 [linprocfs][patch] bogus values in linprocfs o kern/56451 des [linprocfs] [patch] /compat/linux/proc/cpuinfo gives w 3 problems total. Problem reports for tag 'linux': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148076 dchagin [linux] linux_sys_futex: unknown op 265 o kern/146726 emulation [linux] Linux InstallJammer fails to execute on 8-STAB o kern/146237 emulation [linux] Linux binaries not reading directories mounted o kern/145024 emulation [linux] [panic] kernel crash by linux.ko module with n f kern/144763 emulation [linux] [panic] Kernel panic when start linux binaries o kern/144194 dchagin [linux] [patch] linuxulator: 2 exec bug fixes o kern/141439 dchagin [linux] [patch] linux_exit_group kills group leader o kern/140156 emulation [linux] cdparanoia fails to read drive data o kern/138880 emulation [linux] munmap segfaults after linux_mmap2 stresstest o ports/136229 emulation [linux] emulators/linux_base-f10: certain linux apps l o kern/133144 emulation [linux] linuxulator 2.6 crashes with nvidias libGL.so. o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o kern/126232 emulation [linux] Linux ioctl TCGETS (0x5401) always fails p bin/120055 attilio [linux] kdump(1) segfaults on freebsd6_mmap syscall f kern/99068 [linux] [patch] Linux emulator crashed by java, when c o kern/86619 [linux] linux emulator interacts oddly with cp o kern/73777 emulation [linux] [patch] linux emulation: root dir special hand a kern/72920 emulation [linux]: path "prefixing" is not done on unix domain s o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o kern/29698 emulation [linux] [patch] linux ipcs doesn'work o kern/21463 emulation [linux] Linux compatability mode should not allow setu 21 problems total. Problem reports for tag 'lo': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138678 net [lo] FreeBSD does not assign linklocal address to loop o kern/112612 andre [lo] Traffic via additional lo(4) interface shows up o 2 problems total. Problem reports for tag 'loader': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/148296 fs [zfs] [loader] [patch] Very slow probe in /usr/src/sys o i386/147120 i386 [loader] [patch] consistently use 'x86' keyword in loa f i386/138211 gavin [loader] Boot fails on Intel X5550 o i386/127981 i386 [loader] Stack underflow preventing boot [regression] f kern/120127 [loader] Loading of gzip'd mfsroot from pxeboot(8) cau o kern/110995 kmacy [loader] [patch] loader wastes space worth symtab size o kern/96927 brucec [loader] Loader(8) cause kernel death on "boot -a" [re o i386/85652 i386 [loader] [patch] deal with out-of-memory errors during o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX o i386/62003 remko [loader] [patch] make /boot/loader "reboot" code same 10 problems total. Problem reports for tag 'locale': S Tracker Resp. Description -------------------------------------------------------------------------------- a conf/109367 versus [locale] UTF8 encoded locales and problem collating ac p conf/105100 [patch] [locale] no support for lv (latvian) locale a conf/91106 versus [locale] date definitions in pl_PL locale are wrong 3 problems total. Problem reports for tag 'lpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/117973 [panic] [lpt] 7.0-BETA2: repeatable panic while printi o kern/108361 [lpt] lpt0: device busy with HP 710c parallel printer o kern/73744 [lpt] printing via cups causes "Interrupt storm" warni o kern/27403 [lpt] lpt driver doesn't handle flags anymore o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting 5 problems total. Problem reports for tag 'mac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145040 [mac] PANIC_REBOOT_WAIT_TIME not honored o kern/137677 [mac] security.mac.bsdextended.firstmatch_enabled defa 2 problems total. Problem reports for tag 'make.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/114082 [make.conf] default CFLAGS have a blank at the end 1 problem total. Problem reports for tag 'makefile': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/115581 amd64 [Makefile] [patch] -mfancy-math-387 has no effect 1 problem total. Problem reports for tag 'mbuf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137145 net [mbuf] [patch] Reference count computing isn't correct a kern/134355 [mbuf] comments for m_getm2 inconsistent with behaviou o kern/122743 net [mbuf] [panic] vm_page_unwire: invalid wire count: 0 3 problems total. Problem reports for tag 'mca': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146590 [mca] [panic] MCA panics 7.3 1 problem total. Problem reports for tag 'md': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133170 [md] [panic] panic when detaching swap-backed md(4) di p kern/122288 jh [md] [patch] mdconfig(8) returning negative unit numbe o conf/118113 [md] mdconfig init script requires image to be on root 3 problems total. Problem reports for tag 'mfi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145960 [mfi] [patch] make MFI_STAT_INVALID_STATUS error more o kern/140416 [mfi] mfi driver stuck in timeout o kern/124989 [mfi] mfi driver error - unexpected sense o kern/115133 scottl [mpt] [mfi] [patch] Patches to make mfi support LSI SA o kern/98091 scottl [mfi] [patch] Makefile style of mfi kernel module brok 5 problems total. Problem reports for tag 'mfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/52445 [mfs] panic when mounting floppy on MFS filesystem 1 problem total. Problem reports for tag 'minidump': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/139614 amd64 [minidump] minidumps fail when many interrupts fire o kern/118713 fs [minidump] [patch] Display media size required for a k 2 problems total. Problem reports for tag 'mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/113110 i386 [mk] [patch] i686 is not an alias of pentiumpro on GCC 1 problem total. Problem reports for tag 'mly': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143564 [mly] camcontrol(8) fails to show transfer speed in ml s kern/57398 scsi [mly] Current fails to install on mly(4) based RAID di o i386/55603 [mly] unable to reboot when system runs from Mylex A35 3 problems total. Problem reports for tag 'mmc': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/141756 gavin [mmc] MMC card attached to blocks keybo 1 problem total. Problem reports for tag 'mmcsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134745 [mmcsd] [panic] mmcsd.ko produce kernel panic 1 problem total. Problem reports for tag 'modules': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/135485 [modules] [patch] During a shutdown, kernel modules sh o amd64/131314 amd64 [modules] [panic] large modules fail to load on amd64 o kern/122782 amd64 [modules] accf_http.ko kernel module is not loadable a amd64/117186 amd64 [modules] kldload Unsupported file type on STABLE amd6 o kern/114291 kmacy [RFE] [modules] [patch] add dynamic module references o kern/96346 [modules] [patch] disable build of modules that are al o kern/88659 ipfw [modules] ipfw and ip6fw do not work properly as modul s kern/83738 jkoshy [modules] kldload hwpmc.ko fails with 'link_elf: symbo a kern/74809 [modules] [panic] smbfs panic if multiply mounted o kern/70401 darrenr [modules] Could not load ipl.ko when no INET6 in the k o kern/68076 [modules] Page fault when the sequence "kldunload ucom o misc/60503 [modules] small error in modules installation f kern/48976 gavin [modules] nwfs.ko oddity 13 problems total. Problem reports for tag 'mount': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/39329 [mount] '..' at mountpoint is subject to the permissio 1 problem total. Problem reports for tag 'mouse': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/97286 usb [mouse] [request] MS Wireless Intellimouse Explorer 2. o kern/89258 [mouse] synaptic touchpad support "worse" with hw.psm. o kern/89166 [mouse] jumpy mouse movement o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o usb/86298 usb [mouse] Known good USB mouse won't work with correct s 5 problems total. Problem reports for tag 'mpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147704 scsi [mpt] sys/dev/mpt: new chip revision, partially unsupp o kern/145768 scsi [mpt] can't perform I/O on SAS based SAN disk in freeb o kern/142351 scsi [mpt] LSILogic driver performance problems o kern/134488 scsi [mpt] MPT SCSI driver probes max. 8 LUNs per device o kern/133919 [mpt] [panic] 7.1 panics after completing rebuild of m o kern/132206 scsi [mpt] system panics on boot when mirroring and 2nd dri o kern/130621 scsi [mpt] tranfer rate is inscrutable slow when use lsi213 o kern/130330 scottl [mpt] [panic] Panic and reboot machine MPT driver when f kern/128514 pjd [zfs] [mpt] problems with ZFS and LSILogic SAS/SATA Ad f kern/128282 gavin [mpt] system failure on removing two drives o kern/127109 [mpt]: FreeBSD fails to boot except in safe mode o kern/122321 [mpt] Hitachi SCSI drive can't be written to o kern/120247 scsi [mpt] FreeBSD 6.3 and LSI Logic 1030 = only 3.300MB/s o kern/117688 [mpt] mpt disk timeout and hang o kern/115606 [mpt] [panic] Panic while using mpt controller o kern/115133 scottl [mpt] [mfi] [patch] Patches to make mfi support LSI SA o kern/96040 [mpt] LSI1030 mpt0: bullet missed in timeout 17 problems total. Problem reports for tag 'msdosfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141897 fs [msdosfs] [panic] Kernel panic. msdofs: file name leng o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US o kern/140134 fs [msdosfs] write and fsck destroy filesystem integrity o kern/133174 fs [msdosfs] [patch] msdosfs must support utf-encoded int o kern/132237 fs [msdosfs] msdosfs has problems to read MSDOS Floppy o kern/130920 fs [msdosfs] cp(1) takes 100% CPU time while copying file o kern/123939 fs [msdosfs] corrupts new files f usb/123508 vwe [umass] [msdosfs] damaged files (mp3,txt , etc) on fla o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f p kern/116608 fs [msdosfs] [patch] msdosfs fails to check mount options o kern/111843 fs [msdosfs] Long Names of files are incorrectly created o kern/109024 fs [msdosfs] mount_msdosfs: msdosfs_iconv: Operation not o kern/109010 fs [msdosfs] can't mv directory within fat32 file system o kern/106632 trhodes [msdosfs] gimp destroys files on fat32 upon opening o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync o kern/93634 vwe [msdosfs] False access to renamed files/directories (c f kern/87368 bde [msdosfs] fat32 is very slow o kern/86587 fs [msdosfs] rm -r /PATH fails with lots of small files o kern/79441 trhodes [msdosfs] problem writing on mounted msdos-fs at /mnt p kern/70096 trhodes [msdosfs] [patch] full msdos file system causes corrup o kern/67326 rodrigc [msdosfs] crash after attempt to mount write protected o kern/62762 bde [msdosfs] Fsync for msdos fs does not sync entries o kern/45558 trhodes [msdosfs] mdconfig and msdosfs make fs writes hang a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c 26 problems total. Problem reports for tag 'msk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147824 net [msk]: watchdog timeouts & Tx descriptor error o kern/139093 yongari [msk] msk FIFO rx overrun o kern/134401 net [msk] [panic] Kernel Fatal trap 12: page fault while i o kern/133204 net [msk] msk driver timeouts f kern/119613 yongari [msk] mskc0: Uncorrectable PCI Express error o kern/116853 yongari [msk] msk watchdog timeout f kern/114631 yongari [msk] "Tx descriptor error" with Marvell Yukon 7 problems total. Problem reports for tag 'mutex': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/135692 [mutex] [witness] blockable sleep lock - kernel panic f kern/131573 [mutex] lock_init() assumes zero-filled struct 2 problems total. Problem reports for tag 'mwl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146427 net [mwl] Additional virtual access points don't work on m o kern/146426 net [mwl] 802.11n rates not possible on mwl o kern/146425 net [mwl] mwl dropping all packets during and after high u 3 problems total. Problem reports for tag 'mxge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143046 gallatin [mxge] [panic] panics since mxge(4) update f amd64/130483 amd64 [mxge] MSI must be disabled when Myricom 10Gbps Card i 2 problems total. Problem reports for tag 'nanobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/145962 [nanobsd] [patch] improved cfg save script o misc/145961 [patch] [nanobsd] improved flash update script o misc/145395 [nanobsd] [patch] Extremely slow nanobsd disk image cr o misc/144553 [nanobsd] NanoBSD's updatep* scripts fail with boot0cf o misc/140436 [nanobsd] pkg-add process fails when there is no /usr/ o misc/140173 [nanobsd] [patch] Small nanobsd pkg install change o kern/138341 [nanobsd] [patch] 8.0-BETA3: nanobsd build broken due o misc/136889 embedded [nanobsd] [path] nanobsd error reporting and other ref p misc/135588 embedded [nanobsd] simple patch for adding amd64 support o misc/123240 [nanobsd] [patch] rerunning nanobsd.inc.sh fails becau o conf/96746 [nanobsd] [patch] Configuration changes and README for 11 problems total. Problem reports for tag 'nat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144616 net [nat] [panic] ip_nat panic FreeBSD 7.2 o kern/132354 net [nat] Getting some packages to ipnat(8) causes crash o kern/121534 darrenr [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: 3 problems total. Problem reports for tag 'ncurses': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/119903 [ncurses] Fast increase in loading of the processor. A o conf/71254 [ncurses] xterm vs. cons* termtypes or sc(4) 2 problems total. Problem reports for tag 'ndis': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/142197 rpaulo [ndis] [patch] ndis is missing media status reporting o kern/132889 net [ndis] [panic] NDIS kernel crash on load BCM4321 AGN d o kern/132672 net [ndis] [panic] ndis with rt2860.sys causes kernel pani o kern/131781 net [ndis] ndis keeps dropping the link f kern/130820 net [ndis] wpa_supplicant(8) returns 'no space on device' o kern/130525 net [ndis] [panic] 64 bit ar5008 ndisgen-erated driver cau p kern/125181 thompsa [ndis] [patch] with wep enters kdb.enter.unknown, pani o kern/124225 net [ndis] [patch] ndis network driver sometimes loses net o kern/118493 weongyo [ndis] [patch] a trivial fix when ndis sets `ndis_reso p kern/118439 thompsa [ndis] [patch] if_ndis - fix a panic when ndis_attach( p kern/118370 thompsa [ndis] [patch] if_ndis - fix a scanning problem of Mar o kern/116747 net [ndis] FreeBSD 7.0-CURRENT crash with Dell TrueMobile o kern/91859 net [ndis] if_ndis does not work with Asus WL-138 f kern/89738 [ndis] [hang] Can't make WL8000PCM wifi card work with s kern/86920 net [ndis] ifconfig: SIOCS80211: Invalid argument [regress 15 problems total. Problem reports for tag 'net': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/110720 kmacy [net] [patch] [request] support for interface descript o kern/106722 glebius [net] [patch] ifconfig may not connect an interface to o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad o kern/83622 brooks [net] [patch] add network interfaces labeling support s kern/81147 net [net] [patch] em0 reinitialization while adding aliase s kern/12071 fanf [net] [patch] new function: large scale IP aliasing 6 problems total. Problem reports for tag 'netatalk': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/4184 rwatson [netatalk] [patch] minor nits in sys/netatalk 1 problem total. Problem reports for tag 'netgraph': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140682 net [netgraph] [panic] random panic in netgraph o kern/137881 net [netgraph] [panic] ng_pppoe fatal trap 12 o kern/137775 net [netgraph] [patch] Add XMIT_FAILOVER to ng_one2many o kern/136911 net [netgraph] [panic] system panic on kldload ng_bpf.ko t o kern/122290 net [netgraph] [panic] Netgraph related "kmem_map too smal o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o kern/115019 net [netgraph] ng_ether upper hook packet flow stops on ad o kern/106444 net [netgraph] [panic] Kernel Panic on Binding to an ip to o kern/104751 net [netgraph] kernel panic, when getting info about my tr o kern/102540 net [netgraph] [patch] supporting vlan(4) by ng_fec(4) o conf/102502 net [netgraph] [patch] ifconfig name does't rename netgrap o kern/97306 net [netgraph] NG_L2TP locks after connection with failed o kern/87421 net [netgraph] [panic]: ng_ether + ng_eiface + if_bridge o kern/82881 net [netgraph] [panic] ng_fec(4) causes kernel panic after o kern/66225 net [netgraph] [patch] extend ng_eiface(4) control message o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE 17 problems total. Problem reports for tag 'netinet': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147352 net [netinet] [patch] replace printf() with log() for "Lim o kern/146250 net [netinet] [patch] Races on interface alias removal o kern/145737 bz [netinet] [patch] Wrong UDP checksum not ignored as ex p kern/145736 bz [netinet] [patch] Access to freed mbuf in ip_forward w o kern/140597 net [netinet] [patch] implement Lost Retransmission Detect o kern/133786 net [netinet] [patch] ip_input might cause kernel panic o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o kern/132832 net [netinet] [patch] tcp_output() might generate invalid o kern/131536 net [netinet] [patch] kernel does allow manipulation of su o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard o kern/121706 net [netinet] [patch] "rtfree: 0xc4383870 has 1 refs" emit o kern/95277 net [netinet] [patch] IP Encapsulation mask_match() return o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat 14 problems total. Problem reports for tag 'netisr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/100519 net [netisr] suggestion to fix suboptimal network polling 1 problem total. Problem reports for tag 'network.subr': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/147681 [network.subr][patch] Add inet6 keyword if it wasn't s 1 problem total. Problem reports for tag 'nfe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147684 net [nfe] nVidia MCP55 driver blocks IPMI LAN on load f kern/127910 vwe [nfe] FBSD-7.0 amd64 nfe ethernet not completely worki o kern/123429 net [nfe] [hang] "ifconfig nfe up" causes a hard system lo o amd64/115126 yongari [nfe] nfe0: watchdog timeout (missed Tx interrupts) -- 4 problems total. Problem reports for tag 'nfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148204 fs [nfs] UDP NFS causes overload o kern/147292 fs [nfs] [patch] readahead missing in nfs client options o kern/146502 fs [nfs] FreeBSD 8 NFS Client Connection to Server o kern/146375 fs [nfs] [patch] Typos in macro variables names in sys/fs o kern/145189 fs [nfs] nfsd performs abysmally under load o kern/144458 fs [nfs] [patch] nfsd fails as a kld o kern/143825 fs [nfs] [panic] Kernel panic on NFS client o kern/143212 fs [nfs] NFSv4 client strange work ... o sparc/142102 sparc64 [nfs] [panic] FreeBSD 8.0 kernel panics on sparc64 whe o kern/141463 fs [nfs] [panic] Frequent kernel panics after upgrade fro o kern/141086 fs [nfs] [panic] panic("nfs: bioread, not dir") on FreeBS o bin/139651 fs [nfs] mount(8): read-only remount of NFS volume does n o kern/139363 fs [nfs] diskless root nfs mount from non FreeBSD server o kern/137327 dfr [nfs] nfs nlm memery leak o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic o kern/136470 fs [nfs] Cannot mount / in read-only, over NFS o kern/135237 [nfs] sendfile(2) and SF_NODISKIO blocks on NFS files f kern/132934 jh [nfs] Cancel of a NFS-lock fails repeatedly o kern/131360 fs [nfs] poor scaling behavior of the NFS server under lo o kern/131342 fs [nfs] mounting/unmounting of disks causes NFS to fail o kern/130628 net [nfs] NFS / rpc.lockd deadlock on 7.1-R o kern/129760 fs [nfs] after 'umount -f' of a stale NFS share FreeBSD l f kern/129719 net [nfs] [panic] Panic during shutdown, tcp_ctloutput: in o kern/129132 [nfs] 7.1-Beta2 nfsd cannot lock o kern/128448 net [nfs] 6.4-RC1 Boot Fails if NFS Hostname cannot be res s kern/125149 pjd [nfs] [panic] changing into .zfs dir from nfs client c o kern/124280 [nfs] [panic] FreeBSD 7/amd64 STABLE crash o kern/123755 dfr [nfs] fstat(1) fails to return ESTALE with rename()d f o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o kern/119791 net [nfs] UDP NFS mount of aliased IP addresses from a Sol o kern/119617 net [nfs] nfs error on wpa network when reseting/shutdown o bin/118318 mohans [nfs] NFS server hangs under special circumstances o kern/118126 kmacy [nfs] Poor NFS server write performance o kern/114506 [nfs] nfs_readdirrpc doesn't use copyout to write out o kern/114451 [nfs] [patch] prevent NFS server possible crash o kern/114111 [nfs] System crashes while writing on NFS-mounted shar o kern/112528 net [nfs] NFS over TCP under load hangs with "impossible p o kern/111848 [nfs] removing a file from a diskless nfs mounted root o kern/111162 [nfs] nfs_getpages does not restart interrupted system o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/105241 [nfs] problem with Linux NFS server up/down combined w o kern/97329 [nfs] [patch] code simplification o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos s kern/86319 [nfs] [request] support a "noac" NFS mount flag to tur o kern/85894 [nfs] [panic] nfs_timer / nfs_socket.c:1146 panic o kern/82805 [nfs] [panic] sched_switch ched_4bsd.c:865 / nfs_inact o kern/81770 [nfs] Always "NFS append race" at every NFS mount with o kern/79336 [nfs] NFS client doesn't detect file updates on Novell s kern/78884 [nfs] [patch] nfs client cache negative lookups o kern/78673 [nfs] [patch] nfs client open resets attrstamp ever if o kern/77902 [nfs] NFS client should use VA_UTIMES_NULL to determin o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/71391 [nfs] [panic] md via NFS file + mount -t ntfs: panic: o kern/70708 [nfs] gcore/procfs not finding /proc/pid/file on repea s kern/67545 [nfs] NFS Diskless Mount Option Suggestion a kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea a kern/57696 [nfs] NFS client readdir terminates prematurely if ren o kern/54383 net [nfs] [patch] NFS root configurations without dynamic o kern/48894 [nfs] Suggested improvements to the NFS read-ahead heu o kern/44580 [nfs] NFS updates file access time when file is modifi o kern/41216 [nfs] Get "NFS append race" error o kern/35669 [nfs] NFSROOT breaks without a gateway o kern/33203 [nfs] "got bad cookie" errors on NFS client o kern/31380 [nfs] NFS rootfs mount failure message too cryptic o kern/27232 [nfs] On NFSv3 mounted filesystems, stat returns st_bl f kern/26142 vwe [nfs] Unlink fails on NFS mounted filesystem o conf/22308 [nfs] mounting NFS during boot blocks if host map come o kern/22291 [nfs] getcwd(3) fails on recently-modified NFS-mounted s conf/17540 [nfs] NIS host lookups cause NFS mounts to wedge at bo s kern/17108 [nfs] SecureRPC not supported in mount_nfs command 72 problems total. Problem reports for tag 'ng_l2tp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146082 net [ng_l2tp] a false invaliant check was performed in ng_ 1 problem total. Problem reports for tag 'ng_mppc': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/123045 gonzo [ng_mppc] ng_mppc_decompress - disabling node 1 problem total. Problem reports for tag 'ng_nat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125704 [ng_nat] kernel libalias: repeatable panic 1 problem total. Problem reports for tag 'nis': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/129541 [nis] passwd(1) cannot be forced to "yp" mode in some o kern/88320 [nis] ypxfr(8) talks IPv6 to IPv4-only portmap -> ypin o conf/72592 gavin [nis] NIS Domain Master fails as client of itself o bin/71625 [patch] [nis] cleanup of the usr.sbin/rpc.ypupdated co o bin/71617 [patch] [nis] ypserv(8): cleanup of the usr.sbin/ypser o bin/71616 [patch] [nis] yp_mkdb(8): cleanup of the usr.sbin/yp_m o bin/67142 [nis] rpc.yppasswdd incorrectly throws errors about in o bin/66893 [patch] [nis] rpc.yppasswdd(8): Linux NIS clients conn o bin/66830 [nis] chsh(1) ypchsh(1) do not change user information o bin/54097 [nis] Non-local yppasswd(1) -d broken in 5.1-CURRENT o bin/52343 [nis] login(1) problem on the server o bin/51628 [nis] ypmatch doesn't match keys in legacy NIS servers o kern/44578 [nis] getnetgrent fails to read NIS netgroup map o bin/42093 [nis] ypbind(8) hangs on NIC with the lowest scopeid o bin/40215 [nis] NIS host search not terminate o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/29903 [nis] ypbind(8) loses connection to NIS master and nev o bin/29808 [nis] ypserv(8) dumps core in yp_find_db o bin/24461 [nis] Being able to increase the YP timeout without re s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus 20 problems total. Problem reports for tag 'notes': S Tracker Resp. Description -------------------------------------------------------------------------------- p docs/141353 jhb [NOTES] [patch] i386 NOTES says building acpi into ker 1 problem total. Problem reports for tag 'nsswitch.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/123330 net [nsswitch.conf] Enabling samba wins in nsswitch.conf c f conf/73337 delphij [nsswitch.conf] [patch] potential invalid free o conf/64788 [nsswitch.conf] nsswitch with ldap and starting ppp on 3 problems total. Problem reports for tag 'ntfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142401 fs [ntfs] [patch] Minor updates to NTFS from NetBSD o kern/136873 fs [ntfs] Missing directories/files on NTFS volume o kern/120483 fs [ntfs] [patch] NTFS filesystem locking changes o kern/120482 fs [ntfs] [patch] Sync style changes between NetBSD and F o kern/118107 fs [ntfs] [panic] Kernel panic when accessing a file at N o kern/117314 fs [ntfs] Long-filename only NTFS fs'es cause kernel pani o kern/116515 remko [ntfs] NTFS mount does not check that user has permiss o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala o kern/103035 fs [ntfs] Directories in NTFS mounted disc images appear o kern/99290 fs [ntfs] mount_ntfs ignorant of cluster sizes o kern/97377 fs [ntfs] [patch] syntax cleanup for ntfs_ihash.c p kern/89966 rodrigc [ntfs] [panic] mounting ntfs causes kernel panic in so o kern/73484 fs [ntfs] Kernel panic when doing `ls` from the client si o kern/71774 fs [ntfs] NTFS cannot "see" files on a WinXP filesystem 14 problems total. Problem reports for tag 'ntp': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/148836 roberto [ntp] [patch] Update to NTP in base system 1 problem total. Problem reports for tag 'null': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139014 [null] /dev/null must be immunable to delete/unlink o kern/138526 [null] /dev/null does not support nonblocking operatio 2 problems total. Problem reports for tag 'nullfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/131441 fs [unionfs] [nullfs] unionfs and/or nullfs not combineab o kern/130210 fs [nullfs] Error by check nullfs o bin/121898 fs [nullfs] pwd(1)/getcwd(2) fails with Permission denied o sparc/104428 sparc64 [nullfs] nullfs panics on E4500 (but not E420) o kern/51583 fs [nullfs] [patch] allow to work with devices and socket 6 problems total. Problem reports for tag 'nve': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/118990 [nve] nve + PAE bus_addr_t/void * inconsistencies s amd64/108861 amd64 [nve] nve(4) driver on FreeBSD 6.2 AMD64 does not work o kern/106243 net [nve] double fault panic in if_nve.c on high loads o amd64/84027 obrien [nve] if_nve gets stuck 4 problems total. Problem reports for tag 'nwfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/65920 fs [nwfs] Mounted Netware filesystem behaves strange 1 problem total. Problem reports for tag 'ofw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112477 marius [ofw] [patch] Add support to set the node and type on 1 problem total. Problem reports for tag 'ohci': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t o usb/127222 usb [ohci] Regression in 7.0 usb storage generic driver o usb/122539 usb [ohci] [panic] AnyDATA ADU-E1000D - kernel panic: ohci o usb/121755 usb [ohci] [patch] Fix panic after ohci/uhub cardbus devic f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found f usb/101448 gavin [usb67] [ohci] FBSD 6.1-STABLE/AMD64 crashes under hea o usb/93828 usb [ohci] [panic] ohci causes panic on boot (HP Pavillion 8 problems total. Problem reports for tag 'oss': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147504 multimedia [oss] [panic] panic: dev_pager_getpage: map function r 1 problem total. Problem reports for tag 'padlock': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/135014 kib [padlock] Using padlock(4) in 8-current triggers "fpud 1 problem total. Problem reports for tag 'pae': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/129550 i386 [pae] [kqueue] crash with PAE kernel 1 problem total. Problem reports for tag 'pam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140514 des [pam] PAM can give PAM_SUCCESS when infact it should g o bin/113230 des [pam] [patch] const-ify PAM-headers o kern/107154 [pam] pam.d/sshd pam_ssh.so doesn't start ssh-agent o kern/94978 [pam] pam_opie module option without "no_fake_prompts" o kern/88150 des [pam] PAM does not search /usr/local/lib for modules o kern/83099 des [pam] pam_login_access change causes cyrus-sasl-saslau s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password 7 problems total. Problem reports for tag 'parallels': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139423 emulation [parallels] Networking does not work on amd64 guest on o kern/138944 emulation [parallels] [regression] Parallels no longer works in 2 problems total. Problem reports for tag 'patm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112686 net [patm] patm driver freezes System (FreeBSD 6.2-p4) i38 1 problem total. Problem reports for tag 'pccard': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147127 [pccard] [patch] Fix panic in pccard.c o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp o i386/41364 imp [pccard] NewMedia "Bus Toaster" SCSI card w/ Advansys 4 problems total. Problem reports for tag 'pccbb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128870 [pccbb] Interrupt Storm when plugging in PCMCIA Card ( o kern/128608 imp [pccbb] [patch] add support for powering down and up C o kern/128040 [pccbb] [patch] System hangs when PCMCIA-CF adapter pl o kern/128037 [pccbb] [patch] System hang on shutdown with PCMCIA-CF 4 problems total. Problem reports for tag 'pci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139271 [pci] [patch] sysutils/hpacucli does not work on the a o amd64/137942 amd64 [pci] 8.0-BETA2 having problems with Asus M2N-SLI-delu o kern/130957 jhb [pci] /sys/dev/pci/pci.c revision 181771 breaks networ o kern/129713 [pci] pci-pci bridge quirk with ich7 chipset not handl o kern/95661 [pci] [patch] pci_pci still not correct for initializi o kern/91347 rodrigc [pci] [patch] Add another PCI-e chipset for extended c o kern/89837 [pci] PCI code outputs superfluous "failed to enable/d o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o kern/65355 [pci] [patch] TC1000 serial ports need enabling o kern/59903 [pci] [patch] "pci_find_device" returns [only/at] the 10 problems total. Problem reports for tag 'pcm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144659 multimedia [pcm] The distortion of the sound playback of music at o kern/143505 multimedia [pcm] FreeBSD 8.0-RELEASE (x64) won't make sound card o usb/141664 usb [pcm] [usb8] Logitech USB microphone failure [regressi 3 problems total. Problem reports for tag 'pcmcia': S Tracker Resp. Description -------------------------------------------------------------------------------- f amd64/123275 amd64 [cbb] [pcmcia] cbb/pcmcia drivers on amd64 failure [re o kern/117026 imp [pcmcia]: Panic while removing PCMCIA wireless card o kern/94898 [pcmcia] GPRS PCMCIA card cause interrupt storm and co 3 problems total. Problem reports for tag 'periodic': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/135502 net [periodic] Warning message raised by rtfree function i o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail o conf/123516 [periodic] Daily Security Logs Not Reporting Failed Lo o conf/70715 [periodic] Lack of year in dates in auth.log can cause o conf/47596 [periodic] daily security run complains if timezone ch 5 problems total. Problem reports for tag 'pf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148290 pf [pf] "sticky-address" option of Packet Filter (PF) blo o kern/148260 pf [pf] [patch] pf rdr incompatible with dummynet o kern/147789 pf [pf] Firewall PF no longer drops connections by sendin o kern/146832 pf [pf] "(self)" not always matching all local IPv6 addre o kern/146719 net [pf] [panic] PF or dumynet kernel panic o docs/144986 doc [pf] pf.conf example should show allowing icmp through o kern/144311 pf [pf] [icmp] massive ICMP storm on lo0 occurs when usin o kern/143543 pf [pf] [panic] PF route-to causes kernel panic o conf/142961 pf [pf] No way to adjust pidfile in pflogd o kern/141905 pf [pf] [panic] pf kernel panic on 7.2-RELEASE with empty o kern/140697 pf [pf] pf behaviour changes - must be documented o kern/137982 pf [pf] when pf can hit state limits, random IP failures o kern/136781 pf [pf] Packets appear to drop with pf scrub and if_bridg o kern/136618 net [pf][stf] panic on cloning interface without unit numb o kern/135948 pf [pf] [gre] pf not natting gre protocol o kern/134996 pf [pf] Anchor tables not included when pfctl(8) is run w o kern/133732 pf [pf] max-src-conn issue o kern/132769 pf [pf] [lor] 2 LOR's with pf task mtx / ifnet and rtent f kern/132176 pf [pf] pf stalls connection when using route-to [regress o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st o kern/129861 pf [pf] [patch] Argument names reversed in pf_table.c:_co o kern/127920 pf [pf] ipv6 and synproxy don't play well together o conf/127814 pf [pf] The flush in pf_reload in /etc/rc.d/pf does not w o kern/127439 pf [pf] deadlock in pf f kern/127345 pf [pf] Problem with PF on FreeBSD7.0 [regression] o kern/127121 pf [pf] [patch] pf incorrect log priority o kern/127042 pf [pf] [patch] pf recursion panic if interface group is o kern/125467 pf [pf] pf keep state bug while handling sessions between s kern/124933 pf [pf] [ip6] pf does not support (drops) IPv6 fragmented o kern/124364 pf [pf] [panic] Kernel panic with pf + bridge o kern/122773 pf [pf] pf doesn't log uid or pid when configured to o kern/122014 pf [pf] [panic] FreeBSD 6.2 panic in pf o kern/121704 pf [pf] PF mangles loopback packets o kern/120281 pf [pf] [request] lost returning packets to PF for a rdr o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o kern/114567 pf [pf] [lor] pf_ioctl.c + if.c o kern/111220 pf [pf] repeatable hangs while manipulating pf tables s conf/110838 pf [pf] tagged parameter on nat not working on FreeBSD 5. o kern/93825 pf [pf] pf reply-to doesn't work o sparc/93530 pf [pf] Incorrect checksums when using pf's route-to on s o kern/92949 pf [pf] PF + ALTQ problems with latency o kern/82271 pf [pf] cbq scheduler cause bad latency 43 problems total. Problem reports for tag 'pf.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/145727 [pf.conf] pf rules not applied on boot if using inet6 1 problem total. Problem reports for tag 'pfil': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143622 net [pfil] [patch] unlock pfil lock while calling firewall 1 problem total. Problem reports for tag 'pfsync': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/135162 pf [pfsync] pfsync(4) not usable with GENERIC kernel o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o kern/101794 [pfsync] Setting plip as syncdev for pfsync causes ker 3 problems total. Problem reports for tag 'picobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/116453 [picobsd] picobsd build script fails for not exist log o misc/52256 embedded [picobsd] picobsd build script does not read in user/s o kern/42728 embedded [picobsd] many problems in src/usr.sbin/ppp/* after c o bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports negative Ipkt p misc/15876 edwin [picobsd] PicoBSD message of the day problems 5 problems total. Problem reports for tag 'pipe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/93685 [pipe] select on pipe write fails from '0' end 1 problem total. Problem reports for tag 'plip': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o kern/102035 net [plip] plip networking disables parallel port printing 2 problems total. Problem reports for tag 'pmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138681 [pmap] [panic] repeatable kernel panic in pmap_remove_ 1 problem total. Problem reports for tag 'portalfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/9679 [portalfs] [patch] fix for uninterruptible open in por 1 problem total. Problem reports for tag 'powerd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/117242 [powerd] [hang] console hangs when powerd is adaptive f i386/106850 i386 [powerd] powernow0 attach returned 6 o amd64/87689 amd64 [powerd] [hang] powerd hangs SMP Opteron 244 5-STABLE 3 problems total. Problem reports for tag 'ppbus': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/138388 brueffer [ppbus] [patch] NULL pointer dereference in pcfclock_o p kern/138387 brueffer [ppbus] [patch] NULL pointer dereference in lptopen() o kern/17425 [ppbus] [patch] fix two small printing errors in ppbus 3 problems total. Problem reports for tag 'ppc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 1 problem total. Problem reports for tag 'ppp': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/146377 net [ppp] [tun] Interface doesn't clear addresses when PPP o kern/138525 [ppp] [panic] Kernel corruption of pppoe lists o kern/133572 net [ppp] [hang] incoming PPTP connection hangs the system o kern/129219 net [ppp] Kernel panic when using kernel mode ppp o kern/123890 net [ppp] [panic] crash & reboot on work with PPP low-spee o conf/119550 [ppp] ppp not starting during bootup. o usb/118353 usb [panic] [ppp] repeatable kernel panic during ppp(4) se s bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p o conf/105689 rc [ppp] [request] syslogd starts too late at boot o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp o kern/99408 [ppp] problems with ppp and arp o kern/93019 net [ppp] ppp and tunX problems: no traffic after restarti o kern/92270 glebius [ppp]: ppp does not work on renamed network interfaces s kern/84386 [ppp] [request] PPPoA Authentication built into FreeBS o conf/67328 [ppp] Usermode PPP hangs on boot when NIS configured o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c 17 problems total. Problem reports for tag 'pppd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112160 [pppd] uplink DSL w/pppoe+NAT 'out of buffer space' ki o kern/109308 net [pppd] [panic] Multiple panics kernel ppp suspected [r o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o kern/102390 [pppd] [patch] kernel pppd don't using pam o kern/99607 [pppd] pppd hangs kernel due to interrupt flood from s o bin/98542 [pppd] pppd(8) daemon unexpectently died , Exit 1 o kern/95288 net [pppd] [tty] [panic] if_ppp panic in sys/kern/tty_subr 7 problems total. Problem reports for tag 'procfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o kern/97505 [procfs] file entry of procfs points to "unknown" o kern/96999 [procfs] [patch] procfs reports incorrect information s kern/19535 [procfs] [patch] procfs_rlimit tidyup 4 problems total. Problem reports for tag 'pseudofs': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/85137 des [pseudofs] [patch] panic due to sleep with held mutex 1 problem total. Problem reports for tag 'psm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147237 [psm] [patch] There is no IBM/Lenovo TrackPoint suppor f kern/144743 [psm] mouse positioning partialy working o kern/138938 [psm] Synaptics Support dosn't work on Dell Latitude o kern/137228 [psm] synaptics support delays 'mouse up' events when o kern/129125 [psm] psm0: failed to reset the aux device. f kern/128308 gavin [psm] psm0 cause page fault o kern/128083 [psm] [panic] early SMP panic on GA-G31M-S2L motherboa o kern/127887 [psm] PSM0 not detected by the KERNEL in Compaq Prolia o bin/122235 [psm] freebsd-7.0 moused(8) problems with ALPS GlidePo o kern/122046 [psm] Synaptics touchpad freezes (psm0: lost interrupt o kern/119197 [psm]: PS/2 mouse doesn't work under FreeBSD i386 7.0 o kern/109161 philip [psm] synaptic touchpad doesn't work o kern/108659 [psm] Mouse (Synaptics touchpad) cursor freezes for so o kern/100687 [psm] psm problem (?): touchpad hangs, then move supe o kern/91339 [psm] mousedriver do not recognize aditional buttons o o kern/84411 philip [psm] [patch] psm drivers adds bad buttons for Synapti s kern/80844 vwe [psm] [patch] Increase compatibility of psm driver wit o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation 18 problems total. Problem reports for tag 'pst': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/121454 acpi [pst] Promise SuperTrak SX6000 does not load during bo f i386/74153 i386 [pst] FreeBSD 5.3 cannot boot ftom pst 2 problems total. Problem reports for tag 'ptrace': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/146167 jhb [ptrace] [patch] ptrace PT_DETACH undocumented behavio o kern/114155 [ptrace] sigsuspend gets interrupted by ptrace 2 problems total. Problem reports for tag 'pty': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141150 [pty] [hang] TIOCDRAIN ioctl on pts/pty master hangs 1 problem total. Problem reports for tag 'puc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147583 [puc] [patch] sys/dev/puc/pucdata.c: incorrect clock v o kern/142999 [puc] [patch] add support for the I-O DATA RSA-PCI2/R o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 f kern/142085 gavin [puc] [patch] Few lines to pucdata.c to support for Te o kern/137436 [puc] [patch] Fix puc driver to support newer Timedia o kern/134878 [puc] [patch] Add support for Oxford OXPCIe954 and OXP o kern/132271 [puc] [patch] puc support for a generic card o kern/124128 [puc] puc driver doesn't support VScom PCIex-800H 8-po p kern/104212 [puc] [patch] support for Kuroutoshikou SERIAL4P-LPPCI o kern/103250 [puc] puc failed to attach sio ports when loaded as mo o kern/82901 [puc] ECP mode fails on NetMos ppc card - "PWord not s o kern/75132 jhb [puc] [patch] add support for the Davicom 56PDV PCI Mo o kern/43716 [puc] [patch] puc driver does not recognize Lava Dual- 13 problems total. Problem reports for tag 'pxeboot': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146162 [pxeboot] PXE loader(8) sets nfs_opts[] = "export" cau o i386/123981 re [pxeboot] You can't usefully PXEBOOT the 7.0-RELEASE-i o kern/118222 [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work o kern/106028 [pxeboot] tftp inside pxeboot isn't initialised proper o kern/91719 [pxeboot] BZ2_bzDecompress returned -3 error on loadin o kern/90368 [pxeboot] pxeboot misses ${class} parameter when booti 6 problems total. Problem reports for tag 'quotas': S Tracker Resp. Description -------------------------------------------------------------------------------- s bin/42004 mpp [quotas] quota is still IPv4 only, and not INET indepe 1 problem total. Problem reports for tag 'radeon': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138288 [radeon] RADEON(0): No valid MMIO address [regression] o kern/121337 [radeon] [panic] Kernel panic on 7.0-RELEASE using ati o kern/119850 [radeon] radeon module doesnt work right, when loaded o kern/108829 [radeon] radeon module fails with thinkpad T43 4 problems total. Problem reports for tag 'ral': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143591 net [ral] RT2561C-based DLink card (DWL-510) fails to work o kern/137372 net [ral] FreeBSD doesn't support wireless interface from o kern/134591 [ral] ral(4) driver frequently loses carrier (on RT256 o kern/134168 net [ral] ral driver problem on RT2525 2.4GHz transceiver o kern/132238 [ral] ral driver does not support RT2860 o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) f kern/125502 net [ral] ifconfig ral0 scan produces no output unless in o kern/124341 net [ral] promiscuous mode for wireless device ral0 looses o kern/122033 net [ral] [lor] Lock order reversal in ral0 at bootup ieee o kern/121174 [ral] if_ral loses performance in FreeBSD 7 (RELENG_7) o kern/119696 [irq] [ral] ral device causes massive interrupt storm f kern/117655 sam [ral] ral%d: device timeout when running as an access o kern/111457 net [ral] ral(4) freeze o kern/109227 [ral] ral(4) driver doesn't handle correctly RT2561C P o kern/103200 [ral] ral driver for RELENG_6 is out-of-date with resp o kern/95519 net [ral] ral0 could not map mbuf o kern/91364 net [ral] [wep] WF-511 RT2500 Card PCI and WEP f kern/82456 gavin [ral] WITNESS warning/backtrace in if_ral 18 problems total. Problem reports for tag 'random': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143298 secteam [random] [patch] random_yarrow_block() doesn't actuall o kern/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc 2 problems total. Problem reports for tag 'rc.d': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/147685 rc [rc.d] [patch] new feature for /etc/rc.d/fsck o conf/147444 rc [rc.d] [patch] /etc/rc.d/zfs stop not called on reboot o conf/145445 rc [rc.d] error in /etc/rc.d/jail (bad logic) o conf/145440 rc [rc.d] [patch] add multiple fib support (setfib) in /e o conf/144700 net [rc.d] async dhclient breaks stuff for too many people o conf/144213 rc [rc.d] [patch] Disappearing zvols on reboot o conf/141907 rc [rc.d] Bug if mtu (maybe others?) is set as first argu o conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a o conf/137629 rc [rc.d] background_dhclient rc.conf option causing doub o conf/137271 rc [rc.d] Cannot update /etc/host.conf when root filesyst o conf/136624 rc [rc.d] sysctl variables for ipnat are not applied on b o conf/135338 rc [rc.d] pf startup order seems broken [regression] o bin/134250 [rc.d] mountlate: bogus error message when using neste o conf/133987 rc [rc.d] defaultroute broken with DHCP in some cases o conf/132476 rc [rc.d] [patch] add support setfib(1) in rc.d/routing o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st o conf/122968 rc [rc.d] /etc/rc.d/addswap: md swapfile multiplication a o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o conf/109562 rc [rc.d] [patch] [request] Make rc.d/devfs usable from c 20 problems total. Problem reports for tag 're': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/144689 yongari [re] TCP transfer corruption using if_re f kern/123166 yongari [re] CARP messages filtered by Realtek driver on > 6.2 o kern/109251 net [re] [patch] if_re cardbus card won't attach o kern/108485 [re] stress2-udp with realtek 8169S gigabit interface f kern/84584 yongari [re] re(4) spends too much time in interrupt handler ( o i386/70832 yongari [re] re0: watchdog timeout on Evo N1015v 6 problems total. Problem reports for tag 'release': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/145580 [release] /usr/src/release/Makefile does not honor HTT 1 problem total. Problem reports for tag 'resolver': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136013 [resolver] Resolver wrong diagnostics 1 problem total. Problem reports for tag 'rl': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/148013 yongari [rl] [patch] add WoL support to rl(4) s kern/134517 yongari [rl] [patch] Realtek 8111C Driver Backport for FreeBSD f kern/100290 yongari [rl] rl0: watchdog timeout [regression] o kern/71045 [rl] [vr] DHCP-Request is sets other device's ip to nu 4 problems total. Problem reports for tag 'route': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143703 [route] [patch] ECMP Phase 1 fixes for FreeBSD 7.2 o kern/134931 net [route] Route messages sent to all socket listeners re o kern/134531 net [route] [panic] kernel crash related to routes/zebra a kern/71474 net [route] route lookup does not skip interfaces marked d 4 problems total. Problem reports for tag 'rp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/44202 [rp] [patch] -stable rp driver does not work with mult s i386/28975 [rp] RocketPort problems 2 problems total. Problem reports for tag 'rpc': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/117711 [rpc] rpcbind binds to all interfaces on random ports f conf/96412 linimon [rpc] 2 rpc.lockds launched at boot ? blocking problem s bin/94892 [rpc] rpc.lockd does not interoperate with Solaris 10 o bin/94258 [rpc] O_NONBLOCK may block with rpc.lockd o bin/94252 [rpc] rpc.lockd cannot cancel lock requests s kern/56461 [rpc] FreeBSD client rpc.lockd incompatible with Linux 6 problems total. Problem reports for tag 'rpc.quotad': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support 1 problem total. Problem reports for tag 'rtalloc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127724 net [rtalloc] rtfree: 0xc5a8f870 has 1 refs 1 problem total. Problem reports for tag 'rtc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/70649 [rtc] system clock slows down when heavily loaded o kern/63431 [rtc] motherboard going to suspend mode stops system c 2 problems total. Problem reports for tag 'rtld': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/139723 [rtld] Quagga/zebra abort trap 6, FreeBSD 8.0-RC1 1 problem total. Problem reports for tag 'rue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146909 net [rue] rue(4) does not detect OQO model01 network contr p usb/146907 gavin [rue] [patch] OQO model01 network does not work on Fre 2 problems total. Problem reports for tag 'rum': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/146693 thompsa [rum] Edimax EW‐7318USG not found in usbdevs or o kern/144642 net [rum] [panic] Enabling rum interface causes panic o kern/141777 net [rum] [patch] Support usbdevs / rum(4) for Buffalo WLI o kern/141696 net [rum] [panic] rum(4)+ vimage = kernel panic a usb/138904 usb [rum] [panic] [usb67] unpluging USB wifi card panics s o amd64/138688 net [rum] possibly broken on 8 Beta 4 amd64: able to wpa a o kern/137776 net [rum] panic in rum(4) driver on 8.0-BETA2 o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro o usb/133296 usb [rum] driver not working properly in hostap mode o usb/132080 usb [patch] [usb] [rum] Kernel panic after NOMEM caused by o usb/128418 usb [panic] [rum] loading if_rum causes panic, looks like o usb/124758 usb [rum] [panic] rum panics SMP kernel o kern/123968 net [rum] [panic] rum driver causes kernel panic with WPA. o kern/120966 net [rum] kernel panic with if_rum and WPA encryption o kern/119945 net [rum] [panic] rum device in hostap mode, cause kernel f usb/104352 gavin [usb67] [ural] [rum] [patch] ural driver doesnt work 16 problems total. Problem reports for tag 'run': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/144387 usb [run] [panic] if_run panic 1 problem total. Problem reports for tag 'sa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128452 scsi [sa] [panic] Accessing SCSI tape drive randomly crashe 1 problem total. Problem reports for tag 'safe': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/110662 sam [safe] safenet driver causes kernel panic 1 problem total. Problem reports for tag 'sbp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/119572 [sbp] PowerBook not accessable when in target mode 1 problem total. Problem reports for tag 'sched_ule': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128177 jeff [sched_ule] wrong CPU usage reported by top/ps with SC p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va o kern/117420 jeff [sched_ule] round off in sched_balance_pair() s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/78444 jeff [sched_ule] doesn't keep track of the sleep time of a 5 problems total. Problem reports for tag 'scheduler': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/127451 amd64 [scheduler] incorrect load on quad core 1 problem total. Problem reports for tag 'scsi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128245 scsi [scsi] "inquiry data fails comparison at DV1 step" [re o kern/78868 gibbs [scsi] Adaptec 29160 fails with IBM LTO-2 drive if dis o kern/13141 se [scsi] Multiple LUN support in NCR driver is broken. s kern/7264 gibbs [scsi] Buslogic BT 950 scsi card not detected 4 problems total. Problem reports for tag 'sdhci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145026 [sdhci] Fatal trap 12 with sdhci and without ahci modu 1 problem total. Problem reports for tag 'ses': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125769 [ses] [panic] getencstat(8) panics system with "Sleepi 1 problem total. Problem reports for tag 'sg': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/120487 scsi [sg] scsi_sg incompatible with scanners o kern/118282 [sg] device sg + hald + umass plugging crashes 7.0 2 problems total. Problem reports for tag 'siis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145714 [siis] removed SATA device on port multiplier resets e 1 problem total. Problem reports for tag 'sio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141655 [sio] [patch] Serial Console failure on Dell servers o kern/129316 [sio] [panic] kernel panic (pcpu.h:195; support.s:499) o kern/128036 [sio] [patch] serial console mostly ignores typein to a kern/122683 [sio] [hang] access to non-existent sio port /dev/cuaa o kern/119606 [sio] [patch] PCMCIA card not attached to driver f i386/112487 i386 [sio] kernel panic on swi0:sio o kern/109743 [sio] The sio(4) driver appears to be getting the seri o kern/109232 imp [sio] [patch] ibufsize calculation wrong causing data f i386/105063 i386 [sio] US Robotics (3Com) 3CP5609 PCI 16550 Modem works f i386/100831 i386 [sio] sio ignores BIOS information about serial ports o kern/97665 [sio] hang in sio driver o kern/51982 remko [sio] sio1: interrupt-level buffer overflows o kern/49039 [sio] [patch] add support for RS485 hardware where dir o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o kern/26261 [sio] silo overflow problem in sio driver s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o 16 problems total. Problem reports for tag 'sis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83807 brucec [sis] [patch] if_sis: Wake On Lan support for FreeBSD p kern/64556 brucec [sis] [patch] if_sis short cable fix problems with Net o kern/35442 net [sis] [patch] Problem transmitting runts in if_sis dri 3 problems total. Problem reports for tag 'sk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/105375 yongari [sk] 2 x Marvell GBit LAN: device sk0 is attached, but o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 f kern/96743 yongari [sk] [patch] broken 32-bit register operations 3 problems total. Problem reports for tag 'smb': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/74044 gavin [smb] ServerWorks OSB4 SMBus interface does not detect 1 problem total. Problem reports for tag 'smbd': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/125873 amd64 [smbd] [panic] Repeated kernel panics, trap 12 page fa 1 problem total. Problem reports for tag 'smbfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file o kern/139407 fs [smbfs] [panic] smb mount causes system crash if remot o kern/133676 fs [smbfs] [panic] umount -f'ing a vnode-based memory dis o kern/129488 fs [smbfs] Kernel "bug" when using smbfs in smbfs_smb.c: o bin/121072 fs [smbfs] mount_smbfs(8) cannot normally convert the cha o kern/119842 jail [smbfs] [jail] "Bad address" with smbfs inside a jail o bin/117315 fs [smbfs] mount_smbfs(8) and related options can't mount o kern/113852 fs [smbfs] smbfs does not properly implement DFS referral o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b o i386/102617 vwe [smbfs] [editors/ooo] 7 x "smb_maperror: Unmapped erro o kern/101324 fs [smbfs] smbfs sometimes not case sensitive when it's s o kern/94733 fs [smbfs] smbfs may cause double unlock o kern/91134 fs [smbfs] [patch] Preserve access and modification time a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o kern/88657 fs [smbfs] windows client hang when browsing a samba shar o kern/88266 fs [smbfs] smbfs does not implement UIO_NOCOPY and sendfi o kern/87859 fs [smbfs] System reboot while umount smbfs. o kern/85326 fs [smbfs] [panic] saving a file via samba to an overquot o kern/80088 fs [smbfs] Incorrect file time setting on NTFS mounted vi o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr o kern/61503 fs [smbfs] mount_smbfs does not work as non-root o kern/55617 fs [smbfs] Accessing an nsmb-mounted drive via a smb expo o kern/36566 fs [smbfs] System reboot with dead smb mount and umount 23 problems total. Problem reports for tag 'smbus': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/100513 jhb [smbus] Inconsistent definition of SMBus addresses in 1 problem total. Problem reports for tag 'smp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127486 [smp] [panic] early SMP panic ("AP #1 (PHY #1) failed! o kern/123140 [smp] SMP boot causes slow KB, ATA drives not detected f kern/122915 [smp] Incorrect system cpu load o kern/109936 [smp] SMP kernel performance problem on FSC TX600 o kern/93461 [smp] [regression] Intel 440LX SMP freeze (regression o amd64/87305 amd64 [smp] Dual Opteron / FreeBSD 5 & 6 / powerd results in o kern/67830 [smp] [patch] CPU affinity problem with forked child p 7 problems total. Problem reports for tag 'snapshots': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/115645 fs [snapshots] [panic] lockmgr: thread 0xc4c00d80, not ex 1 problem total. Problem reports for tag 'snd_hda': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/147466 multimedia [snd_hda] [patch] Thinkpad t510, codecs not recognized o kern/146031 multimedia [snd_hda] race condition when kldunload snd_hda sound o kern/141826 multimedia [snd_hda] load of snd_hda module fails o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att 7 problems total. Problem reports for tag 'snd_uaudio': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/138124 usb [snd_uaudio] [usb8] Axed uaudio functionality in the u o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant 3 problems total. Problem reports for tag 'socket': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/144061 rwatson [socket] race on unix socket close o kern/131876 rwatson [socket] FD leak by receiving SCM_RIGHTS by recvmsg wi o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm o kern/127360 kmacy [socket] TOE socket options missing from sosetopt() o kern/125258 net [socket] socket's SO_REUSEADDR option does not work o kern/124908 rwatson [socket] kernel performs inadequate check for incorrec a kern/97921 rwatson [socket] close() socket deadlocks blocked threads f kern/96268 net [socket] TCP socket performance drops by 3000% if pack o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/21998 kmacy [socket] [patch] ident only for outgoing connections 10 problems total. Problem reports for tag 'sound': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148741 multimedia [sound] Headphones are deaf (do not work) on Lenovo Th o kern/146758 multimedia [sound] [patch] fix volume control in spicds o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja o kern/140453 multimedia [sound] No sound inside Virtualbox on 50% volume o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o power/133503 ppc [sound] Sound stutter after switching ttys o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini f kern/121962 [sound] [snd_emu10k1] [panic] Kernel panics with devic p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt f kern/115666 multimedia [sound] Microphone does not work o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst s kern/113950 multimedia [sound] [patch] [request] add per-vchan mixer support o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o kern/100859 multimedia [sound] [snd_ich] snd_ich broken on GIGABYTE 915 syste o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [sound] [snd_ich] some functions don't work in my soun o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/96538 multimedia [sound] emu10k1-driver inverts channels o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o kern/92512 multimedia [sound] distorted mono output with emu10k1 o kern/90837 [sound] PCM - ICH6 - device is busy, but old process d o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup s kern/83697 multimedia [sound] [snd_mss] [patch] support, docs added for full o kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work. o kern/81146 multimedia [sound] Sound isn't working AT ALL for Sis7012 onboard o kern/80632 multimedia [sound] pcm driver missing support for CMI8738 auxilla f usb/80040 usb [sound] [hang] Use of sound mixer causes system freeze o kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: interrupt sto o kern/79905 multimedia [sound] sis7018 sound module problem o kern/79678 multimedia [sound] sound works except recording from any source f usb/75797 usb [sound] [regression] 5.3-STABLE(2005 1/4) detect USB h o conf/75137 jhb [sound] add snd_* modules support to /etc/rc.d/mixer f kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o o bin/62077 [sound] [patch] Make it possible to abbreviate mixer(8 o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem 58 problems total. Problem reports for tag 'ste': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/137292 yongari [ste] DFE-580TX not working properly 1 problem total. Problem reports for tag 'stf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/148017 hrs [stf] [patch] rc script for stf does not honour create s kern/143673 net [stf] [request] there should be a way to support multi o kern/136618 net [pf][stf] panic on cloning interface without unit numb o kern/123858 net [stf] [patch] stf not usable behind a NAT s kern/85444 vwe [stf] IPv6 crash, possibly related to destroying stf i 5 problems total. Problem reports for tag 'swi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140600 [swi] [panic] current process = 15 (swi1: net) o kern/139571 [swi] [panic] Fatal trap 12: page fault while in kerne o kern/122989 net [swi] [panic] 6.3 kernel panic in swi1: net s kern/121774 net [swi] [panic] 6.3 kernel panic in swi1: net 4 problems total. Problem reports for tag 'sym': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114597 scsi [sym] System hangs at SCSI bus reset with dual HBAs o kern/93128 scottl [sym] FreeBSD 6.1 BETA 1 has problems with Symbios/LSI o kern/90282 scsi [sym] SCSI bus resets cause loss of ch device o kern/73289 [sym] Interrupt storm on sym0 o kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load 5 problems total. Problem reports for tag 'syscons': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148367 [syscons] [patch] Add loader tunable to override SC_HI o kern/148130 [syscons] Inappropriate ioctl for device f kern/139576 ed [syscons] [patch] blink screen too noisy p conf/126841 philip [syscons] [patch] Add eee900 keyboard layout to /usr/s o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH s bin/90082 [syscons] [patch] curses ACS line graphics support for o kern/83109 [syscons] syscons does not always display colors corre o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/46973 [syscons] [patch] [request] syscons virtual terminals o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/31890 [syscons] [patch] new syscons font s kern/15436 [syscons] syscons extension: "propellers" 13 problems total. Problem reports for tag 'sysctl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148710 [sysctl][patch] Document sys/kern sysctls o docs/148680 doc [sysctl][patch] Document some sys/kern sysctls o kern/148580 [sysctl][patch] Document some sys/kern sysctls o kern/148510 [sysctl][patch] Document some sysctls o kern/143040 [sysctl] sysctl -a hangs, as a side effect it breaks o conf/137900 [sysctl] sysctl default values for kern.ipc.shmmax and s kern/135550 [sysctl] [request] Feature Request: Manufacturer Infor o kern/134540 [sysctl] [panic] kernel panic after sysctl -a (in strl o kern/134231 [sysctl] sysctl() 80% slower in 7.2 than 6.2 [regressi o kern/91023 [sysctl] cpufreq/p4tcc: sysctl: dev.cpu.0.freq: Device o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o kern/39681 [sysctl] [patch] add hidden kernel boot tunables to sy 12 problems total. Problem reports for tag 'tap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/123892 net [tap] [patch] No buffer space available o kern/118399 secteam [tap] local/remote kernel DoS through TAP device o kern/117271 net [tap] OpenVPN TAP uses 99% CPU on releng_6 when if_tap 3 problems total. Problem reports for tag 'tcp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146628 net [tcp] [patch] TCP does not clear DF when MTU is below o kern/144000 net [tcp] setting TCP_MAXSEG by setsockopt() does not seem o kern/138652 net [tcp] TCP window scaling value calculated incorrectly? o kern/138046 net [tcp] tcp sockets stay in SYN_SENT even after receivin o kern/137317 net [tcp] logs full of syncache problems o kern/127928 net [tcp] [patch] TCP bandwidth gets squeezed every time t f kern/123617 net [tcp] breaking connection when client downloading file o kern/123603 net [tcp] tcp_do_segment and Received duplicate SYN f kern/122082 rwatson [tcp] NULL pointer dereference in in_pcbdrop o kern/121257 net [tcp] TSO + natd -> slow outgoing tcp traffic o kern/116335 andre [tcp] Excessive TCP window updates o kern/108670 silby [tcp] TCP connection ETIMEDOUT p kern/102653 andre [tcp] TCP stack sends infinite retries for connection o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l f kern/93378 net [tcp] Slow data transfer in Postfix and Cyrus IMAP (wo o kern/92690 silby [tcp] slowstart_flightsize ignored in 6-STABLE o kern/86871 net [tcp] [patch] allocation logic for PCBs in TIME_WAIT s 17 problems total. Problem reports for tag 'termcap': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/147992 [termcap] [patch] xterm-256color is a 8 colors termina o kern/147726 [termcap] [patch] termcap needs an entry for rxvt-256c o conf/136336 [termcap] [patch] missing entry for "center of keypad" f conf/128874 [termcap] termcap entry for rxvt missing :AX: capabili 4 problems total. Problem reports for tag 'terminfo': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/140965 [terminfo] Cannot create terminfo database because ncu o conf/133715 [terminfo] [patch] no terminfo for rxvt-unicode termin 2 problems total. Problem reports for tag 'threads': S Tracker Resp. Description -------------------------------------------------------------------------------- s threa/39922 threads [threads] [patch] Threaded applications executed with 1 problem total. Problem reports for tag 'ti': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/123147 remko [ti] [patch] ti(4) doesn't use mii, but kernel configs o kern/20529 [ti] gigabit cards fail to link 2 problems total. Problem reports for tag 'tinybsd': S Tracker Resp. Description -------------------------------------------------------------------------------- p misc/135301 remko [tinybsd] [patch] Patch for fix architecture support f o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ 2 problems total. Problem reports for tag 'tmpfs': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/141194 jh [tmpfs] tmpfs treats the size option as mod 2^32 o kern/139597 fs [patch] [tmpfs] tmpfs initializes va_gen but doesn't u p kern/139312 delphij [tmpfs] [patch] tmpfs mmap synchronization bug p kern/138367 jh [tmpfs] [panic] 'panic: Assertion pages > 0 failed' wh p kern/127213 delphij [tmpfs] [patch] sendfile on tmpfs data corruption p kern/122038 delphij [tmpfs] [panic] tmpfs: panic: tmpfs_alloc_vp: type 0xc 6 problems total. Problem reports for tag 'tools': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/147463 [tools] [patch] Patch for tools/regression/lib/libc/st o bin/146687 [tools] [patch] Fix QA issues with tools/regression/ai o misc/146119 [tools] [patch] (attempt to) cleanup tools/tools/umast o misc/146088 [tools] [patch] netrate/tcpconnect incorrectly uses er o misc/146086 [tools] [patch] 64-bit aware printf() fixes at tools/t o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam 6 problems total. Problem reports for tag 'trm': S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/105048 sparc64 [trm] trm(4) panics on sparc64 1 problem total. Problem reports for tag 'tun': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/146377 net [ppp] [tun] Interface doesn't clear addresses when PPP o kern/139559 qingli [tun] several tun(4) interfaces can be created with sa o kern/138332 net [tun] [lor] ifconfig tun0 destroy causes LOR if_adata/ o kern/133902 net [tun] Killing tun0 iface ssh tunnel causes Panic Strin o kern/116837 bz [tun] [panic] [patch] ifconfig tunX destroy: panic o kern/116172 bz [tun] [nd6] [panic] Network / ipv6 recursive mutex pan o bin/115951 [tun] pppoed(8): tun not closed after client abruptly 7 problems total. Problem reports for tag 'twa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148785 [twa] [patch] twa driver doesn't pass proper max. io s f kern/139527 [twa] twa driver fails to build in CURRENT o i386/138948 i386 [twa] [regression] da0: Fi o kern/119043 [twa] twa hang after heavy disk IO o kern/107608 [twa] [hang] Raid Problem beim Zugriff auf Raid 5 problems total. Problem reports for tag 'twe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/72906 [twe] twe0 idefinite wait buffer a kern/66185 [twe] twe driver generates gratuitous warning on shutd 2 problems total. Problem reports for tag 'u3g': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/138138 gavin [u3g] [patch] [usb67] Novatel U760 for u3g (Verizon an 1 problem total. Problem reports for tag 'uart': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148644 ed [uart] [patch] vgetty play voice file fails with 8.0 R f kern/147082 [uart] Serial ports unusable [regression] o kern/146647 [uart] Some PCIe serial/parallel boards with ID 9901 9 o kern/144696 [uart] tcdrain(3) does not work right with uart(4) dri o kern/132165 [uart] [lor] LOR slock and uart_hwmtx o kern/131933 [uart] [patch] Cannot detect Sony Ericsson GC89 EDGE/W p kern/129665 rik [uart] Oxford OX16PCI958 8-serial multiport card is no o kern/129663 rik [uart] Timedia-based 8-serial multiport card: only two o kern/106645 [uart] [patch] uart device description in 7-CURRENT is 9 problems total. Problem reports for tag 'uath': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/141680 usb [uath] [usb8] Netgear WG111T not working with uath dri 1 problem total. Problem reports for tag 'ubsa': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/129522 usb [ubsa] [usb67] [patch] add support for ZTE AC8700 mode f usb/127543 usb [patch] [ubsa] Support Option Globetrotter HSDPA modem o usb/122956 usb [ubsa] [patch] add support for Novatel Wireless XU870 o usb/122936 usb [ucom] [ubsa] Device does not receive interrupt o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun p usb/118374 attilio [ubsa] [patch] support Option GlobeTrotter Max 3.6 wir 7 problems total. Problem reports for tag 'ubsec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133143 [ubsec] [panic] Kernel panic with ubsec and cryptodev; 1 problem total. Problem reports for tag 'ucom': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/127248 usb [ucom] panic while uplcom devices attach and detach o kern/124777 usb [ucom] USB cua devices don't revert to tty devices whe o usb/122936 usb [ucom] [ubsa] Device does not receive interrupt o usb/118141 usb [ucom] usb serial and nokia phones ucomreadcb ucomread o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi o kern/113432 net [ucom] WARNING: attempt to net_add_domain(netgraph) af o kern/86763 [ucom] kernel: ucom0: ucomwritecb: IOERROR o usb/83977 usb [ucom] [panic] ucom1: open bulk out error (addr 2): IN o usb/82350 usb [ucom] [panic] null pointer dereference in USB stack f usb/77294 usb [ucom] [panic] ucom + ulpcom panic o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn s usb/72733 usb [ucom] [request] Kyocera 7135 Palm OS connection probl o usb/66547 usb [ucom] Palm Tungsten T USB does not initialize correct 13 problems total. Problem reports for tag 'udav': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/80776 usb [udav] [request] UDAV device driver shouldn't use usb_ 1 problem total. Problem reports for tag 'udbp': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/122813 usb [udbp] [request] udbp driver should be removed in favo o usb/82520 usb [udbp] [reboot] Reboot when USL101 connected 2 problems total. Problem reports for tag 'udf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada o kern/60089 scottl [udf] UDF filesystem appends garbage to files 2 problems total. Problem reports for tag 'udp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133736 net [udp] ip_id not protected ... o kern/127057 net [udp] Unable to send UDP packet via IPv6 socket to IPv o kern/120266 net [udp] [panic] gnugk causes kernel panic when closing U o kern/112722 net [ipsec] [udp] IP v4 udp fragmented packet reject 4 problems total. Problem reports for tag 'ufs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147420 fs [ufs] [panic] ufs_dirbad, nullfs, jail panic (corrupt o kern/146708 fs [ufs] [panic] Kernel panic in softdep_disk_write_compl o kern/145246 fs [ufs] dirhash in 7.3 gratuitously frees hashes when it o kern/144929 fs [ufs] [lor] vfs_bio.c + ufs_dirhash.c o kern/142068 fs [ufs] BSD labels are got deleted spontaneously o kern/138421 fs [ufs] [patch] remove UFS label limitations o kern/136968 fs [ufs] [lor] ufs/bufwait/ufs (open) o kern/136945 fs [ufs] [lor] filedesc structure/ufs (poll) o kern/135469 fs [ufs] [panic] kernel crash on md operation in ufs_dirb o kern/132960 fs [ufs] [panic] panic:ffs_blkfree: freeing free frag o kern/132331 fs [ufs] [lor] LOR ufs and syncer o kern/129231 fs [ufs] [patch] New UFS mount (norandom) option - mostly o kern/127787 [lor] [ufs] Three LORs: vfslock/devfs/vfslock, ufs/vfs o kern/126287 fs [ufs] [panic] Kernel panics while mounting an UFS file a kern/125613 trasz [ufs] [patch] ACL problems with special files o bin/121779 fs [ufs] snapinfo(8) (and related tools?) only work for t o kern/117954 [ufs] dirhash on very large directories blocks the mac o kern/114676 fs [ufs] snapshot creation panics: snapacct_ufs2: bad blo o kern/111782 fs [ufs] dump(8) fails horribly for large filesystems o kern/106107 fs [ufs] left-over fsck_snapshot after unfinished backgro o kern/106030 fs [ufs] [panic] panic in ufs from geom when a dead disk o kern/104406 fs [ufs] Processes get stuck in "ufs" state under persist o kern/94849 fs [ufs] rename on UFS filesystem is not atomic o kern/94769 fs [ufs] Multiple file deletions on multi-snapshotted fil f kern/91568 fs [ufs] [panic] writing to UFS/softupdates DVD media in o bin/73019 fs [ufs] fsck_ufs(8) cannot alloc 607016868 bytes for ino o kern/68978 fs [panic] [ufs] crashes with failing hard disk, loose po o kern/58373 mckusick [ufs] ufs inconsistency between 4.9-RC and 5.1 f kern/48393 mckusick [ufs] ufs2 snapshot code bugs o kern/33464 fs [ufs] soft update inconsistencies after system crash 30 problems total. Problem reports for tag 'uftdi': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o usb/129758 usb [uftdi] [patch] add Pyramid LCD usb support o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o usb/117546 remko [uftdi] [patch] Add MaxStream ZigBee product ID to uft o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter f usb/106615 gavin [usb67] [uftdi] uftdi module does not automatically lo o usb/67301 usb [uftdi] [panic] RTS and system panic 9 problems total. Problem reports for tag 'ugen': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c o usb/121734 usb [ugen] ugen HP1022 printer device not working since up o usb/117200 usb [ugen] ugen0 prints strange string on attach if detach o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated o usb/83863 usb [ugen] Communication problem between opensc/openct via o usb/81308 imp [ugen] [patch] [2] polling a ugen(4) control endpoint o usb/71417 usb [ugen] Cryptoflex e-gate USB token (ugen0) communicati o usb/71416 usb [ugen] Cryptoflex e-gate USB token (ugen0) detach is n o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction 9 problems total. Problem reports for tag 'uhci': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor o usb/129673 usb [uhci] uhci (uhub) confused on replugging USB 1.1 scan o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory f usb/76395 usb [uhci] USB printer does not work, usbdevs says "addr 0 4 problems total. Problem reports for tag 'uhid': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/63837 linimon [uhid] [patch] USB: hid_is_collection() only looks for 1 problem total. Problem reports for tag 'uhub': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never o usb/92142 usb [uhub] SET_ADDR_FAILED and SHORT_XFER errors from usb 3 problems total. Problem reports for tag 'uipaq': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/121184 usb [uipaq] [patch] add ids from linux ipaq driver (plus a 1 problem total. Problem reports for tag 'ukbd': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/144751 usb [ukbd] [usb8] kernel without keyboard support won't co o usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system o usb/141327 usb [ukbd] [usb67] USB kbd not working with 7.1+PAE on IBM o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no o usb/133989 usb [usb8] [ukbd] USB keyboard dead at mountroot> prompt o usb/132066 usb [ukbd] Keyboard failure USB keyboard DELL 760 f kern/131798 gavin [ukbd] usb keyboard doesn't work with motherboard inte o usb/125736 usb [ukbd] [hang] system hangs after AT keyboard detect if o usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does f usb/102066 gavin [usb67] [ukbd] usb keyboard and multimedia keys don't o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar 14 problems total. Problem reports for tag 'ulpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/126740 usb [ulpt] doesn't work on 7.0-RELEASE, 10 second stall be o usb/122483 usb [panic] [ulpt] Repeatable panic in 7.0-STABLE o usb/116282 usb [ulpt] Cannot print on USB HP LJ1018 or LJ1300 o usb/115298 usb [ulpt] [panic] Turning off USB printer panics kernel o usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele o usb/94717 usb [ulpt] Reading from /dev/ulpt can break work of a UHCI o usb/92052 usb [ulpt] usbd causes defunct process with busy file-hand o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes 10 problems total. Problem reports for tag 'uma': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138876 [uma] [panic] UMA: page_free used with invalid flags 4 o kern/85971 jeff [uma] [patch] minor optimization to uma 2 problems 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/147516 usb [umass] [usb67] kernel unable to deal with Olympus USB o usb/145415 usb [umass] [usb8] USB card reader does not create slices o usb/144043 usb [umass] [usb8] USB DLT tape drive throws random errors a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J o usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE f usb/142276 usb [umass] [usb8] Cache Synchronization Error with Olympu o kern/140654 [umass] growisofs/mkisofs PERFORM OPC and GET EVENT C o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d a usb/139598 usb [umass] [usb8] CAM reports "xptioctl: put "device pass p kern/135628 remko [umass] [patch] add a device quirk for Myson Heden 881 o usb/135348 usb [umass] [patch] USB Drive Hangs with ZFS (JMicron USB2 o usb/134085 usb [umass] Adding usb quirk for Sony USB flash drive o usb/131583 usb [umass] Failure when detaching umass Device o usb/129500 usb [umass] [panic] FreeBSD Crashes when connecting SanDis o usb/128425 usb [umass] Cannot Connect Maxtor Onetouch 4 USB drive o usb/127980 usb [umass] [patch] Fix Samsung YP U2 MP3 player on 7.x an p usb/127549 usb [umass] [usb67] [patch] Meizu MiniPlayer M6 (SL) requi o usb/123509 usb [umass] continuous reset Samsung SGH-G600 phone f usb/123508 vwe [umass] [msdosfs] damaged files (mp3,txt , etc) on fla o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um o usb/122119 usb [umass] umass device causes creation of daX but not da o usb/121169 usb [umass] Issues with usb mp3 player o usb/120572 usb [umass] [patch] quirk to support ASUS P535 as umass (a o usb/119633 usb [umass] umass0: BBB reset failed, IOERROR [regression] o usb/119389 usb [umass] Sony DSC-W1 CBI reset failed, STALLED [regress o usb/118480 usb [umass] Timeout in USB mass storage freezes vfs layer o usb/118098 usb [umass] 6th gen iPod causes problems when disconnectin o usb/117955 usb [umass] [panic] inserting minolta dimage a2 crashes OS o usb/117893 usb [umass] Lacie USB DVD writing failing o usb/117313 usb [umass] [panic] panic on usb camera insertion o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o usb/114682 usb [umass] generic USB media-card reader unusable o kern/114667 [umass] UMASS device error log problem o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection f usb/107848 gavin [usb67] [umass] cannot access Samsung flash disk f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n f usb/104292 gavin [usb67] [umass] [hang] system lockup on forced umount f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive o usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca o usb/97175 usb [umass] [hang] USB cardreader hangs system o usb/96457 usb [umass] [panic] fatback on umass = reboot s usb/95636 usb [umass] [boot] 5 minute delay at boot when using VT620 o usb/95562 usb [umass] Write Stress in USB Mass drive causes "vinvalb o usb/95037 usb [umass] USB disk not recognized on hot-plug. o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o usb/91811 usb [umass] Compact Flash in HP Photosmart 2610 return " o usb/91238 usb [umass] USB tape unit fails to write a second tape fil o usb/90700 usb [umass] [panic] Kernel panic on connect/mount/use umas o usb/89954 usb [umass] [panic] USB Disk driver race condition? o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o usb/83563 usb [umass] [panic] Page Fault while detaching Mpman Usb d s usb/82569 usb [umass] [panic] USB mass storage plug/unplug causes sy f usb/80361 usb [umass] [patch] mounting of Dell usb-stick fails o usb/78984 usb [umass] [patch] Creative MUVO umass failure o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o usb/76461 usb [umass] disklabel of umass(4)-CAM(4)-da(4) not used by s usb/75928 usb [umass] [request] Cytronix SmartMedia card (SMC) reade o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for f usb/75705 usb [umass] [panic] da0 attach / Optio S4 (with backtrace) f usb/74771 usb [umass] [hang] mounting write-protected umass device a s usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o usb/74211 usb [umass] USB flash drive causes CAM status 0x4 on 4.10R o usb/71455 usb [umass] Slow USB umass performance of 5.3 o usb/63621 usb [umass] [panic] USB MemoryStick Reader stalls/crashes s usb/62257 usb [umass] [request] card reader UCR-61S2B is only half-s o usb/40948 usb [umass] [request] USB HP CDW8200 does not work 69 problems total. Problem reports for tag 'umct': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/70523 usb [umct] [patch] umct sending/receiving wrong characters 1 problem total. Problem reports for tag 'umodem': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/128485 usb [umodem] [patch] Nokia N80 modem support p usb/117185 thompsa [umodem] [patch] Add support for UNION interface descr o usb/116561 usb [umodem] [panic] RELENG_6 umodem panic "trying to slee o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work 4 problems total. Problem reports for tag 'ums': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/142229 usb [ums] [usb8] [hang] connecting a USB mouse to a Dell P o kern/140849 usb [ums] [usb8] USB mouse doesn't work under FreeBSD 8.0- o usb/137129 usb [ums] [usb8] SteelSeries Ikari USB laser mouse not att p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o usb/125631 usb [ums] [panic] kernel panic during bootup while 'Logite o usb/125238 usb [ums] Habu Mouse turns off in X o usb/124604 usb [ums] Microsoft combo wireless mouse doesn't work o usb/119977 usb [ums] Mouse does not work in a Cherry-USB keyboard/mou o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o usb/117911 usb [ums] [request] Mouse Gembird MUSWC not work o kern/103578 [ums] ums does not recognize mouse buttons s usb/96120 usb [ums] [request] USB mouse not always detected o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o usb/83756 usb [ums] [patch] Microsoft Intellimouse Explorer 4.0A doe o usb/76732 usb [ums] Mouse problems with USB KVM Switch o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 16 problems total. Problem reports for tag 'unionfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145750 daichi [unionfs] [hang] unionfs locks the machine o kern/141950 daichi [unionfs] [lor] ufs/unionfs/ufs Lock order reversal o kern/137588 daichi [unionfs] [lor] LOR nfs/ufs/nfs o kern/132987 daichi [unionfs] unionfs_readdir has math problem o kern/131441 fs [unionfs] [nullfs] unionfs and/or nullfs not combineab a bin/127932 [unionfs] mkdir -p PATH fails if a directory in PATH i o kern/126973 daichi [unionfs] [hang] System hang with unionfs and init chr o kern/126553 daichi [unionfs] unionfs move directory problem 2 (files appe o bin/123574 daichi [unionfs] df(1) -t option destroys info for unionfs (a o kern/121385 daichi [unionfs] unionfs cross mount -> kernel panic o kern/109377 daichi [unionfs] unionfs crashes if underlying file system fo 11 problems total. Problem reports for tag 'uplcom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140614 usb [uplcom] [patch] adding support for Radio Shack Gigwar o usb/129173 usb [uplcom] [patch] Add support for Corega CG-USBRS232R a o usb/128324 usb [uplcom] [patch] remove baud rate restriction for PL23 f usb/115737 linimon [uplcom] uplcom doesn't identify my Prolific 2303 any o kern/114780 usb [uplcom] [panic] Panics while stress testing the uplco o kern/95512 [uplcom] uplcom(4) causes system hangups 6 problems total. Problem reports for tag 'ural': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa f usb/104352 gavin [usb67] [ural] [rum] [patch] ural driver doesnt work f usb/101096 gavin [usb67] [ural] [panic] USB WLAN occasionally causes ke o usb/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o kern/88182 [ural] [wep] wep is broken in ural(4) hostap mode 5 problems total. Problem reports for tag 'urio': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/51958 usb [urio] [patch] update for urio driver 1 problem total. Problem reports for tag 'urtw': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/146054 usb [urtw] [usb8] urtw driver potentially out of date o usb/142719 usb [urtw] [usb8] AirLive WL-1600USB (RTL8187L chipset) fa o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b 3 problems total. Problem reports for tag 'usb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141011 usb [usb] Encrypted root, geli password at boot; enter key o usb/138570 usb [usb] [panic] USB mass device panics current 7.2-STABL p usb/132799 gavin [usb][patch]GENESYS USB2IDE requires NO_SYNCHRONIZE_CA o usb/132785 usb [usb] [patch] Gemtech remote powersocket is classed as o usb/132080 usb [patch] [usb] [rum] Kernel panic after NOMEM caused by p usb/129858 remko [usb] [patch] Need to add quirk to da_scsi.c to suppor o usb/129766 usb [usb] plugging in usb modem HUAWEI E226 panics system o usb/129311 usb [usb] [panic] Instant crash with an USB card reader s usb/128990 usb [usb] u3g does not handle RTS/CTS available on for exa o usb/126848 usb [usb]: USB Keyboard hangs during Installation o usb/126519 usb [usb] [panic] panic when plugging in an iphone o kern/124130 usb [usb] gmirror fails to start usb devices that were pre o usb/123969 usb [usb] Supermicro H8SMi-2 usb problem: port reset faile o usb/123714 usb [usb] [panic] Panic when hald-storage-probe runs with o usb/123690 usb [usb] [panic] Panic on USB device insertion when usb l o usb/123611 usb [usb] BBB reset failed, STALLED from Imation/Mitsumi U o usb/122819 usb [usb] [patch] Patch to provide dynamic additions to th o usb/121232 usb [usb] [panic] USB CardBus card removal causes reboot s o usb/120786 usb [usb] [panic] Kernel panic when forced umount of a det o usb/119509 usb [usb] USB flaky on Dell Optiplex 755 f usb/106832 gavin [usb67] [usb] USB HP printer is not detected by kernel o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync o usb/87224 usb [usb] Cannot mount USB Zip750 s usb/84336 usb [usb] [reboot] instant system reboot when unmounting a o usb/79723 usb [usb] [request] prepare for high speed isochronous tra s usb/79622 imp [usb] USB devices can be freed twice s usb/52026 usb [usb] [request] umass driver support for InSystem ISD2 o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem 28 problems total. Problem reports for tag 'usb67': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/147516 usb [umass] [usb67] kernel unable to deal with Olympus USB o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 o usb/142713 usb [usb67] [panic] Kernel Panik when connecting an IPhone o kern/141658 [panic] [usb67] Kernel panics when inserting a USB key o usb/141327 usb [ukbd] [usb67] USB kbd not working with 7.1+PAE on IBM s usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor a usb/138904 usb [rum] [panic] [usb67] unpluging USB wifi card panics s f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t o usb/138548 gavin [usb67] usb devices periodically have unknown activity o usb/138175 usb [usb67] [boot] System cannot boot, when USB reader wit p usb/138138 gavin [u3g] [patch] [usb67] Novatel U760 for u3g (Verizon an o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is o usb/137872 usb [usb67] [boot] slow booting on usb flash drive o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no p usb/136761 usb [usbdevs][usb67][patch] Teach usbdevs / u3g(4) about H o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis o usb/129945 usb [usb67] [usbdevs] [patch] add u3g support for Longchee o usb/129522 usb [ubsa] [usb67] [patch] add support for ZTE AC8700 mode o usb/129251 usb [usbdevs] [usb67] [patch] Liebert UPS being assigned u o usb/128977 usb [usb67] [patch] uaudio is not full duplex p usb/127549 usb [umass] [usb67] [patch] Meizu MiniPlayer M6 (SL) requi o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 o usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated s usb/108344 usb [usb67] [atausb] [panic] kernel with atausb panics whe f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe f usb/107848 gavin [usb67] [umass] cannot access Samsung flash disk o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X o usb/107243 usb [usb67] [cam] [quirk] [patch] Apacer USB Flash Drive q f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 f usb/106832 gavin [usb67] [usb] USB HP printer is not detected by kernel f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang f usb/106615 gavin [usb67] [uftdi] uftdi module does not automatically lo o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu o usb/105361 usb [usb67] [panic] Kernel panic during unmounting mass st f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n f usb/104352 gavin [usb67] [ural] [rum] [patch] ural driver doesnt work f usb/104292 gavin [usb67] [umass] [hang] system lockup on forced umount f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does f usb/102066 gavin [usb67] [ukbd] usb keyboard and multimedia keys don't o usb/101775 usb [usb67] [usb8] [libusbhid] [patch] possible error in r o usb/101761 usb [usb67] [patch] [request] usb.h: increase maximal size o usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca f usb/101448 gavin [usb67] [ohci] FBSD 6.1-STABLE/AMD64 crashes under hea f usb/101096 gavin [usb67] [ural] [panic] USB WLAN occasionally causes ke o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar 57 problems total. Problem reports for tag 'usb8': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/148189 remko [usbdevs] [usb8] [patch] provide descriptive string fo o usb/146871 usb [usbdevs] [usb8] [patch] provide descriprive string fo p usb/146367 thompsa [usb8] [patch] Revision 205728: broken bluetooth mouse o usb/146153 usb [axe] [usb8] Hosts in network doesn't receive any pack o usb/146054 usb [urtw] [usb8] urtw driver potentially out of date f usb/145513 usb [usb8] New USB stack: no new devices after forced usb o usb/145455 usb [usb8] [patch] USB debug support cannot be disabled o usb/145415 usb [umass] [usb8] USB card reader does not create slices o usb/145165 usb [keyboard] [usb8] ukbd_set_leds_callback: error=USB_ER o usb/144751 usb [ukbd] [usb8] kernel without keyboard support won't co o usb/144043 usb [umass] [usb8] USB DLT tape drive throws random errors f usb/143620 usb [cdce] [usb8] the module if_cdce doesn't support my Op p usb/143448 gavin [usbdevs] [usb8] [patch] QUIRK: JMicron JM20336 USB/SA f usb/143294 usb [usb8] copying process stops at some time (10 - 50 sec o usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system f usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J o usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d f usb/142989 usb [usb8] canon eos 50D attaches but detaches after few s f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE o usb/142719 usb [urtw] [usb8] AirLive WL-1600USB (RTL8187L chipset) fa f usb/142276 usb [umass] [usb8] Cache Synchronization Error with Olympu o usb/142229 usb [ums] [usb8] [hang] connecting a USB mouse to a Dell P o usb/141680 usb [uath] [usb8] Netgear WG111T not working with uath dri o usb/141664 usb [pcm] [usb8] Logitech USB microphone failure [regressi o usb/141474 usb [boot] [usb8] FreeBSD 8.0 can not install from USB CDR f usb/141313 thompsa [usb8] nvidia USB 2.0 controller - stops copying on US o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER o usb/140920 usb [install] [usb8] USB based install fails on 8.0-RELEAS p usb/140904 jhb [build] [usb8] Kernel fails to build if some unused US o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b f usb/140883 usb [axe] [usb8] USB gigabit ethernet hangs after short pe o kern/140849 usb [ums] [usb8] USB mouse doesn't work under FreeBSD 8.0- a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d p usb/140325 thompsa [libusb] [usb8] Missing/incorrect initialisation and m o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A a usb/139598 usb [umass] [usb8] CAM reports "xptioctl: put "device pass o usb/138798 usb [boot] [usb8] 8.0-BETA4 can't boot from USB flash driv o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o kern/138292 weongyo [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 o usb/138124 usb [snd_uaudio] [usb8] Axed uaudio functionality in the u o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is o usb/137377 usb [usb8] request support for Huawei E180 o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro f usb/137190 usb [usb8][patch] inhibit spurious button releases for som o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo p usb/137188 usb [usb8][patch] correctly handle USB report descriptors o usb/137129 usb [ums] [usb8] SteelSeries Ikari USB laser mouse not att o usb/133989 usb [usb8] [ukbd] USB keyboard dead at mountroot> prompt o usb/130122 usb [usb8] DVD drive detects as 'da' device o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o usb/101775 usb [usb67] [usb8] [libusbhid] [patch] possible error in r 58 problems total. Problem reports for tag 'usbdevs': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/148189 remko [usbdevs] [usb8] [patch] provide descriptive string fo o usb/146871 usb [usbdevs] [usb8] [patch] provide descriprive string fo p usb/146483 thompsa [usbdevs] [patch] Another USB FTDI device p usb/143448 gavin [usbdevs] [usb8] [patch] QUIRK: JMicron JM20336 USB/SA f usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google p usb/136761 usb [usbdevs][usb67][patch] Teach usbdevs / u3g(4) about H o usb/134631 usb [usbdevs] [patch] WiSPY DBx support requires usb tweak o usb/131900 usb [usbdevs] [patch] Additional product identification co o usb/129945 usb [usb67] [usbdevs] [patch] add u3g support for Longchee o usb/129251 usb [usbdevs] [usb67] [patch] Liebert UPS being assigned u p usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 o usb/123352 usb [usbdevs] [patch] Add Option GTMAX3.6/7.2 and Quallcom o usb/123351 usb [usbdevs] [patch] Add Reiner SCT cyberJack, Omnikey [2 o usb/119150 remko [usbdevs] [patch] new usbdevs for CDMA 1xEVDO devices o usb/118485 usb [usbdevs] [patch] Logitech Headset Workaround o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports 18 problems total. Problem reports for tag 'usbhid': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/116699 usb [usbhid] USB HID devices do not initialize at system b 1 problem total. Problem reports for tag 'uscanner': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/122025 usb [uscanner] [patch] uscanner does not attach to Epson R o usb/121426 usb [patch] [uscanner] add HP ScanJet 3570C o usb/117205 remko [uscanner] [patch] uscanner support for HP ScanJet 447 s usb/85067 usb [uscanner] Cannot attach ScanJet 4300C to usb device 4 problems total. Problem reports for tag 'uslcom': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/131912 usb [uslcom] [patch] New devices using Silicon Labs chips 1 problem total. Problem reports for tag 'uvisor': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/80935 usb [uvisor] [patch] uvisor.c is not work with CLIE TH55. 1 problem total. Problem reports for tag 'vesa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137822 [vesa] [hang] System crashes leaving X when running ve o kern/134504 [vesa] thinkpad t60 with ati x1400 in vesa console mod 2 problems total. Problem reports for tag 'vfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144695 [vfs] [patch] race condition in mounting a root-fs on o kern/142878 fs [zfs] [vfs] lock order reversal o kern/142083 [vfs] buffer overflow in vfs_mountroot_try (sys/kern/v o kern/140429 [vfs] [panic] Fatal trap 12: page fault while in kerne o kern/139127 [vfs] False negative vfs cache entry p kern/133439 kan [vfs] [panic] Kernel Panic in kern_vfs o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D 8 problems total. Problem reports for tag 'vga': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125710 [vga] Dragon_Saver Error 19 Freebsd 7.0 AMD64 o kern/64114 [vga] [patch] bad vertical refresh for console using R 2 problems total. Problem reports for tag 'vimage': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148155 net [vimage] Kernel panic with PF/IPFilter + VIMAGE kernel o kern/147950 virtualization[vimage] [carp] VIMAGE + CARP = kernel crash 2 problems total. Problem reports for tag 'vinum': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/79035 geom [vinum] gvinum unable to create a striped set of mirro o conf/47566 [vinum] [patch] add vinum status verification to perio 2 problems total. Problem reports for tag 'virtualpc': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/119809 gavin [virtualpc] MS Virtual PC 2007 - Install hung - Trying 1 problem total. Problem reports for tag 'vlan': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/146394 net [vlan] IP source address for outgoing connections o kern/146358 net [vlan] wrong destination MAC address p kern/142927 thompsa [vlan] [patch] handle parent interface link layer addr o kern/141843 net [em] [vlan] Intel txcsum and assigned vlan invoke wron o kern/140634 net [vlan] destroying if_lagg interface with if_vlan membe o kern/126874 net [vlan]: Zebra problem if ifconfig vlanX destroy o kern/121437 net [vlan] Routing to layer-2 address does not work on VLA o kern/117423 net [vlan] Duplicate IP on different interfaces 8 problems total. Problem reports for tag 'vm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147459 [vm] [panic] Kernel panic: vm_page / vdrop / vm_page_c f kern/140461 [vm] Fail to read from swap. The swap_pager.c contains o kern/133289 [vm] [panic] DEBUG_MEMGUARD with vm.memguard.desc="dev o kern/124963 alc [vm] [patch] old pagezero fixes for alc o kern/123634 [vm] [panic] kernel panic with FreeBSD 7-STABLE o kern/123013 [vm] panic "Bad tailq NEXT(%p->tqh_last) != NULL" s kern/121485 vwe [vm] panic with 7.0-RELEASE [regression] o kern/121234 [vm] vm_fault: fault on nofault o kern/87586 [diskless] [vm] [panic] Unable to use networked swap i o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once s i386/22944 alc [vm] [patch] isa_dmainit fails on machines with 512MB 11 problems total. Problem reports for tag 'vmware': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147793 emulation [vmware] cdrom handling, panic, possible race conditio o kern/118819 [vmware] FreeBSD 6.2 in VMware is unstable and there i o kern/109809 [vmware] CPU hits 100% when issuing the halt command ( 3 problems total. Problem reports for tag 'vr': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/123961 net [vr] [patch] Allow vr interface to handle vlans f kern/109477 yongari [vr] [patch] onboard via vt6103 ethernet does not work s kern/103495 vwe [vr] if_vr locks after carrier event s kern/94390 vwe [vr] poor network performance after promiscuous mode i o kern/90890 net [vr] Problems with network: vr0: tx shutdown timeout s kern/89305 vwe [vr] [patch] D-Link NIC with VIA Rhine II, lost of Net o kern/87506 net [vr] [patch] Fix alias support on vr interfaces s kern/80265 vwe [vr] D-Link NIC with VIA Rhine II has no carrier sign o kern/71045 [rl] [vr] DHCP-Request is sets other device's ip to nu 9 problems total. Problem reports for tag 'vuxml': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/129300 obrien [vuxml] editors/vim: document CVE-2008-3432 1 problem total. Problem reports for tag 'wi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143074 net [wi]: wi driver triggers panic o kern/141861 net [wi] data garbled with WEP and wi(4) with Prism 2.5 o kern/131776 net [wi] driver fails to init f kern/127145 net [wi]: prism (wi) driver crash at bigger traffic o kern/122319 net [wi] imposible to enable ad-hoc demo mode with Orinoco o kern/119225 net [wi] 7.0-RC1 no carrier with Prism 2.5 wifi card [regr o kern/115275 [wi] [panic] wi configure at boot time led to panic "i o kern/115002 net [wi] if_wi timeout. failed allocation (busy bit). ifco o kern/110065 [wi]: wi device cannot attach to D-Link DWL-520 rev. E o kern/109470 net [wi] Orinoco Classic Gold PC Card Can't Channel Hop o kern/107944 net [wi] [patch] Forget to unlock mutex-locks s kern/79323 [wi] authmod setup with ifconfig on dlink wlan card fa p kern/77913 net [wi] [patch] Add the APDL-325 WLAN pccard to wi(4) o kern/59183 imp [wi] wi problems with wi_cmd o kern/43625 imp [wi] wi(4) driver hangs after long data transfers o kern/39928 imp [wi] wi0 timeouts and hangs the system while sending d 16 problems total. Problem reports for tag 'wlan': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146517 net [ath] [wlan] device timeouts for ath wlan device on re o kern/146165 net [wlan] [panic] Setting bssid in adhoc mode causes pani o kern/140346 net [wlan] High bandwidth use causes loss of wlan connecti o kern/132885 net [wlan] 802.1x broken after SVN rev 189592 4 problems total. Problem reports for tag 'wlan_xauth': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/130311 net [wlan_xauth] [panic] hostapd restart causing kernel pa 1 problem total. Problem reports for tag 'wpa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/122331 [wpa] [panic] 7.0-RELEASE && panic in Wifi area with W 1 problem total. Problem reports for tag 'wpi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147862 net [wpi] Possible bug in the wpi driver. Network Manager o kern/145777 net [wpi] Intel 3945ABG driver breaks the connection after o kern/144987 net [wpi] [panic] injecting packets with wlaninject using o kern/144898 net [wpi] [panic] wpi panics system o kern/143874 net [wpi] Wireless 3945ABG error. wpi0 could not allocate o kern/143595 net [wpi] [panic] Creating virtual interface over wpi0 in o kern/142907 net [wpi] if_wpi unstable on ibm/lenovo x60 -- suspect fir o kern/140564 net [wpi] Problem with Intel(R) PRO/Wireless 3945ABG o kern/139079 net [wpi] Failure to attach wpi(4) o kern/138739 net [wpi] wpi(4) does not work very well under 8.0-BETA4 o kern/138427 net [wpi] [panic] Kernel panic after trying set monitor wl o kern/136943 net [wpi] [lor] wpi0_com_lock / wpi0 o kern/133613 net [wpi] [panic] kernel panic in wpi(4) o kern/128917 net [wpi] [panic] if_wpi and wpa+tkip causing kernel panic o kern/127102 net [wpi] Intel 3945ABG low throughput o kern/123256 net [wpi] panic: blockable sleep lock with wpi(4) o kern/121872 net [wpi] driver fails to attach on a fujitsu-siemens s711 f kern/121720 thompsa [wpi] wpi doesnt work if kernel has options SCHED_ULE 18 problems total. Problem reports for tag 'xe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/97401 [xe] Xircom CreditCard Ethernet 10/100, attach returne 1 problem total. Problem reports for tag 'xen': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148262 xen [xen] [panic] HYPERVISOR_update_va_mapping o kern/147248 xen [xen] 8.0-RELEASE-p3 i386 Xen DomU filesystem "bufwait o kern/145664 xen [xen] mutex vm page queue mutex not owned o kern/144629 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/143398 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/143340 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/143069 xen [xen] [panic] Xen Kernel Panic - Memory modified after o kern/141328 xen [xen] [panic] gstat exit causes kernel panic from unma o kern/140313 xen [xen] [panic] FreeBSD8 RC2 as PV domU crashes during c o kern/135421 xen [xen] FreeBSD Xen PVM DomU network failure - netfronc. o kern/135178 xen [xen] Xen domU outgoing data transfer stall when TSO i o kern/135069 xen [xen] FreeBSD-current/Xen SMP doesn't function at all o kern/134926 xen [xen] [panic] FreeBSD-current Xen DomU networking pani o i386/124516 kmacy [xen] FreeBSD-CURRENT Xen Kernel Segfaults when config o kern/118734 brucec [xen] FreeBSD 6.3-RC1 and FreeBSD 7.0-BETA 4 fail to b 15 problems total. Problem reports for tag 'xfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145411 fs [xfs] [panic] Kernel panics shortly after mounting an p kern/119298 kan [xfs] [patch] 7-Stable/sys/modules/xfs fails to make f o kern/102943 kan [xfs] kernel crash when unloading the xfs kernel modul 3 problems total. Problem reports for tag 'xl': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/136409 yongari [xl] doesn't compile with TX checksumming enabled o kern/132669 net [xl] 3c905-TX send DUP! in reply on ping (sometime) o kern/129352 net [xl] [patch] xl0 watchdog timeout o kern/113895 net [xl] xl0 fails on 6.2-RELEASE but worked fine on 5.5-R o kern/83354 [xl] When two 3c905's are in a Vectra Vl dhcp fails to s kern/18558 silby [xl] 3COM 905B realy realy slow when using multiple ad 6 problems total. Problem reports for tag 'xpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144233 mjacob [xpt] xpt_rescan/XPT_SCAN_LUN should honor a wildcard 1 problem total. Problem reports for tag 'zfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148709 fs [zfs] [panic] running du with zfs filesystem with shar o kern/148655 fs [zfs] Booting from a degraded raidz no longer works in o kern/148504 fs [zfs] ZFS' zpool does not allow replacing drives to be o kern/148490 fs [zfs]: zpool attach - resilver bidirectionally, and re o kern/148368 fs [zfs] ZFS hanging forever on 8.1-PRERELEASE o bin/148296 fs [zfs] [loader] [patch] Very slow probe in /usr/src/sys o kern/148138 fs [zfs] zfs raidz pool commands freeze o kern/147903 fs [zfs] [panic] Kernel panics on faulty zfs device o kern/147881 fs [zfs] [patch] ZFS "sharenfs" doesn't allow different " o kern/147790 fs [zfs] zfs set acl(mode|inherit) fails on existing zfs o kern/146528 fs [zfs] Severe memory leak in ZFS on i386 o kern/146410 pjd [zfs] [patch] bad file copy performance from UFS to ZF f kern/145802 pjd [zfs] page fault under load o kern/145778 fs [zfs] [panic] panic in zfs_fuid_map_id (known issue fi s kern/145712 fs [zfs] cannot offline two drives in a raidz2 configurat f kern/145339 pjd [zfs] deadlock after detaching block device from raidz o kern/145272 fs [zfs] [panic] Panic during boot when accessing zfs on o kern/145238 fs [zfs] [panic] kernel panic on zpool clear tank o kern/145229 fs [zfs] Vast differences in ZFS ARC behavior between 8.0 p kern/144447 fs [zfs] sharenfs fsunshare() & fsshare_main() non functi s kern/144415 fs [zfs] [panic] kernel panics on boot after zfs crash o kern/144234 fs [zfs] Cannot boot machine with recent gptzfsboot code o bin/143572 [zfs] zpool(1): [patch] The verbose output from iostat o kern/143184 fs [zfs] [lor] zfs/bufwait LOR o kern/142914 fs [zfs] ZFS performance degradation over time o kern/142878 fs [zfs] [vfs] lock order reversal o kern/142872 pjd [zfs] ZFS ZVOL Lockmgr Deadlock o kern/142594 pjd [zfs] Modification time reset to 1 Jan 1970 after fsyn o kern/142489 fs [zfs] [lor] allproc/zfs LOR o kern/142306 fs [zfs] [panic] ZFS drive (from OSX Leopard) causes two f kern/141718 pjd [zfs] [panic] kernel panic when 'zfs rename' is used o o kern/141305 fs [zfs] FreeBSD ZFS+sendfile severe performance issues ( o kern/141010 fs [zfs] "zfs scrub" fails when backed by files in UFS2 o kern/140888 fs [zfs] boot fail from zfs root while the pool resilveri o kern/140661 fs [zfs] [patch] /boot/loader fails to work on a GPT/ZFS- o kern/140640 fs [zfs] snapshot crash o kern/140433 mm [zfs] [panic] panic while replaying ZIL after crash o kern/139725 fs [zfs] zdb(1) dumps core on i386 when examining zpool c o kern/139715 fs [zfs] vfs.numvnodes leak on busy zfs o kern/139564 fs [zfs] [panic] 8.0-RC1 - Fatal trap 12 at end of shutdo s kern/139039 pjd [zfs] zpool scrub makes system unbearably slow o kern/138790 fs [zfs] ZFS ceases caching when mem demand is high f kern/138709 mm [zfs] zfs recv hangs, pool accesses hang in rrl->rr_cv f kern/137037 fs [zfs] [hang] zfs rollback on root causes FreeBSD to fr o kern/135546 fs [zfs] zfs.ko module doesn't ignore zpool.cache filenam o kern/135050 fs [zfs] ZFS clears/hides disk errors on reboot o kern/134491 fs [zfs] Hot spares are rather cold... f kern/133150 fs [zfs] Page fault with ZFS on 7.1-RELEASE/amd64 while w f kern/130133 kmacy [panic] [zfs] 'kmem_map too small' caused by make clea o kern/129059 fs [zfs] [patch] ZFS bootloader whitelistable via WITHOUT f kern/128633 pjd [zfs] [lor] lock order reversal in zfs f kern/128514 pjd [zfs] [mpt] problems with ZFS and LSILogic SAS/SATA Ad f kern/127492 pjd [zfs] System hang on ZFS input-output f kern/127375 kmacy [zfs] If vm.kmem_size_max>"1073741823" then write spee f kern/126703 kmacy [panic] [zfs] _mtx_lock_sleep: recursed on non-recursi s kern/125738 fs [zfs] [request] SHA256 acceleration in ZFS f bin/124424 fs [zfs] zfs(8): zfs list -r shows strange snapshots' siz f sparc/123566 kmacy [zfs] zpool import issue: EOVERFLOW f kern/122888 pjd [zfs] zfs hang w/ prefetch on, zil off while running t o bin/121366 fs [zfs] [patch] Automatic disk scrubbing from periodic(8 f kern/120210 kmacy [zfs] [panic] reboot after panic: solaris assert: arc_ f kern/119735 fs [zfs] geli + ZFS + samba starting on boot panics 7.0-B f misc/118855 pjd [zfs] ZFS-related commands are nonfunctional in fixit o kern/117158 fs [zfs] zpool scrub causes panic if geli vdevs detach on o bin/115361 fs [zfs] mount(8) gets into a state where it won't set/un 65 problems total. Problem reports for tag 'zlib': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/118317 delphij [zlib] [patch] Incorrect gzeof() return value in zlib o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl 2 problems total. Problem reports for tag 'zyd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138292 weongyo [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 f usb/117150 weongyo [zyd] usb zyd device under moderate load panics system 2 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Jul 26 11:06:06 2010 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 71AA3106566B for ; Mon, 26 Jul 2010 11:06:06 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 47B1B8FC0A for ; Mon, 26 Jul 2010 11:06:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6QB66ol079898 for ; Mon, 26 Jul 2010 11:06:06 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6QB63QZ079896 for freebsd-bugs@FreeBSD.org; Mon, 26 Jul 2010 11:06:03 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 26 Jul 2010 11:06:03 GMT Message-Id: <201007261106.o6QB63QZ079896@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list X-Mailman-Approved-At: Mon, 26 Jul 2010 12:05:32 +0000 Cc: Subject: Current problem reports X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2010 11:06:06 -0000 (Note: an HTML version of this report is available at http://www.freebsd.org/cgi/query-pr-summary.cgi .) 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. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/148955 avilla [patch] graphics/opencv: use libv4l, fix gcc45 build o ports/148954 portmgr [Repocopy] New port: www/tomcat7 o ports/148953 [PATCH] x11-fonts/dejavu: simplify Makefile, take main o docs/148952 doc Missing IFCAP_* macro descriptions in ifnet(9) f ports/148951 mm [PATCH] lang/php52: update to 5.2.14 f ports/148950 Please upgrade www/grails to 1.3.3 o ports/148949 [maintainer-update] www/xpi-modify_headers patch for f o ports/148948 tdb [patch] sysutils/freecolor: mark as only for i386, res o ports/148947 perl [PATCH] databases/p5-DBI: update to 1.613 o ports/148946 [MAINTAINER-UPDATE] sysutils/moosefs-master update to o ports/148945 [MAINTAINER-UPDATE] sysutils/moosefs-chunkserver updat o ports/148944 [MAINTAINER-UPDATE] sysutils/moosefs-client update to o ports/148941 [NEW PORT] www/p5-Google-Code-Upload: Uploading files o ports/148940 ahze [PATCH] print/py-cups: update to 1.9.51, take maintain o ports/148939 Maintainer update: security/gorilla bump version & put o ports/148938 mnag [patch] devel/libevent: clock_gettime(2) is in libc, n f ports/148937 [PATCH] print/cups-samba: improve installation message o ports/148936 delphij [PATCH] net/openldap24-server: fix build openldap24-cl o ports/148935 [NEW PORT] deskutils/tnote: A small note taking progra o ports/148934 mnag [PATCH] databases/memcached: update to 1.4.5 o ports/148933 [MAINTAINER] sysutils/duplicity-devel: update to 0.6.0 f ports/148932 [patch] math/units update to 1.88 o kern/148928 ipfw [ipfw] Problem with loading of ipfw NAT rules during s o ports/148927 Mark port as deprecated: mail/sympa-elixus o i386/148926 i386 make gcc generate i486 code by default f ports/148925 [PATCH] net/nss_ldap: Use $SUB_FILES instead of invoki o ports/148924 anders [PATCH] multimedia/ffmpeg2theora: update to 0.27 o ports/148923 Maintainer update: mail/sympa o bin/148922 uptime(1) command output inconsistency after boot f ports/148921 jsa Upgraded multimedia/vlc port to release 1.1.1 o ports/148920 sylvio update port: deskutils/znotes up to 0.4.3 f ports/148919 graphics/mapnik not longer broken o ports/148918 openoffice [patch] editors/openoffice.org-3-devel/Makefile fixes f ports/148917 makc Update port: deskutils/calcurse and maintainership req o bin/148915 [patch] fix telnetd(8) if and im options to behave lik o ports/148914 net-mgmt/mrtg 2.16.2 cannot run with perl 5.12.1 o ports/148912 anray [UPDATE] graphics/pecl-imagick: update to 3.0.0 o ports/148911 maintainer update: mark security/isolate forbidden due o ports/148908 sylvio [MAINTAINER] net/p5-POE-Component-Client-Twitter: [SUM o ports/148907 gnome deskutils/planner does not build with WITH_EVO=true o ports/148905 sylvio [MAINTAINER] www/p5-HTTP-Cookies-w3m: [SUMMARIZE CHANG o ports/148902 sylvio [MAINTAINER] japanese/p5-WWW-MobileCarrierJP: update t o ports/148901 New port: sysutils/gdisk o ports/148900 sylvio [NEW PORT] audio/mp3-archive-tools: A set of tools to o ports/148899 sylvio [NEW PORT] audio/mp3lint: A configurable tool to check o ports/148898 sylvio [NEW PORT] audio/libmp3-archive-perl: Perl module to m o ports/148897 clsung [PATCH] devel/p5-Module-Build: use YAML::Tiny o ports/148896 skv [PATCH] lang/perl5.12: remove duplicated entry in pkg- o bin/148894 [patch] Batch of typo fixes for HEAD src files f ports/148893 gabor UPDATE fix security/swatch rc.d script o docs/148891 doc [patch] Fix a few typos in non-source files (HEAD) o ports/148890 sylvio new port: multimedia/mediadownloader Search and downlo o ports/148888 makc [MAINTAINER] security/gpgme: Fix build without libassu f ports/148887 [PATCH] dns/opendnssec: [SUMMARIZE CHANGES] o ports/148886 wen [PATCH] dns/rubygem-dnsruby: update to 1.48 o kern/148885 ipfw [ipfw] [patch] ipfw netgraph ignores net.inet.ip.fw.on o ports/148884 sylvio [MAINTAINER] textproc/p5-Validator-Custom: update to 0 o ports/148883 sylvio [MAINTAINER] textproc/p5-JavaScript-Minifier-XS: updat o ports/148882 sylvio [MAINTAINER] textproc/p5-CSS-Minifier-XS: update to 0. o kern/148881 [libdisk] [patch] libdisk emits errors w/ disks that c o ports/148880 philip [patch] games/wesnoth: remove NLS option, plug gettext o ports/148879 portmgr [patch] Mk/bsd.port.mk: extend IA32_BINARY_PORT to sup o ports/148878 clsung [patch] port security/snort update to 2.8.6.1 o ports/148877 clsung [PATCH] update textproc/nltk to 2.0b8 o ports/148876 nivit [PATCH] update devel/py-configobj to 4.7.2 o ports/148875 ale [patch] Fix www/tomcat6 rc script o ports/148874 [MAINTAINER] misc/latex-mk: update to 2.0 o ports/148872 sylvio Update port: www/trac-gitplugin Upgrade to version for o misc/148871 bad packages o ports/148870 [PATCH] databases/slony1v2: update to 2.0.4 o ports/148869 mnag [patch] www/lighttpd - - set the correct signal for si o ports/148868 [patch] mail/spampd - set the correct signal for sig_s o ports/148867 az [patch] net-p2p/dcd - set the correct signal for sig_s o ports/148865 [PATCH] update devel/activitymail to 1.26 f ports/148863 makc [patch] update plasma-applet-cwp 1.0.4 -> 1.1.1 o i386/148862 i386 page fault while in kernel mode at _mtx_lock_sleep o ports/148859 dougb Fix config file handling for mail/alpine o ports/148858 [PATCH] security/chaosreader: fix "devision by zero" e o kern/148857 bz [patch] [ip6] Panics due to insufficient locking in ne o ports/148856 danger [patch] www/uwsgi update to 0.9.5.4 o ports/148855 New port: www/rubygem-domainatrix (URL/domain parser) o ports/148854 miwi [PATCH]security/tor-devel: update to 0.2.2.14-alpha o ports/148851 mono [PATCH] www/moonshine: update to 0.7 o ports/148850 [PATCH] update net/scapy to 2.1.1 f ports/148849 sahil sysutils/logrotate update request to ver. 3.7.9 o i386/148848 i386 [hang] Load freezing at boot on HP Mini 311 o ports/148844 portmgr [repocopy] Repocopy comms/mgetty+sendfax/pkg-install t o ports/148843 bland [PATCH] devel/py26-icu: add support for ICU 4.4 o ports/148842 sobomax [PATCH] devel/py26-interface: update to 1.0 f ports/148841 net/nss_ldapd not removed or added to MOVED o ports/148838 krion [PATCH] devel/pcre: update to 8.10 o ports/148837 [PATCH] databases/postgresql-server: fix build with ic o bin/148836 roberto [ntp] [patch] Update to NTP in base system o ports/148835 wen Update port: sysutils/tmux o ports/148834 wen graphics/mapserver - PDF support causes mapserver to c o ports/148833 vbox emulators/virtualbox-ose doesn't build on FreeBSD-8.1 o ports/148832 kuriyama [UPDATE] graphics/flasm: update to 1.62 o ports/148831 stas Update ports/deskutils/calibre to current version o ports/148830 yzlin Upgrade www/py-cssutils to current version o ports/148828 [NEW PORT] net/py26-eventlet: Concurrent networking li o kern/148827 ipfw [ipfw] divert broken with in-kernel ipfw o docs/148825 doc [patch] pom(6): a typo in the manpage o ports/148824 apache [PATCH] devel/apr1: fix build with databases/db50 (WIT o www/148823 www [patch] Catchup ru/index.xsl with last rev 1.169 bette f ports/148822 wxs [patch] sysutils/coreutils update to 8.5 o ports/148821 [NEW PORT] security/ccsrch: Is a tool that searches fo o kern/148820 [patch] [ext2fs] duplicated comment block cleanup f ports/148819 lioux [PATCH] www/opera-linuxplugins: Update to 10.60 build f ports/148818 lioux [PATCH] www/opera: Update to 10.60 build 6386 o ports/148816 dinoex print/cups-base: pam.d/cups getting wrong module while o ports/148814 www/moinmoin: fix a bug of make instance with standalo f ports/148813 [PATCH] www/httrack: fix menu icons display o ports/148811 makc new port: x11-themes/cursor-chameleon-* a few cursor t o ports/148808 [patch] Mk/bsd.licenses.mk: fix filename collisions o kern/148807 net [panic] 8.1-RELEASE "panic: sbdrop" and "panic: sbsndp o bin/148806 imp [patch] pc-sysinstall(8) misc cleanup o amd64/148805 amd64 [hang] FreeBSD 7.2, 8.0, and 9.0 hang during install a f ports/148804 graphics/gdal - Thread support broken f ports/148803 wxs [patch] databases/couchdb -- update to 1.0.0 f ports/148802 glarkin [PATCH] audio/audacity-devel: Fix build error and othe o kern/148801 [kernel] [patch] obsolete CAPABILITIES comment after s o ports/148797 [MAINTAINER] www/ap22-mod_vhs: update to 1.1.0 o ports/148796 danfe x11/nvidia-driver: Being possible to get compiled on T o www/148795 www [patch] ru/about.sgml: MFen 1.3 -> 1.14 o ports/148790 [MAINTAINER] net-mgmt/zabbix-frontend: fix sqlite usag o ports/148786 [MAINTAINER] net-mgmt/zabbix-server: fix libssh2 check o kern/148785 [twa] [patch] twa driver doesn't pass proper max. io s o kern/148784 net [arp] arp pub not working properly o ports/148783 portmgr [bsd.port.mk] [patch] add LATEST_LINK and CONFLICTS to o kern/148781 [kernel] SIGPIPE after update to 8.1-RC2 o i386/148780 i386 panic: mtx_lock() of spin mutex (null) @ /usr/src/sys/ o ports/148779 wxs Update port: lang/scala o ports/148777 makc [New Port] sysutils/qjail: Utility to deploy large num o ports/148776 sylvio update databases/squirrel-sql to 3.1.2 o ports/148774 danfe x11/nvidia-driver: Being possible to get compiled on T f kern/148772 yongari [alc] alc0 does not send/receive packets if not plugge o ports/148769 dinoex [PATCH] net/sixxs-aiccu: revamp rc script, add seconda o ports/148763 makc new port: x11-fonts/font-pingwi onts package PingWi Ty o ports/148762 New port: devel/p5-Getopt-Compact getopt processing in o ports/148761 NEW port freeswitch-pizzademo o conf/148758 [build] [patch] wpi license not required when building f ports/148757 update port: net/abills up to 0.51 o ports/148755 wxs security/libgcrypt update to 1.4.6 o ports/148754 portmgr [patch] Mk/bsd.port.mk: allow using MAKE_JOBS_NUMBER w f ports/148753 java [patch] java/openjdk6 does not respect MAKE_JOBS_(SAFE o kern/148748 [ataraid] Metadata Read Write Inconsistency o ports/148747 [MAINTAINER] korean/libhangul : update to 0.0.11 o ports/148744 x11 Add more x11 applications to x11/xorg-apps o ports/148742 lev [PATCH] devel/subversion: remove dependency autodetect o kern/148741 multimedia [sound] Headphones are deaf (do not work) on Lenovo Th o bin/148733 a potential buffer overflow in sh(1) o ports/148730 decke lang/slib, lang/slib-guile, lang/slib-gauche update o ports/148727 mva devel/cedet: Autoloading failed to define function sem f ports/148724 makc hebrew/hspell: update to 1.1 o ports/148719 jhay [PATCH] net/p5-Net-SMPP: update to 1.14 f ports/148717 sylvio maintainer update: multimedia/arista to 0.9.5 o ports/148715 wxs [patch] port sysutils/bacula-server small fix for scri o ports/148712 x11 [UPDATE] x11-drivers/xf86-video-ati to v6.13.1 o ports/148711 new port: sysutils/swapmon: monitor swapusage, add swa o kern/148710 [sysctl][patch] Document sys/kern sysctls o kern/148709 fs [zfs] [panic] running du with zfs filesystem with shar f ports/148707 wxs [PATCH] mail/postgrey: update to 1.33 o ports/148704 clsung [PATCH] databases/p5-BerkeleyDB: update to 0.42 s usb/148702 usb [request] IO DATA USB-RSAQ5 support on FreeBSD-8.0 o docs/148701 doc [patch] crypto(9): Minor typographical error o ports/148699 nivit New port: www/py-cherrypy-devel A pythonic web framewo s kern/148698 [panic] Panic at boot due to integer overflow computin p docs/148697 doc [patch] u3g.4 duplicate "Is" o ports/148695 portmgr [bsd.port.mk] [patch] Easier / automatic regression-te o ports/148694 www/firefox-sync updated from 1.4 to 1.4.1 f ports/148693 jpaetzel Changing PORTNAME of net/freeswitch-core buggered the o ports/148691 [NEW PORT] multimedia/gtk-recordmydesktop: GTK+ fronte o ports/148690 [patch] graphics/gcolor2: fix for running on amd64 o kern/148689 ipfw [ipfw] antispoof wrongly triggers on link local IPv6 a f kern/148688 ae [geom][panic] panic when committing undone partitionin p kern/148687 ae [geom] gpart prints invalid partition number when dest o bin/148686 [patch] ftp-proxy(8): ftp-proxy -T tag patch for FBSD o www/148684 www [patch] ru/releng/index.sgml: MFen 1.95 -> 1.286 o docs/148683 doc connect(2) man page does not show ECONNRESET error in o docs/148681 doc [patch] ng_atm(4): Minor typographical error o docs/148680 doc [sysctl][patch] Document some sys/kern sysctls f ports/148679 glarkin [MAINTAINER] databases/sqlite-ext-inet: Changed the me o kern/148676 [panic] kernel panic lockmgr: locking against myself o amd64/148675 amd64 kernel panics - reboots o ports/148674 fix graphics/mupdf f ports/148672 glewis [PATCH] java/eclipse-sysdeo-tomcat: update path for ne f ports/148671 glewis [PATCH] java/eclipse-sqlexplorer: update path for new o ports/148668 glewis [PATCH] java/eclipse-PropertiesEditor: update path for f ports/148665 glewis [PATCH] java/eclipse-lomboz: update path for new eclip f ports/148663 glewis [PATCH] java/eclipse-log4e: update patch for new eclip o bin/148661 imp [patch] pc-sysinstall(8) updates to support ftp instal o conf/148656 rc rc.firewall(8): {oip} and {iip} variables in rc.firewa o kern/148655 fs [zfs] Booting from a degraded raidz no longer works in o ports/148652 x11 x11-drivers/xf86-video-intel support for HM55 f ports/148650 [patch] www/tomcat55 remove java hardcoding o ports/148647 version upgrade: sysutils/ldap-account-manager o kern/148646 des [linprocfs] [patch] Implementation of the "environ" fi o kern/148644 ed [uart] [patch] vgetty play voice file fails with 8.0 R o ports/148643 New port: multimedia/mp4v2, replaces multimedia/mpeg4i f ports/148641 [PATCH] graphics/ipe: Update to latest version (now us o ports/148640 acm [PATCH] upgrade games/ufoai & games/ufoai-data to the s ports/148637 portmgr [bsd.port.mk] Options are ignored for any port that de o ports/148631 [NEW PORT] net/scribe: Aggregating log data streamed i o ports/148630 sobomax [PATCH] net/asterisk16: fix asterisk16 compilation wit o ports/148628 [new port] ftp/uftp3 o i386/148624 i386 PERC H200 Controller on Dell R610 Not recognized o ports/148622 [maintainer-update] java/veditor 0.7.1_1 o ports/148621 girgen [PATCH] java/eclipse-cdt: update path for new eclipse f ports/148618 glewis [PATCH] java/eclipse-clay-core: update path for new ec f ports/148615 glewis [PATCH] java/eclipse-EPIC: Update path for new eclipse f ports/148613 glewis [PATCH] devel/mercurialeclipse: Update path for new ec f ports/148612 glewis [PATCH] devel/subclipse: Update paths for new eclipse o ports/148611 [PATCH] www/tomcat55: update to 5.5.30 o ports/148610 Submitting fix for math/emc2 port (size mismatch) o kern/148609 [libdialog] [patch] printing to a checklist window on o ports/148608 new port: sysutils/pcpustat, Per-CPU usage statistics o bin/148606 imp [patch] pc-sysinstall(8) updates to support installati o ports/148605 security/ipsec-tools rc.d/racoon startup script fails o ports/148604 clsung [patch] textproc/diffstat: prefer xz(1) over lzcat(1) o ports/148601 [NEW PORT] x11-fonts/droid-fonts-ttf o ports/148599 [patch] devel/bmake: update to 20100618 snapshot o ports/148597 trasz [PATCH] emulators/lisaem: remove bash building depende o ports/148593 nivit [PATCH] devel/py26-virtualenv: remove useless bash dep o ports/148591 x11 information note for x11-drivers/xf86-input-synaptics f ports/148589 wen [patch] update astro/gpsd o ports/148587 tabthorpe [New port] mail/squirrelmail-squirrel_logger-plugin: o ports/148586 dns/ddclient - Added periodic daily script to force up o ports/148585 skv textproc/docbook-xsl: docbook-xsl-1.75.2 fails to inst f ports/148583 sylvio [PATCH] databases/dbtool: remove bash dependency o kern/148581 [libc] fopen(3) fails with EMFILE if there are more th o kern/148580 [sysctl][patch] Document some sys/kern sysctls o ports/148579 new version databases/xtrabackup 1.3 f ports/148559 miwi Update port: graphics/swftools p kern/148546 jhb [ipmi] Buffer overrun in the impi driver while process p docs/148545 maxim typo in ath(4) man page o ports/148544 flz [PATCH] devel/cgit: update to 0.8.3.2 f ports/148543 sahil [PATCH] www/grails: upgrade to 1.2.3 o ports/148542 [MAINTAINER] net-mgmt/zabbix16-server: set DEPRECATED o kern/148540 geom [geom] geom_sched breaks ata devices f misc/148538 remko src upgrade RELENG_7 to RELENG_8 fails o amd64/148537 amd64 IP respond to ping even if the attached interface is n o ports/148536 glewis [UPDATE] ports/java/jdk16 to JDK 6 Update 21 p docs/148535 doc [patch] kldload.8 -q option corrections p docs/148534 doc [patch] iscontrol.8 missing option o ports/148531 clsung Update port:devel/buildbot update to 0.8.1 o ports/148530 New port: devel/buildbot-slave Slave part of BuildBot o bin/148528 cperciva [patch] portsnap(8): add new command mode o amd64/148526 amd64 [ahci] ahci driver does not boot on AMD chip o ports/148521 NEW port audio/freeswitch-pizzademo o ports/148519 miwi New port: devel/pear-PHP_Debug Port for the PEAR PHP_D o threa/148515 threads Memory / syslog strangeness in FreeBSD 8.x ( possible o kern/148510 [sysctl][patch] Document some sysctls o i386/148509 i386 [boot] [patch] Improvements to i386/boot2's comments o kern/148504 fs [zfs] ZFS' zpool does not allow replacing drives to be f ports/148503 [patch] graphics/mupdf: remove forceful optimization p kern/148502 delphij [arcmsr] arcmsr driver offlines all devices on a SAS p p docs/148499 maxim [patch] fix spelling in exports(5) o ports/148496 maho math/octave: optional build with hdf5 v1.6 or v1.8 o ports/148494 clsung databases/p5-BerkeleyDB: depend on BDB 4.7+ f ports/148492 python Update of devel/py-ice to 3.4.1 o kern/148490 fs [zfs]: zpool attach - resilver bidirectionally, and re s amd64/148489 amd64 [ata] Generic driver is used for Nvidia SATA (nforce? f ports/148487 lwhsu [new port] www/py-formalchemy o ports/148486 nivit [patch] update databases/py-sqlalchemy to 1.6.2 o ports/148485 itetcu [patch] port mail/dspam small Makefile fix f kern/148483 trap 12 : page fault while in kernel mode o ports/148475 gecko [patch] Mk/bsd.gecko.mk: use tar(1) for copying trees o arm/148474 arm MMC timeout too short durring enumeration of cards. p kern/148473 weongyo Infinite loop in broadcom43xx driver f ports/148472 net/kojoney - missing dependency on devel/py-asn1 o bin/148471 fdisk(8) prompts with negative partition size [regress o ports/148468 [UPDATE] irc/ezbounce o ports/148465 [maintainer update] Update port:finance/openerp-web to o ports/148462 [New port] www/wordpress-themes: wordpress featured th o ports/148459 games/ggz-client-libs fails to configure f ports/148457 lang/oo2c fix and update o ports/148455 alepulver fixed games/egl compilation problem o ports/148454 games/freebsd-carddeck-kde4: freebsd's kde card deck d o ports/148448 obrien [patch] lang/pcc update o ports/148445 wen New port: devel/egenix-mx-base eGenix.com mx Base Dist o i386/148444 i386 [hang] intel driver freezes system with 855gm o ports/148439 skreuzer net-mgmt/cacti-spine does not compile due to a net-snm o ports/148438 new port: archivers/squeeze o kern/148430 ipfw [ipfw] IPFW schedule delete broken. o kern/148429 ipfw net.inet.ip.dummynet.io_fast broken or documentation i o ports/148425 delphij net/openldap24-sasl-client segfaults on i386 f ports/148419 stas x11-toolkits/ocaml-lablgtk2 compilation problems o ports/148415 new port: devel/libsysinfo, GNU libc's sysinfo port fo o ports/148411 New port: audio/madfufw M-Audio DFU Firmware for USB s o ports/148406 python [PATCH] lang/python26: fix build backage without threa o docs/148405 doc [handbook] Handbook instructions to populate diskless o ports/148403 [patch] ftp/proftpd-devel Add shaper module option o ports/148401 python www/rssdler: rename to www/py-rssdler o ports/148398 [NEW PORT] net/omcmd: CLI utility for performing OMAPI o ports/148394 acm emulators/mupen64plus depends on broken port emulators o alpha/148392 alpha Users of Alpha platform should stay with Dovecot 1.1.1 o ports/148389 new port: vietnamese/x-unikey, Vietnamese input method o ports/148388 Port Update: security/gorilla Password safe written in o ports/148387 New port: devel/couchapp Utilities to make standalone f ports/148384 amdmi3 [UPDATE] astro/merkaartor f ports/148373 amdmi3 [UPDATE] games/nettoe f ports/148371 sahil [PATCH] mail/dbmail: update to 2.2.16 o ports/148370 ashish new port: dns/checkdns-se, DNS checker from the folks o kern/148368 fs [zfs] ZFS hanging forever on 8.1-PRERELEASE o kern/148367 [syscons] [patch] Add loader tunable to override SC_HI f ports/148364 araujo [PATCH] sysutils/eiciel update to 0.9.8 o ports/148363 [PATCH] net/rtg: stop overwriting user configs, added o ports/148362 rene [PATCH] net/mDNSResponder update to 214.3.2 o kern/148361 [ata] [panic] Kernel Panic, With Faulty Drives o ports/148353 stas Change primary source for multimedia/xmms distfile o bin/148350 sysinstall [patch] sysinstall(8) does not set "ntpdate chosen ser p i386/148344 tijl [patch] i386 mcontext has fsbase and gsbase fields swa o ports/148340 x11 x11-drivers/xf86-video-neomagic: unresolved symbol xf8 a ports/148335 cy security/krb5 needs a patch or update o ports/148332 miwi [NEW PORT] devel/pecl-xhprof: A Hierarchical Profiler o ports/148329 obrien shells/bash broken requires libiconv o ports/148325 [patch] net-p2p/amule2: fix WITHOUT_NLS plist and gcc4 o kern/148322 net [ath] Triggering atheros wifi beacon misses in hostap f ports/148321 [PATCH] mail/quickml: user USERS/GROUPS o ports/148320 lth [PATCH] net-mgmt/ifgraph: use USERS/GROUPS o ports/148319 decke [PATCH] net-mgmt/nefu: convert to USERS/GROUPS o kern/148317 net [ath] FreeBSD 7.x hostap memory leak in net80211 or At f ports/148316 net/quagga 0.99.16 - OSPF broken o ports/148314 stas [PATCH] editors/slime: update to 20100622 and cleanup o ports/148311 danger www/uwsgi: webservers modules missing f ports/148310 ashish [PATCH] devel/scons doesn't respect NO_INSTALL_MANPAGE f ports/148309 nemoliu [PATCH] net/p5-IO-INET6: rename to net/p5-IO-Socket-IN o kern/148307 adrian [ath] [patch] Incorrect alignment checks in sys/mips/a o kern/148302 Firewire-attached "My Book" drive gets no device node o ports/148301 suz net/mcast-tools: missing autotools dependency in make. o bin/148296 fs [zfs] [loader] [patch] Very slow probe in /usr/src/sys o ports/148295 pav www/neon28 -> www/neon29, get all ports depend on neon f ports/148294 itetcu Update opera and opera-linuxplugins to 10.60 o kern/148290 pf [pf] "sticky-address" option of Packet Filter (PF) blo o ports/148282 [PATCH] www/xpi-tabmixplus: fix XPI_ID f ports/148279 Update ports textproc/ibus to 1.3.5 o ports/148277 x11-toolkits/fltk2 segmentation fault f ports/148276 Update ports chinese/ibus-chewing to 1.3.4 f ports/148272 gnome polkit-gnome-authen core dumps when starting gnome f ports/148269 glarkin [PATCH] sysutils/ipmitool: Code cleanup found when bui o ports/148267 glarkin port install problem if license framework is enabled f ports/148264 bf math/R: Error: segfault from C stack overflow o kern/148262 xen [xen] [panic] HYPERVISOR_update_va_mapping o kern/148260 pf [pf] [patch] pf rdr incompatible with dummynet o ports/148255 skv lang/perl5.10: fails to build when uname contains `=' p bin/148253 brucec [patch] sysinstall(8): sysinstall partition= cre o ports/148251 hrs update print/acroread9 o ports/148250 portmgr [bsd.port.mk] [patch] xz memory limit prevents port bu o ports/148249 anray mail/masqmail - project has moved to a new upstream ma o ports/148248 apache [NEW PORT]: www/mod_rivet - Apache Rivet (inline Tcl s o ports/148246 hselasky multimedia/webcamd could pass dvb tuner remote events o ports/148244 gnome x11/gnome2: gnome desktop and HAL prevent umount witho o ports/148238 net/quagga: multicast join failed o ports/148236 lme games/scummvm (1.1.1) doesn't support SCUMM engine o ports/148234 pkg_install fails for some octave-forge-* ports o ports/148231 Remove math/octave-forge-spanish o ports/148230 Dependency list change for math/octave-forge o ports/148229 Update of math/octave-forge-ga o ports/148228 Update devel/ccache to 3.0 release o ports/148225 [maintainer-update] www/squidguard: fix installation a f ports/148223 mva [PATCH] editors/hte ability to install as hte instead f bin/148220 sysinstall sysinstall(8): 9.0-current gets "Cannot resolv hostnam o ports/148213 girgen [PATCH] databases/postgresql-jdbc: update to 8.4.701 ( o ports/148210 hrs print/jadetex: fix build o ports/148207 stas [PATCH] lang/sbcl: update to 1.0.39.0 f ports/148206 miwi [patch] databases/pecl-memcache - fix delete with rece o kern/148204 fs [nfs] UDP NFS causes overload o bin/148201 sysinstall sysinstall(8): core dump (Error 10) while trying to in o ports/148200 mm [patch] fix multimedia/ffmpeg build on powerpc64 o ports/148196 mm devel/binutils: ignores libmap.conf(5) or missing *@GL o ports/148191 sysutils/ldap-account-manager version update o ports/148190 portmgr [patch] Fix some spelling and grammar mistakes in bsd. o usb/148189 remko [usbdevs] [usb8] [patch] provide descriptive string fo o ports/148181 games/ftjava: wrong site address o kern/148179 [libc] Possible Memory Leak in getaddrinfo(3) f ports/148170 net/sslh: patch that add rc startup script f ports/148168 [PATCH] update deskutils/alexandria to 0.6.6 o ports/148166 demon [patch] port devel/p5-Locale-gettext package do not fo o ports/148162 mnag [PATCH] databases/sqlite3 fails with NO_INSTALL_MANPAG r ports/148158 portmgr [PATCH] net/p5-IO-Socket-INET6: update to 2.65 o kern/148157 ipfw [ipfw] IPFW in kernel nat BUG found in FreeBSD 8.1-PRE o ports/148156 rene [MAINTAINER] devel/doxygen: update to 1.7.1 o kern/148155 net [vimage] Kernel panic with PF/IPFilter + VIMAGE kernel o amd64/148152 amd64 [boot] Run levels crash on boot up for dv7-1130US HP L o bin/148150 Poor file(1) performance f ports/148147 linimon graphics/ipe can't be built without portdocs (NOPORTDO o ports/148146 python New Port:: devel/py-tsearchpath f ports/148145 print/cups-samba: Add ability to use difference samba o conf/148144 ipfw [patch] add ipfw_nat support for rc.firewall simple ty f bin/148143 sysinstall sysinstall(8) 8.1-RC1 segfault o kern/148138 fs [zfs] zfs raidz pool commands freeze o conf/148137 ipfw [ipfw] call order of natd and ipfw startup scripts r ports/148136 cvs [REPOCOPY] deskutils/sunbird --> deskutils/lightning o kern/148130 [syscons] Inappropriate ioctl for device o ports/148124 mono building multimedia/moonlight fails o ports/148120 pgollucci [PATCH] update devel/rubygem-spruz 0.1.1 -> 0.1.3 o ports/148119 pgollucci [PATCH] update ftp/rubygem-curb 0.7.5 -> 0.7.7 o kern/148112 net [ath] Atheros 9285 cannot register with wifi AP (timeo o kern/148108 net [bge] FreeBSD 7.2 or 8.0 does not recognize, 4.11 can o ports/148107 danfe [NEW PORT] audio/libgpod: A library for direct access f amd64/148106 amd64 [panic] nginx udplog causes kernel panic on 8.0-RELEAS o ports/148104 gecko [NEW PORT] www/libxul: Mozilla runtime package that ca o ports/148099 ashish editors/emacs22: patch available for emacs movemail vu o ports/148098 new port: math/x12arima o ports/148097 emulation [patch] suggested addition to linux_base-* packages to o ports/148096 emulation archivers/xz: packages linux_base-* can not be built f o ports/148095 x11 Regression / bug in x11-servers/xorg-server o ports/148094 roam Add gssapi support to ftp/curl o kern/148091 ipfw [ipfw] ipfw ipv6 handling broken. s ports/148090 [PATCH] security/ike: update to 2.1.5 o kern/148087 [libfetch] [patch] Fetch doesn't supply proxy auth cre o ports/148085 Port update: comms/uhso-kmod - Update to v20100416 o kern/148083 scsi [aac] Strange device reporting o usb/148080 usb usbconfig(8) sometimes does not turn off the device o kern/148078 net [ath] wireless networking stops functioning o kern/148076 dchagin [linux] linux_sys_futex: unknown op 265 o ports/148075 jkim [PATCH] audio/oss: oss/files path issue with soundon s o docs/148071 doc Failover mode between wired and wireless interfaces o kern/148070 [cam] [panic] panic: _mtx_lock_sleep: recursed on non- o ports/148068 mbr [PATCH] emulators/open-vm-tools: enhance RC script o ports/148058 brooks www/trac-mercurial: trac-mercurial-0.11.0.7_2 mercuria o ports/148055 girgen [PATCH] databases/p5-postgresql-plperl: fix package/ru o bin/148053 brucec labeling o ports/148051 portmgr bsd.port.mk: include gnome.mk for INSTALLS_ICONS p kern/148050 glebius 9.0-CURRENT panic when tcpdump ipfw0 and net.inet.ip.f o ports/148038 stas x11-wm/enlightenment: update for enlightenment 0.17 po o docs/148037 doc bge(4) does not list all devices in if_bge.c / if_bger f ports/148036 [PATCH] ports-mgmt/p5-FreeBSD-Ports-INDEXhash: require o ports/148035 x11 [patch] x11/xdm Fix auth in case of ro /usr o ports/148033 python Maintainer Update: www/py-django-threaded-multihost o ports/148029 x11 Unable to build graphics/libGL o ports/148027 New port: graphics/ramenhdr, node based video composit o ports/148026 python [PATCH] security/py-twistedConch: missing run depedenc o ports/148025 fjoe misc/mc: When you open the zip file, mc looking unzip o ports/148022 marcus net/netatalk 2.1.1 does not listen on ipv4 f ports/148021 irc/minbif port update (1.0.2->1.0.3) f ports/148019 oliver [PATCH] x11-toolkits/libxfce4gui: Fix pkg-plist and WI o kern/148018 [flowtable] flowtable crashes on ia64 o conf/148017 hrs [stf] [patch] rc script for stf does not honour create o ports/148014 [update] libticonv/libtifiles2/libticables2/libticalcs p kern/148013 yongari [rl] [patch] add WoL support to rl(4) f ports/148010 net/freeswitch-core: fix location of PID file o ports/148006 stas Update of devel/ocaml-camomile to 0.7.3 o ports/148005 mm [patch] devel/binutils: add gold option o kern/148004 net [em] Inconsistent networking with em driver on FreeBSD f amd64/148002 amd64 [boot] panic / page fault while booting from install d o kern/147998 [kernel] [patch] NFS -mapall group permissions ignored o docs/147995 doc elf.5 man page has has missing reference o conf/147992 [termcap] [patch] xterm-256color is a 8 colors termina o kern/147989 net [em] em Receive errors / CRC Errors / Alignment Errors o ports/147986 wosch ports-mgmt/portcheckout doesn't resolve all dependenci o kern/147985 net [alc] alc network driver + tso ( + vlan ? ) does not w f ports/147982 [patch] multimedia/xmms-weasel fix depends o ports/147981 [patch] multimedia/xmms-status-plugin fix depends o ports/147979 netchild [patch] mail/claws-mail: Unrecognized options passed t f ports/147977 [patch] irc/ratbox-services mark MAKE_JOBS_UNSAFE o ports/147975 itetcu [patch] audio/xmms-curses fix depends f ports/147973 [patch] audio/xmmsctrl fix depends o ports/147972 mm [PATCH] databases/adodb5: update to 5.11 f ports/147970 net/quagga: Ipv6 addresses cannot be assigned to inter f amd64/147963 amd64 cpu l2 cache error o kern/147961 crash when forwarding enabled between two Broadcom car o ports/147955 demon misc/nagios-base-logos: Some Icons have white boxes ar o kern/147950 virtualization[vimage] [carp] VIMAGE + CARP = kernel crash o docs/147946 trhodes Something strange in the updating/upgrading section of o ports/147944 [NEW PORT] net/gogoc: GogoCLIENT, which is needed to c o ports/147943 New port: net/radsecproxy Radsecproxy is a generic RAD o ports/147942 www/moinmoin sends wrong http header when in editor mo o bin/147938 [patch] mt(8): ioctl sign-extension warnings from some o ports/147936 New port: sysutils/dtpstree Display a tree of processe o bin/147934 [patch] top(1) lies about system uptime o kern/147926 [hang] system freezes due to heavy io to the disks r ports/147925 cvs Repocopy request to copy sysutils/idled to sysutils/do o ports/147921 add reload command to rc script of audio/icecast2 o conf/147919 services(5) wrong IANA entry for radius-acct o i386/147912 i386 [boot] FreeBSD 8 Beta won't boot on Thinkpad i1300 11 f ports/147907 [patch] www/tclhttpd don't hardcode -j2 o ports/147906 kuriyama security/gnupg: Incorrect Package dependency o kern/147903 fs [zfs] [panic] Kernel panics on faulty zfs device o ports/147902 miwi File not installed in devel/pear-Console_CommandLine o ports/147899 fluffy [NEW PORT] multimedia/kplayer-kde4: Movie player based o ports/147898 [patch] sysutils/uhidd: open /usr/local/etc/uhidd.conf o ports/147897 hrs net/openbgpd: Openbgp nexthop invalid after em0 resett o ports/147895 [MAINTAINER] sysutils/fusefs-mhddfs: update to 0.1.35 o kern/147894 net [ipsec] IPv6-in-IPv4 does not work inside an ESP-only o www/147892 www freebsd.org website switch to mobile mode for webkit b o ports/147889 New port: devel/maven-ant-tasks Allows Maven's handlin o bin/147887 [patch] Invalid extension type displayed with setkey(8 a ports/147884 jpaetzel [PATCH] devel/popt: update to 1.16 o kern/147881 fs [zfs] [patch] ZFS "sharenfs" doesn't allow different " s ports/147875 dougb [NEW PORT] dns/bind10: The BIND DNS Suite 10 (Developm f ports/147873 [PATCH] mail/mail-notification: [fix broken icons] o ports/147872 uqs [PATCH] graphics/feh: update to 1.7 o ports/147868 [MAINTAINER] japanese/ja-ibus-skk: update to 0.0.8 o ports/147866 miwi [Maintainer Update] converters/bsdconv and its family o ports/147865 [maintainer-update] Updating devel/libconfig to v.1.4. o kern/147862 net [wpi] Possible bug in the wpi driver. Network Manager o ports/147861 bf [patch] fix math/maxima with LC_MESSAGES f ports/147860 rene [PATCH] multimedia/mplayer: optionify libmng o kern/147858 [acpi] acpi_hp not working when loaded via loader.conf o kern/147855 [ipmi] [patch] kernel panic when IPMI enabled on some o kern/147852 geom [geom] [panic] graid3 panic: wrong offset 16384 for se o kern/147851 geom [geom] [panic] graid3 panic: g_read_data: invalid leng o ports/147849 New port: emulators/pcsxr - Pcsx reloaded, a PSX (Play o ports/147848 fluffy New port: multimedia/bangarang (KDE4 media player) o ports/147847 trasz audio/zynaddsubfx mxml error when opening instruments o i386/147842 i386 [install] Installation Failure on Panasonic CF-Y5 o ports/147841 mnag [patch] databases/sqlite3: add SECURE_DELETE option o kern/147839 [libc] [patch] syscall(2) with wrong argument causing o ports/147835 miwi [PATCH] devel/py-DecoratorTools: update to 1.8, take m f ports/147829 Improved net/ucarp startup script: multiple VHID and F o ports/147828 [maintainer-update] games/stonesoup: split up games/st o kern/147824 net [msk]: watchdog timeouts & Tx descriptor error o ports/147815 makc print/hplip: error: dbus failed to load w/o dbus suppo o ports/147809 ruby databases/ruby-dbi: /usr/local/lib/ruby/site_ruby/1.8/ o ports/147806 apache [PATCH] www/apache20: httpd doesn't start with WITH_LD o ports/147802 mm net-im/mu-conference fails to compile. o ports/147800 pgollucci [PATCH]: databases/rubygem-datamapper 1.0.0 overhaul o kern/147793 emulation [vmware] cdrom handling, panic, possible race conditio o ports/147791 [patch] Update sysutils/arcconf to v6_50_18570 o kern/147790 fs [zfs] zfs set acl(mode|inherit) fails on existing zfs o kern/147789 pf [pf] Firewall PF no longer drops connections by sendin o ports/147788 nork x11-drivers/xf86-video-radeonhd-devel 1.3.0.20091101_3 o ports/147784 wen [REPOCOPY] lang/python26 --> lang/python27 o ports/147773 Not assemblied lang/php52-extensions o kern/147769 bz [epair] 'ifconfig epair0 create' hangs the whole syste o ports/147768 New Port: games/atanks 2D tank game o kern/147756 [libc] open_socket_in: Protocol not supported - after o ports/147754 pgollucci [PATCH] www/p5-Catalyst-Plugin-Unicode-Encoding: updat o ports/147753 pgollucci [PATCH] www/p5-Catalyst-Plugin-Session-Store-Delegate: o ports/147752 pgollucci [PATCH] www/p5-Catalyst-Plugin-Scheduler: update to 0. o ports/147751 pgollucci [PATCH] www/p5-Catalyst-Plugin-Params-Nested: update t o ports/147747 obrien shells/bash: bash-4.1 stealthily depends on libiconv o ports/147732 mnag [patch] port mail/postfix-current update from 20100323 a ports/147731 sahil [patch] port mail/postfix update VDA patch from 2.6.5 f ports/147727 sylvio net-mgmt/net-snmp Add install python bindings option. o kern/147726 [termcap] [patch] termcap needs an entry for rxvt-256c o ports/147723 mm [PATCH] devel/libevent: update to 1.4.14b o kern/147720 ipfw [ipfw] ipfw dynamic rules and fwd o ports/147717 gecko mail/lightning 0.9.3 does not upgrade (using portupgra o bin/147715 amd(8): am-utils hangs when mountd on remote host is n f ports/147712 amdmi3 new port: audio/gvolwheel Volume mixer o ports/147706 [patch][maintainer] www/rssdler: make xmlUnEscape and o ports/147705 NEW PORT devel/bzr-grep o kern/147704 scsi [mpt] sys/dev/mpt: new chip revision, partially unsupp o ports/147701 portmgr [bsd.port.mk] [patch] bsd.port.mk incorrectly names DE o bin/147700 [patch] pkg_add(1): support xz format for packages o conf/147685 rc [rc.d] [patch] new feature for /etc/rc.d/fsck o kern/147684 net [nfe] nVidia MCP55 driver blocks IPMI LAN on load o ports/147683 [PATCH] multimedia/playd2: deprecate port o conf/147681 [network.subr][patch] Add inet6 keyword if it wasn't s o ports/147680 sobomax net/asterisk16: update to asterisk 1.6.2.8 o ports/147674 stas [PATCH] textproc/ruby18-rss.alt: update to 0.2.6 f ports/147669 science/gramps fails to start o kern/147667 geom [gmirror] Booting with one component of a gmirror, the a ports/147666 kde Build of multimedia/kdemultimedia4 fails if audio/alsa o ports/147665 python update for www/py-pylons o kern/147664 geom [geom] [patch] Add the ability to create linux and fat f ports/147660 miwi new port: net-im/pidgin-mra, Mail.ru Agent protocol pl f ports/147658 audio/mpc 0.17 still requires libintl.so.8 after gette o ports/147657 rene [PATCH] net/mDNSResponder: update to 214.3, take maint f ports/147650 stas graphics/djvulibre-nox11: 'patch' error on Tinderbox o ports/147649 kuriyama textproc/iso8879: WRKDIR error on Tinderbox o kern/147647 [libc] select(2) wakes after 24 hours even if timeout o ports/147646 x11 [PATCH] graphics/libGL: fix linking with newer gcc and o ports/147645 brooks audio/squeezeboxserver should reopen logs on SIGHUP o kern/147638 rpaulo [PATCH] [ath] Atheros R9280 has probrem at 8.1-PRERELE o ports/147634 apache [PATCH] www/mod_memcache: Conver to AP_FAST_BUILD / AP o ports/147630 portmgr DISTNAME=${PORTNAME}-${PORTVERSION} is the default o bin/147629 /usrt/bin/rup problem 365 days period o ports/147626 pgollucci [PATCH] www/p5-WWW-Search: update to 2.508 o ports/147625 pgollucci [PATCH] textproc/p5-XML-Compile: update to 1.15 o ports/147624 pgollucci [PATCH] textproc/p5-Lingua-EN-Tagger: update to 0.16 o ports/147623 pgollucci [PATCH] sysutils/p5-mogilefs-server: update to 2.36 o ports/147622 pgollucci [PATCH] sysutils/p5-MogileFS-Utils: update to 2.16 o ports/147621 pgollucci [PATCH] sysutils/p5-MogileFS-Client: update to 1.11 o ports/147620 pgollucci [PATCH] security/p5-Module-Signature: update to 0.64 o ports/147619 pgollucci [PATCH] net/p5-XML-Compile-SOAP: update to 2.14 o ports/147618 pgollucci [PATCH] net/p5-Net-Twitter: update to 3.13003 o ports/147617 pgollucci [PATCH] net/p5-Net-GitHub: update to 0.22 o ports/147616 pgollucci [PATCH] misc/p5-Software-License: update to 0.101410 o ports/147615 pgollucci [PATCH] graphics/p5-Image-Compare: update to 0.8 o ports/147614 pgollucci [PATCH] dns/p5-Net-Domain-ExpireDate: update to 0.98 o ports/147613 pgollucci [PATCH] devel/p5-threads: update to 1.77 o ports/147612 pgollucci [PATCH] devel/p5-Module-Install: update to 0.99 o ports/147611 pgollucci [PATCH] devel/p5-Log-Dispatch-Config: update to 1.03 o ports/147610 pgollucci [PATCH] devel/p5-Data-ObjectDriver: update to 0.07 o ports/147609 pgollucci [PATCH] devel/p5-Algorithm-Networksort: update to 1.09 o ports/147608 pgollucci [PATCH] devel/p5-Algorithm-Cluster: update to 1.49 o ports/147607 pgollucci [PATCH] databases/p5-BerkeleyDB: update to 0.42 o ports/147606 pgollucci [PATCH] converters/p5-JSON-XS: update to 2.29 o kern/147599 [libm] [patch] Import netbsd complex functions into ou o kern/147583 [puc] [patch] sys/dev/puc/pucdata.c: incorrect clock v p bin/147572 sbruno [2tb] mptutil(8) doesn't support configs over 2TB o ports/147571 kuriyama install error in port textproc/iso8879 (with workaroun o ports/147568 x11 [patch] powerpc64 support for x11-servers/xorg-server f ports/147567 sylvio New port: net/wifi_select o amd64/147560 amd64 [boot] Booting 8.1-PRERELEASE raidz system take ages o kern/147558 [panic] sbdrops kernel panic o ports/147557 clsung [PATCH] security/snort: fix snortsam patch for 2.8.5.3 o ports/147554 new ports: audio/linux-f10-[alsa|pulseaudio] f ports/147553 amdmi3 NEW port: graphics/VisualizationLibrary f ports/147550 itetcu [PORT UPDATE] net/skype update to 2.1.0.81 o ports/147549 itetcu [NEW PORT] audio:alsa-plugins-oss: linux alsa plugins o ports/147547 ruby [PATCH]: Mk/bsd.ruby.mk: support --no-rdoc for -DNOPOR o ports/147546 ashish Update Port: editors/emacs-devel to a snapshot of 24.x o ports/147525 kuriyama [PATCH] devel/rubygem-msgpack: update to 0.4.2 o usb/147516 usb [umass] [usb67] kernel unable to deal with Olympus USB o java/147512 java Crash of RXTX-2.1-7 on AMD64 system o kern/147504 multimedia [oss] [panic] panic: dev_pager_getpage: map function r o ia64/147501 ia64 [ia64] options PREEMPTION causes instability o ports/147500 [patch] Make deskutils/xpad usable o ports/147499 girgen databases/postgresql82-client not bumped to match new o ports/147485 Update port: games/sfbol o bin/147482 mksnap_ffs(8) prints garbage as error message when nmo o misc/147479 Dan Moschuk has passed away, calendar patch o ports/147476 portmgr [PATCH] Mk/bsd.port.mk: fix 'make deinstall' for @comm o i386/147475 i386 [install] FreeBSD 8.x does not install on ASUS K8N4-E o ports/147473 matusita emulators/vmware-guestd6 fails to install with ESX vmw o misc/147471 mips [headers] [patch] whitespace discrepancy in sys/mips/i o misc/147470 imp [patch] typo and mistake in UPDATING file p kern/147466 multimedia [snd_hda] [patch] Thinkpad t510, codecs not recognized o misc/147463 [tools] [patch] Patch for tools/regression/lib/libc/st o kern/147459 [vm] [panic] Kernel panic: vm_page / vdrop / vm_page_c o i386/147458 i386 [boot] FreeBSD 8 can't boot from dvd, unless dvd is ex s ports/147457 Update port: devel/ptlib26 o kern/147454 [libgssapi] libgssapi (heimdal) broken in head/, stabl o gnu/147451 gcc(1): "gcc -g -O2 -march=nocona" loops compiling dev f ports/147450 python Update port: databases/py-south Upgrading to version f ports/147449 vd ftp/wget PORTVERSION not bumped to match new gettext o ports/147448 novel security/gnutls buitl with NLS breaks after devel/gett o ports/147446 krion lang/gawk built with NLS broken after devel/gettext up o conf/147444 rc [rc.d] [patch] /etc/rc.d/zfs stop not called on reboot o ports/147434 brooks devel/clang: c++-analyzer missing, breaking scan-build o ports/147431 [NEW PORT] security/strongswan - Open Source IPsec-bas o misc/147430 freebsd-update not updating /usr/src/UPDATING o kern/147420 fs [ufs] [panic] ufs_dirbad, nullfs, jail panic (corrupt o ports/147413 pgollucci [PATCH] www/p5-HTML-Selector-XPath: update to 0.04 o ports/147411 pgollucci [PATCH] www/p5-Catalyst-Plugin-Unicode-Encoding: updat o ports/147410 pgollucci [PATCH] www/p5-Catalyst-Plugin-Session-Store-Delegate: o ports/147409 pgollucci [PATCH] www/p5-Catalyst-Plugin-Scheduler: Fix build an o ports/147408 pgollucci [PATCH] www/p5-Catalyst-Plugin-Params-Nested: update t o ports/147404 pgollucci [PATCH] www/p5-CGI-Application-Plugin-AutoRunmode: upd o ports/147402 pgollucci [PATCH] textproc/p5-Perl-Critic-Bangs: update to 1.06 o ports/147400 pgollucci [PATCH] textproc/p5-EBook-Tools: update to 0.4.8 o ports/147399 pgollucci [PATCH] sysutils/p5-ZConf-Cron: update to 1.1.0 o ports/147398 pgollucci [PATCH] net-mgmt/p5-Nagios-Plugin: update to 0.34 o ports/147397 pgollucci [PATCH] net/p5-Net-LDAP-Makepath: Add missing depends o ports/147396 pgollucci [PATCH] net/p5-Net-LDAP-AutoServer: Add missing depend o ports/147391 pgollucci [PATCH] net/p5-Net-Google-Calendar: update to 0.99 o ports/147386 pgollucci [PATCH] devel/p5-threads-shared: update to 1.33 o ports/147385 pgollucci [PATCH] devel/p5-pip: update to 1.18 o ports/147381 pgollucci [PATCH] devel/p5-Tie-DB_FileLock: update to 0.11 o ports/147380 pgollucci [PATCH] devel/p5-Thread-Cancel: update to 1.11 o ports/147379 pgollucci [PATCH] devel/p5-Test-Strict: update to 0.14 o ports/147378 pgollucci [PATCH] devel/p5-Sub-WrapPackages: update to 2.0 o ports/147377 pgollucci [PATCH] devel/p5-Rose-Object: update to 0.858 o ports/147376 pgollucci [PATCH] devel/p5-Rose-DateTime: update to 0.534 o ports/147374 pgollucci [PATCH] devel/p5-POE-XS-Loop-Poll: update to 1.000 o ports/147373 pgollucci [PATCH] devel/p5-Object-InsideOut: update to 3.67 o ports/147371 pgollucci [PATCH] devel/p5-ExtUtils-XSpp: update to 0.11 o ports/147364 pgollucci [PATCH] devel/p5-CPAN-SQLite: update to 0.199 o ports/147363 pgollucci [PATCH] databases/p5-DBIx-Class-QueryLog: update to 1. o ports/147361 pgollucci [PATCH] devel/p5-Class-Adapter: update to 1.07 o ports/147360 pgollucci [PATCH] comms/p5-SMS-Send-TW-emome: update to 0.04 o ports/147359 pgollucci [PATCH] databases/p5-Rose-DB: update to 0.761 o ports/147353 hrs [UPDATE] multimedia/rtmpdump: update to 2.2e o kern/147352 net [netinet] [patch] replace printf() with log() for "Lim s docs/147347 doc [request] Missing memstick install setup instructions o ports/147346 makc [PATCH] sync in last of print/hplip personal patches. o ports/147345 des sysutils/munin-node pulls in all files in config direc o kern/147340 svn r182999 has broken snd_hda on Asus M5A f ports/147339 mm devel/binutils depends on lang/gawk o kern/147338 System sees only half of the memory installed f ports/147332 amdmi3 [NEW PORT] audio/libfishsound: A programing interface o ports/147318 x11 [Patch]graphics/libdrm:Fix the PLIST when define WITHO o ports/147316 mnag [patch] misc/pecl-timezonedb is too old o ports/147310 sobomax error: cannot portupgrade -f net/ortp o bin/147303 restore(8) uses uninitialized variables: tape.c dirs.c o ports/147296 portmgr [PATCH] Mk/bsd.licenses.mk: Fix leftovers with custom o kern/147292 fs [nfs] [patch] readahead missing in nfs client options o ports/147291 python lang/python* doesn't compile nis.so when WITHOUT_NIS s o ports/147290 dinoex graphics/graphviz does not install properly f ports/147289 devel/gdb66 doesn't build o ports/147287 [PATCH] sysutils/openipmi: support sensors for Sun Fir o ports/147282 apache errors when starting www/apache22 after installation o o ports/147269 portmgr PORT graphics/freeglut should statisfie USE_GL=glut o docs/147268 doc Imporve Porters Handbook section 4.4 - Patching o ports/147267 x11 PORT graphics/libglut should conflict with graphics/fr s ports/147257 ade ports missing a direct dependency on devel/gettext o ports/147251 New port: german/joomla15 - german language packages f o kern/147248 xen [xen] 8.0-RELEASE-p3 i386 Xen DomU filesystem "bufwait o kern/147245 net [dummynet] dummynet skip traffic over configured limit o misc/147244 [build] ld-elf.so.1 not being updated on buildworld/in o ports/147242 ruby ports-mgmt/portupgrade incorrectly remove old port whe o ports/147240 portmgr Expand USE_GETTEXT to remove need for hardcoded depend o misc/147239 network problem with system start o kern/147237 [psm] [patch] There is no IBM/Lenovo TrackPoint suppor o www/147234 www send-pr should accept application/x-shar from browsers f www/147233 www send-pr fails with HTTP error 417 in Opera 10.10 for L o ports/147232 pav [patch] port irc/inspircd is out of date o ports/147230 stefan mail/spamass-milter improved adding command-line optio f ports/147228 vd ftp/wget: Script "configure" failed unexpectedly o misc/147227 SSD preformance issues o kern/147226 read(fd, buffer, len) returns -1 immediately, if len o ports/147221 [patch] japanese/lynx: Update to the latest stable rel o ports/147220 [patch] japanese/lynx-current: Update to the latest cu o stand/147210 standards xmmintrin.h and cstdlib conflicts with each other with o bin/147175 [kerberos] [patch] libhx509.so containes references to o ports/147171 steve x11-toolkits/open-motif: mwm seems to lose mouse event s ports/147169 ruby bsd.ruby.mk: Adding GEM_ARGS o ports/147167 miwi NEW PORT devel/bzr-svn: Plugin for bzr to work with sv f ports/147166 miwi NEW PORT devel/subvertpy o ports/147165 miwi conflicts checking broken when upgrading o kern/147162 jail [jail] [panic] Page Fault / Kernel panic when jail sta o ports/147157 cy error in installing security/pam_krb5 package o kern/147155 net [ip6] setfb not work with ipv6 o ports/147149 x11 x11/xorg: Xorg 7.5 hangs o ports/147147 apache [PATCH] www/mod_log_dbd: cleanups o ports/147145 apache [PATCH] www/mod_clamav: clean sup o ports/147137 ruby MK/bsd.ruby.mk: [patch]: support devel/rubygem-rake un o ports/147135 New port: textproc/exmpp XMPP parsing library written o kern/147127 [pccard] [patch] Fix panic in pccard.c p conf/147126 brucec [firewire] [patch] missing firewire part in defaults/l o ports/147125 x11 x11-servers/xorg-vfbserver missing dependency o i386/147120 i386 [loader] [patch] consistently use 'x86' keyword in loa p docs/147119 uqs [geom] [patch] fix a typo in gsched(8) manual o ports/147115 [NEW PORT] mail/scam-backscatter: Address verification o ports/147114 portmgr Mk/bsd.port.mk: [patch]: remove last vestige of APACHE o ports/147111 ruby [PATCH] lang/ruby19: support security/openssl f kern/147102 hrs [ip6] route6d deletes site-local routes o docs/147095 doc FAQ: mouse does not work with X o ports/147093 New port: www/sitracker - Incident tracker / Help Desk o kern/147086 AHCI not being enabled on PC f kern/147082 [uart] Serial ports unusable [regression] f ports/147076 miwi [MAINTAINER] net/asterisk16-addons: update to 1.6.0.5 o ports/147051 python [patch] update devel/py-ctypes to 1.02 and adjust supp o ports/147009 pgollucci Mk/bsd.apache.mk: [patch] default to www/apache22 f ports/147007 rene net/mDNSResponder resolv.conf parsing has a buffer ove o ports/146998 mm graphics/ImageMagick 6.6.1.10 broken with jpgs. f ports/146979 ashish editors/emacs configuration ignores "-D WITHOUT_X11" o ports/146965 miwi NEW PORT deve/bzr-git o ports/146964 New port: net/asterisk162 o docs/146958 doc bad link to "XaQti XMAC II datasheet" in sk(4) manual o ports/146957 python Mk/bsd.python.mk: PYTHONOPTIMIZE=1 in environ(7) break o ports/146955 PORTS: new port devel/geany-plugins s ports/146950 brooks [PATCH] sysutils/ganglia-webfrontend: devel/apr* shoul f ports/146945 ume [PATCH] security/cyrus-sasl: pkg-plist is broken o kern/146941 Kernel Double Fault - Happens constantly o ports/146934 [NEW PORT] japanese/unzip NLS patched unzip. import fr o i386/146931 i386 [install] FreeBSD 8.x Installation Failure o bin/146916 ed [patch] sh(1) uses dumb terminal in single-user mode f ports/146913 stefan ports/databases/skytools failed to make package if Pos o conf/146910 WITHOUT_INET6=Yes installs broken sendmail.cf file o kern/146909 net [rue] rue(4) does not detect OQO model01 network contr o conf/146908 Afrikaans LC_TIME is incorrect (symlink to en_US) p usb/146907 gavin [rue] [patch] OQO model01 network does not work on Fre f ports/146895 [NEW PORT] emulators/linux-libusb -- linux(4)-friendly o kern/146889 [libc] [patch] Not having NET_RT_IFLIST #defined cause o ports/146886 kuriyama www/mod_extract_forwarded build problem o ports/146880 miwi [MAINTAINER] korean/ko.TeX : update to 0.2.0.20100511 o ports/146879 miwi [MAINTAINER] korean/ko.TeX-fonts-extra : update to 0.2 f ports/146878 miwi [MAINTAINER] korean/ko.TeX-fonts-base : update to 0.2. o ports/146876 mnag [PATCH] databases/sqlite3: recover missing dependency o ports/146872 wen [maintainer-update] [patch] games/eduke32 : update to o usb/146871 usb [usbdevs] [usb8] [patch] provide descriprive string fo o ports/146863 ruby [patch] lang/ruby19: remove extra `-g' from CFLAGS and o bin/146859 [patch] pkg_create(1): libpkg/msg.c removal and relate o ports/146858 ruby [patch] ports-mgmt/portupgrade-devel: respect LOCALBAS o bin/146857 [patch] pkg_create(8): fix missing error call in uname o bin/146855 brucec [patch] sysinstall(8): address possible QA issues with o ports/146854 miwi Update port: www/xpi-gbutts update to 2.0.6b3, rename o kern/146845 net [libc] close(2) returns error 54 (connection reset by o usb/146840 usb [hang] FreeBSD 7.2 / 7.3 / 8.0 hang at startup after e o bin/146835 [patch] ifmcstat(8) fails to build without KVM and wit o kern/146832 pf [pf] "(self)" not always matching all local IPv6 addre o ports/146830 multimedia/pvr_xxx does not compile on FreeBSD 8.* and o conf/146828 [patch] conf/newvers.sh: respect LOCALBASE and MAKEOBJ o ports/146826 krion [patch] lang/gawk: prevent makeinfo banner from appear o ports/146823 python [patch] lang/python26: knob to build _ctypes module ag f ports/146822 mm Update port: multimedia/x264-devel. Used last snapshot o bin/146821 [patch] info(1): respect LOCALBASE for INFODIR o ports/146818 makc [update] games/openarena latest release o ports/146816 portmgr [patch] Mk/bsd.port.mk: loosen SU_CMD & su(1) cohesion o ports/146812 miwi maintainer-update: sysutils/puppet f ports/146801 can't build graphics/py-opengl because math/py-numpy f o ports/146794 ale lang/php5 - segfault when enabling zend multibyte supp o conf/146793 [kbdmap] [patch] Danish kbdmap for MacBook o kern/146792 net [flowtable] flowcleaner 100% cpu's core load o ports/146787 miwi [bsd.port.mk] create a treadle to prevent early-check o misc/146786 zpool import hangs with checksum errors o ports/146784 cy net/tcpview fails to build under 8.0 o ports/146781 nork broken port japanese/roundcube o ports/146776 [new port] sysutils/monitorix: a web based monitoring s bin/146774 [request] Import progress(1) utility from NetBSD base o ports/146773 stas [patch] lang/sbcl: /etc/sbclrc -> PREFIX/etc/sbclrc o ports/146770 ashish New Port: sysutils/mango-lassi Input device sharing ap o kern/146759 net [cxgb] [patch] cxgb panic calling cxgb_set_lro() witho o kern/146758 multimedia [sound] [patch] fix volume control in spicds o ports/146754 miwi [patch] new port: add devel/atf framework to ports f ports/146750 linimon Spawn of helper '/usr/local/share/PackageKit/helpers/p f ports/146737 stefan mail/spamass-milter Add OPTIONS to Makefile f ports/146736 lwhsu [PATCH] net/tintin++: update to 2.00.1 o kern/146726 emulation [linux] Linux InstallJammer fails to execute on 8-STAB o ports/146723 [NEW PORT] graphics/php-libpuzzle: PHP extension for P o ports/146720 obrien [PATCH] net/rdesktop: add LIBAO and LIBSAMPLERATE opti o kern/146719 net [pf] [panic] PF or dumynet kernel panic o ports/146717 New port: devel/vxlog is C++ loggin library o gnu/146716 gcc(1)] gcc CPU detection error o i386/146715 acpi [acpi] Suspend works, resume not on a HP Probook 4510s f ports/146713 stefan [patch] net-mgmt/argus-monitor update o ports/146711 brooks [PATCH] devel/llvm: should run-depend on Perl f ports/146709 Update port: sysutils/psmisc Upgrade to 22.11 o kern/146708 fs [ufs] [panic] Kernel panic in softdep_disk_write_compl f ports/146706 skv [PATCH] mail/libdomainkeys: [SUMMARIZE CHANGES] p usb/146693 thompsa [rum] Edimax EW‐7318USG not found in usbdevs or o bin/146687 [tools] [patch] Fix QA issues with tools/regression/ai o ports/146685 acm [PATCH] games/naev: update to 0.4.2 o ports/146684 acm [PATCH] games/naev-data: update to 0.4.2 o ports/146683 [NEW PORT] math/levmar: A GPL-licensed library impleme o gnu/146682 make clean fails to rm /usr/src/contrib/groff/src/incl f ports/146680 lang/cmucl depends on compat4x instead of compat6x o kern/146661 [ata] damage files on ufs on ata pseudo raid when runn o ports/146657 girgen [Patch]databases/postgresql84-server:add option of sup o kern/146647 [uart] Some PCIe serial/parallel boards with ID 9901 9 o ports/146644 python lang/python26: WITH_PTH option breaks most ports depen f ports/146641 [MAINTAINER] sysutils/gosa: update to 2.6.10 a ports/146640 jpaetzel misc/wanpipe: SIOC_WANPIPE_PIPEMON conflicts with GIFG o ports/146633 update devel/ice to 3.4 o ports/146631 miwi net/pppload: Update port - was broken o kern/146628 net [tcp] [patch] TCP does not clear DF when MTU is below o ports/146623 stas [PATCH]lang/sbcl: update to 1.0.38 o ports/146616 girgen repo copy of databases/postgresql84-server -> database o ports/146603 luigi sysutils/syslinux Mark as BROKEN: segfaults o kern/146592 [libpcap] [patch] libpcap 1.0.0 doesn't have error mes o kern/146590 [mca] [panic] MCA panics 7.3 o kern/146588 [kernel] [patch] sys/kern/kern_uuid.c has a le16dec be o ports/146567 security/nmap build fails w/default OpenSSL opts o ports/146560 edwin [PATCH] www/mod_encoding: drop support for apache_vers o ports/146558 stas devel/libdispatch doesn't build (on amd64 -CURRENT) a ports/146556 dinoex [patch] ftp/vsftpd rc script doesn't support vsftpd_fl o ports/146551 fjoe [patch] x11-toolkits/wxgtk28: move gstreamer and mspac o ports/146546 hselasky multimedia/webcamd failed to install in 7.3-RELEASE f ports/146544 gnome graphics/inkscape crashes when locale is enabled o kern/146543 securelevel does not affect mount (duplicate of kern/2 o bin/146541 [patch] add check option to md5(1) s ports/146540 kde kdegraphics-kuickshow-3.5.10_3 (graphics/kuickshow) do o kern/146539 net [arp] arp pub not working properly o kern/146534 net [icmp6] wrong source address in echo reply o ports/146531 wen [MAINTAINER] graphics/libgeotiff: update to 1.3.0 o kern/146528 fs [zfs] Severe memory leak in ZFS on i386 f ports/146527 [UPDATE] devel/ccache 3.0pre1 s ports/146526 pgollucci Clean up www/mod_extract_forwarded o docs/146521 doc Update IPv6 system handbook section to mention ping6 o kern/146517 net [ath] [wlan] device timeouts for ath wlan device on re o ports/146507 nivit [patch] devel/py-Jinja2: enable speedups o kern/146502 fs [nfs] FreeBSD 8 NFS Client Connection to Server o www/146500 postmaster send-pr fails o ports/146496 portmgr [bsd.port.mk] [PATCH] Removing ${PORTSDIR} from depend p usb/146483 thompsa [usbdevs] [patch] Another USB FTDI device o ports/146473 x11 keysym names are unavailable to x11/xmodmap after upgr o kern/146464 [ahci] DVD device unusable with ahci(4) o ports/146460 x11 x11/xorg: crash after upgrade to v7.5 with radeon driv o ports/146455 New port: security/dradis Opensource framework to enab o i386/146446 i386 [install] FreeBSD 8.0 installation hangs at an early s o ports/146442 jpaetzel Updates for the net/freeswitch rc.d script o conf/146439 [patch] remove share/man/man1aout o kern/146436 [cpufreq] [panic] Panic when changing profile to econo o ports/146435 wes [PATCH] mail/mimedefang - Update to 2.68 and a few add o ports/146434 alepulver sysutils/fusefs-ntfs fails to build if devel/bonobo in o kern/146429 pjd [geli][panic][patch] kernel panic if geli autodetach i o kern/146427 net [mwl] Additional virtual access points don't work on m o kern/146426 net [mwl] 802.11n rates not possible on mwl o kern/146425 net [mwl] mwl dropping all packets during and after high u o ports/146422 gnome [patch] x11-toolkits/gtk20: experimental DIRECTFB targ o ports/146421 gnome [patch] graphics/cairo: add DIRECTFB knob o ports/146414 gecko cannot install www/mplayer-plugin on freeBSD 7.3 o kern/146410 pjd [zfs] [patch] bad file copy performance from UFS to ZF o ports/146401 mbr mail/up-imapproxy update to 1.2.7 f kern/146394 net [vlan] IP source address for outgoing connections o ports/146392 glarkin [NEW PORT] devel/php5-thrift: PHP interface to Thrift o ports/146380 [patch] comms/xastir: Xastir grabs mouse pointer and w o bin/146377 net [ppp] [tun] Interface doesn't clear addresses when PPP o kern/146375 fs [nfs] [patch] Typos in macro variables names in sys/fs p usb/146367 thompsa [usb8] [patch] Revision 205728: broken bluetooth mouse o ports/146366 sergei [patch] mail/offlineimap: update to 6.2.0.10 git-3c4de o ports/146364 x11 x11/xeyes does not run, and destroy X o ports/146363 x11 error in startup script of x11-fonts/xfs o ports/146361 jpaetzel New Port: net-mgmt/xvpviewer A management tool for Xen o kern/146358 net [vlan] wrong destination MAC address o ports/146353 mi libidn-1.15 breaks devel/icu o ports/146351 portmgr [patch] [bsd.port.mk] Retire INSTALLS_SHLIB f ports/146349 ale textproc/libxml2 causes php with memcached to crash o ports/146347 portmgr [patch] [bsd.port.mk] fix USE_DOS2UNIX info output o ports/146338 add sftpfilecontrol patch to security/openssh-portable o ports/146335 nobutaka [patch] www/w3m: various PREFIX/LOCALBASE fixes f conf/146334 des OpenSSH 5.4 AuthorizedKeysFile bad syntax in sshd_conf o bin/146331 [PATCH] Grow ps(1) with "gid" and "group" keywords o ports/146328 hrs patch for cd /usr/ports/textproc/xmlcharent ; make rei o ports/146321 x11 x11/libSM picks the wrong uuid.h o ports/146302 rene New port: www/chromium Chromium web browser port o bin/146299 sysinstall sysinstall(8): cannot create slice o ports/146294 anders [ PATCH ] mail/cclient doesn't honor WITH_OPENSSL_PORT o kern/146287 scsi [ciss] ciss(4) cannot see more than one SmartArray con o ports/146281 [ PATCH ] net/xorp doesn't honor WITH_OPENSSL_PORT=yes o kern/146270 [ata] Divide by zero in ata driver o ports/146267 cy Repocopy net/ntp to net/ntp-rc o ports/146264 x11 [regression] x11-servers/xorg-server 1.7.5,1 xorg.conf o kern/146263 net [em] [panic] Panic in em(4) SIOCADDMULTI/em_set_multi/ o ports/146262 x11 [patch] x11/xinit: use PREFIX in the man page o ports/146258 x11 x11-fonts/xfs: doc/pdf doesn't build o ports/146257 itetcu [patch][repocopy] sysutils/bsdstats: improper use of L o ports/146256 x11 x11/xorg does fails to start after upgrade from 7.4 to o bin/146254 [PATCH] mdmfs(8): Add -k option to specify a skeldir o kern/146250 net [netinet] [patch] Races on interface alias removal o ports/146247 hrs [patch] japanese/font-mplus: fix plist and non-LOCALBA o kern/146237 emulation [linux] Linux binaries not reading directories mounted o ports/146231 gecko [feature request] www/firefox: use port libs o ports/146225 nivit [PATCH] Update databases/py-sqlalchemy to 0.6.0 o i386/146221 i386 [boot] incompatibility of the BTX with toshiba tecra R o bin/146205 df(1) fails to display total space on a 100PB filesyst o ports/146199 apache www/apache20: port does not use make config o docs/146195 doc [patch] wrap ata.4 lines on terminal boundary o kern/146190 vanhu [ipsec][patch] NAT traversal does not work in transpor p bin/146189 script(1) broken in HEAD and 8-STABLE o ports/146187 girgen databases/postgresql83-server doesn't compile when lin o ports/146184 x11 [patch] graphics/libGL: install target fails on 2nd ru f ports/146183 [patch] mail/mutt-devel: add OPTIONS support o ports/146176 mlaier [patch] sysutils/pfstat: add rc.d script for pfstatd(8 p kern/146167 jhb [ptrace] [patch] ptrace PT_DETACH undocumented behavio o kern/146165 net [wlan] [panic] Setting bssid in adhoc mode causes pani o kern/146162 [pxeboot] PXE loader(8) sets nfs_opts[] = "export" cau o usb/146153 usb [axe] [usb8] Hosts in network doesn't receive any pack o ports/146147 ale [patch] mail/roundcube: add installer and scripts o ports/146145 stas [patch] net-mgmt/flow-tools: add OPTIONS support o ports/146132 stas [PATCH] converters/ruby-iconv: add a do-clean target o ports/146131 glewis [PATCH] java/jdk15-16 make files/license.sh more verbo o ports/146120 lme games/scummvm update to 1.1.0 o misc/146119 [tools] [patch] (attempt to) cleanup tools/tools/umast o ports/146111 sobomax net/asterisk16 update to 1.6.26 o kern/146105 [panic] supervisor read data, page not present f www/146089 www On www.freebsd.org some IPv6 mirror sites do not work o misc/146088 [tools] [patch] netrate/tcpconnect incorrectly uses er o misc/146086 [tools] [patch] 64-bit aware printf() fixes at tools/t o ports/146083 mnag [PATCH] databases/sqlite3: fix 'make package' when NO_ o kern/146082 net [ng_l2tp] a false invaliant check was performed in ng_ o misc/146079 FreeBSD-8.0 handbook out of date o misc/146078 FreeBSD-8.0 packages dont work o ports/146067 portmgr [patch] [bsd.port.mk] remove compatibility describe ta o conf/146064 [patch] allow users to specify location for backups in o ports/146062 glewis math/gnuplot with wx-widgets crashes o usb/146054 usb [urtw] [usb8] urtw driver potentially out of date o conf/146053 rc [patch] [request] shutdown of jails breaks inter-jail o docs/146047 doc [kld] [patch] the kldstat(2) manual needs to be more p o kern/146037 net [panic] mpd + CoA = kernel panic o kern/146031 multimedia [snd_hda] race condition when kldunload snd_hda sound o ports/146022 ale [security] www/tomcat6, www/tomcat55 information discl o ports/146010 jacula [new port] misc/kbdscan o ports/146006 jacula new port: graphics/visionworkbench o ports/146001 acm Update lang/fpc to 2.4.0 s kern/145999 [request] optional offset for `mdconfig -t vnode' o amd64/145991 amd64 [patch] Add a requires line to /sys/amd64/conf/NOTES o ports/145989 trasz audio/qjackctl - jackd does not start from not root us f ports/145966 rene port devel/pwlib fails to build: cast error: patch att o misc/145962 [nanobsd] [patch] improved cfg save script o misc/145961 [patch] [nanobsd] improved flash update script o kern/145960 [mfi] [patch] make MFI_STAT_INVALID_STATUS error more o ports/145957 portmgr add periodic script to back up /var/db/pkg o ports/145955 portmgr [bsd.port.mk] [patch] make fetch-required-list in a po o kern/145946 [patch] feature request: VDSO and shared pages o ports/145945 [NEW PORT] www/encode-explorer: A PHP script to browse o kern/145940 des [crypto] [patch] OpenSSH_5.4p1 - do not prepend Author o ports/145936 nobutaka sysutils/dcfldd: Update to 1.3.4-1 o bin/145934 [patch] add count option to netstat(1) s bin/145921 ed the line calculation in ee(1) doesn't get reinitialise f kern/145918 yongari [ae] After spontaneous ae0 "watchdog timeout", "stray o www/145917 www SVG at logo.html is broken o misc/145910 Problem with nullfs in fstab on boot o conf/145887 /usr/sbin/nologin should be in the default /etc/shells o amd64/145873 amd64 [build] cannot buildworld 8.0-STABLE p kern/145865 [kernel] [panic] kernel memory leak with disabled devd s ports/145858 [request] new port: add sysutils/xfce4-diskperf-plugin f ports/145833 [maintainer-update] www/php-plurk-api update to 1.5.0 o ports/145829 stas sysutils/fuser: Re-enable build on 9-CURRENT o kern/145826 net [ath] Unable to configure adhoc mode on ath0/wlan0 o kern/145825 net [panic] panic: soabort: so_count o kern/145818 geom [geom] geom_stat_open showing cached information for n o docs/145817 doc [handbook] I believe the freebsd-update handbook page o misc/145803 [boot] Boot Manager creates wrong MBR record f kern/145802 pjd [zfs] page fault under load f ports/145788 ale databases/php5-pdo_mysql: pdo_mysql dumps core if allo o kern/145778 fs [zfs] [panic] panic in zfs_fuid_map_id (known issue fi o kern/145777 net [wpi] Intel 3945ABG driver breaks the connection after o kern/145768 scsi [mpt] can't perform I/O on SAS based SAN disk in freeb o bin/145763 portmgr pkg_add(1) doesn't fetch packages from other architect o amd64/145761 amd64 [lor] rt2870 lock order reversal hold up system in 8.0 o bin/145752 hexdump(1) - properly escaped " fails format check o kern/145750 daichi [unionfs] [hang] unionfs locks the machine o ports/145749 mnag www/lighttpd: fetch doesn't work with 1.4.26 update an o kern/145737 bz [netinet] [patch] Wrong UDP checksum not ignored as ex p kern/145736 bz [netinet] [patch] Access to freed mbuf in ip_forward w o bin/145735 sysinstall sysinstall(8) trashes Vista-created partition tables o kern/145733 ipfw [ipfw] [patch] ipfw flaws with ipv6 fragments o kern/145728 net [lagg] Stops working lagg between two servers. o conf/145727 [pf.conf] pf rules not applied on boot if using inet6 o docs/145719 doc [patch] 7.3 relnotes erroneously describes new getpage o i386/145718 i386 [est] [patch] fix freq calculation from MSR for CPUs w o ports/145716 timur Possible bug in net/samba34 - problem when using wins o kern/145714 [siis] removed SATA device on port multiplier resets e s kern/145712 fs [zfs] cannot offline two drives in a raidz2 configurat o ports/145704 miwi [patch] Update-request: audio/xmms2-scrobbler o ports/145700 nobutaka editors/semi doesn't compile o docs/145699 doc hexdump(1) mutes all format qualifier output following o bin/145694 [patch] enable config(8) execution outside of the kern o kern/145664 xen [xen] mutex vm page queue mutex not owned o bin/145660 des ssh(1): base openssh gives an unusable terminal when u o ports/145659 garga security/clamav: Permission for user clamav with simsc o ports/145658 x11 x11-servers/xephyr: XGetVisualInfo returns multiple XV o ports/145657 des shells/zsh: The completion for mount(8) doesn't includ p docs/145655 doc Add an example to /usr/share/examples/etc/make.conf o amd64/145654 net amd64-curent memory leak in kernel o ports/145649 x11 x11/xorg: X server crashes when starting opengl compos o docs/145644 doc Add artical about creating manpage from scratch o docs/145631 doc [handbook] References to ttyd0 serial devices in handb o ports/145629 ale lang/php5-5.3.2 : information in /usr/ports/UPDATING m f ports/145627 danfe graphics/darktable dies on startup with a bus error. f kern/145621 yongari [bge] [panic] bge watchdog timeout --resetting -> cras o kern/145613 [boot] booting from zfs root not working p kern/145600 rpaulo TCP/ECN behaves different to CE/CWR than ns2 reference o ports/145598 portmgr [patch] Templates/BSD.local.dist o ports/145596 [MAINTAINER] www/commonist: update to 0.3.43, fix logi o kern/145590 [kernel] [[patch] SIG_ATOMIC_{MIN,MAX} does not match o misc/145580 [release] /usr/src/release/Makefile does not honor HTT o ports/145579 sergei mail/t-prot: Update to 2.98 o kern/145528 [libedit] ftp(1) crashes in libedit when cancelling a o bin/145518 cperciva freebsd-update(8) does not change 'Release Name' optio p stand/145517 standards POSIX getline() missing o ports/145514 acm Update ports/games/naev to 0.4.2 f usb/145513 usb [usb8] New USB stack: no new devices after forced usb f ports/145460 python Unable to build /usr/ports/net-p2p/py-bittorrent-core o usb/145455 usb [usb8] [patch] USB debug support cannot be disabled o conf/145445 rc [rc.d] error in /etc/rc.d/jail (bad logic) o kern/145444 secteam [jail] sysinstall and sade can access host's disks fro o conf/145440 rc [rc.d] [patch] add multiple fib support (setfib) in /e o kern/145434 [kernel] [patch] Kernel messages about processes don't o ports/145425 dhn insecure file handling in net/GeoIP o usb/145415 usb [umass] [usb8] USB card reader does not create slices o kern/145411 fs [xfs] [panic] Kernel panics shortly after mounting an o ports/145400 acm [UPDATE] net-im/emesene to 1.6.1 o conf/145399 rc [patch] rc.d scripts are unable to start/stop programs o misc/145395 [nanobsd] [patch] Extremely slow nanobsd disk image cr o kern/145385 [cpu] Logical processor cannot be disabled for some SM s ports/145371 jpaetzel new port: www/fusionpbx, fusionpbx php5 webgui for Fre o ports/145370 jpaetzel new port: audio/freeswitch-pizzademo: Additional port o conf/145344 rc [patch] Fix kitchen sink approach for rc.d scripts ins o kern/145341 edwin localtime(3) doesn't handle overflow f kern/145339 pjd [zfs] deadlock after detaching block device from raidz f conf/145311 loader.conf can cause boot hang o kern/145309 fs [disklabel]: Editing disk label invalidates the whole o kern/145306 acpi [acpi]: Can't change brightness on HP ProBook 4510s o kern/145305 ipfw [ipfw] ipfw problems, panics, data corruption, ipv6 so s ports/145301 gnome [patch] sysutils/hal: /usr/local/etc/rc.d/hald startup o kern/145300 qingli [arp] ARP table mapping is not refreshed on a MAC addr o ports/145294 skreuzer [PATCH] www/rt: update to 3.8.7 o ports/145293 timur net/samba3 includes the wrong talloc.h [patch] o ports/145289 lme sysutils/syslog-ng: syslog-ng.conf.sample doesn't cove o ports/145276 python new port x11-toolkits/py-pyside o kern/145272 fs [zfs] [panic] Panic during boot when accessing zfs on o bin/145269 dhclient(8) fails to get IP address when used with wpa o ports/145266 linimon [update] java/eclipse-emf and maintainership request o misc/145261 [build] 8.0-R source doesn't respect WITHOUT_TOOLCHAIN o kern/145246 fs [ufs] dirhash in 7.3 gratuitously frees hashes when it o kern/145238 fs [zfs] [panic] kernel panic on zpool clear tank s www/145235 bugmeister bug report www interface improvements o misc/145233 [build] zfs loader build dependency missing from zfslo o misc/145231 [build] boot code missing libficl build rule o bin/145230 mtree(8) -P is broken because l* functions aren't bein o kern/145229 fs [zfs] Vast differences in ZFS ARC behavior between 8.0 o ports/145218 x11 x11/xorg and x11/xorg-minimal fail to build on a fresh f sparc/145211 sparc64 [panic] Memory modified after free o ports/145190 roam ftp/curl: SSL hangs when running curl o kern/145189 fs [nfs] nfsd performs abysmally under load a usb/145184 usb GENERIC can't mount root from USB on Asus EEE o bin/145183 watchdogd(8): it should be possible to not deactivate o kern/145167 ipfw [ipfw] ipfw nat does not follow its documentation o usb/145165 usb [keyboard] [usb8] ukbd_set_leds_callback: error=USB_ER o kern/145158 [boot] 8.0-RELEASE DVD hang on boot a ports/145103 roam [UPDATE] security/stunnel to version 4.32 p bin/145101 portmgr [patch] pkg_version(1) - remove hardcoded INDEX filena s bin/145100 portmgr [patch] pkg_add(1) - remove hardcoded versioning data f ports/145094 [patch][repocopy] audio/linux-nerodigitalaudio: update o ports/145088 jacula new port: devel/buildapp o stand/145082 standards Patch against w(1) & uptime(1) to use 24H time by defa o i386/145079 i386 [boot] BTX halted on P3 server o kern/145078 [install] [panic] "panic: page fault" and continue wri o ports/145076 I could not build devel/pwlib o docs/145069 doc Dialup firewalling with FreeBSD article out dated. o docs/145067 pgj FAQ remove all reference to floppy installs o docs/145066 pgj FAQ update for new uart dev names for serial port. o bin/145063 acpi [patch] powerd(8): Add -m and -M (minimum and maximum f ports/145062 itetcu audio/liblastfm: doesn't respect PREFIX o kern/145058 [panic] Reproducable panic in 7.3 while building clama o docs/145051 doc [patch] missing closing parenthesis in 7.3 relnotes ar o kern/145042 geom [geom] System stops booting after printing message "GE o kern/145040 [mac] PANIC_REBOOT_WAIT_TIME not honored o amd64/145039 amd64 spin lock held too long amd64 mp_machdep.c o docs/145037 doc [geom] [request] the geom manual sections are sorted i p docs/145028 bcr Handbook Section 2.10.1 Network Device Configuration i o bin/145027 brucec Remove all sysinstall(8) references to floppy and slip o kern/145026 [sdhci] Fatal trap 12 with sdhci and without ahci modu o docs/145025 blackend Handbook Figure 2-27. Choose Installation Media is out o kern/145024 emulation [linux] [panic] kernel crash by linux.ko module with n o docs/145023 doc handbook section 2.4 Starting the Installation is outd o docs/145021 doc handbook section 2.3 Pre-installation Tasks is outdate o ports/145017 New port: databases/dm-validations. o conf/145009 rc [patch] rc.subr(8): rc.conf should allow mac label con o ports/145008 stas Updates for ports related to e17 desktop shell o ports/145005 acm Port graphics/php5-ffmpeg causes coredumps in php o ports/145002 girgen databases/postgresql83-client : libpgport.a is missing a bin/145000 portmgr [patch] pkg_create(1) needs realpath(3) on -p argument f ports/144993 stefan databases/postgresql-odbc: contents of numeric fields o ports/144988 [NEW PORT] net/monast: A monitoring and an operator pa o kern/144987 net [wpi] [panic] injecting packets with wlaninject using o docs/144986 doc [pf] pf.conf example should show allowing icmp through o ports/144982 stas x11-toolkits/ocaml-lablgtk2 problem: ocamlfind won't f o misc/144981 Upgrading FreeBSD 8.0-RELEASE to 8.0-STABLE: filesyste o kern/144962 geom [geom] panic when accessing GPT disk with a large numb f ports/144959 vbox emulators/virtualbox-ose: VirtualBox breaks after port f i386/144956 i386 [boot] Early minute-plus delay in boot on Intel Nehale f kern/144938 usb [keyboard] [boot] Boot Failure with Apple (MB869LL/A) o kern/144930 [ata] SATA DVD Drive is not detected o kern/144929 fs [ufs] [lor] vfs_bio.c + ufs_dirhash.c p bin/144921 portmgr [patch] pkg_add(1): Replace vsystem'ed call to mkdir(1 p bin/144920 portmgr [patch] pkg_add(1): Remove useless chmod after mkdtemp p bin/144919 portmgr [patch] pkg_add(1): Remove partially downloaded file o a bin/144918 portmgr [patch] pkg_add(1): Remove reference to /usr/X11R6/bin o kern/144917 [flowtable] [panic] flowtable crashes system [regressi o ports/144916 johans devel/bison update to 2.4.2 o ports/144910 [new port] java/hgeclipse Mercurial VCS plugin for the o kern/144905 geom [geom][gpart] panic in gpart_ctlreq when unplugging ca o ports/144901 [new port] net-mgmt/py-flowtools-ng o kern/144898 net [wpi] [panic] wpi panics system o ports/144894 gnome [PATCH] finance/gnucash: Chase finance/aqbanking shlib o docs/144893 doc [handbook] handbook section 18.16.1 Disk Encryption wi o ports/144888 ale [PATCH] databases/mysql51-server: specify USE_LDCONFIG o kern/144882 net MacBookPro =>4.1 does not connect to BSD in hostap wit o docs/144881 doc [patch][handbook] Reference to incorrect manual page o kern/144874 net [if_bridge] [patch] if_bridge frees mbuf after pfil ho o ports/144872 python lang/python25: Python 2.5 uname() broken o kern/144869 ipfw [ipfw] [panic] Instant kernel panic when adding NAT ru o ports/144868 obrien [PATCH] textproc/urlview: attempts to build X11 even i o ports/144861 timur Update to net/samba3 to add option to force usage of T f ports/144857 [patch] audio/abraca: update to 0.4.3 a ports/144855 cy [patch] sysutils/syslog-ng3 Makefile lacks sql-enable o ports/144852 makc [patch] sysutils/ntfsprogs - improvements to mkntfs o ports/144849 [new port] java/eclipse-eclemma code coverage for ecli o kern/144843 firewire [firewire] [panic] fwcontrol(8) -S causes kernel panic o conf/144842 hrs [ip6] ipv6_default_interface causes route complaints f o kern/144824 [boot] [patch] boot problem on USB (root partition mou o ports/144821 miwi [patch] audio/xmms2 : update to version 0.7 DrNo. o docs/144818 doc all mailinglist archives dated 19970101 contain traili o ports/144817 miwi New port: audio/decibel-audio-player (GTK music player o kern/144809 [panic] Fatal trap 12: page fault while in kernel mode o conf/144804 ntpd(8) cannot resolve hostnames at system start f ports/144794 amdmi3 multimedia/aegisub: fails to build with multiple optio o ports/144791 ale [patch] databases/mysql40-server fix build with gcc42 o kern/144777 net [arp] proxyarp broken in 8.0 [regression] o kern/144770 [ata] hard drive spindown functionality broken? o ports/144769 ruby [PATCH] ports-mgmt/portupgrade should have a configura f kern/144763 emulation [linux] [panic] Kernel panic when start linux binaries o ports/144758 sobomax upgrade net/asterisk16 to 1.6.0.26 o amd64/144756 amd64 [panic] Transferring files on samba causes the kernel o kern/144755 net [iwi] [panic] iwi panic when issuing /etc/rc.d/netif r o kern/144754 gssapi(3): cyradm crashes inside libgssapi.so o usb/144751 usb [ukbd] [usb8] kernel without keyboard support won't co f kern/144743 [psm] mouse positioning partialy working o ports/144741 [NEW PORT] net/gpxe: Create an open-source PXE impleme o bin/144736 devd(8) should consider spaces in event description wh o ports/144734 gecko www/firefox: Firefox-3.6 doesn't terminate it's proces f ports/144728 bsam Please repo copy lang/squeak to lang/squeak-dev o conf/144726 hrs network.subr functions accumulate output before r19713 p kern/144724 weongyo [bwn] if_bwn does not pass traffic when in PIO mode o bin/144723 [patch] port over coverity SA NULL deref warning fix f o bin/144722 [patch] port over character escape fix for hexdump(1) o ports/144706 jacula New port: audio/linux-musicipserver o www/144704 brd svn-src-release mailing list page has broken link to a o conf/144700 net [rc.d] async dhclient breaks stuff for too many people o kern/144696 [uart] tcdrain(3) does not work right with uart(4) dri o kern/144695 [vfs] [patch] race condition in mounting a root-fs on f ports/144690 [NEW PORT] sysutils/fsvs f kern/144689 yongari [re] TCP transfer corruption using if_re o kern/144680 net [em] em(4) problem with dual-port adapter s ports/144663 kde multimedia/kmplayer begins freeze after the opening of o ports/144660 alepulver [patch] graphics/grx update to 2.4.8 o kern/144659 multimedia [pcm] The distortion of the sound playback of music at o bin/144652 [PATCH] pwd_mkdb(8) copies comments to /etc/passwd o bin/144649 Inconsistency in naming: mount_msdosfs(8) vs newfs_msd o kern/144648 scsi [aac] Strange values of speed and bus width in dmesg o kern/144642 net [rum] [panic] Enabling rum interface causes panic o bin/144641 [ata] burncd(8) freezes whole system while trying to b f ports/144636 maho math/octave 3.2.4 segment faults when started from qto o docs/144630 doc [patch] domainname(1) manpage contains old information o kern/144629 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o ports/144622 delphij net/openldap24-server: Compile OpenLDAP-server 2.4.21 o ports/144621 ale databases/mysql50-server: Some MySQLs' test failed f ports/144617 [PATCH] net-mgmt/docsis: Fix build on systems where GC o kern/144616 net [nat] [panic] ip_nat panic FreeBSD 7.2 o ports/144609 jadawin security/rkhunter arguments changing o ports/144605 ruby [PATCH] Get ports-mgmt/portupgrade to build under Ruby o ports/144603 des [PATCH] sysutils/munin-node: fix postfix logfile o ports/144602 des [PATCH] sysutils/munin-node: Use jot(1) instead of seq o ports/144598 x11 Makefile / pkg-plist issue with x11-drivers/xf86-video f ports/144597 security/openssh-portable fails to compile with KERBER p kern/144584 [linprocfs][patch] bogus values in linprocfs o kern/144572 net [carp] CARP preemption mode traffic partially goes to f ports/144568 ruby devel/ruby-gems: Ruby 1.9.1 has rubygems version 1.3.1 p kern/144564 bz lltable grows too much o kern/144561 net [ixgbe] [patch] ixgbe driver errors f ports/144559 sysutils/eventlog patch to support FreeBSD-specific lo o ports/144555 graphics/mesagl: glutMainLoop() crashes when using VBO o misc/144553 [nanobsd] NanoBSD's updatep* scripts fail with boot0cf o amd64/144551 acpi [acpi] ACPI issues on SuperMicro X7SPA-H o conf/144548 brian [boot] [patch] Enable automatic detection of amd64/i38 o docs/144543 doc [handbook] IPFW doc change o docs/144537 doc Missing _mdconfig_list and _mdconfig2_list explanation o ports/144536 skv lang/perl5.10: /libexec/ld-elf.so.1: /usr/local/sbin/e o docs/144534 doc [patch] fdescfs(5) and devfs(5) both provide /dev/fd/{ s ports/144533 portmgr [bsd.port.mk] ports tree Makefiles fail to setup a sta o bin/144531 [PATCH] cp(1) show percentage complete f ports/144525 x11 cannot build port x11/sessreg o bin/144521 geom geom(1) tool parsing non-subclass command broken o docs/144516 doc Remove obsolete sections from handbook o docs/144515 doc [handbook] Expand handbook Table of contents p kern/144505 weongyo [bwn] [patch] Error in macro CALC_COEFF2. f amd64/144503 amd64 [boot] 8.0-RELEASE does not boot on DL585 [regression] p kern/144494 brueffer [ixgbe] ixgbe driver not built as module f kern/144492 yongari [fxp] The fxp driver does not handle Frame Check Seque o docs/144488 doc share/examples/etc/make.conf: contains dangerous examp o ports/144482 portmgr [bsd.port.mk] [patch] actual-package-depends rejects o o kern/144458 fs [nfs] [patch] nfsd fails as a kld p kern/144447 fs [zfs] sharenfs fsunshare() & fsshare_main() non functi o bin/144446 [patch] db(3) fails with large block sizes o misc/144442 [build] [patch] remove unnecessary group and passwd en o i386/144437 brucec [boot] BTX loader halts on HP DC5850 o ports/144419 python Update port: textproc/py-xmltools Fix the broken port o kern/144416 fs [panic] Kernel panic on online filesystem optimization s kern/144415 fs [zfs] [panic] kernel panics on boot after zfs crash f ports/144412 stefan Update port: mail/tkrat2 (Use latest tcl/tk versions) o bin/144411 [patch] mtree(8) doesn't reject non-regular files for o docs/144408 doc [patch] update makefs(8) (remove device option) o ports/144406 wen math/p5-Math-BigInt-GMP doesn't build with -lgmp o amd64/144405 amd64 [build] [patch] include /usr/obj/lib32 in cleanworld t o bin/144388 [patch] different behavior of make(1) between command o usb/144387 usb [run] [panic] if_run panic o bin/144377 Display of diacritics is mildly broken in ee(1) o amd64/144376 amd64 [panic] continuous reboot on motherboards with ATI SB7 o bin/144343 hrs The rtadvd cannot avoid the prefix that doesn't want t o ports/144335 python [PATCH] www/py-webhelpers does not use PYTHONPREFIX_SI o i386/144326 i386 [ata] PERC H200 Integrated/Adapter not recognized on D o kern/144325 [libpcap] tcpdump compiles complex expression to incor f ports/144324 vbox emulators/virtualbox-ose 3.1.2 breaks Solaris10 instal p kern/144323 rpaulo [ieee80211] A response management frame appears in wir o bin/144322 truss(1) fails on 'assistant-qt4' from the port qt4-as f kern/144315 net [ipfw] [panic] freebsd 8-stable reboot after add ipfw o bin/144313 ld(1) can't find libs in /usr/local/lib but ldconfig(8 o kern/144311 pf [pf] [icmp] massive ICMP storm on lo0 occurs when usin p kern/144307 jh [libc] [patch] ENOENT set unnecessarily under certain o bin/144306 [libm] [patch] Nasty bug in jn(3) o kern/144301 scsi [ciss] [hang] HP proliant server locks when using ciss a bin/144300 brucec [patch] mdconfig(8): mdconfig -{d,l}n doesn't work o ports/144287 x11 [PATCH] graphics/libGL and friends: Fix build with new o bin/144285 [patch] ps(1): ps -axo user,%cpu,%mem - most processes o kern/144280 [boot] boot0cfg not USB aware o misc/144278 [install] Fixit from USB dont work o ports/144277 skreuzer 2 pkg with same name o kern/144269 ipfw [ipfw] problem with ipfw tables o ports/144264 installing misc/compat5x (or other compats) is broken o ports/144248 sobomax net/asterisk16 conflicts with linuxthreads o conf/144243 [patch] Add NIS related files to OptionalObsoleteFiles o kern/144234 fs [zfs] Cannot boot machine with recent gptzfsboot code o kern/144233 mjacob [xpt] xpt_rescan/XPT_SCAN_LUN should honor a wildcard o stand/144231 standards bind/connect/sendto too strict about sockaddr length o ports/144226 kmoore devel/qtcreator installation creates dir owned by user a ports/144224 mono [PATCH] lang/mono Fix build with new GCC o ports/144223 obrien ports/textproc/urlview installs non-text browser even o conf/144213 rc [rc.d] [patch] Disappearing zvols on reboot o kern/144206 net Marvell Yukon NIC not working under FreeBSD o ports/144203 clsung textproc/refdb: network clients loop indefinitely when o kern/144194 dchagin [linux] [patch] linuxulator: 2 exec bug fixes o kern/144187 ipfw [ipfw] deadlock using multiple ipfw nat and multiple l o ports/144164 portmgr make package-noinstall does not include rc.d scripts f amd64/144151 amd64 [ata] Can not burn CD/DVD with AHCI enabled o ports/144145 gecko www/firefox: Firefox 3.6 does not allow any https-conn o bin/144139 x11/xscreensaver-gnome can't build because of bug in G o docs/144127 ed termios(4) man page wrongly claims CCTS_OFLOW/CRTSCTS o ports/144120 glewis java/openjdk6: games/pcgen doesn't fully work with ope o ports/144118 timur net/samba34 files in different location than in previo f amd64/144113 amd64 [ata] 8.0-RELEASE fails to detect SATA hard disks on a o ports/144110 mnag [PATCH] www/lighttpd: support IPv6 addresses in mod_ex o bin/144109 hostapd(8) uses the MAC of the wireless interface, but o conf/144079 Makefile.inc1 ${DESTDIR} make dependency enhancement o ports/144078 gecko www/firefox: firefox-3.6,1 https connections stall f ports/144066 Upgrade net/asterisk16-addons to 1.6.2.0 o ports/144065 sobomax Upgrade net/asterisk16 to 1.6.2.2 f ports/144064 amdmi3 New port: emulators/visualboyadvance-m p kern/144061 rwatson [socket] race on unix socket close o ports/144057 miwi New port: print/texlive* TeXLive document production s o kern/144055 [ata] [panic] kernel panic on IBM x226 with SATA drive o ports/144050 miwi print/cupsddk: remove port o ports/144047 brooks Update port: www/trac-fullblog to 0.1.1 o i386/144045 acpi [acpi] [panic] kernel trap with acpi enabled o ports/144044 gecko [PATCH] www/firefox: Makefile.webplugins target order o usb/144043 usb [umass] [usb8] USB DLT tape drive throws random errors f ports/144036 audio/lmms: compile error in core/JournalingObject.cpp a ports/144035 python ports/databases/py-sqlite3 does not start to build o ports/144033 lx a bug of textproc/scim cause every gtk program crashed f ports/144015 itetcu www/opera: java applets not working on amd64 systems b o ports/144010 apache devel/apr1 tries to use SYSVIPC even in jails o i386/144005 [hang] System freezes o kern/144000 net [tcp] setting TCP_MAXSEG by setsockopt() does not seem o amd64/143992 amd64 [panic] Random reboot o ports/143981 des [patch] shells/zsh: ZSH_MEM, ZSH_SECURE_FREE, DEBUG o kern/143973 ipfw [ipfw] [panic] ipfw forward option causes kernel reboo o ports/143967 New Port: devel/openocd-devel o bin/143962 fstat(1) doesn't work on UNIX sockets o ports/143949 openoffice editors/openoffice-3: system unzip pickiness unhelpful o kern/143939 net [ipfw] [em] ipfw nat and em interface rxcsum problem o ports/143938 [NEW PORTS] Linux versions of IBus (Intelligent Input o ports/143924 timur Port net/samba34 default install binaries are not stri o kern/143874 net [wpi] Wireless 3945ABG error. wpi0 could not allocate o kern/143868 net [ath] [patch] allow Atheros watchdog timeout to be tun o amd64/143854 amd64 [build] error in make world during upgrade from 7 to 8 o docs/143850 doc procfs(5) manpage for status > controlling terminal is o kern/143846 net [gif] bringing gif3 tunnel down causes gif0 tunnel to o kern/143837 [irq] [panic] nmi_calltrap in irq257: bce1 o misc/143831 [bsd.own.mk] [patch] Fix missing atm -> bsnmp dependen o bin/143830 [patch] atmconfig(8): Fix conditional inclusion for sb o ports/143826 nivit plist cleanup for devel/py-configobj o kern/143825 fs [nfs] [panic] Kernel panic on NFS client o kern/143805 [ata] WARNING - READ_DMA48 UDMA ICRC error with 63XXES o kern/143800 [boot] ping of local ip failed with network boot o i386/143798 acpi [acpi] shutdown problem with SiS K7S5A o usb/143790 usb [boot] can not boot from usb hdd o misc/143785 [build] [patch] add passive mode to pkg_add cdrtools i o bin/143732 [patch] mtree(8) does a full hierarchy walk when reque o ports/143723 nork graphics/dri fails to build after graphics/libdrm upda o kern/143703 [route] [patch] ECMP Phase 1 fixes for FreeBSD 7.2 o bin/143699 [patch] extend brandelf's OS knowledge o bin/143698 portmgr pkg_add(1) probably behaving incorrectly o www/143697 linimon [portsmon.freebsd.org] Error: could not connect to the o ports/143676 vbox emulators/virtualbox-ose: Freeze on loading VirtualBox s kern/143673 net [stf] [request] there should be a way to support multi s kern/143666 net [ip6] [request] PMTU black hole detection not implemen o kern/143653 ipfw [ipfw] [patch] ipfw nat redirect_port "buf is too smal o ports/143651 timur net/samba34 pkg does not create directories f ports/143648 vbox AMD-V is not recognized on amd64 with emulators/virtua o conf/143637 rc [patch] ntpdate(8) support for ntp-servers supplied by o kern/143623 firewire [firewire] firewire fails to attach DV camera and down o kern/143622 net [pfil] [patch] unlock pfil lock while calling firewall o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result f usb/143620 usb [cdce] [usb8] the module if_cdce doesn't support my Op o ports/143597 acm editors/lazarus doesn't build ... firebird client fail o kern/143595 net [wpi] [panic] Creating virtual interface over wpi0 in o kern/143593 net [ipsec] When using IPSec, tcpdump doesn't show outgoin o kern/143591 net [ral] RT2561C-based DLink card (DWL-510) fails to work o i386/143587 i386 [boot] [hang] BTX 1.02 freezes upon assigning Bios C d o ports/143584 brooks [PATCH] security/ca_root_nss: Incorrect file name / ve o ports/143574 clsung [update] ports/devel/p5-Date-Manip o kern/143573 net [em] em(4) NIC crashes intermittently o bin/143572 [zfs] zpool(1): [patch] The verbose output from iostat o bin/143570 [patch] stock ftpd(8) does not handle "filesize" limit o bin/143568 ktrace(1) is limited with other user's "filesize" limi o ports/143566 sysutils/diskcheckd runs constantly when using gmirror o kern/143564 [mly] camcontrol(8) fails to show transfer speed in ml o kern/143543 pf [pf] [panic] PF route-to causes kernel panic o bin/143533 [patch] Changes to support Sun jumpstart via bootparam o ports/143526 anders [ PATCH ] mail/cclient doesn't link against OpenSSL fr o kern/143521 [irq] [panic] nmi_calltrap in siopoll() o kern/143505 multimedia [pcm] FreeBSD 8.0-RELEASE (x64) won't make sound card o bin/143504 pf [patch] outgoing states are not killed by authpf(8) o kern/143503 secteam [jail] Security bug: jailed shell has access outside o o ports/143501 trasz devel/libcoyotl: install fails because GNU cp is assum o kern/143474 ipfw [ipfw] ipfw table contains the same address o docs/143472 doc gethostname(3) references undefined value: HOST_NAME_M o ports/143471 timur nss_wins.so(samba3x) have incompatible function entry. o kern/143455 geom gstripe(8) in RELENG_8 (31st Jan 2010) broken p usb/143448 gavin [usbdevs] [usb8] [patch] QUIRK: JMicron JM20336 USB/SA o kern/143426 [panic] System crash with Firefox-3..7.5 & FreeBSD-7.2 o kern/143420 acpi [acpi] ACPI issues with Toshiba o docs/143416 doc [handbook] IPFW handbook page issues o docs/143408 doc man filedesc(9) is missing o kern/143398 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor f ports/143396 dhn sysutils/fusefs-curlftpfs: panic: page fault o bin/143389 [2tb] fdisk(8) cannot handle above 1TB under i386 syst o ports/143384 ale [PATCH] databases/mysql50-server: switch to using USER o bin/143375 [patch] awk(1) trashes memory with regexp and ^ anchor f kern/143374 [ata] notebook with SATA now says: DMA limited to UDMA o bin/143373 [patch] awk(1) tolower/toupper functions don't support o kern/143370 [new driver] [patch] New splash_txt module - support f o bin/143369 [patch] awk(1) doesn't handle RS as a regexp but as a o bin/143368 [patch] awk(1): number of open files is limited to sma o bin/143367 [patch] awk(1) treats -Ft as -F o bin/143365 [patch] incorrect regexp matching in awk(1) o bin/143363 [patch] incorrect handling of \ at the end of line in o bin/143362 awk(1) incorrect matching o stand/143358 standards [libm] nearbyint(3) raises spurious inexact exception s bin/143351 [request] update flex(1) to at least 2.5.33 o kern/143349 [panic] vm_page_free: freeing busy page o kern/143345 fs [ext2fs] [patch] extfs minor header cleanups to better f ports/143344 stefan [PATCH] sysutils/dtc: unbreak port o docs/143342 doc Developer's handbook contains stale information. o kern/143340 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o ports/143334 wes [PATCH] devel/poco-ssl: unbreak port o docs/143330 doc [patch] strtonum(3) does undocumented clobbering of er o kern/143324 [panic] vm_fault: fault on nofault entry, addr: c10a50 o ports/143302 mnag Update port www/lighttpd: start with clean environment o kern/143298 secteam [random] [patch] random_yarrow_block() doesn't actuall f usb/143294 usb [usb8] copying process stops at some time (10 - 50 sec o ports/143291 brooks net/openmpi: sysutils/sge62 dep should be fixed o usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system o kern/143285 net [em] [regression] jumbo frames broken in 8.0 o bin/143271 [patch] whatis(1) should print error message to stderr o ports/143265 krion [UPDATE] dns/libidn: update to 1.16 o ports/143260 gnome devel/gobject-introspection writes files in $HOME o gnu/143254 [patch] groff(1) build in base system does not honor P o kern/143227 [panic] [cpufreq] free: address has not been allocated o ports/143222 yzlin [UPDATE] sysutils/htop: improve some code from svn o ports/143218 jhay [UPDATE] net/olsrd: update to 0.5.6-r8 o kern/143212 fs [nfs] NFSv4 client strange work ... o kern/143208 net [ipsec] [gif] IPSec over gif interface not working o ports/143194 lioux [PATCH] net-p2p/i2p: use $SUB_FILES to update pkg-mess f usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google o kern/143184 fs [zfs] [lor] zfs/bufwait LOR s amd64/143173 amd64 [ata] Promise FastTrack TX4 + SATA DVD, installer can' o bin/143142 cperciva [PATCH] Fix non-POSIX compliant multiline conditional a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J o conf/143137 ed MFC rc.d/jail (pre|post)(start|stop) jail hooks in to o conf/143127 Patch against newvers.sh, minor cleanup/fixes o kern/143126 [ata] Data loss on read timeout o ports/143095 clsung [PATCH] Change default socket of ClamAV for security/c o bin/143090 [PATCH] Let indent(1) handle widecharacter literals co o kern/143088 [hang] FreeBSD 9.0-CURRENT freezes while starting kern o conf/143085 rc [patch] ftp-proxy(8) rc(8) with multiple instances o conf/143084 rc [jail] [patch]: fix rc.d/jail creating stray softlinks o i386/143082 [install] Unable to install 8.0-RELEASE on Dell 2950 w o conf/143079 net hostapd(8) startup missing multi wlan functionality o kern/143074 net [wi]: wi driver triggers panic o kern/143073 [patch][panic] unp_gc panic (race with uipc_detach) o kern/143069 xen [xen] [panic] Xen Kernel Panic - Memory modified after o bin/143058 [patch] mdconfig(8): make mdconfig -o reserve default o kern/143046 gallatin [mxge] [panic] panics since mxge(4) update o usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d o docs/143041 doc [patch] doc/en__US.ISO8859-1 refers to slip, slirp, sl o kern/143040 [sysctl] sysctl -a hangs, as a side effect it breaks o kern/143037 [libc] strtod(3) doesn't always round to the nearest o kern/143034 net [panic] system reboots itself in tcp code [regression] o kern/143033 [headers] [patch] _SWAP not listed in comment in sys/q o kern/143029 [libc] poll(2) can return too large a number s ports/143024 [PATCH] sysutils/puppet: add possobility to rc script o bin/143017 watch(8): fatal: cannot attach to tty o kern/143006 [build] [request] ACCEPT_FILTER_DATA and ACCEPT_FILTER o kern/142999 [puc] [patch] add support for the I-O DATA RSA-PCI2/R o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 f usb/142989 usb [usb8] canon eos 50D attaches but detaches after few s o conf/142973 rc [jail] [patch] Strange counter init value in jail rc s conf/142972 jail [jail] [patch] Support JAILv2 and vnet in rc.d/jail o conf/142961 pf [pf] No way to adjust pidfile in pflogd o bin/142960 sysinstall [patch] sysinstall(8) comparison of cdrom.inf CD_VERSI f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE f kern/142951 ipfw [dummynet] using pipes&queues gives OUCH! pipe should o i386/142946 i386 [boot] Can't boot installation DVD. BTX halted o docs/142938 wkoszek [kld] share/examples: fix warnings o kern/142937 bz [ipsec] [patch] IPSec doesn't work with link-local add o i386/142934 i386 [boot] Cannot boot FreeBSD 6.4, 7.x on Hint Corp VX Pr o bin/142932 adduser(8) script add bogus symbol at "full name" fiel p kern/142927 thompsa [vlan] [patch] handle parent interface link layer addr o kern/142924 fs [ext2fs] [patch] Small cleanup for the inode struct in o docs/142917 doc top(1) man page does not include information about VCS o kern/142914 fs [zfs] ZFS performance degradation over time o bin/142913 [patch] netstat(1) -w should produce error message if o bin/142912 [patch] nfsstat(1) -w should produce error message if o bin/142911 [patch] vmstat(8) -w should produce error message if f o kern/142907 net [wpi] if_wpi unstable on ibm/lenovo x60 -- suspect fir o kern/142878 fs [zfs] [vfs] lock order reversal o kern/142877 net [hang] network-related repeatable 8.0-STABLE hard hang o kern/142872 pjd [zfs] ZFS ZVOL Lockmgr Deadlock o bin/142867 sysinstall sysinstall(8): in a custom installation re-entering th o ports/142837 emulation [patch] emulators/linux_base-* packages fails to insta o ports/142824 [patch] security/openssh-portable: add VersionAddendum o conf/142817 pf [patch] etc/rc.d/pf: silence pfctl o bin/142814 [patch] add beginning and end offset options to md5(1) o ports/142812 nivit [PATCH] math/mprime: Use SUB_FILES to update files o ports/142807 gecko www/firefox35-i18n does not depend on www/firefox35 o stand/142803 standards j0 Bessel function inaccurate near zeros of the functi o kern/142802 [ata] [panic] on removing drive: recursed on non-recur s bin/142786 [request] gpart(8) should recognize NAND media and sug o kern/142781 [lor] New LOR: process lock / system map o kern/142774 net Problem with outgoing connections on interface with mu a ports/142773 roam update security/stunnel o kern/142772 net [libc] lla_lookup: new lle malloc failed o ports/142769 sergei [PATCH] mail/offlineimap: use $SUB_FILES to dynamicall o kern/142766 net [ipw] [regression] ipw(4) with Intel PRO/wireless 2100 a ports/142761 cy Update: net/ntp-devel o ports/142744 new port: x11/keyboardcast Broadcast keystrokes to mul o ports/142743 stas [PATCH] devel/cross-binutils: installed by *-rtems-gcc o kern/142741 bz [libipsec] [ipsec] Wrong use of constant PF_UNSPEC in o ports/142740 xride x11/wdm: in openpam_dispatch(): pam_nologin.so: no pam o ports/142739 rnoland [PATCH] x11-wm/libcompizconfig Patch not needed on rec o ports/142736 gecko [PATCH]www/firefox3*: unbreak with recent versions of o ports/142734 gshapiro [PATCH] mail/listmanager: Support NOPORTSDOCS & DATA, o kern/142728 [panic] Fatal trap 12 in g_io_request o usb/142719 usb [urtw] [usb8] AirLive WL-1600USB (RTL8187L chipset) fa o usb/142713 usb [usb67] [panic] Kernel Panik when connecting an IPhone f ports/142704 java [PATCH] java/jai-imageio: use $SUB_FILES to dynamicall f kern/142624 gavin Sending large chunks of data fails o kern/142597 fs [ext2fs] ext2fs does not work on filesystems with real p kern/142595 jhb Implementation of "filesystems" file in linprocfs(5) o kern/142594 pjd [zfs] Modification time reset to 1 Jan 1970 after fsyn a bin/142570 portmgr [PATCH] clean up quiet mode (-q | --quiet) output of p o kern/142563 geom [geom] [hang] ioctl freeze in zpool o ports/142549 gnome sysutils/hal: hald cannot find DVD/CS anymore a bin/142529 dougb [build] [patch] make delete-old removes BIND files whe o bin/142526 [patch] Cleanups and updates to newfs_msdos(8) o ports/142521 pb multimedia/kino fails to build on 8.0-amd64 with FFMPE o kern/142518 net [em] [lagg] Problem on 8.0-STABLE with em and lagg f kern/142510 [ata] [panic] FreeBSD 8.0-RELEASE panic'ed after remov o ports/142504 new port: net/gnu-dico - dict protocol server o kern/142489 fs [zfs] [lor] allproc/zfs LOR o ports/142476 portmgr bsd.gnat.mk - improved Ada support for the ports syste o conf/142467 /var/log/auth.log may not be rotated for years o kern/142466 fs Update 7.2 -> 8.0 on Raid 1 ends with screwed raid [re f ports/142440 python New Port: databases/py-south0.6 o docs/142437 doc [request] Errata Notices Index missing o conf/142434 rc [patch] Add cpuset(1) support to rc.subr(8) o ports/142433 luigi multimedia/linux-gspca-kmod o ports/142423 des [PATCH] sysutils/munin-node: Correct default postfix p o i386/142421 i386 [ata] optical drives not found p docs/142418 bcr [PATCH] newfs_msdos(8) doc fix o kern/142401 fs [ntfs] [patch] Minor updates to NTFS from NetBSD o kern/142390 [keyboard] 30th console switch hangs computer complete o kern/142389 [libc] libc LDAP problem after 7.2-RELEASE-p1 [regress o ports/142378 obrien textproc/urlview has run dependency on firefox p ports/142374 Update: www/MT and Other language p docs/142367 roam [patch] wlan(4) does not document requirement for kern f kern/142365 geom [geom] FreeBSD RAID1 (gmirror) is much slower than Lin o ports/142352 cy /usr/ports/sysutils/cfengine3 inconsistent startup fil o kern/142351 scsi [mpt] LSILogic driver performance problems a docs/142341 doc jail(8): Jail escape when cwd is moved from the host s o misc/142335 brucec Download of Release 8.0 LIVE is NOT a "live" from CD p o ports/142322 timur [patch] net/samba33: smbstatus got error: messaging_td o kern/142306 fs [zfs] [panic] ZFS drive (from OSX Leopard) causes two o conf/142304 rc rc.conf(5): mdconfig and mdconfig2 rc.d scripts lack e f usb/142276 usb [umass] [usb8] Cache Synchronization Error with Olympu o kern/142263 acpi [acpi] ACPI regression on Asus K8N7-E deluxe motherboa o ports/142259 itetcu sysutils/apcupsd segfaults during shutdown o bin/142258 [patch] rtld(1): add ability to log or print rtld erro o ports/142244 timur net/samba3: startup script should remove pid files o docs/142243 bcr Netcat (nc(1)) manual mistake o usb/142229 usb [ums] [usb8] [hang] connecting a USB mouse to a Dell P f ports/142219 cy security/fwbuilder aborts when compiling policy that h o kern/142198 simon SSLv3 failure with irc/xchat on FreeBSD 8.0 p kern/142197 rpaulo [ndis] [patch] ndis is missing media status reporting o i386/142190 i386 [boot] BTX Loader issue on Gigabyte Motherboard o kern/142173 [libc] localeconv(3): two-byte ascii thousands_sep o docs/142168 doc ld(1): ldd(1) not mentioned in ld(1) manpage o ports/142165 ale [PATCH] lang/php5: add optional patch for gd2 o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 o ports/142151 wosch [patch] ports-mgmt/portcheckout to use variables inste o ports/142115 nivit [patch] Extract textproc/py-genshi during installation o conf/142114 periodic(8): security report from 'periodic daily' doe o i386/142108 i386 [panic] vm_fault: fault on nofault entry, addr: c32a40 o sparc/142102 sparc64 [nfs] [panic] FreeBSD 8.0 kernel panics on sparc64 whe o ports/142087 jadawin deskutils/remind port doesn't install dependencies for o ports/142086 new port: databases/lib_mysqludf_xql, provides SQLXML f kern/142085 gavin [puc] [patch] Few lines to pucdata.c to support for Te o kern/142083 [vfs] buffer overflow in vfs_mountroot_try (sys/kern/v o kern/142082 dchagin [patch] [panic] linuxulator: getppid: use after free o ports/142069 x11 x11/xorg: After adding on a laptop Toshiba Sattelite L o kern/142068 fs [ufs] BSD labels are got deleted spontaneously o ports/142049 markus [PATCH:] make audio/cdparanoia work with new cam/ata c p bin/142047 brucec sysinstall(1): 512M default root filesystem size too s o ports/142046 jpaetzel net/isc-dhcp31-server: isc-dhcpd cannot write to lease o kern/142019 net [em] em needs "ifconfig em0 down up" when link was gon o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- o kern/142009 acpi [acpi] [panic] Panic in AcpiNsGetAttachedObject o ports/142000 wxs [patch] Wrong MAIL_GID when configuring mail/mailman f o kern/141950 daichi [unionfs] [lor] ufs/unionfs/ufs Lock order reversal o i386/141942 i386 [irq] interrupt storm (VIA 6421A atapci controller) p kern/141939 edwin [libc] [patch] strptime(3) confuses July with June wit o kern/141934 scsi [cam] [patch] add support for SEAGATE DAT Scopion 130 o ports/141933 steve x11-toolkits/open-motif update to 2.3.2 o kern/141928 ed [libteken] either xterm -C or ioctl TIOCCONS is broken o bin/141920 sort(1): sort -k 3,1g is very slow o java/141919 java Serious remote vulnerability in the JRE o sparc/141918 sparc64 [ehci] ehci_interrupt: unrecoverable error, controller o kern/141915 [hang] Unspecified lockup/deadlock with 7.2 on AMD64 o ports/141910 des sysutils/munin-node bug with reset stat for 'netstat' o conf/141909 rc rc.subr(8): [patch] add rc.conf.d support to /usr/loca o conf/141907 rc [rc.d] Bug if mtu (maybe others?) is set as first argu o kern/141905 pf [pf] [panic] pf kernel panic on 7.2-RELEASE with empty o ports/141898 xride sysutils/wmmemload: fails on 8.0-RELEASE o kern/141897 fs [msdosfs] [panic] Kernel panic. msdofs: file name leng o bin/141890 [patch] slapd(8): The slapd server starts/restarts way o kern/141861 net [wi] data garbled with WEP and wi(4) with Prism 2.5 o ports/141853 rnoland x11/xorg: X doesn't start with 'intel' (Asus P5QPL-AM o kern/141843 net [em] [vlan] Intel txcsum and assigned vlan invoke wron o kern/141841 [ata] Controller ST-Lab A-173 (Sil3512) lost the HDD d o bin/141840 des ssh(1): OpenSSH allow raise resource limit via .login_ o ports/141839 ume graphics/xface.el and mail/x-face-e21 are somewhat con o ports/141837 stas [update] lang/ocaml: patch to make lang/ocamlduce comp o kern/141826 multimedia [snd_hda] load of snd_hda module fails a ports/141795 dinoex graphics/jasper: ensure that configure script has exec o ports/141793 rnoland Death to patch-bsd.port.mk-0.3.6 in ports-mgmt/portman o ports/141790 [new port] net-im/zephyr : enterprise-class IM system o kern/141777 net [rum] [patch] Support usbdevs / rum(4) for Buffalo WLI f ports/141775 stefan x11/slim doesn't adhere keymap configuration f ports/141762 danfe net-p2p/linuxdcpp segmentation fault f kern/141756 gavin [mmc] MMC card attached to blocks keybo p bin/141753 jh [libc] [patch] double-free in reallocf(3) f kern/141741 net Etherlink III NIC won't work after upgrade to FBSD 8, o kern/141740 geom [geom] gjournal(8): g_journal_destroy concurrent error o threa/141721 threads rtprio(1): (id|rt)prio priority resets when new thread f kern/141718 pjd [zfs] [panic] kernel panic when 'zfs rename' is used o s stand/141705 standards [libc] [request] libc lacks cexp (and friends) o kern/141696 net [rum] [panic] rum(4)+ vimage = kernel panic o ports/141687 stas lang/ocaml will not compile f ports/141686 cy net/ntp 4.2.4p7@1.1607-o stops interferes with gpsd 2. o kern/141682 [libc] [patch] Faster version of strncpy(3) o usb/141680 usb [uath] [usb8] Netgear WG111T not working with uath dri o conf/141678 rc [patch] A minor enhancement to how /etc/rc.d/jail dete o i386/141675 i386 [boot] memory and BTX halted on Sunfire X4170 o usb/141664 usb [pcm] [usb8] Logitech USB microphone failure [regressi o ports/141660 x11 x11/xorg: X can't determine amount of video memory on o kern/141658 [panic] [usb67] Kernel panics when inserting a USB key o kern/141655 [sio] [patch] Serial Console failure on Dell servers o kern/141653 [ata] [panic] Panic in ata? f misc/141652 gavin [install] 8.0 install fails from USB memstick because p kern/141646 eri [em] em(4) + lagg(4) + vlan(4) generates ISL-tagged fr o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o ports/141640 krion [patch] mail/exim: fix pcre linking o kern/141632 ed [libteken] vidcontrol -T cons25 doesn't work with 'mod o ports/141521 lth [PATCH] net/p5-POE-Component-Server-Twirc: update to 0 o usb/141474 usb [boot] [usb8] FreeBSD 8.0 can not install from USB CDR o ports/141472 des [PATCH] shells/zsh: add linsysfs to (u)mount -t comple o i386/141470 i386 [boot] BTX halted immediatly on selecting any of the b o i386/141468 i386 [boot] FreeBSD 8.0 boot manager can cause disk not pro o kern/141463 fs [nfs] [panic] Frequent kernel panics after upgrade fro o kern/141452 [dtrace] DTrace stops tracing because of struct thread o kern/141439 dchagin [linux] [patch] linux_exit_group kills group leader o amd64/141413 amd64 [hang] Tyan 2881 m3289 SMDC freeze o ports/141386 x11 x11/xorg won't build from ports p docs/141353 jhb [NOTES] [patch] i386 NOTES says building acpi into ker s bin/141340 netstat(1): wrong netstat -w 1 output o kern/141328 xen [xen] [panic] gstat exit causes kernel panic from unma o usb/141327 usb [ukbd] [usb67] USB kbd not working with 7.1+PAE on IBM o conf/141317 jail [patch] uncorrect jail stop in /etc/rc.d/jail o kern/141314 net Network Performance has decreased by 30% [regression] f usb/141313 thompsa [usb8] nvidia USB 2.0 controller - stops copying on US o misc/141311 [build] "make delete-old" leaves some unnecessary file o ports/141308 ume security/cyrus-sasl2 + authdaemond + postfix stopped w o kern/141305 fs [zfs] FreeBSD ZFS+sendfile severe performance issues ( o kern/141285 net [em] hangs down/up intel nic during creating vlan o ports/141281 anders [patch] security/pwman o ports/141279 girgen databases/postgresql81-client depends on libicu o conf/141275 rc [request] dhclient(8) rc script should print something o ports/141272 x11 x11-drivers/xf86-video-ati and x11-drivers/xf86-video- o bin/141264 ntpd(8) crashes when tries to use an oncore reference a ports/141251 roam mail/vpopmail: Segmentation Fault (core dump) on vdeli o docs/141245 blackend [handbook][patch] Chapter 31.3 Wireless Networking: Up o ports/141236 alepulver games/worldofpadman gives error parsearg() - expected s kern/141235 geom [geom_part] 8.0 no longer provides /dev entries for al o docs/141227 blackend Handbook/sysinstall documentation about distributions o ports/141223 x11 x11-drivers/xf86-video-chips needs to be updated to 1. o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER o ports/141200 mav net/mpd5 asserts on reconnection over tcp o threa/141198 threads [libc] src/lib/libc/stdio does not properly initialize p kern/141194 jh [tmpfs] tmpfs treats the size option as mod 2^32 p bin/141175 kientzle [patch] New cpio(1) in FreeBSD 8 regressed and left ou o kern/141150 [pty] [hang] TIOCDRAIN ioctl on pts/pty master hangs o ports/141149 bsam sysutils/libgksu: gksu port hangs, never displays stdo o ports/141145 x11 devel/makedepend: causes problem with openssl & X o ports/141133 python [NEW PORT] net-p2p/py-transmissionrpc p amd64/141130 jhb rpc may causes high cpu usage p docs/141125 brucec [patch] Typo of "NUL" in getline.3 man page o i386/141119 i386 [irq] Stop starting on computer with ISA network card o ports/141116 x11 [hang] x11/xorg: ATI radeon xorg freezes [regression] o amd64/141112 amd64 [ata] [panic] Kernel panic when booting with any sATA f ports/141103 stefan net/stone strange behavior on 8.0-RELEASE o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot o kern/141086 fs [nfs] [panic] panic("nfs: bioread, not dir") on FreeBS o amd64/141060 amd64 [install] Can't install 8.0-RELEASE on the server wher p ports/141033 gnome [PATCH] allow to build devel/libsoup without gnome o conf/141032 misleading documentation for rtadvd.conf(5) raflags se o kern/141023 net [carp] CARP arp replays with wrong src mac o bin/141016 [libpam] PAM checks in sshd too few? o kern/141011 usb [usb] Encrypted root, geli password at boot; enter key o kern/141010 fs [zfs] "zfs scrub" fails when backed by files in UFS2 f ports/141001 net/ssltunnel-server/ depends on /sbin/pppd f ports/140990 lx [UPDATE] Patches to update chinese/scim-tables to 0.5. p bin/140976 jh comm(1) mishandles lines with tabs o bin/140972 sysintall(8): 8.0-RELEASE-i386-memstick Fixit broken - o ports/140968 x11-toolkits/py-tkinter(devel/pth): py26-tkinter-2.6.4 o conf/140965 [terminfo] Cannot create terminfo database because ncu p docs/140962 danger ldd(1) man page example bug p docs/140940 danger sctp manual pages contain links to pages in section 2 o ports/140939 secteam [patch] security/vuxml: fix and extend files/newentry. o ports/140935 jpaetzel net/isc-dhcp31-server: FreeBSD patch makes dhclient no o kern/140932 fork+exec from threaded FreeBSD 7.2 application o ports/140927 openoffice problem build editors/openoffice.org-3 o usb/140920 usb [install] [usb8] USB based install fails on 8.0-RELEAS o docs/140918 doc [handbook] update 8.0 handbook about serial port /dev p usb/140904 jhb [build] [usb8] Kernel fails to build if some unused US f bin/140900 gavin [geom_part] sysinstall(8) problems: "unable to make de o ports/140895 hrs net/openbgpd exit, when kernel table change o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b o kern/140892 top(1): Incorrect cpu usage of per process under FreeB o kern/140888 fs [zfs] boot fail from zfs root while the pool resilveri o bin/140887 randi 8.0: sysinstall(8) needs to update to new serial port f usb/140883 usb [axe] [usb8] USB gigabit ethernet hangs after short pe o ports/140882 lev devel/py-subversion: subversion-1.6.6_1 build error wi s ports/140880 ruby ports-mgmt/portupgrade: portversion confused with ezm3 f amd64/140876 gavin During just a bit Server load apache output garbled (h o amd64/140873 gavin [install] Cannot install 8.0-RELEASE on Thinkpad SL300 o ports/140868 xride x11/wdm: cannot type password after exitting window ma f ports/140867 stefan net-mgmt/nagios-plugins: check_icmp default packets si o bin/140863 freebsd-update(8) fails to check that writes will succ o kern/140858 [hang] System freeze during boot when PC-Card NIC inst o kern/140849 usb [ums] [usb8] USB mouse doesn't work under FreeBSD 8.0- s docs/140847 doc [request] add documentation on ECMP and new route args o bin/140843 sysinstall sysinstall(8): cannot software install from usb o bin/140842 sysinstall sysinstall(8): destroyed ncurses interface with FBSD8. f amd64/140840 gavin [boot] FreeBSD can't find any partion or hard disk to f kern/140836 gavin [geom_part]? - failed to upgrade to 8.0-RELEASE o kern/140835 [libfetch] fetchParseURL(3) returns success with inval a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl o ports/140809 x11 x11/xorg: Xorg 7.4 radeon drm crashes 8.0 o kern/140796 net [ath] [panic] privileged instruction fault f ports/140791 bf [PATCH] textproc/libtre: Fix build on systems where GC f ports/140790 lioux [PATCH] mail/crm114: Fix build on systems where GCC st o kern/140778 net [em] randomly panic in vlan/em o ports/140775 x11 x11/xorg: fatal trap 12 after closing XORG with CTRL-A o ports/140764 x11 x11-drivers/xf86-video-openchrome segfaults with VIA K o kern/140752 [ata] [patch] HDD power-off procedure is not clean o amd64/140751 acpi [acpi] BIOS resource allocation and FreeBSD ACPI in TO o kern/140742 net rum(4) Two asus-WL167G adapters cannot talk to each ot o kern/140728 net [em] [patch] Fast irq registration in em driver o docs/140725 darrenr wrong directory in ipnat(8) man page o amd64/140715 amd64 [boot] Dell M600 Blade fails to boot 7.2+ 64 bit o kern/140697 pf [pf] pf behaviour changes - must be documented o ports/140693 amdmi3 games/blinkensisters cannot be compiled o kern/140690 [libc] [patch] swab(3) with negative len should do not o kern/140682 net [netgraph] [panic] random panic in netgraph o kern/140661 fs [zfs] [patch] /boot/loader fails to work on a GPT/ZFS- o kern/140658 [cpufreq] dev.cpu.0.cx_lowest=C3 from /etc/sysctl.conf o i386/140655 i386 [panic] Lenovo X300: fatal trap 12 after /sbin/halt -p o kern/140654 [umass] growisofs/mkisofs PERFORM OPC and GET EVENT C o conf/140650 [build] [patch] WITHOUT_MODULES cannot be used from ke o kern/140647 net [em] [patch] e1000 driver does not correctly handle mu o i386/140645 i386 [irq] High INTERRUPT rate on CPU 0 o kern/140640 fs [zfs] snapshot crash o kern/140634 net [vlan] destroying if_lagg interface with if_vlan membe f ports/140621 edwin Add support for /etc/cron.d and /usr/local/etc/cron.d o kern/140619 net [ifnet] [patch] refine obsolete if_var.h comments desc o kern/140614 usb [uplcom] [patch] adding support for Radio Shack Gigwar o ports/140608 openoffice /usr/ports/editors/openoffice.org-3 start up problem o kern/140600 [swi] [panic] current process = 15 (swi1: net) o kern/140597 net [netinet] [patch] implement Lost Retransmission Detect o amd64/140596 amd64 [panic] Kernel panic/crash o bin/140595 brucec [request] sysinstall(8): Replace "Country Selection" w o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja o kern/140590 net [bluetooth] ng_ubt(4) ng_l2cap_process_cmd_rej warning o ports/140583 hrs ports/print/acroread9 - handbook and port fail to ment o www/140580 www svnweb file logs are useless o kern/140567 net [ath] [patch] ath is not worked on my notebook PC o kern/140564 net [wpi] Problem with Intel(R) PRO/Wireless 3945ABG o ports/140557 ports shells/44bsd-csh ESC file completion and ^D (vie f ports/140542 edwin sysutils/isc-cron should be compatible with cron from o ports/140533 gnome bsd.gnome.mk - mtree may get parameters w/o space f ports/140525 matusita [panic] emulators/vmware-tools6: VMware: Kernel panic o kern/140514 des [pam] PAM can give PAM_SUCCESS when infact it should g o docs/140495 doc [patch] /etc/rc.conf.d is not documented in rc.conf(5) p bin/140493 jh [patch] truss(1) log file descriptor shared with trace o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d o docs/140474 doc signal(3) missing reference to NSIG o bin/140462 devd(8): [regression] devd.pid locked by /etc/rc.d and f kern/140461 [vm] Fail to read from swap. The swap_pager.c contains p docs/140458 bcr [patch] Grammar fix for to{upper,lower}(3) o docs/140457 doc [patch] Grammar fix for isspace(3) p docs/140456 roam [patch] Grammar fix for isprint(3) o kern/140453 multimedia [sound] No sound inside Virtualbox on 50% volume o i386/140448 i386 [boot] BTX loader hangs after displaying BIOS drives o docs/140444 doc [patch] New Traditional Chinese translation of custom- o conf/140440 rc [patch] allow local command files in rc.{suspend,resum o misc/140436 [nanobsd] pkg-add process fails when there is no /usr/ o docs/140435 doc ls(1), section STANDARD: the -A is exception from POSI o kern/140433 mm [zfs] [panic] panic while replaying ZIL after crash o kern/140429 [vfs] [panic] Fatal trap 12: page fault while in kerne o kern/140416 [mfi] mfi driver stuck in timeout o amd64/140391 amd64 [hang] powerd(8) freezes computer on Phenom II compute p bin/140384 uqs [patch] chio(8) fix some harmless uninitialized argume o www/140378 www query-pr.cgi has some bugs o misc/140376 [build] installworld fails trying to use 'chflags schg o docs/140375 doc [UPDATE] Updated zh_TW.Big5/articles/nanobsd o docs/140369 doc [patch] src/contrib/pf/man/pf.4 o ports/140364 ruby ports-mgmt/portupgrade-devel: #! line substitution is f kern/140361 [cpufreq] speed-stepping broken on PhenomII (acpi?) o kern/140358 qingli 8.0RC2: [arp] arp: writing to routing socket: Invalid o kern/140352 geom [geom] gjournal + glabel not working o kern/140349 [libpcap] [patch] libpcap's parser doesn't recognize n o kern/140346 net [wlan] High bandwidth use causes loss of wlan connecti o kern/140326 net [em] em0: watchdog timeout when communicating to windo p usb/140325 thompsa [libusb] [usb8] Missing/incorrect initialisation and m o kern/140313 xen [xen] [panic] FreeBSD8 RC2 as PV domU crashes during c a bin/140309 bad syntax cause yacc(1) segfault o bin/140304 [patch] add MAILFROM ability to cron(8) s ports/140303 net-mgmt/docsis can not compile filters under amd64 pl o ports/140273 ruby ports-mgmt/portupgrade-devel chokes on bsdpan pkgs o i386/140268 i386 [install] 8.0-RC* does not install on MSI MS-7255 [reg o conf/140261 rc [patch] Improve flexibility of mdconfig2 startup scrip o ports/140254 x11 x11-drivers/xf86-video-cirrus: Black Screen with Cirru o kern/140245 net [ath] [panic] Kernel panic during network activity on o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US o ports/140232 Resolve conflicts w/ devel/antlr & devel/pccts s ports/140216 gnome [patch] devel/nspr does not check POLLHUP in PR_Connec o ports/140215 openoffice editors/openoffice.org-3: Fatal error on OpenOffice cl o ports/140188 itetcu [PATCH] some ports need adjustment to properly expand o kern/140185 [patch] expand_number(3) does not detect overflow in n o misc/140173 [nanobsd] [patch] Small nanobsd pkg install change o ports/140170 nork net/liveMedia: install shared libraries and thus fix r o ports/140162 hrs print/teTeX listings module bug o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A f ports/140157 glarkin New port: www/trac-bitten Continuous integration for T o kern/140156 emulation [linux] cdparanoia fails to read drive data o bin/140151 [patch] hexdump(1): Fix potential setlocale(3) in hexd o amd64/140145 amd64 [boot] Installation boot sequence freezes o bin/140143 [patch] dlopen(3) doesn't promote RTLD_GLOBAL for link o kern/140142 net [ip6] [panic] FreeBSD 7.2-amd64 panic w/IPv6 o kern/140134 fs [msdosfs] write and fsck destroy filesystem integrity o docs/140082 bland [handbook] handbook/jails: russian translation is miss o docs/140075 doc release notes: missing word "NOT", which changes all t a ports/140073 wxs net/silc-irssi-plugin crashes upon joining any channel o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file o kern/140067 [boot] 8.0-RC2 from ISO, after install, hangs on boot o kern/140066 net [bwi] install report for 8.0 RC 2 (multiple problems) o kern/140051 net [bce] [arp] ARP not sent through Bridge Firewall with o kern/140018 [boot] locks up during boot on cpu error on Dell Power o conf/140009 configuration issue NIS in nsswitch.conf(5) o ports/140008 ruby ports-mgmt/portupgrade: many papercut omissions on por o ports/140007 lwhsu [repocopy] devel/gdb6 to devel/gdb66 o i386/139999 i386 [panic] random freeze and crash o amd64/139998 amd64 [panic] 7.2 amd64 panic in kern_mutex.c:339 o conf/139997 kbdmap(1): [patch] Swissgerman keyboard support for Ma s usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o bin/139989 atacontrol(8) freezes the system o gnu/139982 ld(1): BFD internal error o amd64/139924 amd64 [boot] cd or dvd not load o ports/139872 sergei [PATCH] ports-mgmt/porttools: improve port's directory f ports/139867 stefan mail/isoqlog catch segmentation fault under AMD64 p kern/139847 jh [geom_mbr] [patch] load/unload causes system to hang f kern/139811 gavin FreeBSD did not recognize Intel Gigabit ET Dual Port S o bin/139802 uqs [patch] fsck_msdosfs(8): sync with NetBSD sources, inc o ports/139794 stas [PATCH] net/ruby-ldap: update to 0.9.9 o i386/139743 i386 [ichsmb] [patch] ichsmb driver doesn't detects SMB bus o kern/139734 [libc] res_send calls getsockname(2) instead of getpee o ports/139726 stas lang/ruby18 (v1.145 Makefile) install fails "Directory o kern/139725 fs [zfs] zdb(1) dumps core on i386 when examining zpool c p kern/139723 [rtld] Quagga/zebra abort trap 6, FreeBSD 8.0-RC1 a kern/139718 trasz [reboot] all mounted fs don't get synced during reboot o kern/139715 fs [zfs] vfs.numvnodes leak on busy zfs o docs/139705 remko [patch] tunefs(8) man page bugs section ambiguous on a f kern/139653 [ata] READ_BIG sluggish ata CD/DVD performance on HP D o bin/139651 fs [nfs] mount(8): read-only remount of NFS volume does n o ports/139630 itetcu [PATCH] deskutils/treeline: update to 1.3.0 o amd64/139614 amd64 [minidump] minidumps fail when many interrupts fire p bin/139606 portmgr [patch] pkg_add(1) coredumps silently on atlantis syml o kern/139604 [patch] [ichwd] watchdog sometimes does not enable o bin/139601 [patch] make(1): variable substitution for $@ in depen a usb/139598 usb [umass] [usb8] CAM reports "xptioctl: put "device pass o kern/139597 fs [patch] [tmpfs] tmpfs initializes va_gen but doesn't u f ports/139587 edwin [PATCH] games/xrally: fix broken mtree with custom PRE o kern/139581 ipfw [ipfw] "ipfw pipe" not limiting bandwidth f ports/139580 jkim audio/oss - "overflow" messages o ports/139579 jkim overflow in audio/oss f kern/139576 ed [syscons] [patch] blink screen too noisy o kern/139571 [swi] [panic] Fatal trap 12: page fault while in kerne o kern/139565 net [ipfilter] ipfilter ioctl SIOCDELST broken o kern/139564 fs [zfs] [panic] 8.0-RC1 - Fatal trap 12 at end of shutdo o kern/139559 qingli [tun] several tun(4) interfaces can be created with sa o ports/139553 alepulver net-p2p/tribler: Fatal Error on start up o kern/139549 firewire [firewire] reconnecting a firewire disk does not cause f kern/139527 [twa] twa driver fails to build in CURRENT f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks o ports/139509 x11 x11-servers/xorg-server: runtime problems in latest (2 p bin/139492 portmgr pkg_install(1) - overlapping data buffer in call to sn o ports/139448 tota [NEW PORT] japanese/asterisk16-sounds: Japanese sound o ports/139440 alepulver [panic] 8.0 RC1 panics on writing large files to sysut o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o kern/139423 emulation [parallels] Networking does not work on amd64 guest on p docs/139413 des pam.conf documentation bug o kern/139407 fs [smbfs] [panic] smb mount causes system crash if remot o ports/139405 jpaetzel net/isc-dhcp30-server: DHCP server with two interfaces o kern/139403 [headers] absense of AUE_NULL o bin/139389 [patch] Change top(1) to display thread IDs o kern/139387 net [ipsec] Wrong lenth of PF_KEY messages in promiscuous o ports/139371 timur /usr/ports/net/samba-pdbsql compile error o kern/139363 fs [nfs] diskless root nfs mount from non FreeBSD server o bin/139346 net [patch] arp(8) add option to remove static entries lis o bin/139345 [patch] handle SIGINFO in sleep(1), etc. o docs/139336 doc [request] ZFS documentation suggestion o ports/139321 clsung security/snort 2.8.4.1_1 not compiling - dlsym no mess p bin/139319 uqs [patch] flex(1): fix prototypes, esp. when YY_NO_INPUT o ports/139315 itetcu [MAINTAINER] audio/liblastfm - fix build with custom P o bin/139314 install(1): install -d reports success on failure p kern/139312 delphij [tmpfs] [patch] tmpfs mmap synchronization bug o kern/139271 [pci] [patch] sysutils/hpacucli does not work on the a o kern/139268 net [if_bridge] [patch] allow if_bridge to forward just VL f misc/139263 [install] Can not install FreeBSD 7.2 from a USB CD/RO o conf/139255 8.0-RC1 network.subr calls route(8) with obsolete para o usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor o gnu/139239 ld(1) /usr/bin/ld: Please report this bug. o kern/139232 [panic] Kernel panic (spin lock held too long) p docs/139230 brueffer mknod(8) references /sys/conf/majors o kern/139226 ipfw [ipfw] install_state: entry already present, done o kern/139204 net [arp] DHCP server replies rejected, ARP entry lost bef f ports/139203 stefan sysutils/freebsd-snapshot more careful patch not depen o ports/139188 vbox [panic] emulators/virtualbox-ose: When "kldload vboxdr o bin/139181 randi WITHOUT_LEGACY_CONSOLE=1 breaks sysinstall(8) o ports/139169 maho math/atlas post-build target fails with WKDIRPREFIX de o docs/139165 doc gssapi.3 man page out of sync with between crypto and o kern/139162 net [fwip] [panic] 8.0-RC1 panics if using IP over firewir o docs/139153 doc [patch] the hier(7) man page needs to be updated o ports/139148 pb multimedia/dvdauthor: progress estimation bug in dvdun o bin/139146 gcc(1): gcc -m32 doesn't quite work o kern/139144 [keyboard] [patch] CapsLock LED should not depend on k o bin/139135 cperciva freebsd-update(8) misbehaves on upgrade and shows erro s sparc/139134 sparc64 kernel output corruption o kern/139127 [vfs] False negative vfs cache entry o kern/139117 net [lagg] + wlan boot timing (EBUSY) o ports/139116 portmgr bsd.port.mk: call target "install-rc-script" before "p o i386/139115 i386 [cpufreq] low cpu frequency reported [regression] o docs/139095 manolis new article on creating an internal FreeBSD Update Ser o kern/139093 yongari [msk] msk FIFO rx overrun f kern/139089 [panic] Panic: ffs_blkfree o kern/139088 acpi [acpi] ACPI Exception: AE_AML_INFINITE_LOOP error o kern/139080 [libc] [patch] closelog() can close negative file desc o kern/139079 net [wpi] Failure to attach wpi(4) o ports/139070 ale repocopy graphics/jpgraph -> graphics/jpgraph1 o kern/139058 net [ipfilter] mbuf cluster leak on FreeBSD 7.2 o bin/139052 kan gcc(1): Stack protection breaks -fprofile-generate on o ports/139045 x11 x11-drivers/xf86-video-ati: update to 6.12.3 s kern/139039 pjd [zfs] zpool scrub makes system unbearably slow o kern/139027 [ata] DVD RW is not recognized on ASUS K40IN laptop wh o kern/139019 [libc] [patch] Add xdr_sizeof() to libc. o docs/139018 doc translation of submitting.sgml from docproj/submitting a bin/139015 portmgr [patch] pkg_info(1): fix exit code for pkg_info -g o kern/139014 [null] /dev/null must be immunable to delete/unlink o ports/139011 x11 [patch] Add options to support GLX TLS in x11-servers o www/138986 linimon Portsmon's portdependencytree.py is down a gnu/138983 [binutils] System binutils too old for modern CPUs (la o kern/138967 [ata] HDD write error: g_vfs_done(): ... ]error = 1 o bin/138961 ldap groups don't work with su(1) o i386/138948 i386 [twa] [regression] da0: Fi o kern/138944 emulation [parallels] [regression] Parallels no longer works in o kern/138938 [psm] Synaptics Support dosn't work on Dell Latitude o ports/138929 [PATCH] security/heimdal update to 1.2.1 o bin/138926 cperciva [patch] freebsd-update(8) allows unattended upgrade a usb/138904 usb [rum] [panic] [usb67] unpluging USB wifi card panics s o docs/138887 doc manpage ports(7) incorrect f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t o kern/138880 emulation [linux] munmap segfaults after linux_mmap2 stresstest o kern/138876 [uma] [panic] UMA: page_free used with invalid flags 4 o kern/138870 [apm] 8.0beta4 PnP problem? lost synaptics trackpad in o bin/138858 patch(1) assumes that a file appears only once in the o bin/138855 [patch] if the hostname is empty, opiepasswd(1) create o kern/138851 [ata] FreeBSD by default does not support ATAPI CDs o kern/138850 net [dummynet] dummynet doesn't work correctly on a bridge o docs/138845 doc Exceeding kern.ipc.maxpipekva refers to tuning(7) whic o ports/138806 New port: games/avp-demo ("Aliens versus predator" dem o usb/138798 usb [boot] [usb8] 8.0-BETA4 can't boot from USB flash driv o kern/138790 fs [zfs] ZFS ceases caching when mem demand is high o kern/138782 net [panic] sbflush_internal: cc 0 || mb 0xffffff004127b00 o ports/138772 nox emulators/qemu should build on SPARC o kern/138739 net [wpi] wpi(4) does not work very well under 8.0-BETA4 o i386/138737 i386 [endian] [patch] Patch for bswap64(9) operation on IA o java/138729 java java/jdk16: setting 'export AWT_TOOLKIT=MToolkit' caus o java/138728 java java/jdk16: SIGSEGV in java runtime f kern/138709 mm [zfs] zfs recv hangs, pool accesses hang in rrl->rr_cv f kern/138694 yongari [bge] FreeBSD 6.3 release does not recognize Broadcom o conf/138692 [request] [patch] 450.status-security should exit with o amd64/138688 net [rum] possibly broken on 8 Beta 4 amd64: able to wpa a o kern/138681 [pmap] [panic] repeatable kernel panic in pmap_remove_ o kern/138678 net [lo] FreeBSD does not assign linklocal address to loop o docs/138663 doc system(3) man page confuses users about "return value o kern/138662 [panic] ffs_blkfree: freeing free block f amd64/138661 amd64 [panic] Kernel Panic after typing "reboot" o kern/138660 net [igb] igb driver troubles in 8.0-BETA4 o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o kern/138652 net [tcp] TCP window scaling value calculated incorrectly? o kern/138631 [panic] FreeBSD 7.2 panics when I try to start X o kern/138622 [cam] CAMIOCOMMAND ioctl failed: Inappropriate ioctl f o kern/138620 net [lagg] [patch] lagg port bpf-writes blocked f ports/138602 audio/sphinxbase port update o ports/138581 glewis java/diablo-jdk16: java/eclipse 3.4.2 crashes with SIG o usb/138570 usb [usb] [panic] USB mass device panics current 7.2-STABL o bin/138560 ifconfig(8): wpa_supplicant(8): Incorrect usage of str o usb/138548 gavin [usb67] usb devices periodically have unknown activity o bin/138547 [request] improve dhcp behaviour with multiple network o kern/138537 [ata] [panic] Memory modified after free o ports/138533 clsung databases/mysql-proxy doesn't build with mysql 4.1 o kern/138526 [null] /dev/null does not support nonblocking operatio o kern/138525 [ppp] [panic] Kernel corruption of pppoe lists o docs/138485 doc bpf(4) and ip(4) man pages missing important corner ca f ports/138469 ale [ PATCH ] databases/mysql51-{server|client} bad depend o ports/138444 mbr [panic] emulators/open-vm-tools 167859_1 hgfs cause a p kern/138439 vanhu [IPSec] Tunnel with IPv4 and IPv6 o kern/138427 net [wpi] [panic] Kernel panic after trying set monitor wl o bin/138423 sysinstall sysinstall(8): Installer (and sade) get wrong number o o kern/138421 fs [ufs] [patch] remove UFS label limitations o ports/138410 gnome finance/gnucash quote price editor adds price data as o kern/138407 net [gre] gre(4) interface does not come up after reboot o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) p kern/138390 brueffer [gif] [patch] NULL pointer dereference in gif_input() p kern/138388 brueffer [ppbus] [patch] NULL pointer dereference in pcfclock_o p kern/138387 brueffer [ppbus] [patch] NULL pointer dereference in lptopen() p kern/138384 brueffer [ips] [patch] NULL pointer dereference in ipsd_dump() o kern/138381 np [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ p kern/138367 jh [tmpfs] [panic] 'panic: Assertion pages > 0 failed' wh o kern/138341 [nanobsd] [patch] 8.0-BETA3: nanobsd build broken due o kern/138332 net [tun] [lor] ifconfig tun0 destroy causes LOR if_adata/ o bin/138331 sam FreeBSD 8.0-beta3 wpa_supplicant(8) lost auth o kern/138292 weongyo [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 o kern/138288 [radeon] RADEON(0): No valid MMIO address [regression] o kern/138266 net [panic] kernel panic when udp benchmark test used as r o ports/138228 portmgr [bsd.port.mk] New opt-in knob to compile ports with SS f i386/138211 gavin [loader] Boot fails on Intel X5550 o amd64/138210 acpi [acpi] acer aspire 5536 ACPI problems (S3, brightness, o conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a o kern/138202 fs mount_msdosfs(1) see only 2Gb o ports/138179 Fix sysutils/serpentine to not require muine o kern/138177 net [ipfilter] FreeBSD crashing repeatedly in ip_nat.c:257 o usb/138175 usb [usb67] [boot] System cannot boot, when USB reader wit o kern/138171 [hang] FreeBSD hangs on boot on HP DL580 G5 system (16 o bin/138150 [build] [patch] fix for src/etc/Makefile mtree o ports/138144 openoffice editors/openoffice.org-3: 3.1.0 crashes on closing p usb/138138 gavin [u3g] [patch] [usb67] Novatel U760 for u3g (Verizon an p bin/138131 [patch] pstat(8): pstat -t coredumps when reading from o ports/138128 sobomax net/asterisk stays longer in "wait" when app_meetme is o i386/138126 i386 [panic] Kernel panic trap 12 on bigger load o usb/138124 usb [snd_uaudio] [usb8] Axed uaudio functionality in the u o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is o kern/138117 [kernel] [panic] spin lock held too long o kern/138046 net [tcp] tcp sockets stay in SYN_SENT even after receivin o amd64/138029 amd64 [panic] periodically kernel panic and reboot o bin/138025 brucec sysinstall(8) fails to create big partition o kern/138018 yongari Realtek RTL8168 not initialized in 8-BETA2 o kern/138002 [lor] Three lock order reversals: ufs/devfs, bufwait/d o kern/137982 pf [pf] when pf can hit state limits, random IP failures o ports/137958 ruby ports-mgmt/portupgrade fails with recursive dependency o amd64/137942 amd64 [pci] 8.0-BETA2 having problems with Asus M2N-SLI-delu o ports/137940 glewis java/jdk15, java/jdk16: bsd java does not start from n o ports/137934 timur net/samba33: Samba 3.2 & 3.3.7 panics & DNSSD option o i386/137925 i386 [boot] BTX loader hangs when raid volume present [regr o ports/137924 danfe www/thttpd does not require a config file, yet it is r o conf/137900 [sysctl] sysctl default values for kern.ipc.shmmax and o kern/137881 net [netgraph] [panic] ng_pppoe fatal trap 12 o usb/137872 usb [usb67] [boot] slow booting on usb flash drive o bin/137864 sysinstall [patch] sysinstall(8): add possibility to shutdown/pow o ports/137855 portmgr bsd.port.mk - early identify port conflicts o kern/137852 [lor] LOR bufwait/dirhash o bin/137841 net [patch] wpa_supplicant(8) cannot verify SHA256 signed o kern/137822 [vesa] [hang] System crashes leaving X when running ve o kern/137819 [libc] [patch] fpurge(3) violates stdio invariant o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un o kern/137800 attilio [panic] -CURRENT on sparc64/ia64 immediate "panic: mtx o kern/137776 net [rum] panic in rum(4) driver on 8.0-BETA2 o kern/137775 net [netgraph] [patch] Add XMIT_FAILOVER to ng_one2many o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no o docs/137762 doc [handbook] proposed: mention "make delete-old" in sec o ports/137748 x11 x11/xorg: "unprocessed" mouse click results in effecti o ports/137731 x11 [patch] x11-drivers/xf86-input-vmmouse p docs/137723 remko [patch] share/man/man5/make.conf.5 : document WWWSUPFI o bin/137713 sysinstall sysinstall(8): installer partition editor generates in o ports/137708 ruby ports-mgmt/portupgrade: portupgrade -cRn is broken o bin/137702 brucec fortune(6): offensive fortune in non-offensive categor o ports/137694 skv lang/perl5.10 and lang/perl5.8 -- Embedded perl fails o ports/137691 avilla [PATCH] New port for semantik (kdissert II) o kern/137678 [libstand] [patch] libstand's bootp/dhcp code always u o kern/137677 [mac] security.mac.bsdextended.firstmatch_enabled defa o conf/137671 [patch][request] enhance beastie.4th: possibility to d o gnu/137665 [patch] dialog(1) goes into tight loop on encountering o ports/137664 mnag [PATCH] www/lighttpd adds mod_geoip (shar) o bin/137641 net ifconfig(8): various problems with "vlan_device.vlan_i o conf/137629 rc [rc.d] background_dhclient rc.conf option causing doub o ports/137620 portmgr [NEW PORT] devel/p6-perl6-toys o kern/137592 net [ath] panic - 7-STABLE (Aug 7, 2009 UTC) crashes on ne o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o kern/137588 daichi [unionfs] [lor] LOR nfs/ufs/nfs s ports/137587 kde [PATCH] audio/arts: Add more OPTIONS and proper CONFIG o kern/137586 des [libpam] Need to build pam_ssh module even it openssh o ports/137566 jpaetzel net/isc-dhcp30-server deinstall removes dhcpd.leases i o misc/137514 cperciva freebsd-update doesn't update the system under some ci o bin/137484 net [patch] Integer overflow in wpa_supplicant(8) base64 e o kern/137482 script(1) doesn't read tail of program output, pty is o conf/137470 rc [PATCH] /etc/rc.d/mdconfig2 : prioritize cli parameter o kern/137443 [headers] Including /usr/include/rpc/xdr.h fails with o kern/137436 [puc] [patch] Fix puc driver to support newer Timedia o ports/137406 sepotvin java/eclipse 3.4.2_1 with eclipse-EPIC and Diable cras o ports/137393 portmgr Remote Package Add of lang/gcc42 does not terminate o kern/137392 net [ip] [panic] crash in ip_nat.c line 2577 o bin/137379 [patch] ppp(8) new command iface name to rename tun in f ports/137378 Advisory locks fail with ports/security/cfs on FreeBSD o usb/137377 usb [usb8] request support for Huawei E180 f ports/137375 mi net/ekiga doesn't build for want of PWLib: what's that o kern/137372 net [ral] FreeBSD doesn't support wireless interface from s ports/137367 gnome net/libproxy: add menu option to configure dependence o bin/137365 [patch] let last(1) read from stdin via "-f -" o kern/137361 [panic] FreeBSD panics with random intervals o kern/137346 ipfw [ipfw] ipfw nat redirect_proto is broken o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro f ports/137332 emulation add caution messages to some adobe products o kern/137327 dfr [nfs] nfs nlm memery leak s bin/137318 [request] import options from NetBSD's lastlogin(1) o kern/137317 net [tcp] logs full of syncache problems o kern/137309 bz [ipsec] sequence number in a SADB_X_SPDGET response is o kern/137307 [libc] [patch] Enhance strptime(3) to support %U and % o ports/137293 openoffice editors/openoffice.org-3 fails to build f kern/137292 yongari [ste] DFE-580TX not working properly o kern/137279 yongari [bge] [panic] Page fault (fatal trap 12) NFS server w/ o misc/137272 'WARNING: could not store hostuuid in /tmp/hostid' whe o conf/137271 rc [rc.d] Cannot update /etc/host.conf when root filesyst o ports/137250 portmgr OPTIONS that change PREFIX cause an error after 'make o kern/137246 [kqueue] kevents not generated for file writes through o kern/137232 ipfw [ipfw] parser troubles o kern/137228 [psm] synaptics support delays 'mouse up' events when f ports/137218 clsung [update] x11-toolkits/ruby-fox16 - fxscintilla updatin f usb/137190 usb [usb8][patch] inhibit spurious button releases for som o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo p usb/137188 usb [usb8][patch] correctly handle USB report descriptors o ports/137183 sobomax devel/py-interface: Already in ports as devel/py_otp_i o kern/137181 [ata] Promise SATA controller SX4-M PDC20621 does not f bin/137180 usb [build] [patch] building world for 8.0-BETA2 fails on o kern/137165 [panic] panic: page fault o bin/137156 [patch] fix dump(8) cryptic output on reporting progre o kern/137145 net [mbuf] [patch] Reference count computing isn't correct s ports/137131 kde x11/kdebase3: genkdmconf leaves new kdmrc world readab o usb/137129 usb [ums] [usb8] SteelSeries Ikari USB laser mouse not att o kern/137089 net [lagg] lagg falsely triggers IPv6 duplicate address de o bin/137053 acpi [hang] FreeBSD 8.0 BETA2Compaq Mini 700 locks on boot o kern/137042 acpi [acpi] hp laptop's lcd not wakes up after suspend to r o kern/137041 [hang] powerd(8) hangs my systems within aprox 15 min f kern/137037 fs [zfs] [hang] zfs rollback on root causes FreeBSD to fr o kern/137014 [panic] vm_page_free_toq: freeing mapped page 0xc34f99 o bin/136994 net [patch] ifconfig(8) print carp mac address o kern/136968 fs [ufs] [lor] ufs/bufwait/ufs (open) o kern/136946 firewire [fwohci] fwohci throws an"unrecoverable error" upon re o kern/136945 fs [ufs] [lor] filedesc structure/ufs (poll) o kern/136944 fs [ffs] [lor] bufwait/snaplk (fsync) o kern/136943 net [wpi] [lor] wpi0_com_lock / wpi0 o misc/136939 cperciva Update serves not serving signatures for releases 6.x o ports/136917 python [patch] lang/python26: gettext detection o kern/136911 net [netgraph] [panic] system panic on kldload ng_bpf.ko t o misc/136889 embedded [nanobsd] [path] nanobsd error reporting and other ref o kern/136888 [boot] boot0sio timeout much longer when DSR/CTS low f amd64/136884 gavin [install] Try to install FreeBSD 7.2 amd64 on a prolia o kern/136876 net [bge] bge will not resume properly after suspend o conf/136875 rc [request] _flags appending o kern/136873 fs [ntfs] Missing directories/files on NTFS volume o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic o bin/136857 [patch] du(1): permit per directory only sum (no herit o kern/136836 net [ath] atheros card stops functioning after about 12 ho o kern/136781 pf [pf] Packets appear to drop with pf scrub and if_bridg o kern/136777 [build] Building new Kernel with PF and PAE support fa f ports/136764 skreuzer [PATCH] net-mgmt/nagios-plugins: Dont truncate proc a o kern/136762 [ichsmb] ichsmb can't map resources of compatible IXP p usb/136761 usb [usbdevs][usb67][patch] Teach usbdevs / u3g(4) about H o ports/136753 openoffice editors/openoffice.org-3 fails to create proper profil o bin/136733 disklabel(8) handle incorrently o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa o gnu/136705 [patch] gdb(1): remove a semicolon from i386-tdep.c . o kern/136695 ipfw [ipfw] [patch] fwd reached after skipto in dynamic rul o kern/136669 [libc] [patch] setmode(3) should always set errno on e o docs/136666 doc [handbook] Configure serial port for remote kernel deb o bin/136661 net [patch] ndp(8) ignores -f option f ports/136656 dhn [maintainer] www/p5-RT-Authen-ExternalAuth.diff www/p5 o conf/136624 rc [rc.d] sysctl variables for ipnat are not applied on b o kern/136618 net [pf][stf] panic on cloning interface without unit numb f kern/136482 yongari [age] Attansic L1 Gigabit Ethernet recieves multicasts o kern/136470 fs [nfs] Cannot mount / in read-only, over NFS o kern/136426 net [panic] spawning several dhclients in parallel panics p bin/136419 portmgr [regression] pkg_add(1) segfault on adding package whe o ports/136416 timur net/samba-libsmbclient can not install with SAMBA_PORT p kern/136409 yongari [xl] doesn't compile with TX checksumming enabled p bin/136393 jh vi(1): ^C causes breakage in /usr/bin/vi o kern/136386 [headers] [request] Can the following bluez macros be o kern/136363 [panic] panic: vm_fault: fault on nofault entry, addr: o kern/136356 [ata] SATA / ICH7 problems o bin/136354 [patch] powerd(8): Support for maxspeed in adaptive mo o threa/136345 threads Recursive read rwlocks in thread A cause deadlock with o conf/136336 [termcap] [patch] missing entry for "center of keypad" o kern/136327 [boot] Asus M3N78-EM motherboard cannot boot with gene o bin/136325 cperciva portsnap(8): "portsnap fetch" not useable by other pro s ports/136321 emulation x11-toolkits/linux-pango: please update linux based po o ports/136291 openoffice [patch] editors/openoffice.org-3: gpatch failure o ports/136229 emulation [linux] emulators/linux_base-f10: certain linux apps l o kern/136216 [headers] Missing prototype declaration for setfib() o o kern/136168 net [em] em driver initialization fails on Intel 5000PSL m f bin/136161 sysinstall sysinstall(8) installs wrong architecture on amd64 o kern/136159 [kthread] [patch] tsleep with PDROP in kthread_suspend o kern/136123 [crypto] device crypto breaks sparc64 kernel o kern/136120 [panic] free: address has not been allocated. f ports/136108 new port: www/webistrano, web frontend to capistrano s ports/136085 itetcu [Maintainer update] graphics/optar: Patch to compile o bin/136073 des recent nscd(8) changes cause client processes to die w o ports/136072 portmgr Propose new ports category, internationalization o docs/136035 doc ftpchroot(5) omits an important option p docs/136029 doc MALLOC_PRODUCTION knob should be mentioned somewhere, o kern/136013 [resolver] Resolver wrong diagnostics o i386/136008 acpi [acpi] Dell Vostro 1310 will not shutdown (Requires us o docs/135999 doc Netgear GS105v3 should be added to list of switches th o kern/135986 [panic] FreeBSD crashes after VLC close f i386/135961 gavin [boot] booting WRAP and Soekris fails from PXE, boot0 o kern/135948 pf [pf] [gre] pf not natting gre protocol o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis p bin/135918 [boot0] [patch] Make BootEasy compatible with NT Drive o kern/135898 geom [geom] Severe filesystem corruption - large files or l f kern/135824 [panic] Fatal trap 12: page fault while in kernel mode o kern/135823 top(1) shows wrong CPU usage for multithreaded applica o bin/135718 [patch] enhance qsort(3) to properly handle 32-bit ali o bin/135700 [patch] Add an ability to run inetd(8) with P_PROTECTE f kern/135692 [mutex] [witness] blockable sleep lock - kernel panic o kern/135690 [panic] [ata] ufs_dirbad: /backuphd: bad dir ino 22259 o docs/135676 pgj FAQ About The FreeBSD Mailing Lists doesn't mention ma f ports/135674 yzlin [PATCH] some PHP-related knobs should be placed before o threa/135673 threads databases/mysql50-server - MySQL query lock-ups on 7.2 o ports/135670 ale [PATCH] databases/mysql50-server: in mysql-client mysq o kern/135667 [lor] LORs causing ufs filesystem corruption on XEN Do o ports/135659 autotools Update devel/automake110 to 1.10.2 o ports/135649 portmgr Mk/bsd.port.mk: [patch], fix documentation relating to o bin/135647 cperciva freebsd-update(8): forces manual merge of every file i p kern/135628 remko [umass] [patch] add a device quirk for Myson Heden 881 f i386/135609 vwe FreeBSD reboot during high cpu load. o kern/135608 [patch] sysctl(8) should be able to handle byte values p misc/135588 embedded [nanobsd] simple patch for adding amd64 support o kern/135585 hrs [ip6] net.inet6.ip6.accept_rtadv=1 removes a cloning r o power/135576 ppc gdb cannot debug threaded programs on ppc o ports/135569 portmgr `check-sanity` not documented in bsd.port.mk o bin/135565 randi [patch] a patch for sysinstall(8) to look at UFS parti o bin/135562 randi sysinstall(8): Filesystem operations should only be pe o bin/135559 randi route table shouldn't automatically be deleted with pr s kern/135550 [sysctl] [request] Feature Request: Manufacturer Infor o kern/135546 fs [zfs] zfs.ko module doesn't ignore zpool.cache filenam o usb/135542 usb [keyboard] boot loader does not work with a usb keyboa o docs/135516 doc pax(1) manual not mentioning chflags unawareness a ports/135503 wxs lang/python26 upgrade should get mailman too o kern/135502 net [periodic] Warning message raised by rtfree function i o ports/135500 obrien net/rdesktop sound does not work [PATCH] o kern/135497 [ata] JMicron JMB363 controller does not recognize PAT o ports/135486 hrs print/acroread9 crashes after maybe 10 seconds of oper o kern/135485 [modules] [patch] During a shutdown, kernel modules sh o kern/135476 ipfw [ipfw] IPFW table breaks after adding a large number o o docs/135475 doc [patch] jot(1) manpage and behaviour differ o ports/135471 secteam [patch] ports-mgmt/portaudit-db packaudit.conf sourced o kern/135469 fs [ufs] [panic] kernel crash on md operation in ufs_dirb o ports/135467 sepotvin can not build java/eclipse with WITHOUT_MOZILLA=yes WI f www/135465 www FreeBSD cvsweb reporting inaccurate logs? o kern/135458 dchagin Missing errno translation in Linux getsockopt(,,SO_ERR s i386/135447 amd64 [i386] [request] Intel Core i7 and Nehalem-EP new feat o bin/135444 cperciva freebsd-update(8) failing should be more verbose o ports/135437 skv lang/perl5.8: [regression] /usr/local/lib/perl5/site_p f kern/135427 vwe [ath] [hang] System freezes when loading Atheros drive o kern/135421 xen [xen] FreeBSD Xen PVM DomU network failure - netfronc. o misc/135420 bugmeister gnats generates broken In-Reply-To headers o bin/135349 acpi [patch] teach acpidump(8) to disassemble arbitrary mem o usb/135348 usb [umass] [patch] USB Drive Hangs with ZFS (JMicron USB2 o conf/135338 rc [rc.d] pf startup order seems broken [regression] o ports/135337 emulation [PATCH] emulators/linux_base-f10: incorrect bash usage p bin/135333 brucec Non-integer decimal numbers not allowed in sysinstall( o bin/135317 randi install.cfg feature request o kern/135307 Boot Loader problem on Acer Aspire 5735 p misc/135301 remko [tinybsd] [patch] Patch for fix architecture support f o ports/135276 x11 x11/xorg: GUI running first time only while using Free o amd64/135265 amd64 [install] Boot from install cd hangs on HP DL160 G5 wi o kern/135237 [nfs] sendfile(2) and SF_NODISKIO blocks on NFS files o kern/135222 net [igb] low speed routing between two igb interfaces o ports/135221 portmgr [bsd.port.mk] unified support for LINUX_OSRELEASE depe o usb/135206 usb machine reboots when inserted USB device o usb/135200 usb SAMSUNG i740 usb mass: Synchronize cache failed, statu o usb/135182 usb UMASS quirk - Olympus FE20 camera o kern/135178 xen [xen] Xen domU outgoing data transfer stall when TSO i o kern/135164 [keyboard] UK currency key inactive o kern/135162 pf [pfsync] pfsync(4) not usable with GENERIC kernel o bin/135159 portmgr [patch] pkg_delete(1) segfaults on empty @pkgdep lines s misc/135156 vwe [build] 8-current installworld - gencat:No such file o s ports/135089 portmgr bsd.port.mk: Honor LOCALBASE for CFLAGS f ports/135072 clsung textproc/refdb -> bib2ris: Assertion failed: ((run->re o kern/135070 acpi [acpi] [patch] BIOS resource allocation and FreeBSD AC o kern/135069 xen [xen] FreeBSD-current/Xen SMP doesn't function at all o kern/135050 fs [zfs] ZFS clears/hides disk errors on reboot o amd64/135040 amd64 [ata] FreeBSD/amd64 does not (always) detect disk on S o bin/135016 randi [request] sysinstall(8) needs support for USB devices o amd64/135014 kib [padlock] Using padlock(4) in 8-current triggers "fpud o kern/134996 pf [pf] Anchor tables not included when pfctl(8) is run w o i386/134984 i386 [boot] [hang] boot from i386 DVD on Lenovo R500 fails o amd64/134978 amd64 [panic] g_up pmap amd64 panic o bin/134975 ipfw [patch] ipfw(8) can't work with set in rule file. o kern/134956 net [em] FreeBSD 7.1 & 7.2, Intel PRO/1000 PT Quad Port Se o usb/134950 usb Lowering DTR for USB-modem via ubsa is not possible o kern/134931 net [route] Route messages sent to all socket listeners re o kern/134926 xen [xen] [panic] FreeBSD-current Xen DomU networking pani o kern/134922 geom [gmirror] [panic] kernel panic when use fdisk on disk o misc/134920 [headers] [patch] Large upgrades from source cause com o bin/134919 [patch] add information to truss(1) when tracing linux o conf/134918 rc [patch] rc.subr fails to detect perl daemons f bin/134907 vwe boot0cfg(8): choose / adjust the booting slice doesn't o kern/134887 [ataraid] source consistency problem o ports/134880 ale lang/php5 - PHP CLI interactive mode misbehaviour with o kern/134878 [puc] [patch] Add support for Oxford OXPCIe954 and OXP o kern/134800 [drm] radeon driver freezes Xorg server with drmwtq o i386/134792 [boot] [panic] problems installing and booting on MSI o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o amd64/134757 amd64 32 bit processes on 64 bit platforms occasionally drop o kern/134745 [mmcsd] [panic] mmcsd.ko produce kernel panic s ports/134714 ruby ports-mgmt/portupgrade deletes user data without quest o conf/134660 rc [patch] rc-script for initializing ng_netflow+ng_ipfw o ports/134643 x11 [patch] x11-servers/xorg-server - Unbreak Xorg 7.4 ser o usb/134631 usb [usbdevs] [patch] WiSPY DBx support requires usb tweak o gnu/134604 [gcclibs] [patch] Memory leak in gcclibs/libgomp o kern/134591 [ral] ral(4) driver frequently loses carrier (on RT256 o i386/134586 jhb [i386] [patch] Incorrect machine check exception handl f kern/134584 [panic] spin lock held too long o kern/134583 net [hang] Machine with jail freezes after random amount o p i386/134582 phk merge geode.c from head to releng_7_2 o bin/134569 [heimdal] krb5-config(1) does not return all libs nece o kern/134540 [sysctl] [panic] kernel panic after sysctl -a (in strl o kern/134531 net [route] [panic] kernel crash related to routes/zebra o kern/134520 [ata] SAS HD not detected on LSI SAS1078 (Acer Altos R o kern/134519 [panic] Kernel panics (2 page faults in kernel) s kern/134517 yongari [rl] [patch] Realtek 8111C Driver Backport for FreeBSD o kern/134504 [vesa] thinkpad t60 with ati x1400 in vesa console mod o kern/134502 [libelf] why 32 bit app not use /libexec/ld-elf32.so.1 o kern/134491 fs [zfs] Hot spares are rather cold... o kern/134488 scsi [mpt] MPT SCSI driver probes max. 8 LUNs per device o ports/134475 stas multimedia/xmms gdk error (terminates) o ports/134458 openoffice editors/openoffice.org* fails to build (multiple versi o bin/134425 brucec sysinstall(8) custom distributions select all and dese o kern/134408 [dtrace] [panic] "opensnoop" DTrace script panics ever f kern/134407 gavin [hang] freebsd 7.x freezes with the livefs or install o kern/134401 net [msk] [panic] Kernel Fatal trap 12: page fault while i f kern/134398 gavin [ata] problems with udma modes on atapi ixp600 o kern/134391 [libc] dladdr(3) does effectively not work on main pro o bin/134389 cperciva portsnap(1): phttpget opens a new connections for ever o ports/134383 skv devel/bugzilla failes to find DBD::mysql o arm/134368 arm [patch] nslu2_led driver for the LEDs on the NSLU2 a kern/134355 [mbuf] comments for m_getm2 inconsistent with behaviou o kern/134344 top(1) shows user CPU value that's not equal to the to o arm/134338 arm [patch] Lock GPIO accesses on ixp425 o conf/134333 rc PPP configuration problem in the rc.d scripts in combi o kern/134328 [build] FreeBSD 7.2-RELEASE (STABLE) not compiled with o usb/134299 usb Kernel Panic plugging in MF626 USB UMTS Stick u3g o ports/134263 des sysutils/munin-node failure in some o conf/134258 /boot/default/loader.conf contains untrue default o bin/134250 [rc.d] mountlate: bogus error message when using neste o kern/134249 [libiconv] [patch] ignore case for character set names o ports/134244 x11 x11/xorg: "intel" driver for Xorg is very broken o ports/134243 skv port mail/libdomainkeys doesn't build dktest o i386/134242 i386 [boot0] [patch] improvement i386 boot0 error diagnose o kern/134231 [sysctl] sysctl() 80% slower in 7.2 than 6.2 [regressi o docs/134226 doc /usr/share/examples/ftpd/ftpd.conf does not exist. o kern/134225 [libexec] [patch] Reduce disk write load from save-ent o docs/134222 doc installation failure of japanese docs o kern/134200 [panic] Fatal trap 12: page fault while in kernel mode o usb/134193 usb System freeze on usb MP3 player insertion o ports/134182 ruby ports-mgmt/portupgrade incorrectly handles manual reje o kern/134168 net [ral] ral driver problem on RT2525 2.4GHz transceiver o bin/134167 cperciva [request] freebsd-update(8) should be able to be run i o kern/134157 net [dummynet] dummynet loads cpu for 100% and make a syst o ports/134155 danfe x11/nvidia-driver does not work with KVA_PAGES=512 and o ports/134132 x11 x11-servers/xorg-server: Intel i845 - xorg.conf with U o docs/134123 doc The RUNQUEUE(9) man page is out of date o ports/134121 gecko www/firefox3-devel packaging errors o kern/134113 geom [geli] Problem setting secondary GELI key f i386/134106 remko [boot] Dell Dimension XPS R400 fail to boot on CF IDE f kern/134105 gavin rl(4) Realtek 8110SC with device ID 0x814910ec not det f java/134098 glewis java/diablo-jdk15: random core drops p arm/134092 cognet [patch] NSLU.hints contains wrong hints for on board n o usb/134085 usb [umass] Adding usb quirk for Sony USB flash drive o ports/134082 x11 x11/xdriinfo: xdriinfo-1.0.2 build fail o kern/134079 net [em] "em0: Invalid MAC address" in FreeBSD-Current ( 8 p docs/134070 danger old path for a file given in kbdmap(1) o kern/134054 [ataraid] [panic] traps kernel on boot if Intel Matrix p docs/134053 danger [patch] arp(8) manpage should mention ndp(8) in See Al o kern/134044 geom [geom] gmirror(8) overwrites fs with stale data from r o bin/134022 host(1), dig(1) and nslookup(1) hang in _umtx_op sysca o kern/134011 [hang] swap_pager_getswapspace(4): failed o kern/134010 [libgssapi][patch] Buffer overflow and use-after-free o conf/134006 rc [patch] Unload console screensaver kernel modules if s o usb/133989 usb [usb8] [ukbd] USB keyboard dead at mountroot> prompt o conf/133987 rc [rc.d] defaultroute broken with DHCP in some cases o kern/133985 [kernel] kern.cp_time returns all zeros and stops incr o amd64/133977 amd64 [panic] [ffs] "panic: ffs_blkfree: freeing free block" o kern/133969 net [dummynet] [panic] Fatal trap 12: page fault while in o kern/133968 net [dummynet] [panic] dummynet kernel panic o ports/133946 x11 x11-servers/xorg-server [patch] X crashes in xinerama o kern/133931 geom [geli] [request] intentionally wrong password to destr o kern/133926 [request] MAXLOGNAME, the username length limit, is to o kern/133919 [mpt] [panic] 7.1 panics after completing rebuild of m o kern/133902 net [tun] Killing tun0 iface ssh tunnel causes Panic Strin o kern/133892 sam /usr/src/sys/dev/ath/if_ath.c:3414: error: 'const stru o conf/133890 rc [patch] sshd(8): add multiple profiles to the rc.d scr o kern/133867 initgroups(3) Invalid argument o bin/133860 [patch] lorder(1) misses symbols defined in read only f ports/133848 markus net-p2p/ktorrent-devel: request for removal o bin/133834 [patch] chat(8): terminate()/fatal() infinity mutual r o ports/133815 portmgr [PATCH] bsd.port.mk: implements fakeroot for the ports o kern/133786 net [netinet] [patch] ip_input might cause kernel panic o kern/133776 [libc] [patch] snprintf(3) and vsnprintf(3) do not pro o kern/133775 [patch] gdb(1) debugscripts: fix proc address print in a ports/133773 net/keepalived port update request f ports/133771 doceng print/ghostscript8: Ghostscript8-8.64 port not install f kern/133768 gavin [panic] MONITOR PANIC: vcpu-0:VMM64 DoubleFault src=MO o ports/133747 amdmi3 fkiss and gondola not working on amd64 - seg fault o kern/133736 net [udp] ip_id not protected ... p threa/133735 attilio Multi-threaded 32 bit cores can't be used on 64 bit sy o threa/133734 threads 32 bit libthr failing pthread_create() o kern/133732 pf [pf] max-src-conn issue o i386/133727 i386 chars [[[[[[[[[[[[[ occur during install process (sett o ports/133723 sobomax asterisk-1.6.0.9 crash when load chan_h323 o conf/133715 [terminfo] [patch] no terminfo for rxvt-unicode termin o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa o kern/133710 [headers] net/bpf.h and netgraph/ng_message.h should i o amd64/133701 amd64 Recompiling the kernel with k8temp or smbios break GEO o kern/133676 fs [smbfs] [panic] umount -f'ing a vnode-based memory dis o kern/133614 fs [panic] panic: ffs_truncate: read-only filesystem o kern/133613 net [wpi] [panic] kernel panic in wpi(4) o ports/133609 x11 x11/xorg crashes with vlc, intel video driver o kern/133595 net [panic] Kernel Panic at pcpu.h:195 o kern/133593 [ata] `atacontrol spindown` won't affect disk until so o kern/133583 [libm] fma(3) does not respect rounding mode using ext o kern/133572 net [ppp] [hang] incoming PPTP connection hangs the system f ports/133563 security/cfs rc script needs "mntudp" option on 8-CURR o misc/133540 gavin Cannot connect to ftp mirrors for 7.2 beta boot-only o power/133503 ppc [sound] Sound stutter after switching ttys o kern/133495 [de] interface not properly initialized on boot o kern/133490 net [bpf] [panic] 'kmem_map too small' panic on Dell r900 o ports/133482 x11 x11/libXext "Generic Event Extension not available" er o ports/133465 x11 x11/xorg: X crashes with mplayer -vo xv with xf86-vide o ports/133464 clsung security/snort fails first try o ports/133457 eclipse [PATCH] java/eclipse-webtools: update to 3.0.3 p kern/133439 kan [vfs] [panic] Kernel Panic in kern_vfs o usb/133390 usb umass crashes system in 7.1 when Olympus D-540 attache o i386/133388 i386 [est] est causes wrong dev.cpu.0.freq_levels values o power/133383 ppc firefox thr_kill crash with heavy vm load o power/133382 ppc [install] Installer gets signal 11 f kern/133328 yongari [bge] [panic] Kernel panics with Windows7 client o usb/133296 usb [rum] driver not working properly in hostap mode o kern/133289 [vm] [panic] DEBUG_MEMGUARD with vm.memguard.desc="dev o misc/133286 brucec dd can fill system memory o kern/133265 jail [jail] is there a solution how to run nfs client in ja o kern/133246 [libc] dlclose(3) gives segfault when called in the fi o docs/133245 doc french handbook 27.3.5 amd.map amd.conf o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o bin/133227 edwin [patch] whois(1): add support for SLD whois server loo o kern/133218 net [carp] [hang] use of carp(4) causes system to freeze f kern/133213 net arp and sshd errors on 7.1-PRERELEASE o kern/133204 net [msk] msk driver timeouts o kern/133174 fs [msdosfs] [patch] msdosfs must support utf-encoded int o kern/133170 [md] [panic] panic when detaching swap-backed md(4) di f kern/133150 fs [zfs] Page fault with ZFS on 7.1-RELEASE/amd64 while w o ports/133146 [patch] x11-fonts/dejavu: install fontconfig configura o kern/133144 emulation [linux] linuxulator 2.6 crashes with nvidias libGL.so. o kern/133143 [ubsec] [panic] Kernel panic with ubsec and cryptodev; o ports/133081 python [bsd.python.mk] PYEASYINSTALL_ARCHDEP=yes makes broken o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o bin/132993 [patch] bsnmpd(1) - bad IfPoll timer interval f kern/132991 yongari [bge] if_bge low performance problem o kern/132987 daichi [unionfs] unionfs_readdir has math problem o kern/132960 fs [ufs] [panic] panic:ffs_blkfree: freeing free frag f kern/132934 jh [nfs] Cancel of a NFS-lock fails repeatedly f bin/132911 net ip6fw(8): argument type of fill_icmptypes is wrong and o kern/132889 net [ndis] [panic] NDIS kernel crash on load BCM4321 AGN d o kern/132885 net [wlan] 802.1x broken after SVN rev 189592 o docs/132884 doc [request] No manpage for SYSINIT and SYSUNINIT o conf/132851 net [patch] rc.conf(5): allow to setfib(1) for service run o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o bin/132845 geom [geom] [patch] ggated(8) does not close files opened a o docs/132839 doc [patch] Fix example script in ldap-auth article p docs/132834 trhodes [patch] Punctuation inconsistency in chgrp.1 and cut.1 o kern/132832 net [netinet] [patch] tcp_output() might generate invalid o ports/132820 skreuzer www/rt38: charts in RT-3.8.2 do not render p usb/132799 gavin [usb][patch]GENESYS USB2IDE requires NO_SYNCHRONIZE_CA o bin/132798 net [patch] ggatec(8): ggated/ggatec connection slowdown p o ports/132786 New port: sysutils/sispmctl Utility for controlling a o usb/132785 usb [usb] [patch] Gemtech remote powersocket is classed as o ports/132783 portmgr ports/Mk/bsd.port.mk: ${ARCH} misuse for "--build" opt o kern/132774 rwatson [ipfw] IPFW with uid/gid/jail rules may lead to lockup o kern/132769 pf [pf] [lor] 2 LOR's with pf task mtx / ifnet and rtent o bin/132735 Berkeley db: corrupted file has record with absurd siz o kern/132734 net [ifmib] [panic] panic in net/if_mib.c o kern/132722 net [ath] Wifi ath0 associates fine with AP, but DHCP or I o docs/132718 doc [handbook] Information about adding a new mirror is ou o kern/132715 jfv [lagg] [panic] Panic when creating vlan's on lagg inte o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all o bin/132692 [patch] getent(1): no support for netgroup o ports/132680 openoffice editors/openoffice.org-3: OpenOffice symlinks in /usr/ o kern/132672 net [ndis] [panic] ndis with rt2860.sys causes kernel pani o kern/132669 net [xl] 3c905-TX send DUP! in reply on ping (sometime) o kern/132664 [lor] vfs_mount.c / msdosfs_vfsops.c f kern/132625 bschmidt [iwn] iwn drivers don't support setting country o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec o ports/132621 x11 x11/xorg tries to install event when deselected o kern/132602 acpi [acpi] ACPI Problem with Intel SS4200: System does not o conf/132596 mux examples/cvsup/ports-supfile still oriented on cvsup p o usb/132594 usb USB subsystem causes page fault and crashes o ports/132579 cy [patch] sysutils/screen: fix build with externel compi o ports/132577 fjoe databases/oracle8-client: Appearence of connection (ph o ports/132576 delphij net/openldap24-server: multipying LDAP trees on the si o amd64/132574 amd64 [boot] [hang] Freeze on bootstrap loader (CD) using AT o kern/132554 net [ipl] There is no ippool start script/ipfilter magic t o kern/132553 ipfw [ipfw] ipfw doesn't understand ftp-data port p docs/132546 trhodes [patch] sync vm_map_lock(9) with recent locking change f i386/132535 gavin [acpi] if ACPI enabled, i can't change brightness leve o conf/132515 stas ntpd_sync_on_start option in /etc/rc.conf misbehaves o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/132497 rwatson [boot] [patch] Stale pre-5.x mbuf references in new Bo o conf/132483 rc rc.subr(8) [patch] setfib(1) support for rc.subr o conf/132476 rc [rc.d] [patch] add support setfib(1) in rc.d/routing o i386/132416 i386 Popup motherboard bios setup window when rebooting sys o ports/132403 x11 x11/xorg with Radeon X600 (R370): cannot re-initialize o ports/132402 girgen databases/postgresql83-server incorrect handling of co o kern/132397 fs reboot causes filesystem corruption (failure to sync b p docs/132392 trhodes [PATCH] remove leftovers of libkse from pthread.3 o bin/132367 [patch] less(1)/more(1) fchmod(2) `/dev/null' to 0600 o kern/132354 net [nat] Getting some packages to ipnat(8) causes crash o kern/132331 fs [ufs] [lor] LOR ufs and syncer o usb/132312 usb [hang] Xorg 7.4 halts USB controller o docs/132311 doc [patch] man5/nsmb.conf.5 o ports/132304 gnome ports/devel/dbus misses /var/db/dbus/machine-id in dis o bin/132302 [patch] smbutil(1): contrib/smbfs subr.c: saved passwo o ports/132294 stas [PATCH] lang/ruby18: Add option to build with Profile- o ports/132293 stas [PATCH] lang/ruby19: Add option to build with Profile- o kern/132285 net [carp] alias gives incorrect hash in dmesg o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o kern/132273 geom glabel(8): [patch] failing on journaled partition o kern/132271 [puc] [patch] puc support for a generic card o docs/132260 doc dhcpd(8) pid not stored in documented location o kern/132252 [ata] No CD/DVD devices found! o kern/132250 scsi [ciss] ciss driver does not support more then 15 drive f kern/132242 geom [gmirror] gmirror.ko fails to fully initialize o kern/132238 [ral] ral driver does not support RT2860 o kern/132237 fs [msdosfs] msdosfs has problems to read MSDOS Floppy o i386/132230 i386 [boot] [reboot] 7.1-RELEASE /boot/loader non-functiona o ports/132213 anders [patch] mail/imap-uw: Add support for ~/mail as defaul o kern/132206 scsi [mpt] system panics on boot when mirroring and 2nd dri o docs/132190 doc EPERM explanation for send(2), sendto(2), and sendmsg( f kern/132176 pf [pf] pf stalls connection when using route-to [regress o kern/132172 [patch] [panic] Page fault panic in scioctl and consol o kern/132165 [uart] [lor] LOR slock and uart_hwmtx o kern/132145 fs [panic] File System Hard Crashes o kern/132129 [crypto] Device crypto makes the kernel unbootable o bin/132114 randi [patch] add new 'docs' virtual category to sysinstall o docs/132113 doc [handbook] Update handbook jails creation o bin/132112 [patch] devd(8) unnecessarily reconfigures carp(4) int o kern/132107 net [carp] carp(4) advskew setting ignored when carp IP us o kern/132104 [kernel] [patch] kenv(1) buffer overflow o ports/132100 x11 x11/xorg: Xorg server forgets pointer map after xlock o usb/132080 usb [patch] [usb] [rum] Kernel panic after NOMEM caused by o usb/132066 usb [ukbd] Keyboard failure USB keyboard DELL 760 o ports/132041 x11 x11/xorg: Broken Intel video driver o usb/132036 usb [panic] page fault when connecting Olympus C740 camera f amd64/132019 amd64 [install] kernel trap 12 while installation o ports/132010 girgen databases/postgresql83-server: PostgreSQL Cluster Init o bin/132008 [PATCH] config(8) to allow using section/nosection in o kern/132001 [patch] [ixgb] driver update p bin/131999 chflags(1): unable to unset flags on symlinks when lin o ports/131969 nobutaka Port update: multimedia/libdvdnav - Proposal to switch o docs/131968 danger ipnat man page points to wrong directory o kern/131933 [uart] [patch] Cannot detect Sony Ericsson GC89 EDGE/W o ports/131930 x11 [PATCH] x11-servers/xorg-server coredumps on exit o docs/131918 doc [patch] Fixes for the BPF(4) man page o usb/131912 usb [uslcom] [patch] New devices using Silicon Labs chips o amd64/131906 amd64 [ata] SATA data corruption with Promise PDC20378 (amd6 o usb/131900 usb [usbdevs] [patch] Additional product identification co o kern/131876 rwatson [socket] FD leak by receiving SCM_RIGHTS by recvmsg wi o bin/131853 cron(8): please add support for CRON_TZ and CRON_WITHI o kern/131817 ipfw [ipfw] blocks layer2 packets that should not be blocke o bin/131800 rpcbind(8) fails to start in jail f kern/131798 gavin [ukbd] usb keyboard doesn't work with motherboard inte f kern/131796 [ata] Introducing new USB or eSATA disks results in at o kern/131784 [lor] triple LOR after hard reboot o kern/131781 net [ndis] ndis keeps dropping the link o kern/131776 net [wi] driver fails to init o bin/131774 cvs(1) commits files then aborts o ports/131758 itetcu net/tightvnc in a jail stopped working after multiple o kern/131753 net [altq] [panic] kernel panic in hfsc_dequeue o ports/131726 x11 x11-servers/xorg-server: xorg server messes with my eh o kern/131718 [lor] kern_sysctl.c / acpi_video.c f ports/131696 x11 x11-servers/xorg-server: hald core dumps make X11 unus o docs/131684 doc [patch] articles/linux-comparison: replace Addenda by o ports/131664 skv lang/perl5.8: perl5.8.9 segfaults with devel/p5-ReadLi o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o docs/131625 doc [patch] Typos in ed(1) man page o kern/131623 ume [libc] gethostbyname(2): output of gethostbyname_r doe f kern/131602 gavin [libc] sendfile(2) sends corrupted data o kern/131601 ipfw [ipfw] [panic] 7-STABLE panic in nat_finalise (tcp=0) o bin/131598 cperciva freebsd-update(8) doesn't interact well with custom ke o kern/131597 [kernel] c++ exceptions very slow on FreeBSD 7.1/amd64 o docs/131590 doc [patch] whitespace-only change of developers-handbook/ o usb/131583 usb [umass] Failure when detaching umass Device o ports/131579 kuriyama security/gnupg reads security/gnupg1 data incorrectly o usb/131576 usb [aue] ADMtek USB To LAN Converter can't send data f kern/131573 [mutex] lock_init() assumes zero-filled struct f kern/131571 gavin [apic] [panic] Running with APIC enabled crashes a Sup o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm o kern/131558 ipfw [ipfw] Inconsistent "via" ipfw behavior o ports/131554 stas net-mgmt/flow-tools: flow-capture consuming all availa o kern/131549 net ifconfig(8) can't clear 'monitor' mode on the wireless o power/131548 ppc ofw_syscons no longer supports 32-bit framebuffer o kern/131536 net [netinet] [patch] kernel does allow manipulation of su o usb/131521 usb Registering Belkin UPS to usb_quirks.c o amd64/131456 amd64 ACPI & ATA problems o kern/131448 Bad display while booting o kern/131441 fs [unionfs] [nullfs] unionfs and/or nullfs not combineab o bin/131427 [patch] Add to fetch(1) an ability to limit a number o o i386/131426 i386 hald makes cdrom fail o bin/131415 keystrokes are unregulary sent to Geli when typing pas o docs/131370 keramida glabel(8): geom_label needs clarification in docs a bin/131369 delphij truss(1): truss -f fails to attach to child processes o bin/131365 net route(8): route add changes interpretation of network o kern/131360 fs [nfs] poor scaling behavior of the NFS server under lo o bin/131359 cperciva freebsd-update(8): freebsd-update tag file not updated o bin/131358 cperciva freebsd-update(8): Update servers for freebsd-update a s bin/131354 des ssh: SSH session hangs o kern/131353 geom [geom] gjournal(8) kernel lock o kern/131342 fs [nfs] mounting/unmounting of disks causes NFS to fail o bin/131341 fs makefs: error "Bad file descriptor" on the mount poin o amd64/131314 amd64 [modules] [panic] large modules fail to load on amd64 o kern/131302 powerd(8): powernow0: set freq failed, err 6 o kern/131290 [hang]: How to completely freeze FreeBSD 7.1 under a n p bin/131250 brian [patch] ppp(8) proxyarp does not work o ports/131242 krion security/gsasl does not link if krb5-1.6.3_5 is instal o amd64/131209 amd64 [panic] [bce] 7.1-STABLE amd64 crash - m0 NULL o kern/131153 net [iwi] iwi doesn't see a wireless network o bin/131143 [patch] amd(8) causes annoying "embedded slash in map o usb/131123 usb [patch] re-add UQ_ASSUME_CM_OVER_DATA USB quirk o bin/131113 mount(8) hangs on attempt to remount as rw o ports/131111 ruby ports-mgmt/portupgrade-devel: completely removes packa o bin/131094 dhclient(8) sets wrong IP address o ports/131093 jpaetzel chrooting net/isc-dhcp30-server to aliased /home can c f kern/131087 net [ipw] [panic] ipw / iwi - no sent/received packets; iw o usb/131074 usb no run-time detection of usb devices plugged into exte o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ o bin/131042 mount_ntfs(8) does not like fstab entry p kern/131038 bz [ip6] [panic] kernel panic in ip6_forward f ports/131016 x11 x11/xorg - xorg-7.4 renders system unusable! o bin/131013 pw(8) does not update NIS group file o kern/130998 [dtrace] DTrace stops tracing because of struct thread o ports/130995 ale Add php-fpm to lang/php5 o bin/130993 pkg_add(1): pkg_add -n falsely reports present local p f kern/130982 gavin [install] The installation hangs o kern/130957 jhb [pci] /sys/dev/pci/pci.c revision 181771 breaks networ o bin/130954 ps(1): can not obtain which process take all CPU time f kern/130941 gavin [panic] [cd9660] [geom] unexpected crash due to page f o kern/130920 fs [msdosfs] cp(1) takes 100% CPU time while copying file o ports/130899 lev devel/subversion doesn't install with PREFIX != /usr/l p docs/130895 gavin [patch] No man page installed for padlock(4) on amd64 f amd64/130885 amd64 sockstat(1) on amd64 does not work p bin/130874 jh [patch] fix typo in nvi(1) (subsitution -> substitutio o amd64/130864 amd64 [hang] Problem with copying files to a large partition o misc/130856 [build] [patch] make installworld work when WITHOUT_GA o bin/130831 csh(1) core dumps after building libiconv-1.1x from s f kern/130820 net [ndis] wpa_supplicant(8) returns 'no space on device' o amd64/130817 amd64 FreeBSD does not support HP DL160G5 [regression] o kern/130794 [ata] hw.ata.ata_dma_limit without any effect f conf/130776 ip addresses like 10.1.1.1 with subnet mask 255.0.0.0 o kern/130749 [libc] [patch] nscache.c/nscachedcli.c - return error o usb/130736 usb Page fault unplugging USB stick p kern/130735 scsi [cam] [patch] pass M_NOWAIT to the malloc() call insid o misc/130728 joel There are 4-clause BSDL files in src/ o kern/130726 [ata] DMA errors accessing multiple SATA channels o kern/130698 [boot] FreeBSD 8-CURRENT does not start any more since o kern/130683 acpi [ACPI] shutdown hangs after syncing disks - ACPI race? o ports/130677 portmgr bsd.port.mk: Centralize handling of CPPFLAGS o kern/130657 bz [ip6] [patch] ipv6 class option o bin/130655 randi sysinstall(8): no IPV4 if answer "no" when "Do you wan o kern/130628 net [nfs] NFS / rpc.lockd deadlock on 7.1-R o kern/130621 scsi [mpt] tranfer rate is inscrutable slow when use lsi213 o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a p docs/130548 geom [patch] gjournal(8) man page is missing sysctls o kern/130525 net [ndis] [panic] 64 bit ar5008 ndisgen-erated driver cau a bin/130504 dds [libc] Serious bug in regular expression library (rege o amd64/130494 amd64 [boot] netbooting BTX fails on amd64 f amd64/130483 amd64 [mxge] MSI must be disabled when Myricom 10Gbps Card i o ports/130479 apache www/apache20 and www/apache22 configure_args busted s kern/130478 x11 [request] Port Linux kernel stub of nouveau to FreeBSD o ports/130387 portmgr [PATCH] Mk/bsd.port.mk - Add macros for COPYTREE_WWW a a kern/130386 rwatson [patch] add locking for generic interface address mani o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st o ports/130379 cy sysutils/screen : can't use it after a jail_attach() c o amd64/130368 amd64 [hang] Switching from xorg to console locks up compute o bin/130366 randi [patch] sysinstall(8): Minor correction to sysinstall f amd64/130365 gavin [ata] Elitegroup A780GM-A Chipset:AMD 780G&SB700 IDE c o docs/130364 doc Man page for top needs explanation of CPU states f misc/130361 FREEBSD 7.X does not install properly from FTP server o bin/130343 top(1): kvm_open: cannot open /proc/42997/mem corrupts f ports/130331 danfe games/battletanks is broken on FreeBSD 7.x o kern/130330 scottl [mpt] [panic] Panic and reboot machine MPT driver when o kern/130311 net [wlan_xauth] [panic] hostapd restart causing kernel pa o kern/130286 [patch] hifn(4) changes o kern/130261 [kernel] [panic] kernel panic in/below sys_pipe.c:knli o bin/130251 nm(1): 'nm -C' doesn't demangle any 't' symbol names p docs/130239 cperciva md5(1); md5 is reported to be compromised, but manpage o docs/130238 doc nfs.lockd man page doesn't mention NFSLOCKD option or o usb/130230 usb Samsung Electronics YP-U3 does not attach in 7.1-RELEA o kern/130229 fs [iconv] usermount fails on fs that need iconv o kern/130222 harti bsnmpd snmp_hostres.so always returns 100% CPU o kern/130210 fs [nullfs] Error by check nullfs o usb/130208 usb Boot process severely hampered by umass0 error o kern/130171 [ata] UDMA CF cards do not work with FreeBSD p bin/130159 brian [patch] ppp(8) fails to correctly set routes f kern/130133 kmacy [panic] [zfs] 'kmem_map too small' caused by make clea o bin/130132 ipfw [patch] ipfw(8): no way to get mask from ipfw pipe sho o usb/130122 usb [usb8] DVD drive detects as 'da' device o i386/130110 i386 [boot] BTX-Halted - booting with SAS/SATA Controller o kern/130109 net [ipfw] Can not set fib for packets originated from loc p kern/130107 imp [devctl] [patch] in devctl_queue_data(): possible use f amd64/130103 vwe [hang] 7.1-RC X -> systemcrash f usb/130076 vwe Panic when connecting USB camera o stand/130067 standards Wrong numeric limits in system headers? s ports/130065 pav devel/stlport update to 5.2.1 and problems f kern/130059 net [panic] Leaking 50k mbufs/hour o bin/130056 [patch] have nfsstat(1) use strtonum instead of atoi o kern/130021 [hang] Switching CAPS/NUM LOCK or virtual terminal fre o bin/129989 cperciva portsnap(8) quietly forgets to fetch some ports a ports/129971 dinoex x11/gskrab: GSkrab does not compile on -current o www/129969 wosch Need 301 moved permanently errors returned for www.fre o bin/129965 gavin [patch] ps(1): ps -lH doesn't show the proper CPU# o i386/129953 acpi [acpi] ACPI timeout (CDROM) with Shuttle X27D o usb/129945 usb [usb67] [usbdevs] [patch] add u3g support for Longchee o ports/129930 ruby ports-mgmt/portupgrade - portinstall tries to install s www/129923 www Need stylesheet for FreeBSD Subversion DAV tree o ports/129891 ruby ports-mgmt/portupgrade fails to recognize variations o o amd64/129889 amd64 [boot] [hang] The booting process stops at the line mo o kern/129861 pf [pf] [patch] Argument names reversed in pf_table.c:_co p usb/129858 remko [usb] [patch] Need to add quirk to da_scsi.c to suppor o ports/129824 hrs print/acroread8 - help viewer does not work o bin/129814 [patch] support of per script nice(1) value in periodi o bin/129771 randi sysinstall(8): 7.1 RC1 sysinstalls installs boot0 even o usb/129766 usb [usb] plugging in usb modem HUAWEI E226 panics system o bin/129764 [patch] unbreak sbin/newfs build for the 8-CURRENT o bin/129762 sysinstall sysinstall(8) doesn't seem to support GPT for EFI boar o kern/129760 fs [nfs] after 'umount -f' of a stale NFS share FreeBSD l o usb/129758 usb [uftdi] [patch] add Pyramid LCD usb support o kern/129750 net [ath] Atheros AR5006 exits on "cannot map register spa o ports/129741 portmgr [patch] bsd.port.mk: support systems that have been bu o amd64/129721 amd64 [hang] Motherboard K9N2G Neo-FD hangs on boot of 7.0-R f kern/129719 net [nfs] [panic] Panic during shutdown, tcp_ctloutput: in o kern/129713 [pci] pci-pci bridge quirk with ich7 chipset not handl o conf/129697 brucec [patch] fix misbehavior of periodic/daily/100.clean-di a docs/129684 trhodes gcache.8 man page missing o ports/129682 sobomax net/asterisk app_meetme issue o kern/129674 geom [geom] gjournal root did not mount on boot o usb/129673 usb [uhci] uhci (uhub) confused on replugging USB 1.1 scan o docs/129671 doc New TCP chapter for Developer's Handbook (from rwatson o amd64/129667 amd64 [ata] Elitegroup A780GM-A IDE controller not recognize p kern/129665 rik [uart] Oxford OX16PCI958 8-serial multiport card is no o kern/129663 rik [uart] Timedia-based 8-serial multiport card: only two o kern/129645 geom gjournal(8): GEOM_JOURNAL causes system to fail to boo p bin/129630 uqs [patch] bsnmpd(1): teach hostres module about ZFS o ports/129626 perl lang/p5-Tcl segfaults on i386 and amd64 on FreeBSD 7 o bin/129620 [patch] Incorrect bzip2(1) behavior o kern/129618 acpi [acpi] Problem with ACPI on HP Pavilion DV2899 laptop o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: o kern/129602 scsi [ahd] ahd(4) gets confused and wedges SCSI bus f misc/129573 FreeBSD-7.1-RC1 fails to install man pages and doc dis o kern/129563 acpi [acpi] sleep broken on IBM/Lenovo T61 in amd64 mode o ports/129553 hrs [patch] print/acroread8 can't launch some programs due o i386/129550 i386 [pae] [kqueue] crash with PAE kernel o bin/129541 [nis] passwd(1) cannot be forced to "yp" mode in some o kern/129524 FreeBSD 7.0 isnt detecting my hardrives with raid5 o usb/129522 usb [ubsa] [usb67] [patch] add support for ZTE AC8700 mode o ports/129518 gerald lang/gcc42 - g++42 uses wrong libstdc++.so and libgcc_ o kern/129517 net [ipsec] [panic] double fault / stack overflow o kern/129508 net [carp] [panic] Kernel panic with EtherIP (may be relat o usb/129500 usb [umass] [panic] FreeBSD Crashes when connecting SanDis o kern/129488 fs [smbfs] Kernel "bug" when using smbfs in smbfs_smb.c: o docs/129464 doc using packages system o bin/129431 cperciva freebsd-update(8) fetch fails because phttpget fails p o amd64/129426 amd64 [panic] FreeBSD 7.0 crash after subdiskXX: detached o ports/129422 ume [patch] mail/cyrus-imapd23: add patch for autocreate I o bin/129405 [patch] tcsh(1) vfork bugs o www/129401 edwin FreeBSD Multimedia page should automatically pick up Y p docs/129398 trhodes [patch] ddb(8): various tweaks to ddb-related man page o bin/129378 csh(1) / tcsh(1) loses foreground process group [regre o kern/129373 [ata] [panic] Panic in ata-queue, VIA CLE266, 7.1-BETA o kern/129352 net [xl] [patch] xl0 watchdog timeout o kern/129316 [sio] [panic] kernel panic (pcpu.h:195; support.s:499) o amd64/129315 amd64 [boot] [reboot] amd64 motherboard: Intel DG965WH mothe o usb/129311 usb [usb] [panic] Instant crash with an USB card reader o ports/129300 obrien [vuxml] editors/vim: document CVE-2008-3432 o bin/129287 [request] powerd(8) should grow signals to switch betw o docs/129281 blackend Audio CD ripping/duplication shouldn't recommend the u o misc/129267 [build] make buildworld errors on RELENG_7 with gcc 4. o kern/129261 simokawa [firewire] Kernel crash on boot with disconnected fire o usb/129251 usb [usbdevs] [usb67] [patch] Liebert UPS being assigned u s bin/129248 [request] FreeBSD's syslog(8) can't support log encodi o kern/129245 geom [geom] gcache is more suitable for suffix based provid o kern/129231 fs [ufs] [patch] New UFS mount (norandom) option - mostly o kern/129219 net [ppp] Kernel panic when using kernel mode ppp o ports/129210 portmgr [patch] Instrument bsd.port.mk to detect unstripped bi o ports/129198 clsung databases/p5-DBD-SQLite fails when SQLite is compil o kern/129197 net [panic] 7.0 IP stack related panic o usb/129173 usb [uplcom] [patch] Add support for Corega CG-USBRS232R a o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o kern/129164 [kernel] Wrong priority value for normal processes o kern/129152 fs [panic] non-userfriendly panic when trying to mount(8) f i386/129149 vwe [panic] 6.4-RC2 page faults during kernel-mode boot pr o kern/129132 [nfs] 7.1-Beta2 nfsd cannot lock o kern/129125 [psm] psm0: failed to reset the aux device. o ports/129122 openoffice editors/openoffice.org-3: building OpenOffice.org-3.0. o kern/129103 ipfw [ipfw] IPFW check state does not work =( o kern/129098 [panic] vinvalbuf: dirty bufs on 6-STABLE o docs/129095 doc ipfw(8): Can not check that packet originating/destine o kern/129093 ipfw [ipfw] ipfw nat must not drop packets o kern/129059 fs [zfs] [patch] ZFS bootloader whitelistable via WITHOUT o kern/129053 [lor] lock order reversal with printf(9) syscons video o bin/129052 ps(1) %cpu column reports misleading data for threaded f kern/129040 gavin [install] Lockup during boot - Cannot install the OS o kern/129036 ipfw [ipfw] 'ipfw fwd' does not change outgoing interface n o docs/129024 keramida [patch] ipfw(8) improvements o bin/129014 [regression] ftp(1) cannot bind to specific source IP o conf/128994 UPDATING falsly states DTrace bindings are built by de s usb/128990 usb [usb] u3g does not handle RTS/CTS available on for exa o amd64/128978 amd64 [install] FreeBSD 6.3 64-bit panics at boot time duri o usb/128977 usb [usb67] [patch] uaudio is not full duplex o ports/128972 cy Port security/krb5 has a linking problem when compiled o bin/128954 net ifconfig(8) deletes valid routes o ports/128952 [NEW PORT] java/javadb: Sun's supported distribution o o java/128948 java java/jdk16 built from source can't bind a socket, but o kern/128933 [libc] realpath(3) does not follow SUS specification f o threa/128922 threads threads hang with xorg running o kern/128917 net [wpi] [panic] if_wpi and wpa+tkip causing kernel panic o bin/128886 ntpd(8): ntpd -L flag doesn't work o ports/128881 ruby ports-mgmt/portupgrade backtrace f conf/128874 [termcap] termcap entry for rxvt missing :AX: capabili o kern/128870 [pccbb] Interrupt Storm when plugging in PCMCIA Card ( p bin/128842 attilio ps(1) command output includes thread name only when it p bin/128841 attilio ps(1) PADDR (and others?) field width insufficient for o kern/128840 net [igb] page fault under load with igb/LRO f kern/128829 fs smbd(8) causes periodic panic on 7-RELEASE o java/128809 java JVM aborted when GNU RXTX write to serial port. p usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 o ports/128783 stas net-mgmt/flow-tools: flow-send Does not work on freebs o amd64/128765 amd64 [install] Install CD loads to Install choices but stop p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o ports/128754 portmgr bsd.port.mk: implement master sites randomization f usb/128745 weongyo zyd teoretically supported usb device makes kernel pan o bin/128727 host(1) does not work properly with the -6 option o kern/128714 gmtime(3) infine loop o ports/128696 nobutaka Update textproc/uim and new package request textproc/u o kern/128689 [panic] www/apache22: Fatal trap 12: page fault while o bin/128668 [request] Kerberos in the base system is too old o bin/128654 atacontrol(8) does not preserve rebuild status through o kern/128648 [drm] [hang] crash when using 3D-acceleration with Int o gnu/128645 [patch] grep(1): teach grep -r to how to ignore direct f kern/128639 acpi [patch] [acpi_asus] acpi for ASUS A6F,A3E,A3F,A3N not f kern/128634 acpi [patch] fix acpi_asus(4) in asus a6f laptop f kern/128633 pjd [zfs] [lor] lock order reversal in zfs o conf/128632 security periodic 700.kernelmsg repeats messages p bin/128616 kientzle [patch] bsdtar(1) error message typo p misc/128610 kensmith [patch] /usr/src: the iso.1 target of make release do o kern/128608 imp [pccbb] [patch] add support for powering down and up C o bin/128605 secteam [patch] dhclient(8) - security issue o bin/128602 net [an] wpa_supplicant(8) crashes with an(4) o bin/128587 kensmith [patch] sysinstall(8) uses first mirror in Turkey even o bin/128582 [patch] wpa_cli(8): activate readline(3) support o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when p bin/128561 kientzle [patch] compile warning fixes for bsdtar test harness o ports/128556 mnag net/py-zsi installs with insufficient rights o docs/128524 doc No geom documentation for loading gjournal(8) f misc/128516 [build] /usr/src: "make doxygen" stops with error: mak f kern/128514 pjd [zfs] [mpt] problems with ZFS and LSILogic SAS/SATA Ad o bin/128501 cperciva freebsd-update(8) does not work on netbooted machines o bin/128493 [patch] find(1) exits if -fstype test fails with EACCE o usb/128485 usb [umodem] [patch] Nokia N80 modem support o ports/128467 ale [patch] databases/php4-dba: change Berkeley DB detecti o bin/128465 [request] mount_smbfs(8) does not support IPv6 o kern/128452 scsi [sa] [panic] Accessing SCSI tape drive randomly crashe o kern/128448 net [nfs] 6.4-RC1 Boot Fails if NFS Hostname cannot be res o misc/128444 [build] [patch] create USB stick install image o conf/128433 [patch] Add option to allow a full login when doing 's o bin/128427 [patch] mdfs(8): mount_mfs warns "chmod: Read-only fil o usb/128425 usb [umass] Cannot Connect Maxtor Onetouch 4 USB drive o usb/128418 usb [panic] [rum] loading if_rum causes panic, looks like s docs/128356 doc [request] add Firefox plugin for FreeBSD manual pages o conf/128334 net [request] use wpa_cli in the "WPA DHCP" situation o docs/128325 mckusick README.snapshots still refers to snaphots as "alpha-te o usb/128324 usb [uplcom] [patch] remove baud rate restriction for PL23 f bin/128312 vwe netstat(1): output field "Netif" too small f kern/128308 gavin [psm] psm0 cause page fault o kern/128304 vn_pollrecord(3) derefs NULL if v_addpollinfo() fails o conf/128299 rc [patch] /etc/rc.d/geli does not mount partitions using o bin/128295 net [patch] ifconfig(8) does not print TOE4 or TOE6 capabi o kern/128287 remko re(4) regression in 7.1 BETA2 o gnu/128284 gdb(1) segfaults f kern/128282 gavin [mpt] system failure on removing two drives f kern/128276 geom [gmirror] machine lock up when gmirror module is used o amd64/128263 amd64 [panic] 2 amd64 dl380 g5 with dual quadcore xeons, 8 a o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi o kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets o amd64/128259 amd64 csh(1): "`" crashes csh o ports/128256 ale www/tomcat-native rewrites APR library distributed wit p kern/128247 bz [ip6] [panic] Fatal Trap 12 in ip6_forward = o kern/128245 scsi [scsi] "inquiry data fails comparison at DV1 step" [re p docs/128222 trhodes [patch] man page truss(1) claims that init(8) can be t o threa/128180 attilio pthread_cond_broadcast(3) lost wakeup o kern/128177 jeff [sched_ule] wrong CPU usage reported by top/ps with SC o kern/128172 gavin [keyboard] Remote Console (Keyboard) of AOC-SIM1U+ not p docs/128089 kientzle [patch] Incorrect type in archive_write(3) manpage f bin/128088 vwe who(1) not listing all logged in users. o kern/128083 [psm] [panic] early SMP panic on GA-G31M-S2L motherboa o kern/128076 [panic] Fatal trap 12: page fault while in kernel mode o kern/128040 [pccbb] [patch] System hangs when PCMCIA-CF adapter pl o kern/128037 [pccbb] [patch] System hang on shutdown with PCMCIA-CF o kern/128036 [sio] [patch] serial console mostly ignores typein to o kern/128035 [ata] unexpexted detach of external SATA drive s conf/128030 bz [ipsec] [request] Isn't it time to enable IPsec in GEN o ports/128028 portmgr bsd.port.mk - Ports-Script do not recognize dialog-ret p i386/128014 phk [geode] [patch] AMD Geode CS5536 watchdog(9) not disab f kern/128009 vwe setkey(8) coredumps freebsd7 on sha1_result line 263 p o bin/128001 net wpa_supplicant(8), wlan(4), and wi(4) issues p bin/127986 [patch] ee(1): fix compiler warnings caused by use of o ports/127982 amdmi3 games/tnl: crashes when clicking on `single mission' i o i386/127981 i386 [loader] Stack underflow preventing boot [regression] o usb/127980 usb [umass] [patch] Fix Samsung YP U2 MP3 player on 7.x an o kern/127971 [panic] 7.0 RELEASE PANIC a bin/127932 [unionfs] mkdir -p PATH fails if a directory in PATH i o kern/127930 ed auto-logout does not work o kern/127928 net [tcp] [patch] TCP bandwidth gets squeezed every time t o kern/127927 scsi [isp] isp(4) target driver crashes kernel when set up o usb/127926 usb [boot] USB Timeout during bootup o docs/127923 loader Please mention qemu in the FreeBSD Handbook o kern/127920 pf [pf] ipv6 and synproxy don't play well together o bin/127918 [patch] ATA Security support for atacontrol(8) o conf/127917 rc [patch] dumpon rejects on start with physmem>swap even o bin/127912 In theory, uncompress(1) may crash and SEGV f kern/127910 vwe [nfe] FBSD-7.0 amd64 nfe ethernet not completely worki o docs/127908 doc [patch] readdir(3) error documentation p docs/127890 trhodes socket(2) man page should explain that protocol can be o ports/127889 ruby ports-mgmt/portupgrade detects spurious failures and s o kern/127887 [psm] PSM0 not detected by the KERNEL in Compaq Prolia o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion o kern/127870 [panic] HP DL320 lockup with kernel panic s docs/127844 doc Example code skeleton_capture_n.c in meteor(4) manpage o docs/127842 murray list of hardware devices missing from the relnotes p docs/127840 murray [patch] fix entity references in release/doc/en_US.ISO p kern/127834 rstone [ixgbe] [patch] wrong error counting o bin/127832 mux csup(1) is reporting RCS errors in ports. o kern/127826 net [iwi] iwi0 driver has reduced performance and connecti o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o conf/127814 pf [pf] The flush in pf_reload in /etc/rc.d/pf does not w f kern/127813 linimon [ata] ata diver dma mode work incorrectly on chip vt82 o kern/127787 [lor] [ufs] Three LORs: vfslock/devfs/vfslock, ufs/vfs o ports/127778 brooks lang/llvm-gcc4: llvm can't create shared lib o kern/127724 net [rtalloc] rtfree: 0xc5a8f870 has 1 refs f bin/127719 net [arp] arp: Segmentation fault (core dumped) o kern/127717 [ata] [patch] - support write cache toggling per devic p bin/127711 brucec sysinstall(8): cant excape from failed distribution ft o amd64/127640 amd64 gcc(1) will not build shared libraries with -fprofile- o bin/127633 edwin [patch] Update top(1) to 3.8b1 o kern/127623 [headers] header definition for cftime is missing. f ports/127608 marius [patch] sysutils/cdrtools - cdrecord: fix device enume p docs/127602 trhodes [patch] Incomplete information in nsswitch.conf(5) f kern/127587 yongari [bge] [request] if_bge(4) doesn't support BCM576X fami o kern/127553 [build] (errata) in kernel generic et al, device ural p usb/127549 usb [umass] [usb67] [patch] Meizu MiniPlayer M6 (SL) requi f usb/127543 usb [patch] [ubsa] Support Option Globetrotter HSDPA modem o bin/127532 [patch] install(1): install -S Not Safe in Jail with s f kern/127528 net [icmp]: icmp socket receives icmp replies not owned by f kern/127517 [ata] sata does not detect SATA-300 disk but instead d a ports/127496 mi devel/icu 3.8.1_1 does not build when Danish locale is f kern/127492 pjd [zfs] System hang on ZFS input-output o kern/127486 [smp] [panic] early SMP panic ("AP #1 (PHY #1) failed! o ports/127467 portmgr bsd.port.mk: fix checking DISTDIR for writeability s usb/127453 usb [request] ubsa, uark, ubser, uftdi, and friends should o amd64/127451 amd64 [scheduler] incorrect load on quad core p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c o kern/127441 [dtrace] Dtrace timestamp variable is wrapping as if d o kern/127440 [dtrace] Dtrace arg0/arg1 variables don't contain retu o kern/127439 pf [pf] deadlock in pf p docs/127432 remko [patch] update fsck_ffs(8) man-page with regarding to o kern/127420 fs [gjournal] [panic] Journal overflow on gmirrored gjour p kern/127411 [ata] [panic] ata panics on bad block p docs/127406 usb [patch] update umodem man page: Sony Ericsson W810i o amd64/127397 amd64 [amd64] 32bit application on FreeBSD-6.3 amd64 gets SI o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a f kern/127375 kmacy [zfs] If vm.kmem_size_max>"1073741823" then write spee o i386/127374 i386 Suspend/Resume with Keystroke only once on Thinkpad T4 o kern/127360 kmacy [socket] TOE socket options missing from sosetopt() o docs/127359 keramida Undocumented firewall_xxx options for rc.conf in stabl f kern/127345 pf [pf] Problem with PF on FreeBSD7.0 [regression] o i386/127343 i386 [hang] System locks -- simular to PR 123729 o usb/127342 usb [boot] [panic] enabling usb keyboard and mouse support o i386/127337 i386 [boot] FreeBSD 7.1/i386 BTX boot problem on Pavilion d a bin/127331 edwin [patch] top(1) only shows cputime used by one process o ports/127321 japanese/kon2-16dot: buffer overflow and mouse bugs o ports/127303 kuriyama [patch] misc/amanda-server Add pkg-install to create m o ports/127292 timur net/samba3: not work cancel inheritance on share p kern/127289 [ata] [patch] new pci ids for SiI3132 present on adapt o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped s amd64/127276 amd64 ldd(1) invokes linux yes o bin/127270 fsck_msdosfs(8) may crash if BytesPerSec is zero o bin/127265 [patch] ddb(4): Adding the ddb command set from module o docs/127253 doc Error in Handbook: http://www.freebsd.org/doc/en/books p kern/127250 [ata] Kerneltrap 12 with atacontrol o usb/127248 usb [ucom] panic while uplcom devices attach and detach o kern/127233 darrenr [ipnat]: ipnat + ipfilter source routing not handling o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l o threa/127225 threads bug in lib/libthr/thread/thr_init.c o usb/127222 usb [ohci] Regression in 7.0 usb storage generic driver o ports/127214 secteam [PATCH] ports-mgmt/portaudit: Please change to U p kern/127213 delphij [tmpfs] [patch] sendfile on tmpfs data corruption o ports/127210 portmgr bsd.destdir.mk - chrooted install of a port does not f o kern/127209 ipfw [ipfw] IPFW table become corrupted after many changes o bin/127192 net routed(8) removes the secondary alias IP of interface f kern/127145 net [wi]: prism (wi) driver crash at bigger traffic o gnu/127136 gcc(1): Typo in tree-nested.c o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron o kern/127121 pf [pf] [patch] pf incorrect log priority f kern/127119 [ata] incorrect ata device probing o kern/127109 [mpt]: FreeBSD fails to boot except in safe mode f ports/127104 skv devel/otrs - OTRS/PostgreSQL 8.3.3 error: Syntax error o kern/127102 net [wpi] Intel 3945ABG low throughput o bin/127095 mux csup(1): Csup truncates files using RELENG_6 s ports/127087 mail/bincimap port does not include an rc.d file o kern/127057 net [udp] Unable to send UDP packet via IPv6 socket to IPv s bin/127056 lp(1) doesn't use -o options f sparc/127051 sparc64 [hme] hme interfaces "pause" with the message "device o kern/127050 net [carp] ipv6 does not work on carp interfaces [regressi o kern/127048 systat(1) information leak when security.bsd.see_other o kern/127042 pf [pf] [patch] pf recursion panic if interface group is p kern/127040 davidxu [patch] mqueuefs(5) witness panic o bin/127034 [patch] Add option to count apparent size to du(1) o kern/127029 fs [panic] mount(8): trying to mount a write protected zi o ports/127019 ruby ports-mgmt/portupgrade does not recognize fail conditi p kern/126984 glebius [carp] [patch] add carp userland notifications via dev o kern/126973 daichi [unionfs] [hang] System hang with unionfs and init chr o kern/126971 [boot] loader/kernel does not obey comconsole_speed o kern/126945 net [carp] CARP interface destruction with ifconfig destro o bin/126936 locate.updatedb(8): updatedb fails silently when attem p docs/126934 trhodes missing 'crit' in usr.sbin/syslogd/syslog.conf.5 s ports/126932 itetcu gapcmon option in sysutils/apcupsd conflicts with sysu p kern/126926 [build] [patch] Add MACHINE to dmesg o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c o kern/126874 net [vlan]: Zebra problem if ifconfig vlanX destroy o kern/126861 [panic] 6.2 (SMP) crashes when polling disabled o ports/126853 stas ports-mgmt/portaudit: speed up audit of installed pack o usb/126848 usb [usb]: USB Keyboard hangs during Installation p conf/126841 philip [syscons] [patch] Add eee900 keyboard layout to /usr/s p conf/126829 brucec gjournal not in /boot/defaults/loader.conf o ports/126826 thierry sysutils/xvidcap failes to build f bin/126822 bschmidt wpa_supplicant(8): WPA PSK does not work in adhoc mode o kern/126821 [panic] Fatal trap 12 (kdeinit) o bin/126819 randi sysinstall(8) During install if initial name look-up f o kern/126788 [boot] Can not boot FreeBSDv7.0.iso from USB formated o usb/126740 usb [ulpt] doesn't work on 7.0-RELEASE, 10 second stall be o bin/126721 gcc(1) g++(1) Compiling, assembling and linking code w o kern/126714 net [carp] CARP interface renaming makes system no longer f kern/126703 kmacy [panic] [zfs] _mtx_lock_sleep: recursed on non-recursi o kern/126695 net rtfree messages and network disruption upon use of if_ o kern/126688 net [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and o i386/126666 i386 [boot] [hang] boot failure for nForce 630i / GeForce 7 p bin/126657 [patch] w(1) breaks multibyte date format o bin/126619 randi sysinstall(8) deletion of routes when reinitializing m o docs/126590 doc [patch] Write routine called forever in Sample Echo Ps o bin/126562 rc rcorder(8) fails to run unrelated startup scripts when o kern/126553 daichi [unionfs] unionfs move directory problem 2 (files appe o bin/126546 des pam_nologin(8) in auth causes log spam o usb/126519 usb [usb] [panic] panic when plugging in an iphone f ports/126513 doceng print/ghostscript8 (was ghostscript-gpl): compile bug p docs/126487 keramida fix language on atol(3) manpage o docs/126484 doc libc function res-zonscut2 is not documented o kern/126475 net [ath] [panic] ath pcmcia card inevitably panics under p misc/126435 ed [patch] /usr/share/examples/drivers/make_pseudo_driver o bin/126433 [patch] some missing checks in rm(1) o kern/126419 [ar] Fails to boot from RAID10 volume under the Intel o kern/126396 usb [panic] kernel panic after unplug USB Bluetooth device o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped o bin/126384 [request] find(1) doesn't support whiteout entries yet o kern/126364 [panic] Fatal trap 12: page fault while in kernel mode o kern/126339 net [ipw] ipw driver drops the connection p bin/126324 rc [patch] rc.d/tmp: Prevent mounting /tmp in second tim o misc/126312 [build] debug message going to stderr while doing "mak o conf/126305 nsmb.conf(5): Hostnames in nsmb.conf seem to be ignore o bin/126301 portmgr pkg_version(1) can induce unexpected parsing of INDEX o kern/126300 [build] [patch] Add missing -mno-sse3 flag for AMD64 t o kern/126289 [libc] select(2) apparently consumes cpu when it shoul o kern/126287 fs [ufs] [panic] Kernel panics while mounting an UFS file o kern/126232 emulation [linux] Linux ioctl TCGETS (0x5401) always fails o misc/126230 weird process cpu usage stats and weird load average p docs/126227 trhodes [patch] kthread(9) refers to non-existent manpage, des o kern/126214 net [ath] txpower problem with Atheros wifi card o i386/126162 i386 [acpi] ACPI autoload failed : loading required module o kern/126142 [ata] M5281: READ DMA faults, device detaching o ports/126140 ruby ports-mgmt/portupgrade runtime error o misc/126131 cperciva portsnap(8) fetch error with HTTP_PROXY or HTTP_PROXY_ f kern/126113 rnoland [drm] Issues with DRM with Intel GM965 chipset o kern/126098 [cy] 6.3 only sees 16 ports on 32 port Cyclades Cyclom f kern/126089 [panic] Fatal trap 12: page fault while in kernel mode o ports/126083 thierry textproc/aspell core dumps o kern/126075 net [inet] [patch] internet control accesses beyond end of o ports/126042 mi audio/festival: add OGI option o ports/125996 danfe [patch] x11/nvidia-driver - remove pkg_info statements o ports/125936 ruby ports-mgmt/portupgrade -R fails if BUILD_DEP's are not o bin/125932 portmgr pkg_add(1) doesn't prompt for root credentials and the o bin/125922 net [patch] Deadlock in arp(8) o docs/125921 doc lpd(8) talks about blocks in minfree while it is KB in o kern/125920 net [arp] Kernel Routing Table loses Ethernet Link status o kern/125895 fs [ffs] [panic] kernel: panic: ffs_blkfree: freeing free o ports/125883 x11 x11-fonts/xorg-fonts-cyrillic is installed, but fonts o i386/125880 imp [cardbus] Cardbus cards Don't function on TI PCIxx12 C p bin/125878 kmacy [patch] [request] Add zfs/zpool to rescue programs. o amd64/125873 amd64 [smbd] [panic] Repeated kernel panics, trap 12 page fa o kern/125859 [ata] [patch] sata access failure [regression] o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard o kern/125816 net [carp] [if_bridge] carp stuck in init when using bridg o kern/125806 np [cxgb] cxgb packet counters do not work o kern/125769 [ses] [panic] getencstat(8) panics system with "Sleepi o kern/125759 [ar] Fatal Trap 12 when ICH9R RAID becomes degraded s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o docs/125751 doc man 3 pthread_getschedparam section ERRORS incomplete s kern/125738 fs [zfs] [request] SHA256 acceleration in ZFS o usb/125736 usb [ukbd] [hang] system hangs after AT keyboard detect if o kern/125723 [ciss] System randomly crashes or can not boot - ciss o kern/125722 [boot] [install] error "BTX halted" at installation Fr o kern/125721 [ath] Terrible throughput/high ping latency with Ubiqu o docs/125717 keramida minor wpa_supplicant.conf(5) buglet o kern/125710 [vga] Dragon_Saver Error 19 Freebsd 7.0 AMD64 o bin/125707 [patch] powerd(8): force a method of battery state que o kern/125704 [ng_nat] kernel libalias: repeatable panic o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc p kern/125673 firewire [firewire] [panic] FreeBSD7 panics when kldunloading f o kern/125647 [ciss] [panic] System randomly crashes - ciss driver p docs/125639 trhodes [patch] kldunloadf(2) does not mention about possible o usb/125631 usb [ums] [panic] kernel panic during bootup while 'Logite o kern/125617 [ath] ath(4) related panic a kern/125613 trasz [ufs] [patch] ACL problems with special files o i386/125592 i386 [hang] FreeBSD 7 server in hang o conf/125551 [patch] building WLAN userland should be optional o i386/125516 gavin [install] 7.0-RELEASE install dies o usb/125510 usb [panic] repeated plug and unplug of USB mass storage d f kern/125502 net [ral] ifconfig ral0 scan produces no output unless in o kern/125501 [ath] atheros cardbus driver hangs o kern/125496 [ar] [patch] free memory on ataraid module unload o kern/125467 pf [pf] pf keep state bug while handling sessions between o kern/125454 [digi] [patch] device digi (PC/Xe 64K 16 ports) not wo o ports/125453 cy net/ntp should no longer use mlockall() o usb/125450 usb [panic] Removing USB flash card while being accessed c o bin/125449 [patch] awk(1): /usr/bin/awk fails mawk's FPE test f kern/125442 gonzo [carp] [lagg] CARP combined with LAGG causes system pa o kern/125389 [ipmi] [bce] IPMI problem with bce o kern/125382 [libc] open(2): ENOSPC may be misleading, consider EIO o bin/125370 ipfw [ipfw] [patch] increase a line buffer limit o kern/125356 [kqueue] [panic] Repeated panic in kqueue_close from k o bin/125350 des [libfetch] [patch] src/lib/libfetch add support for de o kern/125332 [ath] [hang] crash under any non-tiny networking under a ports/125330 dinoex print/cups-base update fails when nscd running o docs/125329 keramida PACKAGEROOT should be documented in the Handbook o bin/125325 Annoying grep(1) bug with --color s ports/125324 editors/the (3.2) looses cursor when compiled with PDC o kern/125258 net [socket] socket's SO_REUSEADDR option does not work p docs/125253 trhodes [patch] jail(2) does not mention about possible error o kern/125251 [panic] kernel panic o kern/125239 net [gre] kernel crash when using gre o usb/125238 usb [ums] Habu Mouse turns off in X o bin/125185 csh(1) exit on signal 11 o bin/125184 des sshd(8) does not always log IP address for login failu o ports/125183 apache www/apache22 wrong SUEXEC_DOCROOT p kern/125181 thompsa [ndis] [patch] with wep enters kdb.enter.unknown, pani s kern/125149 pjd [nfs] [panic] changing into .zfs dir from nfs client c a kern/125139 brooks [patch] [ata] bugs in ATAPI CD tray control p bin/125098 [patch] ee(1) consume 100% cpu usage o usb/125088 usb [keyboard] Touchpad not detected on Adesso AKB-430UG U o conf/125041 [patch] New file: /etc/periodic/security/810.loginok o misc/125039 cperciva Updating 7.0-RELEASE with freebsd-update failes o kern/125034 [devfs] [patch] devfs does not apply rules to newly cr o kern/125030 [devfs] [patch] Command 'devfs ruleset 0' causes panic o ports/125012 problems in math/ldouble for 128bit long double on i38 o kern/125009 [patch] access(2) grants root execute perms for non-ex o amd64/125002 amd64 [install] amd64, SATA hard disks not detected o kern/124989 [mfi] mfi driver error - unexpected sense o usb/124980 usb [panic] kernel panic on detaching unmounted umass devi o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o gnu/124970 gdb(1): gdb crashes after setting hardware watchpoint o kern/124969 geom gvinum(8): gvinum raid5 plex does not detect missing s o kern/124963 alc [vm] [patch] old pagezero fixes for alc s kern/124933 pf [pf] [ip6] pf does not support (drops) IPv6 fragmented o kern/124908 rwatson [socket] kernel performs inadequate check for incorrec o kern/124904 yongari [fxp] EEPROM corruption with Compaq NC3163 NIC o kern/124881 [devfs] [patch] [request] Add possibility to check whi o stand/124860 standards flockfile(3) doesn't work when the memory has been exh p kern/124853 gonzo [devfs.rules] [patch] devfs_ruleset_use may use freed o bin/124825 mlaier tcpdump(8) does not support pfsync(4) data o bin/124822 [editline] [patch] Editline's ed-search-{prev,next}-hi o kern/124777 usb [ucom] USB cua devices don't revert to tty devices whe o kern/124767 net [iwi] Wireless connection using iwi0 driver (Intel 220 o ports/124765 ume sysutils/gkrellm2 shows wrong number of users in proc o usb/124758 usb [rum] [panic] rum panics SMP kernel o kern/124754 [i915] i915 kernel module does not works with G965 o kern/124753 net [ieee80211] net80211 discards power-save queue packets o conf/124747 rc [patch] savecore can't create dump from encrypted swap o kern/124744 acpi [acpi] [patch] incorrect _BST result validation for To o bin/124739 edwin b64decode(1): "b64decode -r" fails to decode legal bas a docs/124716 trhodes [patch] GEOM RAID1 handbook example only covers boot p o usb/124708 usb [panic] Kernel panic on USB KVM reattach o kern/124670 [ata] large file operation on RAID cause many GEOM err o kern/124667 scsi [amd] [panic] FreeBSD-7 kernel page faults at amd-scsi p conf/124641 gabor [patch] new periodic script for checking for ports wit s ports/124639 kde kde audio/arts sound skipping on playback; non-artsd s o i386/124633 i386 [boot] [panic] 7.0 does not boot from CD p kern/124621 fs [ext3] [patch] Cannot mount ext2fs partition o usb/124604 usb [ums] Microsoft combo wireless mouse doesn't work s misc/124541 cperciva portsnap: portsnap3.FreeBSD.org mirror on error for ov o i386/124516 kmacy [xen] FreeBSD-CURRENT Xen Kernel Segfaults when config o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o docs/124470 remko incomplete (and out of sync) glabel(8) manpage o docs/124469 remko incomplete nice(1) manpage o docs/124468 remko sticky(8) should be sticky(7) o kern/124464 [panic] Panic after showing login o misc/124452 [install] 7.0-RELEASE amd64 bootonly media fails to us o amd64/124432 amd64 [panic] 7.0-STABLE panic: invalbuf: dirty bufs o misc/124431 bde [build] [patch] minor revision of BDECFLAGS f bin/124424 fs [zfs] zfs(8): zfs list -r shows strange snapshots' siz o kern/124412 acpi [acpi] power off error on Toshiba M40 laptop o bin/124409 fsck(8) requires exact entry for mountpoints when exec p bin/124392 rink [patch] bootparamd(8) does not work on arm o kern/124389 [build] make installkernel fails with KMODDIR iff $(KM p misc/124385 mtm [build] [patch] usr.sbin/ngctl/main.c fails to compile o ports/124375 security/heimdal: www/mod_auth_kerb doesn't compile ag o kern/124364 pf [pf] [panic] Kernel panic with pf + bridge o bin/124353 cvsup(1): CVSup coredumps with Bus Error since install p bin/124342 mtm ggated(8): [patch] sbin/ggate/ggated/ggated.c fails to o kern/124341 net [ral] promiscuous mode for wireless device ral0 looses p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under s ports/124321 kde x11/kdebase3 - KDE logins do not work with nsswitch LD o bin/124320 pam_radius(8): Login with ssh using pam_radius and a t o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from o kern/124280 [nfs] [panic] FreeBSD 7/amd64 STABLE crash o docs/124253 sam Broken command in the handbook for configuring a wirel o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/124225 net [ndis] [patch] ndis network driver sometimes loses net s kern/124174 [panic] Panic after installing audio/oss on an Asus A8 o kern/124164 [patch] Add SHA-256/512 hash algorithm to crypt(3) o kern/124160 net [libc] connect(2) function loops indefinitely o kern/124153 [panic] Fatal trap 12: page fault while in kernel mode o conf/124151 winbind is ignored in compat mode in nsswitch.conf(5) o amd64/124134 amd64 [kernel] The kernel doesn't follow the calling convent o kern/124130 usb [usb] gmirror fails to start usb devices that were pre o kern/124128 [puc] puc driver doesn't support VScom PCIex-800H 8-po o i386/124124 i386 [boot] [panic] Page fault while booting livefs iso of o bin/124119 edwin locate(1) doesn't check /etc/locate.rc for the default o kern/124111 i386_set_ldt(2): kernel says see i386_set_ldt; man pag o bin/124084 find(1): find -execdir does not prepend ./ to filename p bin/124052 [patch] adduser(8) throws errors when -f input file in o bin/124049 ntpd(8): ntpd is crashing at startup o kern/124021 net [ip6] [panic] page fault in nd6_output() o i386/123990 i386 [boot] BTX halted on Thinkpad x60s o i386/123981 re [pxeboot] You can't usefully PXEBOOT the 7.0-RELEASE-i p bin/123977 Segmentation fault in dialog(1) with ghostscript-gpl-n o usb/123969 usb [usb] Supermicro H8SMi-2 usb problem: port reset faile o kern/123968 net [rum] [panic] rum driver causes kernel panic with WPA. o kern/123962 geom [panic] [gjournal] gjournal (455Gb data, 8Gb journal), p kern/123961 net [vr] [patch] Allow vr interface to handle vlans o kern/123939 fs [msdosfs] corrupts new files o bin/123932 amd(8) core dumps while load high a kern/123904 [ipmi] ipmi(4) reports negative temperature values on o kern/123892 net [tap] [patch] No buffer space available o kern/123890 net [ppp] [panic] crash & reboot on work with PPP low-spee o kern/123887 [ata] PDC20262 does not support 48 bit DMA access o kern/123858 net [stf] [patch] stf not usable behind a NAT o kern/123855 philip moused(8): spontaneous mouse events p bin/123807 imp [patch] timed(8) does not run on arm (incorrect getopt o kern/123796 net [ipf] FreeBSD 6.1+VPN+ipnat+ipf: port mapping does not o kern/123778 vwe [panic] [ffs] [msgs] server reboots when running 130.c o i386/123775 [dri] DRI Broken under freebsd7-stable/i386 o ports/123769 luigi Modules compiled using devel/linux-kmod-compat can't b o kern/123758 net [panic] panic while restarting net/freenet6 o kern/123755 dfr [nfs] fstat(1) fails to return ESTALE with rename()d f o kern/123735 [panic] 7.0-STABLE kernel panic "AP #1 (PHY# 1) failed o conf/123734 rc [patch] Chipset VIA CX700 requires extra initializatio o usb/123714 usb [usb] [panic] Panic when hald-storage-probe runs with o bin/123703 [patch] timed(8): qualify bad diagnostic in src/usr.sb o bin/123693 [patch] burncd(8): workaround for busy cd-writer while o usb/123691 usb usbd(8): usbd hangs o usb/123690 usb [usb] [panic] Panic on USB device insertion when usb l o stand/123688 standards POSIX standard changes in unistd.h and grp.h o kern/123674 scsi [ahc] ahc driver dumping f kern/123666 scsi [aac] attach fails with Adaptec SAS RAID 3805 controll o kern/123634 [vm] [panic] kernel panic with FreeBSD 7-STABLE o bin/123633 net ifconfig(8) doesn't set inet and ether address in one o kern/123629 [panic] Fatal trap 12: page fault while in kernel mode f kern/123617 net [tcp] breaking connection when client downloading file o usb/123611 usb [usb] BBB reset failed, STALLED from Imation/Mitsumi U o kern/123603 net [tcp] tcp_do_segment and Received duplicate SYN o bin/123574 daichi [unionfs] df(1) -t option destroys info for unionfs (a o ports/123570 itetcu audio/cpige version 1.5 coredumps if new .conf entries f sparc/123566 kmacy [zfs] zpool import issue: EOVERFLOW o amd64/123562 amd64 [install] FreeBSD amd64 not installs o kern/123559 net [iwi] iwi periodically disassociates/associates [regre o java/123555 java linux-sun-jdk15, linux-sun-jdk16 produce a coredump o misc/123554 [build] buildworld with TARGET_ARCH=i386 fails on amd6 o bin/123553 [patch] Prevent indent(1) from splitting unrecognized o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail o amd64/123520 amd64 [ahd] unable to boot from net while using ahd p kern/123518 [patch] src/sys/kern.mk fails to disable -msse3 for am o conf/123516 [periodic] Daily Security Logs Not Reporting Failed Lo o usb/123509 usb [umass] continuous reset Samsung SGH-G600 phone f usb/123508 vwe [umass] [msdosfs] damaged files (mp3,txt , etc) on fla o docs/123484 edwin [patch] teach pxeboot.8 about ISC DHCP v3 a ports/123468 itetcu mail/postgrey: information leak, privacy issue o bin/123465 net [ip6] route(8): route add -inet6 -interfac o kern/123463 net [ipsec] [panic] repeatable crash related to ipsec-tool o i386/123462 i386 clock is too fast p amd64/123456 amd64 fstat(1): /usr/bin/fstat shows error messages and hang o misc/123452 brd trustedbsd-audit email list not archiving o kern/123429 net [nfe] [hang] "ifconfig nfe up" causes a hard system lo o bin/123418 [patch] du(1): add -g (Gbyte) option to du(1) + manpag a ports/123410 dinoex graphics/pornview segmentation fault p kern/123399 [build] RELENG_7 kernel does not compile if IPV6 suppo a kern/123358 [ipfw] ipfw add 1000 allow IP from any to any doesn't o usb/123352 usb [usbdevs] [patch] Add Option GTMAX3.6/7.2 and Quallcom o usb/123351 usb [usbdevs] [patch] Add Reiner SCT cyberJack, Omnikey [2 o kern/123347 net [bge] bge1: watchdog timeout -- linkstate changed to D o conf/123330 net [nsswitch.conf] Enabling samba wins in nsswitch.conf c p bin/123329 phk [patch] usage strings for fifolog_create(1) and fifolo s bin/123304 sysinstall sysinstall(8): missing sensible and user friendly prog o kern/123287 [devfs] structure used after freed in destroy_devl() i o kern/123279 thompsa [lagg] order of operations dependancy in bringing up l f amd64/123275 amd64 [cbb] [pcmcia] cbb/pcmcia drivers on amd64 failure [re o kern/123256 net [wpi] panic: blockable sleep lock with wpi(4) o misc/123240 [nanobsd] [patch] rerunning nanobsd.inc.sh fails becau o bin/123237 randi sysinstall(8): [patch]: sysinstall(8) -- remove dummy o conf/123222 rc [patch] Add rtprio(1)/idprio(1) support to rc.subr(8). o ports/123185 portmgr [patch] Mk/bsd.port.mk - Add extended description to O o kern/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc f kern/123172 net [bce] Watchdog timeout problems with if_bce f kern/123166 yongari [re] CARP messages filtered by Realtek driver on > 6.2 o kern/123160 net [ip] Panic and reboot at sysctl kern.polling.enable=0 o misc/123156 [build] [patch] make.conf update to "make update" sect o misc/123155 [build] [patch] src/Makefile.inc1 bug: remove obsolete p kern/123147 remko [ti] [patch] ti(4) doesn't use mii, but kernel configs o kern/123140 [smp] SMP boot causes slow KB, ATA drives not detected o kern/123122 geom [geom] GEOM / gjournal kernel lock o conf/123119 ipfw [patch] rc script for ipfw does not handle IPv6 o kern/123095 [libc] sendfile(2): Suspected sendfile data corruption f kern/123066 vanhu [ipsec] [panic] kernel trap with ipsec f kern/123045 gonzo [ng_mppc] ng_mppc_decompress - disabling node o kern/123039 acpi [acpi] ACPI AML_BUFFER_LIMIT errors during boot f docs/123038 trhodes [patch] update to projects/c99/index.sgml p docs/123035 trhodes [patch] bugs in refuse.README a bin/123021 [patch] mount(8): mount -p shows incorrect mount optio a bin/123015 brooks [patch] rc.conf(8): implement automated creation of /e o kern/123013 [vm] panic "Bad tailq NEXT(%p->tqh_last) != NULL" o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um f ports/122991 glewis java/jdk16 does not compile from ports o kern/122989 net [swi] [panic] 6.3 kernel panic in swi1: net o conf/122968 rc [rc.d] /etc/rc.d/addswap: md swapfile multiplication a o kern/122963 ipfw [ipfw] tcpdump does not show packets redirected by 'ip o usb/122956 usb [ubsa] [patch] add support for Novatel Wireless XU870 o kern/122954 net [lagg] IPv6 EUI64 incorrectly chosen for lagg devices o kern/122951 firewire [firewire] video-transfer via fwcontrol triggers a pan o usb/122936 usb [ucom] [ubsa] Device does not receive interrupt o kern/122928 net [em] interface watchdog timeouts and stops receiving p o threa/122923 threads 'nice' does not prevent background process from steali f kern/122915 [smp] Incorrect system cpu load o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa o ports/122890 stas Update port: www/ocaml-net (revision, added options) f kern/122888 pjd [zfs] zfs hang w/ prefetch on, zil off while running t a i386/122887 i386 [panic] [atkbdc] 7.0-RELEASE on IBM HS20 panics immed o conf/122883 [patch] login class for ukrainian users accounts f kern/122880 vwe [hang] Kernel lock-up during 7.0 installation disc boo o ports/122877 portmgr [patch] Mk/bsd.port.mk - Show all pkg-message files o kern/122838 [devfs] devfs doesn't handle complex paths (like zvol/ o ports/122830 x11 x11/xorg: Error in I830WaitLpRing() o usb/122819 usb [usb] [patch] Patch to provide dynamic additions to th o usb/122813 usb [udbp] [request] udbp driver should be removed in favo o kern/122782 amd64 [modules] accf_http.ko kernel module is not loadable f kern/122780 net [lagg] tcpdump on lagg interface during high pps wedge o kern/122773 pf [pf] pf doesn't log uid or pid when configured to o kern/122772 net [em] em0 taskq panic, tcp reassembly bug causes radix o kern/122749 [cardbus] cardbus problem on IBM Thinkpad T60P o kern/122743 net [mbuf] [panic] vm_page_unwire: invalid wire count: 0 o kern/122738 geom [geom] gmirror list "losts consumers" after gmirror de o kern/122697 net [ath] Atheros card is not well supported o amd64/122695 amd64 [cpufreq] Lack of cpufreq control using amd64 eith cor o kern/122685 net It is not visible passing packets in tcpdump(1) a kern/122683 [sio] [hang] access to non-existent sio port /dev/cuaa o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE o bin/122652 [patch] du(1) support for inode count o i386/122623 i386 [build] [patch] bsd.cpu.mk doesn't handle opteron/athl o usb/122621 usb [new driver] [patch] New driver for Sierra Wireless 3G o ports/122616 python databases/py-pyPgSQL - apply bytea escape bug patch in a kern/122597 thompsa [iwi] Intel iwi fails after 3 - 4 hours of use"firmwar o kern/122588 [lor] 4 Lock Order Reversal a kern/122565 bz [ipsec] [ip6] Possible memory overwrite for IPv6 IPsec o kern/122563 bz [ipsec] KEY_FREESAV() in FreeBSD-Release7.0 o kern/122562 bz [ipsec] IPsec AH tunneled packet mis handling? o amd64/122549 amd64 7.0-RELEASE-amd64-bootonly.iso doesn't work w/ serial o usb/122547 usb [ehci] USB Printer not being recognized after reboot o usb/122539 usb [ohci] [panic] AnyDATA ADU-E1000D - kernel panic: ohci o ports/122524 demon www/links1 uses 7-bit us-ascii codepage only when usin o bin/122519 [patch] ppp(8): ppp provides deficient DNS info o java/122513 java native JDKs unbuildable with Linux ones f kern/122493 gavin [boot] BTX Halted - Cause is Promise Fastrack SATA PCI o usb/122483 usb [panic] [ulpt] Repeatable panic in 7.0-STABLE o bin/122479 openssl(1): openssl SEGV with DTLS o conf/122477 rc [patch] /etc/rc.d/mdconfig and mdconfig2 are ignoring o amd64/122468 amd64 Compile problems after upgrading to 7.0 o conf/122445 Unable to override EDITOR in /etc/profile due to defau f kern/122415 geom [geom] UFS labels are being constantly created and rem o kern/122380 fs [ffs] ffs_valloc:dup alloc (Soekris 4801/7.0/USB Flash o kern/122373 jfv [em]: unable to recieve on em 82542 w/o promisc f kern/122368 [ata]: Failure to support SATA/PATA drives on 6.3 and o ports/122333 gavin net/arping - patch to lookup for interface and src ip, o kern/122331 [wpa] [panic] 7.0-RELEASE && panic in Wifi area with W o kern/122321 [mpt] Hitachi SCSI drive can't be written to o kern/122319 net [wi] imposible to enable ad-hoc demo mode with Orinoco f misc/122300 kensmith [build] [patch] SEPARATE_LIVEFS arch dependent set but o ports/122299 luigi multimedia/linux-ov511-kmod fails to build on FreeBSD o kern/122291 [ata] acd0: timeout waiting to issue command / acd0: e o kern/122290 net [netgraph] [panic] Netgraph related "kmem_map too smal p kern/122288 jh [md] [patch] mdconfig(8) returning negative unit numbe o bin/122271 [patch] usr.bin/xinstall - Add support for -D option ( o bin/122235 [psm] freebsd-7.0 moused(8) problems with ALPS GlidePo o kern/122195 net [ed] Alignment problems in if_ed o amd64/122174 amd64 [panic] 7.0 no longer includes "device atpic" so fails o bin/122172 fs [fs]: amd(8) automount daemon dies on 6.3-STABLE i386, o conf/122170 rc [patch] [request] New feature: notify admin via page o s kern/122145 sam [build] error while compiling with device ath_rate_amr p bin/122137 [patch] Have crontab(1) use snprintf instead of sprint o ports/122122 mi print/lyx crashes if devel/boost is compiled with thre o usb/122119 usb [umass] umass device causes creation of daX but not da o kern/122109 piso [ipfw] ipfw nat traceroute problem o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini f kern/122082 rwatson [tcp] NULL pointer dereference in in_pcbdrop p bin/122070 [patch] crontab(1): Zero out pw_passwd in crontab o kern/122067 geom [geom] [panic] Geom crashed during boot f kern/122065 bz [ipsec] [gre] gre over ipsec not working f kern/122061 [libc] dlsym(3) is very slow when a symbol cannot be f o kern/122058 net [em] [panic] Panic on em1: taskq f docs/122052 doc minor update on handbook section 20.7.1 o kern/122046 [psm] Synaptics touchpad freezes (psm0: lost interrupt p kern/122045 [ata] [panic] reiniting detached ata channel kills the o bin/122043 [patch] du(1) does not support byte-count-based report p kern/122038 delphij [tmpfs] [panic] tmpfs: panic: tmpfs_alloc_vp: type 0xc o conf/122037 [patch] add rsync example for inetd.conf o kern/122033 net [ral] [lor] Lock order reversal in ral0 at bootup ieee o usb/122025 usb [uscanner] [patch] uscanner does not attach to Epson R o kern/122014 pf [pf] [panic] FreeBSD 6.2 panic in pf f kern/121962 [sound] [snd_emu10k1] [panic] Kernel panics with devic o docs/121952 doc Handbook chapter on Network Address Translation wrong o stand/121921 standards [patch] Add leap second support to at(1), atrun(8) o kern/121917 [boot] [patch] Broken boot on Asus P4P800-VM after upg p kern/121907 [request] output to console can obscure other messages o kern/121904 wrong CPU description in dmesg output for AMD Athlon X f i386/121903 i386 [ips] [boot] can't boot on IBM x235 ServeRaid 6M [regr s ports/121902 gabor [PATCH] textproc/ispell add OPTIONS o bin/121898 fs [nullfs] pwd(1)/getcwd(2) fails with Permission denied o bin/121895 net [patch] rtsol(8)/rtsold(8) doesn't handle managed netw o kern/121872 net [wpi] driver fails to attach on a fujitsu-siemens s711 o docs/121871 doc ftpd does not interpret configuration files as documen s conf/121812 [ip6] [request] ipv6_gateway_enable incorrectly disabl p kern/121809 kris unable to umount s kern/121807 ipfw [request] TCP and UDP port_table in ipfw o bin/121779 fs [ufs] snapinfo(8) (and related tools?) only work for t s kern/121774 net [swi] [panic] 6.3 kernel panic in swi1: net o kern/121770 [panic] ZFS on i386, large file or heavy I/O leads to o kern/121768 [cpufreq] cpufreq module RELENG_6 -> 7 regressions on o kern/121761 [cardbus] [dc] a cardbus dc0 causes a system freeze wh o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't o kern/121759 [cardbus] [dc] cardbus dc0 initialization failure at o o usb/121755 usb [ohci] [patch] Fix panic after ohci/uhub cardbus devic o ports/121745 vd misc/ossp-uuid - PostgreSQL contrib ossp-uuid crashes o usb/121734 usb [ugen] ugen HP1022 printer device not working since up p docs/121721 trhodes telnetd(8) not describing -X authentication types f kern/121720 thompsa [wpi] wpi doesnt work if kernel has options SCHED_ULE o usb/121708 usb [keyboard] nforce 650i mobo w/ usb keyboard infinite k o kern/121706 net [netinet] [patch] "rtfree: 0xc4383870 has 1 refs" emit o kern/121704 pf [pf] PF mangles loopback packets f kern/121703 [ata] Cannot fdisk/gpt with 1TB SATA disk and 965QM Mo f i386/121699 linimon [boot] can't boot on MSI K9N Ultra o java/121692 java java/jdk16: Java 1.5 1.5.0.14p8 crashes in RMI TCP Con o kern/121686 [ata] bogus CHS to LBA mapping in (at least) ata o sparc/121676 scsi [iscsi] iscontrol do not connect iscsi-target on sparc o i386/121675 mav [ata] incorrect fallback to udma33 with CF memory inst o ports/121672 wes [Patch] mail/mimedefang: opt out of clamav use f kern/121660 jkoshy [hwpmc] [patch] hwpmc(4) incorrectly handles PMC sampl o kern/121656 [libc] [patch] telldir(3) issues o kern/121642 bz [ipsec] [gif]: When using IPSec, tcpdump shows non-dec o kern/121624 net [em] [regression] Intel em WOL fails after upgrade to f amd64/121590 amd64 [est] [p4tcc] [acpi_perf] setting dev.cpu.0.freq somet o docs/121585 doc [handbook] Wrong multicast specification o ports/121573 cy security/krb5 (MIT Kerberos) generates non-working ksu o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o docs/121565 doc dhcp-options(5) manpage incorrectly formatted omitting o kern/121559 geom [patch] [geom] geom label class allows to create inacc o kern/121556 kientzle [libarchive] ISO9660 decompression extension unsupport o kern/121555 net [panic] Fatal trap 12: current process = 12 (swi1: net f kern/121550 [drm] Can't config graphics for ATI Radeon Xpress 200M o docs/121545 brd Update Handbook Section 29.3 to include wlan_scan_sta s docs/121541 doc [request] no man pages for wlan_scan_ap o kern/121534 darrenr [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: o kern/121504 acpi [patch] Correctly set hw.acpi.osname on certain machin o bin/121503 sysinstall sysinstall(8): 7.0 upgrade doesn't let me mount all of p docs/121490 brueffer [patch] Multiple typos ("in in") in /usr/src files s kern/121485 vwe [vm] panic with 7.0-RELEASE [regression] o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o ports/121472 perl Loading perl scripts causes irc/xchat segmentation fau o kern/121461 [ata] SATA Hard disks are not detected on SiS 180/181 f kern/121454 acpi [pst] Promise SuperTrak SX6000 does not load during bo o kern/121443 net [gif] [lor] icmp6_input/nd6_lookup o docs/121440 keramida rc(8) and rcorder(8) unclear about PROVIDE keyword bei o amd64/121439 acpi [boot] Installation of FreeBSD 7.0 fails: ACPI problem o kern/121437 net [vlan] Routing to layer-2 address does not work on VLA o usb/121426 usb [patch] [uscanner] add HP ScanJet 3570C o ports/121420 java java/jdk16: Java applet fails to find class under fire o ports/121416 java java/jdk15 can't build if BIN environment variable is a power/121407 ppc [panic] Won't boot up; strange error message. o kern/121396 [ata] 7.0 fails on mcp55 sata controller [regression] f kern/121394 sam [ath] FreeBSD access point (ath0) fails 100% of the ti o kern/121385 daichi [unionfs] unionfs cross mount -> kernel panic o kern/121382 ipfw [dummynet]: 6.3-RELEASE-p1 page fault in dummynet (cor o kern/121373 bz [ipsec] New IPSEC & IPV6 & AH+ESP Broken o kern/121371 secteam execv undesired use to change a processes credentials o bin/121366 fs [zfs] [patch] Automatic disk scrubbing from periodic(8 o kern/121364 geom [gmirror] Removing all providers create a "zombie" mir o bin/121359 net [patch] [security] ppp(8): fix local stack overflow in o kern/121350 [ata] [panic] initiate_write_inodeblock_ufs2: already o ports/121347 hrs print/teTeX-base and print/texinfo install files in th o kern/121337 [radeon] [panic] Kernel panic on 7.0-RELEASE using ati o threa/121336 threads lang/neko threading ok on UP, broken on SMP (FreeBSD 7 o kern/121322 [panic] 'panic: spin lock held too long' on reboot o docs/121312 doc RELNOTES_LANG breaks release if not en_US.ISO8859-1 o kern/121298 net [em] [panic] Fatal trap 12: page fault while in kernel f kern/121294 [panic] kernel panic pcpu.h or 0x00000000 in ?? () o usb/121275 usb [boot] [panic] FreeBSD fails to boot with usb legacy s o kern/121274 darrenr [panic] Panic in ether_input() with different NIC's. o ports/121259 itetcu New port: net/openamq OpenAMQ is a complete AMQP messa o kern/121257 net [tcp] TSO + natd -> slow outgoing tcp traffic o bin/121243 des [patch] passwd(1) patch for usage with PAM/LDAP o ports/121235 wosch ports/sysutils/socket registers signal handler for SIG o kern/121234 [vm] vm_fault: fault on nofault o usb/121232 usb [usb] [panic] USB CardBus card removal causes reboot s p usb/121184 usb [uipaq] [patch] add ids from linux ipaq driver (plus a o kern/121181 net [panic] Fatal trap 3: breakpoint instruction fault whi o kern/121174 [ral] if_ral loses performance in FreeBSD 7 (RELENG_7) o docs/121173 doc [patch] mq_getattr(2): mq_flags mistakenly described a o usb/121169 usb [umass] Issues with usb mp3 player o bin/121165 pkg_add(1) prints a weird message: PKG_TMPDIR environm p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o i386/121148 gavin [panic] Repeatable sysctl crash (Fatal Trap 12) with A o ports/121143 markus [PATCH] audio/cdparanoia: rip multisession CDs correct a bin/121124 brucec sysinstall(8): FreeBSD 6.3 installation deletes MBR pa o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/121102 acpi [acpi_fujitsu] [patch] update acpi_fujitsu for the P80 o kern/121080 net [bge] IPv6 NUD problem on multi address config on bge0 o kern/121073 [kernel] [patch] run chroot as an unprivileged user o bin/121072 fs [smbfs] mount_smbfs(8) cannot normally convert the cha o conf/121064 [patch] Use ASCII characters for box/line characters i o kern/121061 sam [ath] [panic] panic while ejecting ath(4)-adapter duri o bin/121059 ntpd(8) doesn't sync with servers after dhclient chang o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o bin/120994 [patch] alignment violation in chap module of ppp(8) c o conf/120993 [patch] 340.noid -- Add "find -x" capability (don't cr f kern/120991 fs [panic] [fs] [snapshot] System crashes when manipulati o bin/120990 [patch] support "BIOS Boot" partition type in gpt(8) o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada o kern/120966 net [rum] kernel panic with if_rum and WPA encryption o ports/120947 x11 x11/xsm ignores system.xsm and .xsmstartup p docs/120945 net [patch] ip6(4) man page lacks documentation for TCLASS f i386/120933 i386 [boot] 6.x and 7.x do not boot from CD on IBM HS20 883 s docs/120917 doc [request]: Man pages mising for thr_xxx syscalls p bin/120891 dwmalone [patch] enhancement to syslogd(8) - always printing lo o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/120872 [libkvm] [patch] fstat exit on signal 11 p bin/120870 jh [patch] truss(1) shows 'pipe' system call as having 6 o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/120791 [bge] The Broadcom BCM5703 A2 NIC is running a lot of o usb/120786 usb [usb] [panic] Kernel panic when forced umount of a det o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/120749 [request] Suggest upping the default kern.ps_arg_cache o kern/120733 cperciva libbsm.so.1 missing after upgrading to 6.3-RELEASE o usb/120729 usb [panic] fault while in kernel mode with connecting USB o kern/120717 [ata] boot problem when recognizing ata1 o kern/120615 scottl [hptrr] hptrr on 6.3-RELEASE/i386 causes filesystem da a misc/120608 linimon gmirror(8) command set on livecd is minimal [regressio o usb/120572 usb [umass] [patch] quirk to support ASUS P535 as umass (a o kern/120566 net [request]: ifconfig(8) make order of arguments more fr o bin/120552 cperciva freebsd-update(8): freebsd-update - -r should check ex o docs/120539 doc Inconsistent ipfw's man page o kern/120534 [ata] Troubles in work with SAS controller Adaptec 941 o ports/120532 portmgr [PATCH] bsd.port.mk - add more recursive-foo targets o kern/120515 acpi [acpi] [patch] acpi_alloc_wakeup_handler: can't alloc o kern/120487 scsi [sg] scsi_sg incompatible with scanners o kern/120483 fs [ntfs] [patch] NTFS filesystem locking changes o kern/120482 fs [ntfs] [patch] Sync style changes between NetBSD and F o docs/120456 adrian ath(4) needs to specify requirement on wlan_scan_sta o conf/120431 rc [patch] devfs.rules are not initialized under certain o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. o kern/120376 imp [ath] High interrupt load when booting with ath (PCMCI o ports/120372 java java/linux-sun-jdk16: linux-sun-jre1.6.0 plugin doesn' o kern/120344 rwatson [panic] FreeBSD 6.3-STABLE panics on high loaded web s p kern/120343 ups [panic] Reproducible Crash - network interface related o usb/120321 usb [hang] System hangs when transferring data to WD MyBoo o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time o kern/120296 [ata] Unstable SATA on MB with Nvidia MCP 570 SLI chip o usb/120283 usb [panic] Automation reboot with wireless keyboard & mou o kern/120282 imp [ath] [panic] resource_list_release: resource entry is o kern/120281 pf [pf] [request] lost returning packets to PF for a rdr o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac o kern/120266 net [udp] [panic] gnugk causes kernel panic when closing U o conf/120263 [patch] 800.loginfail misses relevant security informa f kern/120262 rnoland [drm] "0MB"; no dri with i915G [regression] o bin/120256 [patch] ftp(1): ftp -u URL/ returns a -1 f kern/120253 kernel crashes after hard disk geometry while probing o kern/120247 scsi [mpt] FreeBSD 6.3 and LSI Logic 1030 = only 3.300MB/s f kern/120210 kmacy [zfs] [panic] reboot after panic: solaris assert: arc_ o amd64/120202 amd64 [amd64] [patch] [panic] kernel panic at start_all_aps, o kern/120177 [ata] ATA DMA modes don't work on CF cards o ports/120173 wxs Prevent ports mail/mailman zombieing remote servers/ o java/120146 java java/jdk15: netbeans 6.0 causes java core dump on amd6 o kern/120143 [panic] FreeBSD6.3 page faulted after add packages by p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va o kern/120130 net [carp] [panic] carp causes kernel panics in any conste o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT f kern/120127 [loader] Loading of gzip'd mfsroot from pxeboot(8) cau o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o bin/120114 [patch] reboot(8) - add features available in Solaris. o ports/120101 cy security/krb5 utilities link against wrong libcom_err o bin/120095 gdb(1) fails to catch signals when threading is involv o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/120090 [geli] geli boot password input fails when using usb k o kern/120075 [libcrypt] Incompatible EOS of key in crypt(3) o kern/120073 [new driver] [patch] add support for Meinberg PCI-base o kern/120066 [geli] geli boot password input fail when using serial o bin/120064 routed(8) marks 802.11 interfaces broken o bin/120060 net routed(8) deletes link-level routes in the presence of o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c p bin/120055 attilio [linux] kdump(1) segfaults on freebsd6_mmap syscall o usb/120034 usb [hang] 6.2 & 6.3 hangs on boot at usb0: OHCI with 1.5 o docs/120024 doc resolver(5) and hosts(5) need updated for IPv6 o kern/120009 [ata] Burning on FreeBSD is destroying SONY CD-Rs o usb/119981 usb [axe] [patch] add support for LOGITEC LAN-GTJ/U2 gigab o usb/119977 usb [ums] Mouse does not work in a Cherry-USB keyboard/mou o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo a ports/119966 roam mail/vpopmail patch o kern/119945 net [rum] [panic] rum device in hostap mode, cause kernel o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 p threa/119920 deischen [patch] fork broken in libpthread o bin/119903 [ncurses] Fast increase in loading of the processor. A o kern/119894 [ata] Initialization of disc controller fails [regress o kern/119891 slow halt, reboot when remote network shares which doe o kern/119877 [ata] OS Fails to detect hard disks on HP Proliant ML1 o conf/119874 rc [patch] "/etc/rc.d/pf reload" fails if there are macro o kern/119850 [radeon] radeon module doesnt work right, when loaded o kern/119842 jail [smbfs] [jail] "Bad address" with smbfs inside a jail o kern/119838 [ata] udma100 enabled althrough improper cable on nVid o i386/119809 gavin [virtualpc] MS Virtual PC 2007 - Install hung - Trying o bin/119801 dhclient(8): dhclient changes alias to address o kern/119791 net [nfs] UDP NFS mount of aliased IP addresses from a Sol f bin/119776 vwe can't start sshd(8) o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt o kern/119754 jfv [em] em hung after "watchdog timeout -- resetting" on f kern/119735 fs [zfs] geli + ZFS + samba starting on boot panics 7.0-B o ports/119732 java java/linux-sun-jre16: linux-sun-jre16 plugin doesn't w o ports/119710 sumikawa [patch] net/netcat - nc command runs BSD nc instead of o kern/119696 [irq] [ral] ral device causes massive interrupt storm o bin/119695 pw(8) does not interact with nscd(8) o kern/119668 scsi [cam] [patch] certain errors are too verbose comparing o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch s bin/119645 [request] mount_ntfs(8) -- files permissions mask is i o usb/119633 usb [umass] umass0: BBB reset failed, IOERROR [regression] o kern/119618 [fdc] Double Density Disks do not work correctly o kern/119617 net [nfs] nfs error on wpa network when reseting/shutdown f kern/119613 yongari [msk] mskc0: Uncorrectable PCI Express error p bin/119610 wkoszek [patch] config(8): config -x appends unwanted trailing o kern/119606 [sio] [patch] PCMCIA card not attached to driver o amd64/119591 amd64 [amd64] [patch] time_t on 64-bit architecture o kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o i386/119574 bde [i386] 7.0-RC1 times out in calibrate_clocks() [regres o kern/119572 [sbp] PowerBook not accessable when in target mode o conf/119550 [ppp] ppp not starting during bootup. o docs/119545 doc books/arch-handbook/usb/chapter.sgml formatting a docs/119536 doc a few typos in French handbook (basics) o bin/119524 cron(8) suddenly stops working, not crash f kern/119516 net [ip6] [panic] _mtx_lock_sleep: recursed on non-recursi o usb/119513 usb [irq] inserting dlink dwl-g630 wireless card results i o usb/119509 usb [usb] USB flaky on Dell Optiplex 755 o kern/119507 [dri] mach64.o kernel module version is 1.0.0, but ver p bin/119490 top(1) hangs for long periods with NIS -- even using - o bin/119483 [patch] vidcontrol(1) misses latest VESA mode (off-by- o usb/119481 usb [hang] FreeBSD not responding after connecting USB-Mas o conf/119464 [patch] [request] Add 'sorted' option to etc/periodic/ o kern/119432 net [arp] route add -host -iface causes arp e o usb/119389 usb [umass] Sony DSC-W1 CBI reset failed, STALLED [regress o docs/119386 blackend bsdlabel and newfs on DVD-RAM (handbook ch. 18.7.9) o kern/119374 [ata] [regression] ATAPI or ATAPICAM bug (regression i o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose o kern/119356 acpi [acpi]: i386 ACPI wakeup not work due resource exhaust o bin/119354 mux csup(1) in free(): error: chunk is already free f kern/119345 vwe [ath] Unsuported Atheros 5424/2424 and CPU speedstep n p docs/119338 trhodes gprof(1) refers to unmentioned option "-c" p docs/119329 trhodes [patch] Fix misleading man 1 split f kern/119303 linimon [ata] SATA HDD missing in 7.0-RC1, ok in 7.0-BETA4; at p kern/119298 kan [xfs] [patch] 7-Stable/sys/modules/xfs fails to make f o kern/119293 [gbde] gbde swap encryption forces gmirror to rebuild o kern/119259 [panic] kernel panic on asus c90s laptop after first ( o sparc/119244 sparc64 X11Forwarding to X11 server on sparc crashes Xorg o sparc/119240 sparc64 top has WCPU over 100% on UP system s sparc/119239 sparc64 gdb coredumps on sparc64 o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun o kern/119225 net [wi] 7.0-RC1 no carrier with Prism 2.5 wifi card [regr o kern/119205 [dc] [patch] Collect various stats regarding dc(4) int o kern/119202 [kernel] [patch] Add generic support for disabling dev o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and o kern/119200 acpi [acpi] Lid close switch suspends CPU for 1 second on H o kern/119197 [psm]: PS/2 mouse doesn't work under FreeBSD i386 7.0 s bin/119196 des fetch(1): [request] parallel download from multiple se f i386/119175 i386 [busdma] [patch] Typo in bus_dmamem_alloc() o usb/119150 remko [usbdevs] [patch] new usbdevs for CDMA 1xEVDO devices o kern/119140 [ata] [panic] Kernel panic with sata drive and dma pro o ports/119119 timur net/samba3 - 3.0.28 stops working with ZFS whereas 3.0 o bin/119077 sysinstall [patch] sysinstall(8) - reading packages from index is o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o bin/119068 dd(1) yields a bogus error when input file is to small o java/119063 java An unexpected error has been detected by Java Runtime o kern/119043 [twa] twa hang after heavy disk IO o kern/118993 ipfw [ipfw] page fault - probably it's a locking problem o kern/118990 [nve] nve + PAE bus_addr_t/void * inconsistencies o kern/118973 acpi [acpi]: Kernel panic with acpi boot o kern/118962 rnoland [agp] Intel GMA 3000 Video Controller Not Recognized U o ports/118958 portmgr Mk/bsd.autotools.mk: find configure if CONFIGURE_WRKSR o java/118956 java eclipse and netbeans break on diablo-jdk15 o kern/118927 jfv [em] em(4) broken: link state changed to DOWN (/UP), l o kern/118912 fs [2tb] disk sizing/geometry problem with large array o docs/118902 doc [patch] wrong signatures in d2i_RSAPublicKey man pages o kern/118880 bz [ip6] IP_RECVDSTADDR & IP_SENDSRCADDR not implemented p bin/118874 [patch] tftpd(8): add TFTP Option Extension (rfc 2347) f misc/118855 pjd [zfs] ZFS-related commands are nonfunctional in fixit o kern/118819 [vmware] FreeBSD 6.2 in VMware is unstable and there i p conf/118770 mtm [patch] rc.d scripts: print information instead of sil o bin/118759 cvs(1): cvs -R doesn't handle non-existent tags o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de o kern/118734 brucec [xen] FreeBSD 6.3-RC1 and FreeBSD 7.0-BETA 4 fail to b o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o bin/118723 gcooper [patch] od(1)/hexdump(1) truncates last partial repeat o ports/118716 security/heimhal - shared library conflict with heimda o kern/118713 fs [minidump] [patch] Display media size required for a k o kern/118695 jfv [em] device polling + vlan causes panic on "em" interf o docs/118693 jfv Update for "em" man page for RELENG_7 o ports/118677 timur [net/samba3] Unix password synchronization with PAM do o kern/118573 [ata] FreeBSD doesnt support my optical drive s kern/118571 [boot] [request] fix BTX issues when booting FreeBSD 7 p kern/118540 kaiw [elf] [patch] update sys/sys/elf_common.h with new ema o kern/118534 [ipw] bitrate and power wifi can't change/set ipw Inte o bin/118501 Sending SIGINT to cvs(1) gives segmentation fault o java/118496 java Eclipse packages do not work with 6.3-RC1/amd64 o kern/118493 weongyo [ndis] [patch] a trivial fix when ndis sets `ndis_reso o usb/118485 usb [usbdevs] [patch] Logitech Headset Workaround o usb/118480 usb [umass] Timeout in USB mass storage freezes vfs layer o kern/118459 [hang] Freeze under high-load with SMP until keypresse o bin/118449 randi sysinstall(8): Installer failing dns lookups o kern/118447 [ata] [patch] Troublesome DMA modes with VIA Apollo VP p kern/118439 thompsa [ndis] [patch] if_ndis - fix a panic when ndis_attach( o gnu/118415 nm -D fails if a file has no symbols a ports/118406 danfe x11/nvidia-driver-*xx: nvidia driver port name conflic o kern/118399 secteam [tap] local/remote kernel DoS through TAP device p usb/118374 attilio [ubsa] [patch] support Option GlobeTrotter Max 3.6 wir p kern/118370 thompsa [ndis] [patch] if_ndis - fix a scanning problem of Mar o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o usb/118353 usb [panic] [ppp] repeatable kernel panic during ppp(4) se f i386/118350 i386 [boot] [hang] BTX loader hangs on PC Engines WRAP o kern/118342 [ata] Unable to mount root on ata drive w/ Cyrix 5530 o docs/118332 doc man page for top does not describe STATE column wait e o bin/118325 rc [patch] [request] new periodic script to test statuses o bin/118318 mohans [nfs] NFS server hangs under special circumstances p kern/118317 delphij [zlib] [patch] Incorrect gzeof() return value in zlib p kern/118304 kib freebsd 7 delivers unanticipated signal for page fault o ports/118301 python devel/py-setuptools easy-install.pth contents lost on o bin/118297 weongyo [patch] ndiscvt(8): sort a output format. o bin/118296 weongyo [patch] ndiscvt(8) can't parse a STRING WORD pattern w o bin/118295 weongyo [patch] ndiscvt(8) makes a syntax error when it proces o bin/118294 weongyo [patch] ndiscvt(8) can't parse WORD which includes '(' o i386/118285 jhb [i386] Segmentation fault in reloc_non_plt. o kern/118282 [sg] device sg + hald + umass plugging crashes 7.0 p bin/118260 bin: more informative error message for install(1) o conf/118255 rc savecore never finding kernel core dumps (rcorder prob o bin/118249 fs mv(1): moving a directory changes its mtime o bin/118248 gavin newsyslog(8) does not obey -s (nosignal) flag a kern/118238 net [bce] [patch] bce driver shows "no carrier" on Intel S s ports/118230 acm games/linux-quake4 fails to start o kern/118222 [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work o docs/118214 doc close(2) error returns incomplete o bin/118207 burncd(8) gives I/O error writing CD on Pioneer DVDR-1 o bin/118205 [patch] [request] new options -r to pkill(1) a pid aft o ports/118196 krion x11/xterm v229 mishandles combining characters o gnu/118188 obrien GCC bug with abs() f kern/118161 [atapicam] failure message from ATAPI CDROM in the boo s kern/118158 [ata] SONY SDX-570V (ATAPI) hangs frequently o bin/118144 des [patch] pam_lastlog doesn't check return values in pam o usb/118141 usb [ucom] usb serial and nokia phones ucomreadcb ucomread o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi o kern/118137 process stuck in pipewr (similar to kern/55908?) f kern/118128 oleg [dummynet] Dummynet cause kernel trap or system freeze o kern/118126 kmacy [nfs] Poor NFS server write performance s kern/118124 [request] HZ value on slow computers should by dynamic o bin/118123 [patch] chat(8) has infinite recursion bug o misc/118121 [build] RELENG_7 kernel compile fails with -Os o bin/118114 [patch] update manctl(8) o conf/118113 [md] mdconfig init script requires image to be on root o conf/118111 [patch] [request] Add MAC address based interface rena o kern/118107 fs [ntfs] [panic] Kernel panic when accessing a file at N o usb/118098 usb [umass] 6th gen iPod causes problems when disconnectin o kern/118093 firewire [firewire] firewire bus reset hogs CPU, causing data t a bin/118071 darrenr ipnat(8): ipnat -s expired counter does not update [re o bin/118069 [patch] camcontrol(8) should be able to leave device s o conf/118047 Move /etc/printcap to /usr/share/examples/ o kern/118044 [panic] [lor] spin lock held too long o kern/118021 randi [keyboard] 7.0 Beta 2 sysinstall keyboard emits contro o docs/118020 doc ipfilter(4): man pages query for man 4 ipfilter return p bin/118005 andre Can No Longer SSH into 7.0 host a kern/117987 rwatson read(2) on directories might leak filenames of deleted o kern/117973 [panic] [lpt] 7.0-BETA2: repeatable panic while printi o kern/117972 [ata] SATA DLT V4 not recognized properly p bin/117966 fdread(1) aborts with EPERM o usb/117955 usb [umass] [panic] inserting minolta dimage a2 crashes OS o kern/117954 [ufs] dirhash on very large directories blocks the mac o usb/117946 usb [panic] D-Link DUB-E100 rev. B1 crashes FreeBSD 7.0-BE o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o conf/117935 rc [patch] ppp fails to start at boot because of missing o kern/117926 jfv [em] Intel S5000-based mobo, em driver does not attach o ports/117923 maho USE_FORTRAN=yes: shared libraries for blas, lapack, an o bin/117922 ftpd(8): remote ftp user possible leave chrooted envir f ports/117921 New port: multimedia/feng Feng is a multimedia streami o usb/117911 usb [ums] [request] Mouse Gembird MUSWC not work s ports/117907 x11 x11-servers/mga_hal broken on 7.0-BETA (GLIBC error) o usb/117893 usb [umass] Lacie USB DVD writing failing o kern/117867 kmacy [heimdal] kinit generates bad tickets on multihomed IP s bin/117830 [patch] who(1) no longer displays entries for folk log o bin/117812 passwd(1): incapable of changing LDAP passowrds using o misc/117811 [build] Building multiple kernels with KERNCONF="ONE T p docs/117798 trhodes formatting oddity in sysmouse(4) o gnu/117756 dialog_checklist() does not honour DisplayX/DisplayY f bin/117751 [patch] [request] Make pw(8) support "-d" argument p bin/117748 jilles sh(1): Backslash quote fails in pattern for substring o docs/117747 doc 'break' system call needs a man page o bin/117733 [patch] [request] allow to tee(1) to sockets, descript s kern/117717 net [panic] Kernel panic with Bittorrent client. o usb/117712 [reboot] unexpected reboot after mount USB flash drive f kern/117711 [rpc] rpcbind binds to all interfaces on random ports o kern/117709 simon [libcrypto] [patch] Base openssl does not define OPENS o kern/117688 [mpt] mpt disk timeout and hang o bin/117687 [patch] fstab(5) format cannot handle spaces f kern/117655 sam [ral] ral%d: device timeout when running as an access o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o kern/117607 [amd64] dev.cpu.0.freq not showing up any longer on am f bin/117603 linimon [patch] dump(8) hangs on SMP - 4way and higher. o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant o usb/117546 remko [uftdi] [patch] Add MaxStream ZigBee product ID to uft o bin/117520 mux [patch] csup(1) not-really-equivalent to cvsup s kern/117513 vwe [panic] [ath] Fatal trap 12: page fault while in kerne o kern/117510 [headers] [patch] sys/cdefs.h lacks support for PCC o gnu/117481 sort(1) incorrect numeric sort in very specific cases o kern/117474 [hang] HP Proliant 5500 hangs on reboot with 6.2 o kern/117448 net [carp] 6.2 kernel crash [regression] o kern/117443 [ata] [hang] system hang with ataidle s ports/117440 kde misc/kdeedu3 - Request to package README.ephemerides f o kern/117423 net [vlan] Duplicate IP on different interfaces o kern/117421 [ata] [hang] System hang with failing SATA disk (SiI31 o kern/117420 jeff [sched_ule] round off in sched_balance_pair() o amd64/117418 amd64 [hang] FreeBSD 6.2 crash on amd64 4400+ with ssh o kern/117374 vidcontrol(1) videomode: Operation not supported by de o kern/117348 [libedit] Loading history file sometimes fails in libe o bin/117339 net [patch] route(8): loading routing management commands o amd64/117316 amd64 [acpi] ACPI lockups on SuperMicro motherboard o bin/117315 fs [smbfs] mount_smbfs(8) and related options can't mount o kern/117314 fs [ntfs] Long-filename only NTFS fs'es cause kernel pani o usb/117313 usb [umass] [panic] panic on usb camera insertion s ports/117299 [new ports] www/webobjects(+) Apple WebObjects ports b f i386/117297 i386 [hang] System hangs up every day o amd64/117296 amd64 [ata] I don`t see second SATA IDE on VIA VT8237A o bin/117277 des [patch] fetch(1): fetch's resume mode doesn't verify t o kern/117271 net [tap] OpenVPN TAP uses 99% CPU on releng_6 when if_tap o bin/117256 kgdb(1) cannot read PTD o kern/117242 [powerd] [hang] console hangs when powerd is adaptive o bin/117214 ipfw ipfw(8) fwd with IPv6 treats input as IPv4 o usb/117205 remko [uscanner] [patch] uscanner support for HP ScanJet 447 o usb/117200 usb [ugen] ugen0 prints strange string on attach if detach o bin/117191 antoine [patch] OptionalObsoleteFiles.inc - Add files to remov o kern/117188 [geli] System crashes/reboots on access to file on GEL a amd64/117186 amd64 [modules] kldload Unsupported file type on STABLE amd6 p usb/117185 thompsa [umodem] [patch] Add support for UNION interface descr o usb/117183 usb [panic] USB/fusefs -- panic while transferring large a o kern/117158 fs [zfs] zpool scrub causes panic if geli vdevs detach on f usb/117150 weongyo [zyd] usb zyd device under moderate load panics system o bin/117093 kensmith [patch] [request] Teach sysinstall(8) to load config f o kern/117043 net [em] Intel PWLA8492MT Dual-Port Network adapter EEPROM o kern/117028 [atapicam] [panic] brelse: free buffer onto another qu a conf/117027 yar rc.subr doesnt deal with perl daemons o kern/117026 imp [pcmcia]: Panic while removing PCMCIA wireless card p docs/117013 trhodes mount_smbfs(8) doesn't document -U (username) argument o kern/117000 glebius [carp] CARP using address-less host NIC (carpdev) p ports/116984 apache [patch] www/apache13-modssl missing perl5.8 as RUN_DEP o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f o usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th o misc/116946 holographic shell breaks live CD shell o kern/116939 acpi [acpi] PCI-to-PCI misconfigured for bus three and can o kern/116935 [ata] Intermittent error with Promise PDC40718 o conf/116931 fs lack of fsck_cd9660 prevents mounting iso images with o kern/116913 fs [ffs] [panic] ffs_blkfree: freeing free block o kern/116853 yongari [msk] msk watchdog timeout f i386/116844 i386 [boot] [hang] cannot boot from cd when using Dell Vost o ports/116841 java cannot build java/jdk16 by using java/linux-sun-jdk16 o kern/116837 bz [tun] [panic] [patch] ifconfig tunX destroy: panic o stand/116826 standards [patch] sh support for POSIX character classes o bin/116784 mount_msdosfs(8): mount_msdosfs -L ru_RU.KOI8-R -W koi o bin/116782 [geli] geli not updated on migrate from 6.1 to 6.2 rel o kern/116770 [kqueue] Unfortunate fifo/O_NONBLOCK/kevent interactio o kern/116747 net [ndis] FreeBSD 7.0-CURRENT crash with Dell TrueMobile o bin/116722 ntpd(8): ntpd core dumps if hostnames are not specifed o kern/116719 [panic] kill all watch causes page fault on kernel ser o kern/116701 [atapicam] atapicam hangs initializing SATA DVDRs on s o usb/116699 usb [usbhid] USB HID devices do not initialize at system b s amd64/116689 amd64 [request] support for MSI K9MM-V o threa/116668 threads can no longer use jdk15 with libthr on -stable SMP o java/116667 java linux-sun-javac1.4 hangs on SMP o www/116660 wosch docs.freebsd.org returns bad chunked encoding o bin/116643 net [patch] [request] fstat(1): add INET/INET6 socket deta o amd64/116620 amd64 [hang] ifconfig spins when creating carp(4) device on p kern/116608 fs [msdosfs] [patch] msdosfs fails to check mount options s ports/116601 portmgr [patch] bsd.port.mk - fail if dependency failed o www/116594 bugmeister query-pr.cgi on ports/116460 o docs/116588 remko No IPFW tables or dummynet in Handbook o kern/116583 fs [ffs] [hang] System freezes for short time when using o usb/116561 usb [umodem] [panic] RELENG_6 umodem panic "trying to slee o kern/116515 remko [ntfs] NTFS mount does not check that user has permiss f www/116479 www cvsweb+enscript formatting bugfix o stand/116477 standards rm(1): rm behaves unexpectedly when using -r and relat o misc/116453 [picobsd] picobsd build script fails for not exist log s kern/116444 vwe [ath] Atheros 5005G (AR5212) miniPCI: unable to attach o kern/116435 [drm] drm/i915 reports memory leak o bin/116425 [patch] [request] ls(1) options for pre-sort of direct o conf/116416 mtm [patch] [request] per-jail rc.conf(5) style configurat o kern/116415 [ata] 6.2-STABLE does not work on Gigabyte GA-P35-S3 ( o bin/116413 standards incorrect getconf(1) handling of unsigned constants gi o kern/116335 andre [tcp] Excessive TCP window updates o amd64/116322 amd64 [panic] At start fsck on current, the system panics o bin/116302 atacontrol(8) reports wrong stripe for intel raid0 o usb/116282 usb [ulpt] Cannot print on USB HP LJ1018 or LJ1300 o kern/116270 [ata] READ_DMA48 UDMA ICRC error s ports/116222 portmgr files installed with the wrong UID/GID via make instal o ports/116219 edwin [patch] Add @rmtry to bsd.port.mk o bin/116209 [patch] [request] decimal suffix in split(1) o kern/116185 net [iwi] if_iwi driver leads system to reboot o threa/116181 threads /dev/io-related io access permissions are not propagat o kern/116172 bz [tun] [nd6] [panic] Network / ipv6 recursive mutex pan o kern/116170 fs [panic] Kernel panic when mounting /tmp o amd64/116159 amd64 [panic] Panic while debugging on CURRENT o kern/116133 kmacy Recursive lock panic when w_mtx falls into DELAY o docs/116116 doc mktemp (3) re/move note o ports/116082 java java/linux-sun-jdk16 jconsole is unable to connect to o stand/116081 standards make does not work with the directive sinclude o docs/116080 doc PREFIX is documented, but not the more important LOCAL p bin/116074 jilles [libc] fnmatch() does not handle FNM_PERIOD correctly p conf/116071 brucec [patch] loader.conf update some variables o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from o kern/116005 des [libfetch] libfetch accepts invalid URLs o kern/115997 scottl [ciss] [panic] [patch?] kernel panics on heavy disk I/ o bin/115960 des sshd's X11 forwarding broken on IPv6 only machine [pat o ports/115957 itetcu Questionable ownership and security on dspam port o bin/115951 [tun] pppoed(8): tun not closed after client abruptly f i386/115947 i386 [hang] Dell poweredge 860 hangs when stressed and ACPI o bin/115946 des [libpam] [patch] not thread-safe o ports/115940 python Missed one file in lang/python25 if NO_NIS defined o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter o kern/115930 jfv [em]: Dell nic enumeration problem s conf/115923 [request] rc.subr - logger should be using priorities o kern/115856 geom [geli] ZFS thought it was degraded when it should have f i386/115854 i386 [boot] [install] Install FreeBSD with USB CDROM causes s amd64/115815 amd64 [ata] [request] Gigabyte GA-M61P-S3 Motherboard unsupp o java/115773 java [request] java.nio channel selectors should use kqueue f usb/115737 linimon [uplcom] uplcom doesn't identify my Prolific 2303 any s docs/115716 jhb remove cue from supported hardware list o kern/115695 [crypto] When "device padlock" defined first ssh to ma f kern/115666 multimedia [sound] Microphone does not work o kern/115651 vanhu Racoon(ipsec-tools) enters sbwait state or 100% CPU ut o kern/115645 fs [snapshots] [panic] lockmgr: thread 0xc4c00d80, not ex o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad o kern/115606 [mpt] [panic] Panic while using mpt controller o amd64/115581 amd64 [Makefile] [patch] -mfancy-math-387 has no effect o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o kern/115526 piso [libalias] libalias doesn't free memory o bin/115486 [patch] [request] newsyslog(8) -- provide ability to c o kern/115479 [ata] [request] ASUS P5K SE need more support o bin/115447 harti [patch] [request] teach make(1) to respect TMPDIR envi o bin/115431 [patch] [request] improvement to split(1): add -B swit o usb/115400 usb [ehci] Problem with EHCI on ASUS M2N4-SLI o kern/115374 [panic] vm_fault: fault on nofault entry, addr: e120d0 o kern/115371 imp [cardbus] [patch] Device removal leaves resource datab o bin/115361 fs [zfs] mount(8) gets into a state where it won't set/un o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o usb/115298 usb [ulpt] [panic] Turning off USB printer panics kernel o kern/115275 [wi] [panic] wi configure at boot time led to panic "i o kern/115253 [keyboard] Wireless keyboard not working at boot o kern/115239 net [ipnat] panic with 'kmem_map too small' using ipnat o kern/115232 [ata] Audio CD tracks not displayed properly by atapi f kern/115226 vwe [ath] ath0: unable to attach hardware; HAL status 13 o threa/115211 threads pthread_atfork misbehaves in initial thread s kern/115202 [request] memory error diagnostic o bin/115197 kensmith sysinstall(8): can not install from USB stick drive p kern/115196 brooks [libc] [patch] [request] Implement getgroupmembership( o amd64/115194 amd64 LCD screen remains blank after Dell XPS M1210 lid is c o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's o kern/115152 [ata] Sil 3512 SATA controller panics on 6.2 o kern/115133 scottl [mpt] [mfi] [patch] Patches to make mfi support LSI SA o amd64/115126 yongari [nfe] nfe0: watchdog timeout (missed Tx interrupts) -- o docs/115065 doc [patch] sync ps.1 with p_flag and keywords o bin/115054 ntpd(8): NTP errors out on startup but restart of NTP o kern/115019 net [netgraph] ng_ether upper hook packet flow stops on ad o kern/115002 net [wi] if_wi timeout. failed allocation (busy bit). ifco o kern/114995 [drm] acpi_video prevents savage drm from loading succ o kern/114970 Wrong system time (last) when machine is crashed due t o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui o kern/114928 green_saver does not switch DVI monitor power off o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o kern/114915 net [patch] [pcn] pcn (sys/pci/if_pcn.c) ethernet driver f o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala o kern/114808 [panic] Kernel panic when use USB SpeedTouch ADSL mode o kern/114780 usb [uplcom] [panic] Panics while stress testing the uplco o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst s ports/114725 portmgr bsd.port.mk - No dependencies in the package if there o kern/114714 thompsa [gre] [patch] gre(4) is not MPSAFE and does not suppor o usb/114682 usb [umass] generic USB media-card reader unusable o kern/114677 [drm] Xorg will not run with dri glx and drm on ATI Ra o kern/114676 fs [ufs] snapshot creation panics: snapacct_ufs2: bad blo o kern/114667 [umass] UMASS device error log problem p kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o java/114644 java tomcat goes out of PermSpace, jvm crashes o stand/114633 linimon /etc/rc.subr: line 511: omits a quotation mark: "force f kern/114631 yongari [msk] "Tx descriptor error" with Marvell Yukon o ports/114611 [NEW PORT] net-p2p/freenet05: An anonymous censorship- o kern/114597 scsi [sym] System hangs at SCSI bus reset with dual HBAs s kern/114578 [libc] wide character printing using swprintf(dst, n, o kern/114567 pf [pf] [lor] pf_ioctl.c + if.c o i386/114562 acpi [acpi] cardbus is dead after s3 on Thinkpad T43 with a o kern/114550 [cbb] Cardbus WiFi card activation problem o kern/114546 [drm] [panic] Sleeping thread owns a non-sleepable loc o kern/114532 geom [geom] GEOM_MIRROR shows up in kldstat even if compile o kern/114506 [nfs] nfs_readdirrpc doesn't use copyout to write out o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas o kern/114489 scottl [aic] [panic] _mtx_lock_sleep: in aic7xxx_osm.h (with o bin/114468 fs [patch] [request] add -d option to umount(8) to detach o bin/114465 [patch] [request] script(1): add really cool -d, -p & o kern/114459 [aic] [panic] FreeBSD-CURRENT crash during boot with A o kern/114451 [nfs] [patch] prevent NFS server possible crash o kern/114438 [amr] Anomalous performance with multiple arrays and a o kern/114406 [drm] ATI Radeon Mobility X600 not supported by agp de s bin/114392 [request] add default ssl definitions for openssl(1) o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o sparc/114349 When executing snmpd it immediately stops with a segme f kern/114331 vanhu [crypto] [patch] VIA padlock freesession bug o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o kern/114291 kmacy [RFE] [modules] [patch] add dynamic module references o amd64/114270 amd64 [cpufreq] cpufreq doesnt work when compiled in to kern p kern/114237 csjp [lor] kernel lock o ports/114231 edwin [patch] multimedia/audacious-plugins - audacious/plugi o kern/114213 [ata] optical drive not detected in the 6.x series of f i386/114208 i386 [boot] Problem booting the FreeBSD CD ISO image f i386/114192 i386 Fail to boot with "error issuing ATA_IDENTIFY command" o ports/114167 portmgr [patch] bsd.port.mk - ignoring major numbers in LIB_DE o kern/114165 acpi [acpi] Dell C810 - ACPI problem o kern/114155 [ptrace] sigsuspend gets interrupted by ptrace o docs/114139 doc mbuf(9) has misleading comments on M_DONTWAIT and M_TR o kern/114111 [nfs] System crashes while writing on NFS-mounted shar p conf/114101 se [patch] Add ZFS to periodic locate run o kern/114095 pf [carp] carp+pf delay with high state limit o bin/114082 [make.conf] default CFLAGS have a blank at the end s bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection o bin/114059 [patch] shutdown(8) should fall back to exec reboot/ha o kern/114057 [devfs] devfs symlink over device doesn't work o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff o bin/113979 sysinstall [patch] sysinstall(8) does not support UFS1 filesystem f usb/113977 gavin [request] Need a way to set mode of USB disk's write c f kern/113957 geom [gmirror] gmirror is intermittently reporting a degrad s kern/113950 multimedia [sound] [patch] [request] add per-vchan mixer support o conf/113915 rc [patch] ndis wireless driver fails to associate when i o conf/113913 [patch] [requst] new file /etc/periodic/daily/490.stat o bin/113912 tunefs(8): silent failure setting glabel on boot parti o kern/113895 net [xl] xl0 fails on 6.2-RELEASE but worked fine on 5.5-R o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o i386/113853 FreeBSD 6.2-RELEASE Crashes and Reboots on i386 o kern/113852 fs [smbfs] smbfs does not properly implement DFS referral o kern/113851 [boot] Unable to boot install cd from USB-CDROM o bin/113850 sshd(8): unable to debug sshd with strace/truss/gdb o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o bin/113838 fs [patch] [request] mount(8): add support for relative p o kern/113837 geom [geom] unable to access 1024 sector size storage o bin/113825 [patch] [libc] [ggated] Fix -STABLE build with -fno-st o docs/113803 ipfw [patch] ipfw(8) - don't get bitten by the fwd rule o kern/113785 firewire [firewire] dropouts when playing DV on firewire o ports/113751 java java/linux-sun-jdk15: linux-sun-jdk-1.5.0.12,2 - java o ports/113707 girgen databases/postgresql81-server - PostgreSQL RC start sc o bin/113702 portmgr [patch] bad output from "pkginfo -g" o bin/113682 brucec [patch] sysinstall(8) warns for invalid geometry which f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 o bin/113669 ftpchroot(5) / ftpusers(5) doesn't do globbing o conf/113552 [request] ntpd(8) driftfile default location inconsist o bin/113518 [patch] make(1): Prevent execution when command is a c o kern/113478 [boot] [request] FreeBSD could not start on Core2Duo n o ports/113467 java Multiple "missing return value" errors building JDK on o kern/113439 [panic] 6.2 Kernel Panic o kern/113432 net [ucom] WARNING: attempt to net_add_domain(netgraph) af f kern/113427 yongari [fxp] fxp0: device timeout when writing to USB and pla o kern/113419 geom [geom] geom fox multipathing not failing back o bin/113398 [libc] [patch] initgroups fails rather than truncates o bin/113345 mux csup(1) broken: Updater failed: Bad diff from server o gnu/113343 [patch] grep(1) outputs NOT-matched lines (with multi- o gnu/113338 gcc(1): GNU gcc __thread as class member s ports/113295 kde net-im/kopete: pleawse add 'make config' to choose kop p kern/113266 harti [libgssapi] [patch] Missing handling of mech_type in g o kern/113256 [headers] _limits.h for some CPU has wrong definitions o bin/113239 [patch] atrun(8) loses jobs due to race condition o bin/113230 des [pam] [patch] const-ify PAM-headers o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o kern/113138 [irq] interrupt storm on 6.x kernels on an MS-1029 (AM o i386/113110 i386 [mk] [patch] i686 is not an alias of pentiumpro on GCC o kern/113098 [amr] Cannot read from amrd while under heavy load o bin/113074 [patch] ppp(8): include for strcasecmp(3) o usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in o bin/113049 fs [patch] [request] make quot(8) use getopt(3) and show o conf/112997 [patch] Add note about the 'native' mtune option to sh p bin/112955 des [patch] login(1): add netgroup support back to pam_log o kern/112937 jfv [em] Panic in em(4) when issuing a SIOCGIFADDR ioctl p docs/112935 remko [patch] newfs_msdos(8): document 4.3g limit on files w o ports/112818 ruby ports-mgmt/portupgrade -a fails with database error o docs/112804 doc groff(1) command should be called to explicitly use "p o bin/112794 [patch] [request] pam_exec(8): allow pam_exec to expor o kern/112775 [libmd] [patch] libmd(3) bug for some zero-length file o bin/112757 sysinstall sysinstall(8): sysinstall(8): in the FDISK tool we can o ports/112745 portmgr bsd.port.mk: Add a package-smart target o kern/112722 net [ipsec] [udp] IP v4 udp fragmented packet reject f kern/112708 linimon [ipfw] ipfw is seems to be broken to limit number of c o kern/112707 [panic] 6.2-STABLE panic: spoiling cp->ace = 3 o kern/112702 jfv [em] em driver doesn't use MSI on MSI capable device p bin/112694 jon [patch] segfault in pam_lastlog(8) on sshd exit when n o kern/112686 net [patm] patm driver freezes System (FreeBSD 6.2-p4) i38 o docs/112682 doc Handbook GEOM_GPT explanation does not provide accurat o bin/112673 portmgr [patch] pkg_add(1): pkg_add -S leaks the temp dir o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b a bin/112613 vwe ls(1): 'ls -l' is very slow or doesn't work at all o kern/112612 andre [lo] Traffic via additional lo(4) interface shows up o f java/112595 java Java appletviewer frequently hangs (kse_release loop) f kern/112591 linimon Non-monitored locks are dummy-implemented f i386/112580 i386 [boot] BTX Halted on HP DV6255 Notebook o docs/112579 mlaier [request] No ipv6 related pf examples in /usr/share/ex f kern/112570 yongari [bge] packet loss with bge driver on BCM5704 chipset o kern/112561 ipfw [ipfw] ipfw fwd does not work with some TCP packets o conf/112558 [patch] /etc/periodic/daily/200.backup-passwd poor han o bin/112557 net [patch] ppp(8) lock file should not use symlink name o bin/112556 [patch]: sysctl(8) needs to fix multi-lineal descripti p kern/112554 silby [kernel] [patch] unp_gc is overly agressive and remove s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f o kern/112528 net [nfs] NFS over TCP under load hangs with "impossible p f i386/112487 i386 [sio] kernel panic on swi0:sio o kern/112477 marius [ofw] [patch] Add support to set the node and type on o conf/112441 deprecated lines in /etc/hosts.allow o bin/112408 mp [regression] tcsh(1): tcsh causes gdb to hang (regress o bin/112379 [patch] [request] lockf(1): on closing stdin, stdout, o bin/112370 getfacl(1): incorrect display group name by ``getfacl' p ports/112347 obrien [PATCH] editors/vim re-enable WITH_TCL o bin/112336 [patch] install(1): install -S (safe copy) with -C or o bin/112288 ftp(1): /usr/src/usr.bin/ftp/config.h is redundant and o kern/112282 [ata] atacontrol(8): changing DMA modes when disk is r o kern/112256 [hang] SC_PIXEL_MODE hangs system s gnu/112215 obrien [patch] gcc(1): "gcc -m32" attempts to link against 64 o kern/112181 [panic] Kernel Panic on HP DL320-G5 Running 6.2-STABLE o kern/112160 [pppd] uplink DSL w/pppoe+NAT 'out of buffer space' ki o kern/112053 [hang] deadlock with almost full filesystem and rtorre f amd64/111994 jkoshy [hwpmc] [request] hwpmc(3) doesn't know about Intel 51 o bin/111978 [patch] [request] make syspath list for mount(8) confi o kern/111967 [geli] glabel - label is seemingly not written to disk o kern/111848 [nfs] removing a file from a diskless nfs mounted root o kern/111843 fs [msdosfs] Long Names of files are incorrectly created f bin/111835 fstat(1) fails to report certain files s www/111791 www FreeBSD website messes up while using "links" browser o kern/111782 fs [ufs] dump(8) fails horribly for large filesystems o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/111766 [panic] "panic: ffs_blkfree: freeing free block" durin o conf/111557 [gre] link1 flag doesn't work as intended when specifi o kern/111537 kmacy [inet6] [patch] ip6_input() treats mbuf cluster wrong o ports/111501 [NEW PORT] databases/ruby-oci8 o bin/111493 [patch] routed(8) doesn't use multicasts for RIPv2 via o kern/111457 net [ral] ral(4) freeze o docs/111425 doc Missing chunks of text in historical manpages o ports/111399 doceng print/ghostscript8 (was ghostscript-gpl): WITH_FT_BRID a ports/111356 csjp net/bpfstat: man bpfstat has no descption for the flag o bin/111343 sh(1) and bash(1) with -e sometimes fail to test error o power/111296 ppc [kernel] [patch] [request] Support IMISS, DLMISS an DS o docs/111265 doc [request] Clarify how to set common shell variables p kern/111260 csjp [hang] FreeBSD kernel dead lock and a solution o www/111228 bugmeister [request] Usability improvements for bug search query o kern/111220 pf [pf] repeatable hangs while manipulating pf tables o kern/111196 [ata] [hang] SATA drives cause errors and cause system o kern/111185 console color depth set to 0 at boot causes flat scree o kern/111162 [nfs] nfs_getpages does not restart interrupted system o docs/111147 doc hostapd.conf is not documented s bin/111146 fs [2tb] fsck(8) fails on 6T filesystem o bin/111077 date(1): /bin/date -j -f "%b %Y" "Feb 2007" +%m return o ports/111066 secteam ports-mgmt/portaudit does not skip ports fixed listed o bin/111024 [request] [patch] atacontrol(8): support for stand-by s kern/111001 [hang] can't install 6.2-RELEASE-amd64 (SuperMicro PDS o docs/110999 doc carp(4) should document unsupported interface types o kern/110995 kmacy [loader] [patch] loader wastes space worth symtab size o conf/110993 [patch] /etc/netstart should start rpcbind o gnu/110971 gdb(1) crashes f kern/110959 bz [ipsec] Filtering incoming packets with enc0 does not o kern/110915 rwatson [acl] ACL's don't work with SUIDDIR o java/110912 java Java krb5 client leaks UDP connections o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated o kern/110847 scsi [ahd] Tyan U320 onboard problem with more than 3 disks s conf/110838 pf [pf] tagged parameter on nat not working on FreeBSD 5. a ports/110826 dinoex port graphics/tiff: tiff2pdf tints images with wrong c f kern/110720 kmacy [net] [patch] [request] support for interface descript p bin/110705 geom gmirror(8) control utility does not exit with correct o docs/110692 doc wi(4) man page doesn't say WPA is not supported p kern/110662 sam [safe] safenet driver causes kernel panic o threa/110636 threads [request] gdb(1): using gdb with multi thread applicat o amd64/110599 amd64 [geli] geli attach to gmirror device hangs and cannot o ports/110533 olgeni [patch] WITHOUT_NLS support for www/neon and www/sitec o kern/110407 [ata] ATA drivers not recognizing Seagate CF Microdriv o kern/110392 scottl [hptmv] [patch] hptmv very old and missing important f o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o threa/110306 threads apache 2.0 segmentation violation when calling gethost o kern/110284 kmacy [if_ethersubr] [patch] Invalid Assumption in SIOCSIFAD o docs/110253 doc [patch] rtprio(1): remove processing starvation commen o kern/110249 kmacy [kernel] [regression] [patch] setsockopt() error regre o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o bin/110151 brucec sysinstall(8): sysinstall(8) don't respects install ro o bin/110146 [patch] [request] Allow arbitrary gdb(1) options to by o kern/110140 net [ipw] ipw fails under load o kern/110110 [hang] sysctl causing a lockup o bin/110068 [patch] rewrite of mdmfs(8) in shell o kern/110065 [wi]: wi device cannot attach to D-Link DWL-520 rev. E o docs/110062 doc [patch] mount_nfs(8) fails to mention a failure condit o docs/110061 doc [patch] tuning(7) missing reference to vfs.read_max o kern/110017 [libexec] [patch] serial port console output garbled o docs/109981 doc No manual entry for post-grohtml o conf/109980 rc /etc/rc.d/netif restart doesn't destroy cloned_interfa o docs/109977 doc No manual entry for ksu p docs/109975 trhodes No manual entry for elf2aout o docs/109973 doc No manual entry for c++filt o docs/109972 doc No manual entry for zless/bzless o kern/109968 [boot] [panic] Panic while booting with PCscsi II AM53 o kern/109936 [smp] SMP kernel performance problem on FSC TX600 o bin/109911 mountd(8) does not accept identical host sets on diffe o kern/109889 [panic] 6-STABLE panic kern_timeout.c o bin/109827 mount_smbfs(8) didn't handle password authentication c o kern/109813 [ciss] ciss(4) driver API header is not installed o kern/109809 [vmware] CPU hits 100% when issuing the halt command ( o kern/109762 [hang] deadlock in g_down -> ahd_action -> contigmallo o ports/109745 kris NO_PACKAGE handling by ports build system o kern/109743 [sio] The sio(4) driver appears to be getting the seri o kern/109736 [ata] FreeBSD install from CD can't find & mount NEC A o kern/109733 net [bge] bge link state issues [regression] o docs/109612 remko Manuals that live in ARCH specific subdirectories are f i386/109610 i386 [panic] Fatal trap 12: page fault while in kernel mode a ports/109580 glewis [patch] math/gnuplot does not include bsd.emacs.mk whe o bin/109569 mail(1) command not parsing sendmail parameters f i386/109568 i386 [panic] Reboot server with "Fatal trap 12" o conf/109562 rc [rc.d] [patch] [request] Make rc.d/devfs usable from c o bin/109521 [patch] chio(1): 'chio return' breaks on non-voltag ch o ports/109501 krion [PATCH] add some configurable vars to mail/exim o bin/109478 [libc] [patch] adopt reentrant syslog functions from O f kern/109477 yongari [vr] [patch] onboard via vt6103 ethernet does not work o kern/109470 net [wi] Orinoco Classic Gold PC Card Can't Channel Hop o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o bin/109413 jhb [patch] top(1) shows at least 50% idle when hyperthrea o kern/109377 daichi [unionfs] unionfs crashes if underlying file system fo a conf/109367 versus [locale] UTF8 encoded locales and problem collating ac o conf/109354 [request] /etc/periodic/daily/110.clean-tmps does not o bin/109334 portmgr pkg_add(1) using chroot exits with error if wrong dire o kern/109308 net [pppd] [panic] Multiple panics kernel ppp suspected [r o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o conf/109272 [request] increase default rc shutdown timeout o kern/109251 net [re] [patch] if_re cardbus card won't attach o kern/109232 imp [sio] [patch] ibufsize calculation wrong causing data o kern/109227 [ral] ral(4) driver doesn't handle correctly RT2561C P f docs/109226 doc [request] No manual entry for sntp o docs/109201 doc [request]: manual for callbootd o kern/109161 philip [psm] synaptic touchpad doesn't work o docs/109105 trhodes security.mac.bsdextended.firstmatch_enabled is not ena o docs/109104 trhodes man mac_bsdextended is not consistent with systl outpu o bin/109102 csjp sysctl security.mac.bsdextended is not consistent with o kern/109024 fs [msdosfs] mount_msdosfs: msdosfs_iconv: Operation not o kern/109010 fs [msdosfs] can't mv directory within fat32 file system o docs/109008 csjp [patch] add summary of kern/48198 to jexec(8) a docs/108980 doc list of missing man pages s bin/108961 vwe ls(1) High CPU use on directories containing files wit o kern/108954 acpi [acpi] 'sleep(1)' sleeps >1 seconds when speedstep (Cx o kern/108924 [ar] Panics when Intel MatrixRAID RAID1 is degraded o bin/108895 net pppd(8): PPPoE dead connections on 6.2 [regression] s amd64/108861 amd64 [nve] nve(4) driver on FreeBSD 6.2 AMD64 does not work o kern/108829 [radeon] radeon module fails with thinkpad T43 f sparc/108732 sparc64 ping(8) reports 14 digit time on sparc64 o kern/108695 acpi [acpi]: Fatal trap 9: general protection fault when in o kern/108670 silby [tcp] TCP connection ETIMEDOUT o kern/108659 [psm] Mouse (Synaptics touchpad) cursor freezes for so o kern/108655 messages from kernel are mixed (/dev/klog? syslog?) o kern/108651 [hang] option PREEMPTION causes machine hangs on TYAN o conf/108589 rc rtsol(8) fails due to default ipfw rules o ports/108570 girgen databases/postgresql82-server fails when PREFIX is set o kern/108542 net [bce] Huge network latencies with 6.2-RELEASE / STABLE o kern/108488 acpi [acpi] ACPI-1304: *** Error: Method execution failed o kern/108485 [re] stress2-udp with realtek 8169S gigabit interface o bin/108462 [request] pkg_info(1) shouldn't have a hard width limi s kern/108442 [request] UTF-8 support for console o kern/108418 [panic] Kernel panic after killing kdm. o kern/108379 [ata] Secondary SATA drive not detected by FreeBSD 6.2 p bin/108368 [patch] tip(1) coredumped when 'du' capability is used o kern/108361 [lpt] lpt0: device busy with HP 710c parallel printer s usb/108344 usb [usb67] [atausb] [panic] kernel with atausb panics whe f kern/108197 jinmei [panic] [gif] [ip6] if_delmulti reference counting pan o bin/108191 sysinstall sysinstall(8): Disklabel editor help text (by F1 key) f i386/108185 i386 [panic] freebsd 6.2 fatal kernel trap s ports/108169 apache www/apache20 wrong AP_SAFE_PATH for suEXEC s ports/108153 portmgr ports extraction with package uid/gid and quota proble o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o bin/108118 [libc] files should not cache their EOF status o docs/108101 doc /boot/default/loader.conf contains an incorrect commen o kern/108100 [ktr] sysctl debug.ktr.alq_enable=1 results in reboot f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe o bin/108020 comsat(8) does not verify return values of getpwnam an o kern/108017 acpi [acpi]: Acer Aspire 5600 o kern/107944 net [wi] [patch] Forget to unlock mutex-locks f usb/107848 gavin [usb67] [umass] cannot access Samsung flash disk o bin/107830 sysinstall sysinstall(8): Change Units (Z) in fdisk doesn't work o bin/107829 fs [2TB] fdisk(8): invalid boundary checking in fdisk / w o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found o ports/107816 roam [patch] The IPv6 patch breaks the location feature of s kern/107759 Unable to load a kernel after clean install o kern/107707 geom [geom] [patch] [request] add new class geom_xbox360 to o bin/107692 newfs(8): newfs -O 1 doesn't create consistent filesys o amd64/107639 [ata] Kernel Panic/Crash on dd if=/dev/ad4 of=/dev/ad6 o kern/107622 [ata] can't boot on HP Pavilion dv6000 / problem with o kern/107608 [twa] [hang] Raid Problem beim Zugriff auf Raid p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 f kern/107446 gavin problems with usb and fw disks o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device f i386/107382 i386 [install] "Fatal trap 12" when installing FreeBSD 6.1 o ports/107354 edwin net/icmpinfo: icmpinfo -vvv does not recocnize any ICM o kern/107342 [dri] Radeon dri breaks system f kern/107305 linimon [ipfw] ipfw fwd doesn't seem to work f www/107291 murray Keyboard accessibility sabotaged by www/share/sgml/hea p kern/107285 [panic] freeze and reboot by mounting CDROM volume twi o kern/107279 [ath] panic: ath_start: attempted use of a free mbuf! o kern/107277 [panic] bus_dmamap_load_mbuf_sg f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X o usb/107243 usb [usb67] [cam] [quirk] [patch] Apacer USB Flash Drive q o kern/107206 [arcmsr] Background fsck causes kernel panic with arcm o kern/107154 [pam] pam.d/sshd pam_ssh.so doesn't start ssh-agent s sparc/107087 sparc64 [hang] system is hung during boot from CD o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o conf/107035 net [patch] bridge(8): bridge interface given in rc.conf n o kern/106924 acpi [acpi] ACPI resume returns g_vfs_done() errors and ker o docs/106916 chinsan Wrong tar command at topic 17.6.8 in Handbook o bin/106872 [patch] [request] extattr support for find(1) f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 f i386/106850 i386 [powerd] powernow0 attach returned 6 f usb/106832 gavin [usb67] [usb] USB HP printer is not detected by kernel o kern/106786 No reboot with FreeBSD and Mylex Acceleraid 352 o bin/106734 [patch] [request] bzip2(1): SSE2 optimization for bzip o bin/106726 ntpd(8): ntp functions return wrong values o kern/106722 glebius [net] [patch] ifconfig may not connect an interface to f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/106645 [uart] [patch] uart device description in 7-CURRENT is o kern/106632 trhodes [msdosfs] gimp destroys files on fat32 upon opening s ports/106616 portmgr bsd.port.mk: Default file modes set incorrect for non- f usb/106615 gavin [usb67] [uftdi] uftdi module does not automatically lo p kern/106496 kris [softupdates] Can't remount filesystem as read only af o kern/106490 [atapicam] atapicam fails with ATAPI-CD/DVD drives att o ports/106483 portmgr [patch] embed distfile information in +CONTENTS o kern/106444 net [netgraph] [panic] Kernel Panic on Binding to an ip to o kern/106438 net [ipf] ipfilter: keep state does not seem to allow repl o kern/106432 [ata] Record of disks (DVD-R) through the k3b program o bin/106431 [patch] atacontrol(8): Inform user of ata RAID5 acting o bin/106355 [headers] macros in stdio.h non-portable (e.g., C++ :: s kern/106340 [ata] [request] Need to control disk write cache on pe o kern/106316 net [dummynet] dummynet with multipass ipfw drops packets o kern/106275 [hifn] Hifn 7955 on Soekris Engineering vpn1401 return o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o kern/106243 net [nve] double fault panic in if_nve.c on high loads o amd64/106186 amd64 [panic] panic in swap_pager_swap_init (amd64/smp/6.2-p o docs/106135 doc [request] articles/vinum needs to be updated o kern/106107 fs [ufs] left-over fsck_snapshot after unfinished backgro p bin/106049 [patch] tftpd(8) - improve -w option to support unique o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu o kern/106030 fs [ufs] [panic] panic in ufs from geom when a dead disk o kern/106028 [pxeboot] tftp inside pxeboot isn't initialised proper o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p p docs/105997 trhodes sys/kern/sys_pipe.c refer to tuning(7), but there is n o kern/105945 net Address can disappear from network interface s kern/105943 net Network stack may modify read-only mbuf chain copies o bin/105925 net problems with ifconfig(8) and vlan(4) [regression] o bin/105860 top(1) user ID misalignment in mixer username/uid mode o conf/105689 rc [ppp] [request] syslogd starts too late at boot o bin/105614 [patch] setkey(8): Creating NULL encryption ESP SAs wi o docs/105608 doc fdc(4) debugging description staled o kern/105604 [bktr] [patch] add support for Pixelview PlayTV Pro 2 o kern/105579 piso [libalias] dcc resume over natd in 6.x o conf/105568 rc [patch] [request] Add more flexibility to rc.conf, to o kern/105539 newly added disk devices don't have slice-devices crea o kern/105537 acpi [acpi] problems in acpi on HP Compaq nc6320 s kern/105533 [ahd] adaptec 29320 causes panic with over 4GB f amd64/105531 amd64 [ata] gigabyte GA-M51GM-S2G / nVidia nForce 430 - does f amd64/105514 amd64 [boot] FreeBSD/amd64 - Fails to boot on HP Pavilion dv o kern/105500 SCSI install on Microsoft Virtual Server 2005 doesn't f java/105482 java diablo-jdk1.5.0/jdk-1.5.0 java.nio.Selector bug o docs/105456 keramida [patch] overhaul of the security chapter (14) o kern/105375 yongari [sk] 2 x Marvell GBit LAN: device sk0 is attached, but o kern/105368 [geli] geli passphrase prompt malfunctioning when moun o usb/105361 usb [usb67] [panic] Kernel panic during unmounting mass st o kern/105348 net [ath] ath device stopps TX o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o www/105333 blackend [patch] Base selection in events in libcommon.xsl does o kern/105330 ipfw [ipfw] [patch] ipfw (dummynet) does not allow to set q o kern/105241 [nfs] problem with Linux NFS server up/down combined w o gnu/105221 grep(1): `grep -w -F ""` issue f i386/105175 i386 [ipmi] ipmi acpi trouble on supermicro server o kern/105169 [panic] cp hangs on copy to a compact flash card o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp o alpha/105134 alpha 'panic: lockmgr: thread ... not exclusive lock owner' p conf/105100 [patch] [locale] no support for lv (latvian) locale o kern/105067 K8D Master-F and other 8111/8131 boards will not run S f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo f i386/105063 i386 [sio] US Robotics (3Com) 3CP5609 PCI 16550 Modem works o sparc/105048 sparc64 [trm] trm(4) panics on sparc64 o kern/104978 jfv [em] jumbo frames has been broken in RELENG_6 by last s kern/104950 [ata] [request] no support for SATA controller Initio o bin/104921 ipfw [patch] ipfw(8) sometimes treats ipv6 input as ipv4 (a o ports/104910 nobutaka portsdb -Uu fails on building lsdb when EMACS_NAME is o kern/104882 [iicbb] [patch] pvr250 and pvrxxx drivers need iicbb p o docs/104879 doc Howto: Listen to IMA ADPCM .wav files on FreeBSD box o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/104862 [bge] BCM5704 only works at 10Mbit o kern/104851 net [inet6] [patch] On link routes not configured when usi o bin/104850 ppp(8): ppp problem on TCP link o kern/104826 andre [bge] FreeBSD 6.1 not RFC 768 (UDP) compliant on Compa o kern/104822 [hang] RELENG_6 hangs with VIA VT8237A chipset [regres o bin/104809 cron(8): incorrect cron behavior with mday field = "*/ o kern/104755 Making ISO image with k3b hangs 6.2-PRERELEASE o kern/104751 net [netgraph] kernel panic, when getting info about my tr o bin/104746 [patch] traceroute(8): 'traceroute -e -P TCP' cannot w o java/104744 glewis java/berkeley-db installation error o stand/104743 standards [headers] [patch] Wrong values for _POSIX_ minimal lim o kern/104738 mlaier [inet] [patch] Reentrant problem with inet_ntoa in the f i386/104719 i386 [ata] Seagate ST3802110A errors/delays when using PIO4 o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o kern/104675 [bktr] METEORSINPUT seemingly not setting input f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n o kern/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi o kern/104625 acpi ACPI on ASUS A8N-32 SLI/ASUS P4P800 does not show ther o kern/104624 Sound, mouse and keyboard badly interrupted while I/O o kern/104569 glebius panic w/zebra o bin/104553 [patch] [request] Add login group support to login.acc o conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o gnu/104533 bugmeister [patch] [request] make send-pr(1) read configuration f o docs/104493 roberto [patch] Wrong description in ntp.conf(5) (CURRENT and o kern/104486 TI1131 Cardbus Bridge cannot detect card insertion on f kern/104485 yongari [bge] Broadcom BCM5704C: Intermittent on newer chip ve o bin/104432 jilles sh(1): remove undocumented "exp" and "let" builtins o sparc/104428 sparc64 [nullfs] nullfs panics on E4500 (but not E420) o kern/104406 fs [ufs] Processes get stuck in "ufs" state under persist p kern/104389 jh [geom] [patch] sys/geom/geom_dump.c doesn't encode XML f usb/104352 gavin [usb67] [ural] [rum] [patch] ural driver doesnt work f usb/104292 gavin [usb67] [umass] [hang] system lockup on forced umount f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive p kern/104212 [puc] [patch] support for Kuroutoshikou SERIAL4P-LPPCI o kern/104133 fs [ext2fs] EXT2FS module corrupts EXT2/3 filesystems o bin/104092 [patch] iostat(8): missing blanks in iostat output o threa/103975 threads Implicit loading/unloading of libpthread.so may crash o www/103938 brd cvs-src archive does not rebuild since 12 Mar 2006 s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never o bin/103890 w(1) doesn't see sessreg'd entries in utmp o kern/103883 [ata] DMA is not defaulted on WDMA device (SIS integra a bin/103873 csjp login(1) SEGFAULT on unsuccessful login o kern/103862 [fdc] [patch] Error with fdformat on -CURRENT o bin/103845 sha256(1): sha256 /dev/acd0 returns immediately o docs/103807 danger wicontrol(8) manpage contains a broken URL o conf/103794 adding other login class to login.conf in case one is o kern/103792 Multiple Logins: ; a 't' appears at prompt o bin/103762 ppp(8): some tun interfaces with a mtu of 1500 while i o ports/103751 nork databases/linux-oracle-instantclient-sqlplus: ldconfig o kern/103733 rnoland [agp] i915 driver on hp dc7100: device not recognized o kern/103715 [bge] [request] Broadcom BCM5708SKFB not recognised by o bin/103712 amd(8): Automounter is apparently not passing flags to o bin/103682 [patch] [request] nfsstat(1) should use %u instead of o ports/103669 ale mysql-server rc script can not use mysql_flags variab f kern/103615 emaste [aac] [patch] aac(4) update to the last version availa s kern/103603 6.1 install-boot from floppies fails o kern/103578 [ums] ums does not recognize mouse buttons o kern/103532 [irq] Interrupt storm in 6.2-PRERELEASE [regression] o ports/103529 gecko www/seamonkey: enable SVG and Pango font rendering sup s www/103522 www Search interface oddity o kern/103498 [keyboard] momentary system "pauses" when switching VT s kern/103495 vwe [vr] if_vr locks after carrier event o kern/103455 "swap_pager: indefinite wait buffer" with page file en o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o kern/103332 yongari [fxp] fxp driver does not work correctly on Intel 8255 o kern/103328 ipfw [ipfw] [request] sugestions about ipfw table o kern/103312 [libc] dlsym(NULL,) doesn't work properly o kern/103283 pf pfsync fails to sucessfully transfer some sessions o kern/103281 pf pfsync reports bulk update failures o kern/103256 jfv [em] em0: watchdog timeout -- resetting (6.1-STABLE) o kern/103253 thompsa inconsistent behaviour in arp reply of a bridge o kern/103250 [puc] puc failed to attach sio ports when loaded as mo o kern/103200 [ral] ral driver for RELENG_6 is out-of-date with resp o kern/103191 net Unpredictable reboot o kern/103135 net [ipsec] ipsec with ipfw divert (not NAT) encodes a pac p kern/103075 [ata] SATA disk attach/unplug from a MV88SX5041 freeze o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele a kern/103041 linimon [ipmi] unloading ipmi panics Dell PE 2850, ipmi doesn' o kern/103035 fs [ntfs] Directories in NTFS mounted disc images appear o kern/103022 cperciva [headers] /usr/include/crypto/rijndael.h is wrong o ports/102946 secteam [patch] ports-mgmt/portaudit o kern/102943 kan [xfs] kernel crash when unloading the xfs kernel modul o java/102888 glewis Diablo 1.5.0 throws FileNotFoundException when opening a bin/102834 [patch] mail(1) hangs on the sigsuspend system call in o bin/102793 edwin [patch] [request] top(1): display feature of current C o kern/102784 [keyboard] system crashes when using hardware function o kern/102783 [acpi] hw.acpi has thermal controls backwards when ext o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos f amd64/102716 amd64 ex with no argument in an xterm gets SIGSEGV o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does p kern/102653 andre [tcp] TCP stack sends infinite retries for connection p bin/102638 brucec [patch] sysinstall(8): custom dist set always install o i386/102617 vwe [smbfs] [editors/ooo] 7 x "smb_maperror: Unmapped erro o kern/102612 [asr] da0 not detected when sharing bus with ch0 devic o bin/102609 [patch] Add filtering capability to date(1) f i386/102562 i386 [em] no traffic pass through a em card after approx. a o kern/102540 net [netgraph] [patch] supporting vlan(4) by ng_fec(4) o bin/102515 [libc] fsck_ufs crashes if no console at all o conf/102502 net [netgraph] [patch] ifconfig name does't rename netgrap o bin/102498 sysinstall sysinstall(8): Cursor doesn't track sysinstall hilight o kern/102471 ipfw [ipfw] [patch] add tos and dscp support f i386/102410 i386 [install] FreeBSD 6.1-RELEASE installation boot freeze o kern/102390 [pppd] [patch] kernel pppd don't using pam o kern/102363 "Resource temporarily unavailable" message from dvd+rw o bin/102357 [patch] tcsh(1)/csh(1) jobs control: sometimes 'fg' co o bin/102299 [patch] grep(1) malloc abuse? o kern/102252 acpi acpi thermal does not work on Abit AW8D (intel 975) o bin/102232 gad Defects in -O option to ps(1) o bin/102205 kdc(8): login failure: ssh + gssapi + dual stacks + pa o bin/102162 [patch] tftpd(8): Limit port range for tftpd f usb/102066 gavin [usb67] [ukbd] usb keyboard and multimedia keys don't o kern/102035 net [plip] plip networking disables parallel port printing o kern/101948 net [ipf] [panic] Kernel Panic Trap No 12 Page Fault - cau o kern/101926 [ar] 6.1-STABLE crashes under heavy disk I/O and acces o bin/101921 [request] security.bsd.see_other_uids for further prog o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o kern/101794 [pfsync] Setting plip as syncdev for pfsync causes ker o usb/101775 usb [usb67] [usb8] [libusbhid] [patch] possible error in r a bin/101762 sysinstall sysinstall(8) does not obey /usr/ports symlink while i o usb/101761 usb [usb67] [patch] [request] usb.h: increase maximal size o usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca o kern/101734 [ata] -CURRENT cannot see SATA drive on ASUS A8N-SLI ( o kern/101618 kernel panic on multiple Dell PE2850s f i386/101616 i386 [hang] FreeBSD freeze on bootup, Compaq Proliant (lega o docs/101464 doc sync ru_RU.KOI8-R/articles/portbuild/article.html with s ports/101450 stas multimedia/transcode: tcprobe broken for devfs f usb/101448 gavin [usb67] [ohci] FBSD 6.1-STABLE/AMD64 crashes under hea o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o kern/101324 fs [smbfs] smbfs sometimes not case sensitive when it's s o threa/101323 threads [patch] fork(2) in threaded programs broken. o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 o docs/101271 remko serial console documentation implies kernel rebuild re o kern/101226 jfv [em] Access to IPMI module is lost when the em driver f usb/101096 gavin [usb67] [ural] [panic] USB WLAN occasionally causes ke f i386/101062 i386 [hang] Freeze on detect Intel 900 VGA on boot with ACP f kern/101061 vwe [fpa] fea/fpa (DEC FDDI NIC) driver causes kernel pani o kern/100974 rwatson [panic] sorele. FreeBSD 6.1 RELEASE i386 o bin/100956 remko [patch] support setting carp device state with ifconfi o bin/100921 [patch] tftpd(8): libexec/tftpd: `-w' non-traditional o bin/100914 [patch] tftpd(8): libexec/tftpd: write access control o kern/100859 multimedia [sound] [snd_ich] snd_ich broken on GIGABYTE 915 syste o kern/100858 davidch [bce] Broadcom bce driver and SMP hangup f i386/100831 i386 [sio] sio ignores BIOS information about serial ports s threa/100815 threads FBSD 5.5 broke nanosleep in libc_r s bin/100805 yar WITHOUT_INET6 is ignored by many src/ components o docs/100803 jhb [patch] the man page about ithread is expired. o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar o kern/100709 net [libc] getaddrinfo(3) should return TTL info o kern/100687 [psm] psm problem (?): touchpad hangs, then move supe o conf/100616 [patch] syslog.conf: lines after exclamation point ign o kern/100519 net [netisr] suggestion to fix suboptimal network polling o kern/100516 [atapicam] atapicam with ITE IT8212F crashes the syste p kern/100513 jhb [smbus] Inconsistent definition of SMBus addresses in a bin/100496 [patch] Fix to get rid of the telnet(1) to cisco probl o bin/100442 obrien ftpd(8): lukemftpd core dumps on anonymous login o bin/100436 kensmith sysinstall(8): live CD fixit mount does not find mount f ports/100431 dougb port print/hpijs default config interferes with print/ o bin/100424 [patch] ssh(1): SSH option BindAddress is ignored by o f i386/100420 i386 [boot] boot1/boot2 lba error o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam o bin/100320 edwin [request] Update top(1) to 3.6 f kern/100290 yongari [rl] rl0: watchdog timeout [regression] p docs/100242 trhodes sysctl(3) description of KERN_PROC is not correct anym o kern/100219 bz [ip6] IPV6_PKTOPTIONS and possible mbuf exhaustion. f i386/100204 i386 FreeBSD reports raid as broken - but it is not o docs/100196 doc man login.conf does explain not "unlimited" s kern/100170 [request] Support login class in ldap directory o misc/100133 brucec [boot] keyhit function in boot2.c that falls into an i a bin/100089 [patch] ftp(1): default ftp application of FreeBSD giv o bin/100018 [patch] newsyslog(8) does not check size if time_at is o stand/100017 standards [Patch] Add fuser(1) functionality to fstat(1) o kern/99989 panic when detaching disks o kern/99979 [patch] Get Ready for Kernel Module in C++ s bin/99973 yar systat(1): systat -ifstat traffic counter overflow o kern/99954 scsi [ahc] reading from DVD failes on 6.x [regression] o bin/99896 gad [patch] lpr(1): lpr -r flag has no effect o kern/99850 [ar] ataraid hangs in g_waitidle when attaching to nVi o bin/99800 [libc] [patch] Add support for profiling multiple exec o kern/99765 drifting time, SuperMicro PDSMi Motherboard, "calcru n o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s o kern/99664 mountd and/or nfsd have to sometimes have to be restar o bin/99662 rpc.rquotad(8): quota information leak while rpc.rquot o kern/99652 [ata] nVidia nForce MCP51 controller hangs w/ 2 drives o misc/99643 linimon request to remove src/tools/tools/portsinfo because it o misc/99627 [build] [patch] make update & CVSROOT f i386/99608 i386 [atapicam] ATAPI or CAM crash on FreeBSD 6.1-stable wi o kern/99607 [pppd] pppd hangs kernel due to interrupt flood from s o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o usb/99538 usb [keyboard] while using USB keyboard default params of o kern/99529 [amr] DELL PowerEdge 2600 with streamer PowerVault 100 o docs/99506 doc FreeBSD Handbook addition: IPv6 Server Settings o kern/99485 Disk IO Causes multimedia/mplayer To Drop Frames o conf/99444 rc [patch] Enhancement: rc.subr could easily support star o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar s kern/99421 [request] Option Globetrotter Fusion card not recogniz o kern/99408 [ppp] problems with ppp and arp a docs/99356 ru man page of sendmsg(2) does not include EINVAL o conf/99328 linimon [patch] updates for src/share/examples/cvsup o bin/99307 [patch] mount_nfs(8) incompatible with zVM VMNFS 3A0 o www/99305 bugmeister send-pr.html is frustrating/broken o kern/99290 fs [ntfs] mount_ntfs ignorant of cluster sizes o bin/99217 [patch] pam_ssh(8) waits for a wrong ssh-agent PID at o kern/99200 usb [bluetooth] SMP-Kernel crashes reliably when Bluetooth o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l o www/99184 wosch Viewing HP-UX manpages with http://www.freebsd.org/cgi o gnu/99173 [patch] replace gnu patch with a bsd-licensed one. o kern/99088 [ata] Critical Problems with VIA 8251 SATA2/RAID Contr f kern/99068 [linux] [patch] Linux emulator crashed by java, when c o kern/99017 [ata] [patch] FreeBSD versions above 5.3 panic if atap o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel o docs/98974 doc Missing tunables in loader(8) manpage o kern/98962 remko [ata] [burncd]: [patch] writing >1 session on ATAPI CD o kern/98873 des [libfetch] allow fetch(3) to force using of ipv4 or ip o kern/98831 ipfw [ipfw] ipfw has UDP hickups o kern/98804 [ar] VIA V-RAID metadata mis-read (MSI K8MMV with the o www/98798 murray Our statistics page is out of date o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH f i386/98765 i386 [ata] timeouts on sata drive (Asus a7n8x-e) o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/98597 net [inet6] Bug in FreeBSD 6.1 IPv6 link-local DAD procedu o bin/98577 [patch] dhclient(8): the link check by dhclient slows o bin/98542 [pppd] pppd(8) daemon unexpectently died , Exit 1 o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [sound] [snd_ich] some functions don't work in my soun o bin/98468 newsyslog(8): Value over 99 in newsyslog.conf count fi o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled p misc/98383 yar [request] include the mt command in the rescue CD f docs/98344 linimon [patch] An update of the article "Choosing the FreeBSD o usb/98343 usb [boot] BBB reset failed errors with Creative Muvo MP3 s bin/98220 wpa_supplicant(8) operation does not match documentati o bin/98218 net wpa_supplicant(8) blacklist not working f i386/98215 i386 [geode] [regression] FreeBSD can no longer boot Geode s kern/98162 [request] AcerHK driver port needed for enabling WiFi f i386/98154 i386 6-STABLE crashes when being online via modem (Fujitsu o docs/98115 doc Missing parts after rendering handbook to RTF format o kern/98091 scottl [mfi] [patch] Makefile style of mfi kernel module brok o kern/97996 [ata] DMA is broken for VIA 82C596B UDMA66controller o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to a kern/97921 rwatson [socket] close() socket deadlocks blocked threads o kern/97665 [sio] hang in sio driver o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/97505 [procfs] file entry of procfs points to "unknown" o kern/97504 ipfw [ipfw] IPFW Rules bug s bin/97498 [request] newfs(8) has no option to clear the first 12 o bin/97478 umount(8): umount -f /card -> hardware-reset is needed o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o java/97461 java Diablo JDK does not report Update level in a format su o kern/97401 [xe] Xircom CreditCard Ethernet 10/100, attach returne f bin/97392 net ppp(8) hangs instead terminating o kern/97383 acpi Volume buttons on IBM Thinkpad crash system with ACPI o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid o kern/97377 fs [ntfs] [patch] syntax cleanup for ntfs_ihash.c o amd64/97337 amd64 [dri] xorg reboots system if dri module is enabled o kern/97329 [nfs] [patch] code simplification o kern/97306 net [netgraph] NG_L2TP locks after connection with failed f i386/97287 i386 Screen Corruption In FreeBSD 6.X When Apps Started In s usb/97286 usb [mouse] [request] MS Wireless Intellimouse Explorer 2. s kern/97266 [fdc] System hangs at kernel time after boot: /dev/fd0 o kern/97265 System hangs at the end of shutdown -h now f i386/97263 i386 [ata] FreeBSD only detects first drive on PDC20378 378 o kern/97208 firewire [firewire] System hangs / locks up when a firewire dis o usb/97175 usb [umass] [hang] USB cardreader hangs system o kern/97153 [patch] When -NO_KERBEROS is set, libcom_err still get o bin/97108 sysinstall sysinstall(8): write failure on transfer (wrote -1 byt o bin/97083 [patch] passwd(1) does not support _PWF_HESIOD o conf/97014 [gif] gifconfig_gif? in rc.conf does not recognize IPv o bin/97002 [patch] cron(8) fails quietly if /usr/sbin/sendmail is o kern/97000 [kernel] [patch] bogus "All threads purged from ugen0. o kern/96999 [procfs] [patch] procfs reports incorrect information o kern/96927 brucec [loader] Loader(8) cause kernel death on "boot -a" [re o bin/96854 imp [patch] devd(8) parses events incorrectly in some case a bin/96840 [libc] [patch] getgrent() does not return large groups o conf/96746 [nanobsd] [patch] Configuration changes and README for f kern/96743 yongari [sk] [patch] broken 32-bit register operations o kern/96644 [panic] umount(8) crash after mount/umount disturbance o bin/96540 [patch] catman(1) does not deal correctly with hard-li o kern/96538 multimedia [sound] emu10k1-driver inverts channels o usb/96457 usb [umass] [panic] fatback on umass = reboot o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel f conf/96412 linimon [rpc] 2 rpc.lockds launched at boot ? blocking problem o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram f i386/96357 i386 FreeBSD cannot recognize all the logical partitions o kern/96346 [modules] [patch] disable build of modules that are al o conf/96343 rc [patch] rc.d order change to start inet6 before pf f i386/96302 gavin [ata] nVidia nForce CK804 SATA300 controller not recog f kern/96268 net [socket] TCP socket performance drops by 3000% if pack o conf/96247 [patch] 550.ipfwlimit reports logs even if log size is o stand/96236 standards [patch] [posix] sed(1) incorrectly describes a functio o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync o docs/96207 doc Comments of a sockaddr_un structure could confuse one o kern/96171 [ata] burncd (ATA driver) fails to write in vcd mode o kern/96157 Subtle incompatability of FreeBSD and LITE-ON SOHW-167 s usb/96120 usb [ums] [request] USB mouse not always detected o conf/96094 [gif] startup scripts do not configure gif interfaces o kern/96040 [mpt] LSI1030 mpt0: bullet missed in timeout o kern/96030 net [bfe] [patch] Install hangs with Broadcomm 440x NIC in o stand/96016 standards [headers] clock_getres et al should be in o conf/96015 uncommenting the msgs invocation in /etc/profile can f p bin/95979 obrien [patch] burncd(8) fails to fixate CDs o gnu/95936 egrep(1) misparses multiline parenthetical grouping o amd64/95888 amd64 [ata] kernel: ad2: TIMEOUT - WRITE_DMA retrying on HP p bin/95715 [patch] random(6) busy loop under some conditions o bin/95698 philip [patch] moused(8): Software control of sysmouse o bin/95692 gdb(1): GDB in base of both FreeBSD 6 and 5 is ancient o gnu/95691 GDB segfaults on my programme in both FreeBSD 6 and 5 o kern/95661 [pci] [patch] pci_pci still not correct for initializi s usb/95636 usb [umass] [boot] 5 minute delay at boot when using VT620 o usb/95562 usb [umass] Write Stress in USB Mass drive causes "vinvalb o kern/95559 RELENG_6: write(2) fails with EPERM on TCP socket unde o ports/95541 roam dns/djbdns WITH_IPV6 queries ip6.int o kern/95532 [gif] if_gif has artificial limitations o kern/95519 net [ral] ral0 could not map mbuf o kern/95512 [uplcom] uplcom(4) causes system hangups o kern/95459 Rebooting the system while rebuilding RAID (Intel Matr o docs/95408 remko install over serial console does not work as documente o kern/95407 [atapicam] atapicam, cd and /etc/rc.d/devfs problem o kern/95405 [libkvm] libkvm does not support /dev/fwmem0.0 in Free s usb/95348 usb [keyboard] USB keyboard unplug causes noise on screen o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo a kern/95307 vanhu [ipsec] Panic (race condition?) in ipsec_process_done o kern/95288 net [pppd] [tty] [panic] if_ppp panic in sys/kern/tty_subr o kern/95277 net [netinet] [patch] IP Encapsulation mask_match() return o kern/95267 net packet drops periodically appear o kern/95239 [libc] [patch] nftw(3) returns EINVAL for large values o kern/95222 fs [iso9660] File sections on ISO9660 level 3 CDs ignored o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx s ports/95085 portmgr [PATCH]: bsd.port.mk: Add knob to allow for mutually e o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o bin/95082 [patch] ping(8) won't handle large preload patterns p bin/95079 jh [patch] apply(1) dies when there are two %1 in command o usb/95037 usb [umass] USB disk not recognized on hot-plug. o bin/95002 [libc] hash db source code has a bug which prevents us o kern/94978 [pam] pam_opie module option without "no_fake_prompts" o ports/94935 cy security/aide: propose an AIDE_CONF knob for make.conf o kern/94898 [pcmcia] GPRS PCMCIA card cause interrupt storm and co o usb/94897 usb [panic] Kernel Panic when cleanly unmounting USB disk s bin/94892 [rpc] rpc.lockd does not interoperate with Solaris 10 o kern/94849 fs [ufs] rename on UFS filesystem is not atomic o kern/94838 scsi Kernel panic while mounting SD card with lock switch o o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o bin/94810 fsck(8) incorrectly reports 'file system marked clean' o kern/94772 [fifo] [patch] FIFOs (named pipes) + select() == broke o kern/94769 fs [ufs] Multiple file deletions on multi-snapshotted fil o kern/94733 fs [smbfs] smbfs may cause double unlock o stand/94729 standards [libc] fcntl() throws undocumented ENOTTY o usb/94717 usb [ulpt] Reading from /dev/ulpt can break work of a UHCI o gnu/94695 bugmeister send-pr.el is missing from send-pr distribution o ports/94690 ume [patch] Daemons in /usr/local/etc/rc.d/ must do "setss o amd64/94677 amd64 [panic] panic in amd64 install at non-root user creati o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o bin/94635 snapinfo(8)/libufs only works for disk-backed filesyst o kern/94632 geom [geom] Kernel output resets input while GELI asks for o docs/94625 doc [patch] growfs man page -- document "panic: not enough o kern/94578 [panic] Panic by using rtorrent sometimes o bin/94546 [patch] Make telnet(1) accept 'host:port' on command l o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind f sparc/94483 sam [ath] ath_hal does not work on 6-release/sparc64 s threa/94467 threads send(), sendto() and sendmsg() are not correct in libc o kern/94424 [bge] BGE5721 or BGE5750? o www/94423 danger [patch] XML'ified release todo list o kern/94393 [ar] PseudoRAID loses track of the master disk s kern/94390 vwe [vr] poor network performance after promiscuous mode i o usb/94384 usb [panic] kernel panic with usb2 hardware o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/94273 bz [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o bin/94258 [rpc] O_NONBLOCK may block with rpc.lockd o bin/94252 [rpc] rpc.lockd cannot cancel lock requests o kern/94227 'no dump device defined' on random occasions s kern/94182 [altq] [request] altq support for vlan driver p bin/94181 ume portsnap(8) should remove the trailing dot from the se p bin/94180 ume portsnap(8) does not handle HTTP_PROXY_AUTH correctly o kern/94166 [boot] btx halted with a flashcard plugged o kern/94162 net [bge] 6.x kenel stale with bge(4) s bin/94159 [request] ipsecctl ported from openbsd o kern/94155 [ata] 6.1 CF reader problem: "ad1: FAILURE - SETFEATUR o kern/94139 scottl [amr] [regression] amr broken with LSILogic MegaRAID S o bin/94052 [patch] Adds option to script(1) to suppress carriage- o bin/94051 login(1): IP network in login.access ignored unless DN o bin/94032 portmgr [patch] Enhancement to pkg_add(1) to add -4 flag to fo o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o amd64/93961 amd64 [busdma] Problem in bounce buffer handling in sys/amd6 o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D o conf/93899 mount_smbfs can't load libiconv.so during boot up o kern/93887 [kernel] cpu_spinwait calls missing in subr_smp.c o kern/93886 net [ath] Atheros/D-Link DWL-G650 long delay to associate o kern/93885 [ata] ata(4) failure: SETFEATURES SET TRANSFER MODE se o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o bin/93857 [patch] new utility: kiconv_cs_preload(8): Utility for o www/93854 postmaster Cannot proceed to page after the first in mailing list o usb/93828 usb [ohci] [panic] ohci causes panic on boot (HP Pavillion o kern/93825 pf [pf] pf reply-to doesn't work o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d f i386/93793 i386 [keyboard] Keyboard stops working after a shutdown -p a kern/93790 cperciva cpufreq missing frequencies o i386/93787 gavin [hang] freebsd 6.0 hangs on atkbd0 on Proliant 1850r s o docs/93785 obrien The man page for ftpchroot(5)/ftpusers(5) contradicts o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o kern/93771 [ar] [panic] atacontrol status ar1 causes panic o kern/93770 [drm] ati 9600 PRO radeon not recognized by the system f i386/93752 i386 Cannot activate the serial ports on boot probe. BIOS o o kern/93750 [ips] Boot hangs on ips0: resetting adapter, this may o kern/93705 standards [headers] [patch] ENODATA and EGREGIOUS (for glibc com o kern/93685 [pipe] select on pipe write fails from '0' end o docs/93683 chinsan [patch] some typos in klist(1) o misc/93661 [patch] loader(8): prevent *.4th files and friends fro o kern/93634 vwe [msdosfs] False access to renamed files/directories (c o gnu/93629 GNU sort(1) tool dumps core within non-regular locale o gnu/93566 [patch] sort(1): numeric sort is broken on multi-byte o sparc/93530 pf [pf] Incorrect checksums when using pf's route-to on s p bin/93473 des [patch] Let pam_unix(8) use "passwordtime" from login. o kern/93461 [smp] [regression] Intel 440LX SMP freeze (regression o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o kern/93381 reboot(8) works but 'reboot -n' hangs f kern/93378 net [tcp] Slow data transfer in Postfix and Cyrus IMAP (wo p kern/93331 [kernel] [patch] broken asm in kernel o bin/93317 ld-elf.so doesn't translate unresolved weak symbol int o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support o kern/93305 Machine freezes solid running dhcpclient after suspend o kern/93300 ipfw [ipfw] ipfw pipe lost packets o ports/93279 skv devel/cvsmonitor: not useable (/dev/mem: Permission de o bin/93275 sysinstall sysinstall(8): Failure to install after restarting ins o power/93203 ppc FreeBSD PPC Can't Write to Partitions. o kern/93197 [libc] strptime(3) succeeds on formats it should fail o kern/93128 scottl [sym] FreeBSD 6.1 BETA 1 has problems with Symbios/LSI o gnu/93127 [patch] add __FreeBSD_kernel__ to pre-defines o kern/93093 [libc] xdr_string might call strlen(3) on NULL o kern/93019 net [ppp] ppp and tunX problems: no traffic after restarti o kern/92949 pf [pf] PF + ALTQ problems with latency o kern/92880 net [libc] [patch] almost rewritten inet_network(3) functi o bin/92866 portmgr pkg_add(1) should return a different result code if pa o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o kern/92798 scsi [ahc] SCSI problem with timeouts o kern/92795 [panic] lockmgr panic during sys_exit file cleanup o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID o kern/92751 [reboot] camcontrol(8): 5.4 crashes after camcontrol d o kern/92716 [hifn] [hang] hifn driver hangs after a short while wh o kern/92690 silby [tcp] slowstart_flightsize ignored in 6-STABLE o ports/92651 stas graphics/gmt - WITH_EVERYTHING doesn't fetch o docs/92626 doc jail manpage should mention disabling some periodic sc f kern/92552 net A serious bug in most network drivers from 5.X to 6.X o conf/92523 rc [patch] allow rc scripts to kill process after a timeo o kern/92518 [hptmv] Intense disk activity (large FS newfs and/or m o kern/92512 multimedia [sound] distorted mono output with emu10k1 s ports/92434 portmgr [patch] Mk/bsd.port.mk automatic show pkg-message o kern/92412 [libexec] [patch] rpc.rstatd reports bogus packets/per o stand/92362 standards [headers] [patch] Missing SIGPOLL in kernel headers o amd64/92337 amd64 [em] FreeBSD 6.0 Release Intel Pro 1000 MT em1 no buff s kern/92279 net [dc] Core faults everytime I reboot, possible NIC issu o kern/92272 fs [ffs] [hang] Filling a filesystem while creating a sna o kern/92270 glebius [ppp]: ppp does not work on renamed network interfaces o kern/92238 [ata] [patch] Spurious "atapci1: failed to enable memo f i386/92193 i386 [boot] Can't boot from 6.0 Installation CD: BTX halted o usb/92171 usb [panic] panic unplugging Vodafone Mobile Connect (UMTS o kern/92164 scottl [ips] [lor] SCSI target mode LOR o usb/92142 usb [uhub] SET_ADDR_FAILED and SHORT_XFER errors from usb o kern/92104 des [panic] kernel panic near readlink syscall o kern/92092 [iicbus] [patch] Panic if device with iicbus child is f kern/92090 yongari [bge] bge0: watchdog timeout -- resetting o usb/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o usb/92052 usb [ulpt] usbd causes defunct process with busy file-hand o kern/92023 [kernel] 'options DEVICE_POLLING' makes loadavg wrong o bin/91993 sam dhclient(8) option missing, script incompability o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o kern/91910 scottl [aac] [regression] aac driver hangs on Dell PE800 with o kern/91908 darrenr [ipnat] loading ipl.ko to the kernel compiled with opt o usb/91906 usb [ehci] [hang] FreeBSD hangs while booting with USB leg o usb/91896 usb camcontrol(8): Serial Number of USB Memory Sticks is n o i386/91871 brucec [boot1] [patch] boot1: jump to 0xf000:0xfff0 instead o o kern/91859 net [ndis] if_ndis does not work with Asus WL-138 o kern/91847 ipfw [ipfw] ipfw with vlanX as the device o ports/91838 danfe graphics/svgalib: tty switching is broken o usb/91811 usb [umass] Compact Flash in HP Photosmart 2610 return " s kern/91777 net [ipf] [patch] wrong behaviour with skip rule inside an s i386/91748 acpi acpi problem on Acer TravelMare 4652LMi (nvidia panic, o conf/91732 [patch] 800.loginfail: fix log message grep expression o kern/91719 [pxeboot] BZ2_bzDecompress returned -3 error on loadin o bin/91606 sha1(1): sha1 /dev is suspended o kern/91594 net [em] FreeBSD > 5.4 w/ACPI fails to detect Intel Pro/10 o kern/91572 [atapicam] [panic] writing to UFS/softupdates DVD medi f kern/91568 fs [ufs] [panic] writing to UFS/softupdates DVD media in o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work s www/91539 www FreeBSD web site renders very badly o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 o bin/91536 burncd(8): burncd -t feature strangeness o docs/91506 doc ndis(4) man page should be more specific about support f kern/91476 gavin [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o kern/91407 [crypto] [panic] Kernel panic when heavily loading cry o amd64/91405 amd64 [asr] [panic] Kernel panic caused by asr on 6.0-amd64 o ports/91393 trhodes misc/window changes console cursor shape to blink o kern/91364 net [ral] [wep] WF-511 RT2500 Card PCI and WEP o kern/91347 rodrigc [pci] [patch] Add another PCI-e chipset for extended c o conf/91342 [devfs] Errors in devfs.rules files don't get logged o kern/91339 [psm] mousedriver do not recognize aditional buttons o o kern/91311 net [aue] aue interface hanging o bin/91299 yar [patch] add ftpd(8) SITE SHA256 command s kern/91290 [ata] ata(4) error on 7.0-CURRENT-20051229-SNAP-PC98 o usb/91283 usb [boot] [regression] booting very slow with usb devices o usb/91238 usb [umass] USB tape unit fails to write a second tape fil o docs/91174 doc [REQUEST] Handbook: Addition of Oracle 9i installation o docs/91149 doc read(2) can return EINVAL for unaligned access to bloc o kern/91134 fs [smbfs] [patch] Preserve access and modification time a conf/91106 versus [locale] date definitions in pl_PL locale are wrong o bin/91101 edwin [patch] whereis(1): make more readable s kern/91038 acpi [panic] [ata] [acpi] 6.0-RELEASE on Fujitsu Siemens Am o bin/91034 [patch] minor fix to iostat(8) so that columns line up o kern/91023 [sysctl] cpufreq/p4tcc: sysctl: dev.cpu.0.freq: Device o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad o kern/90890 net [vr] Problems with network: vr0: tx shutdown timeout o kern/90837 [sound] PCM - ICH6 - device is busy, but old process d a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o usb/90700 usb [umass] [panic] Kernel panic on connect/mount/use umas o bin/90690 [patch] ps(1) errorneously respects terminal column se o bin/90680 [patch] make(1) thinks "^.for.o:" is a directive (".fo o bin/90656 sysinstall sysinstall(8): 6.0-RELEASE (i386) cannot be installed o kern/90582 geom [geom] [panic] Restore cause panic string (ffs_blkfree p kern/90580 jilles [libc] wordexp(3) fails to check for EINTR o bin/90524 reset(1) doesn't fully restore terminal state o kern/90442 [panic] kmem_alloc fails kmem_map: too small, on a RAI o ports/90436 portmgr [patch] Add a way to handle configuration files to bsd o kern/90368 [pxeboot] pxeboot misses ${class} parameter when booti s bin/90367 [request] libmap.conf needs exclusivity support o bin/90311 [patch] add "eject" to mt(1) o kern/90282 scsi [sym] SCSI bus resets cause loss of ch device o bin/90266 philip bsnmpd(1) returns bad data during a snmpwalk of the en s kern/90243 acpi Laptop fan doesn't turn off (ACPI enabled) (Packard Be o kern/90237 [drm] [panic] panic in sis DRM o kern/90206 [ata] [reboot] Server reboot after "FAILURE - out of m o bin/90130 [patch] sysctl(8): print temperature in celsius only w o bin/90114 [patch] pw(8) takes strings after option -g for GID 0 o bin/90093 geom fdisk(8) incapable of altering in-core geometry s kern/90086 net [hang] 5.4p8 on supermicro P8SCT hangs during boot if s bin/90082 [syscons] [patch] curses ACS line graphics support for o bin/89988 [patch] bootparamd(8) null host support and whoami fix p kern/89966 rodrigc [ntfs] [panic] mounting ntfs causes kernel panic in so o bin/89959 brooks dhclient(8): dhcp: ip length 314 disagrees with bytes o usb/89954 usb [umass] [panic] USB Disk driver race condition? o conf/89870 rc [patch] [request] make netif verbose rc.conf toggle o kern/89837 [pci] PCI code outputs superfluous "failed to enable/d o bin/89799 [patch] Making natd(8) not require a newline at the en o kern/89775 [kqueue] [hang] kevent hangs on second wait for /dev/d o bin/89770 des [patch] pam_krb5 'authentication token failure' in pas o bin/89762 edwin [patch] top(1) startup is very slow on system with man f kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks f kern/89738 [ndis] [hang] Can't make WL8000PCM wifi card work with a conf/89589 secteam virecover follows hardlinks, possibly exposing sensiti o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o kern/89522 6.0-RELEASE will not boot on some Compaqs with mouse c o amd64/89501 amd64 [install] System crashes on install using ftp on local o docs/89492 attilio vfs doc: some VOP_*(9) manual pages are outdated with o ports/89441 hrs TeX support in FreeBSD is problematic. o bin/89410 [patch] sh(1) missing \u interpolation and bug/fix in o bin/89403 fetch(1) doesn't honour authentication credentials whe o bin/89326 [patch] Add pattern matching to login.access(5) p docs/89325 trhodes [patch] Clarification of kbdmap(5), atkbd(4) and kbdco s kern/89305 vwe [vr] [patch] D-Link NIC with VIA Rhine II, lost of Net o kern/89258 [mouse] synaptic touchpad support "worse" with hw.psm. o i386/89249 [ataraid] HighPoint RocketRAID 1520 (HPT372N) can't wr o kern/89179 Random reboots on Dell PowerEdge 6300 o kern/89166 [mouse] jumpy mouse movement o kern/89070 [panic] NULL m passed to m_copym() in ip_fragment() o conf/89061 rc [patch] IPv6 6to4 auto-configuration enhancement s usb/89003 usb [request] LaCie Firewire drive not properly supported o kern/88962 [panic] Kernel panic with ACPI is enabled o kern/88914 [hang] system freeze during file transfer o conf/88913 rc [patch] wrapper support for rc.subr o bin/88826 randi sysinstall(8): sysinstall infinity wait for da0 o bin/88821 pjd [patch] IPv6 support for ggated(8) o amd64/88790 amd64 [panic] kernel panic on first boot (after the FreeBSD o bin/88780 [patch] Baseline ipmon(8) uses LOG_LOCAL0 syslog, not s i386/88755 i386 [install] FreeBSD R6.0 on ThinkPad R40 installation re o usb/88743 usb [hang] [regression] USB makes kernel hang at boot (reg o misc/88680 [build] !compiling freebsd components o kern/88659 ipfw [modules] ipfw and ip6fw do not work properly as modul o kern/88657 fs [smbfs] windows client hang when browsing a samba shar o bin/88655 [patch] tcsh(1): /bin/tcsh ls-F : Floating exception ( o kern/88601 geom [geli] geli cause kernel panic under heavy disk usage o amd64/88568 amd64 [panic] 6.0-RELEASE install cd does not boot with usb o kern/88555 [panic] ffs_blkfree: freeing free frag on AMD 64 a bin/88538 [patch] tcsh(1) ls-F spacing incorrect. o bin/88524 openssl(1) can not work with smtp.gmail.com o kern/88518 rodrigc cannot mount root rw at boot o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o kern/88487 [panic] softdep_setup_inomapdep: found inode o kern/88450 andre SYN+ACK reports strange size of window o usb/88408 usb [axe] axe0 read PHY failed o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs o kern/88320 [nis] ypxfr(8) talks IPv6 to IPv4-only portmap -> ypin o kern/88266 fs [smbfs] smbfs does not implement UIO_NOCOPY and sendfi o bin/88215 [patch] syslogd(8) does not pass cleanly parameters to o kern/88182 [ural] [wep] wep is broken in ural(4) hostap mode o kern/88150 des [pam] PAM does not search /usr/local/lib for modules s i386/88139 i386 [i386] [request] 53C875 Chipset HP 5064-6016 doesn't w o gnu/88087 c++filt(1) dumps core on a trivial string "STYLEPROP_" f kern/88082 net [ath] [panic] cts protection for ath0 causes panic o kern/88047 [asr] [panic] 6.0-RC1 reboots with SMP and asr o kern/88020 cannot boot unless: hint.apic.0.disabled="1" is set on o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o bin/87966 [patch] newfs(8): introduce -A flag for newfs to enabl o docs/87936 doc Handbook chapter on NIS/YP lacks good information on a o kern/87859 fs [smbfs] System reboot while umount smbfs. o docs/87857 doc ifconfig(8) wireless options order matters p bin/87841 murray fetch(1) should have options to set http "if-modified- o kern/87836 [devfs] If using ATAPICAM with cd(dvd)rw without media o bin/87792 [patch] very bad performance of cp(1) via NFS, possibl o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup o kern/87729 phk [libc] [patch] most calls to malloc(3) generate warnin o bin/87726 dfr gssapi.h is not c++ aware o amd64/87689 amd64 [powerd] [hang] powerd hangs SMP Opteron 244 5-STABLE s kern/87653 [drm] ATI Radeon Mobile X600SE not detected by kernel o bin/87651 [patch] fsck(8) (on superblock error) tells wrong man o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o kern/87586 [diskless] [vm] [panic] Unable to use networked swap i o kern/87544 geom [gbde] mmaping large files on a gbde filesystem deadlo s bin/87529 [request] pw(8): "pw lock", "pw unlock" should support o kern/87521 net [ipf] [panic] using ipfilter "auth" keyword leads to k o kern/87515 Splash screen fails to load on boot o kern/87506 net [vr] [patch] Fix alias support on vr interfaces o kern/87421 net [netgraph] [panic]: ng_ether + ng_eiface + if_bridge s ports/87420 portmgr [patch] bsd.port.mk: implementing WITH_OPENLDAP_VER to o ports/87397 edwin [patch] incorrect use of PAPERSIZE make variable in so f kern/87368 bde [msdosfs] fat32 is very slow o amd64/87305 amd64 [smp] Dual Opteron / FreeBSD 5 & 6 / powerd results in o usb/87224 usb [usb] Cannot mount USB Zip750 o www/87119 hrs [patch] encode copyright and such symbolically o kern/87074 mlaier pf does not log dropped packets when max-* stateful tr o kern/87032 ipfw [ipfw] [patch] ipfw ioctl interface implementation o bin/87022 telnet(1) hang in ptcout o kern/87010 pjd Reading kernel memory & pagefault under non-root o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos s kern/86920 net [ndis] ifconfig: SIOCS80211: Invalid argument [regress o kern/86871 net [tcp] [patch] allocation logic for PCBs in TIME_WAIT s s bin/86859 brucec sysinstall(8): Installer should ask about Linux earlie o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o bin/86765 fs [patch] bsdlabel(8) assigning wrong fs type. o kern/86763 [ucom] kernel: ucom0: ucomwritecb: IOERROR a kern/86752 mlaier pf does not use default timeouts when reloading config o bin/86665 randi sysinstall(8): sysinstall binary upgrade clobbers name o bin/86635 pf [patch] pfctl(8): allow new page character (^L) in pf. o kern/86619 [linux] linux emulator interacts oddly with cp o kern/86587 fs [msdosfs] rm -r /PATH fails with lots of small files o bin/86485 [patch] hexdump(1): hexdump -s speedup on /dev a stand/86484 standards [patch] mkfifo(1) uses wrong permissions o bin/86454 brucec sysinstall(8): sysinstall terminates with signal 10 if o kern/86427 net [lor] Deadlock with FASTIPSEC and nat o kern/86411 scottl [amr] Very low performance of amr(4) under FreeBSD-6.0 o bin/86405 more(1) segmentation fault s ports/86401 stas new ports multimedia/zapping s bin/86388 [patch] periodic(8) daily should backup bsdlabel(8) / o docs/86342 doc bikeshed entry of Handbook is wrong s kern/86319 [nfs] [request] support a "noac" NFS mount flag to tur o usb/86298 usb [mouse] Known good USB mouse won't work with correct s o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/86103 net [ipf] Illegal NAT Traversal in IPFilter o kern/86055 FreeBSD 6.0 beta4 install panic:bio already on queue o bin/86012 kpasswd(1) fails if one of the KDC are unreachable. o kern/86003 Startup reports "failed to attach P_CNT" s kern/85975 [cam] devfs does not create entries when removable med o kern/85971 jeff [uma] [patch] minor optimization to uma o kern/85931 panic: "vm_fault: fault on nofault entry" when using m o gnu/85895 [patch] cc -print-search-dirs returns (null) o kern/85894 [nfs] [panic] nfs_timer / nfs_socket.c:1146 panic o kern/85886 [an] [patch] an0: timeouts with Cisco 350 minipci o gnu/85824 obrien gas crashes when assembling this file o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc o kern/85816 maxproc=1 in login.conf causes kernel panic when loggi o kern/85813 timeout waiting for read DRQTrying to mount root from o kern/85809 darrenr panic: mutex "ipf state entry" already initialized o kern/85780 net 'panic: bogus refcnt 0' in routing/ipv6 o kern/85768 gibbs [ahd] aic79xx driver timeouts with U160 target (free l o bin/85712 uncompress(1) program emits bogus "overwrite?" prompt s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/85657 [kernel] [patch] capture and expose per-CPU time accou o i386/85656 i386 [i386] [patch] expose more i386 specific CPU informati o i386/85655 i386 [i386] [patch] expose cpu info for i386 systems o i386/85653 i386 [i386] [patch] relieve hangs in tight loops in process o i386/85652 i386 [loader] [patch] deal with out-of-memory errors during o kern/85651 [kernel] [patch] debugging code to show entries in eve o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo o bin/85494 fsck_ffs: unchecked use of cg_inosused macro etc. o kern/85493 imp [ed] [patch] OLDCARD can't probe ed driver o kern/85464 Cannot unmount file-backed disk imported from NFS or S o kern/85450 [ata] [panic] subdisk6 detached (appears to be a sata o bin/85445 net ifconfig(8): deprecated keyword to ifconfig inoperativ s kern/85444 vwe [stf] IPv6 crash, possibly related to destroying stf i o alpha/85346 alpha PREEMPTION causes unstability in Alpha4000 SMP kernel o kern/85326 fs [smbfs] [panic] saving a file via samba to an overquot p kern/85320 gonzo [gre] [patch] possible depletion of kernel stack in ip s amd64/85273 amd64 [install] FreeBSD (NetBSD or OpenBSD) not install on l o kern/85258 mux [fxp] changing promisc mode on nic can lead to kernel o kern/85257 brucec [boot] BTX boot loader fails on USB CDROM (HP DL145 Op f kern/85137 des [pseudofs] [patch] panic due to sleep with held mutex o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o kern/85123 [iir] Improper serialization in iir_ioctl() allows iir o bin/85115 byacc generates uncompileable file o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le s usb/85067 usb [uscanner] Cannot attach ScanJet 4300C to usb device o bin/85011 restore(8) on 5.4 will not read Solaris-sparc dumps, w o kern/84981 [headers] [patch] header protection for with aroun o bin/78170 [patch] Fix signal handler in bootpd(8) o bin/78131 geom gbde(8) "destroy" not working. o kern/78114 phk [geom] [patch] Solaris/x86 label structures for GEOM ( o kern/78090 net [ipf] ipf filtering on bridged packets doesn't work if o kern/78021 sem_open(3) doesn't mention fnctl.h include requiremen p kern/77913 net [wi] [patch] Add the APDL-325 WLAN pccard to wi(4) o kern/77902 [nfs] NFS client should use VA_UTIMES_NULL to determin o conf/77663 rc Suggestion: add /etc/rc.d/addnetswap after addcritremo o kern/77662 diskless hostname set via DHCP only if ACPI off o bin/77651 init(8) can lose shutdown related signals o bin/77445 ntpd(8): too many recvbufs(40) when ntpd started with s kern/77355 [i386] [patch] Detect i*86 subarches for uname o kern/77341 net [ip6] problems with IPV6 implementation f usb/77294 usb [ucom] [panic] ucom + ulpcom panic o kern/77273 net [ipf] ipfilter breaks ipv6 statefull filtering on 5.3 o bin/77261 login(1) doesn't chdir into a group-protected home dir s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o kern/77156 FreeBSD does not redirect packets on proper interface. o kern/77091 [keyboard] Keyboard quits working under X with MAXCONS o bin/77089 natd(8) ignores -u with passive FTP p bin/77031 [patch] comm(1) unable to handle lines greater than LI o bin/77001 randi sysinstall(8): sysinstall binary upgrade clobbers /etc o kern/76972 64-bit integer overflow computing user cpu time in cal o kern/76950 acpi ACPI wrongly blacklisted on Micron ClientPro 766Xi sys o kern/76893 [cam] [patch] Fatal divide in booting processes with B o kern/76848 [amr] amr hangs o bin/76756 des function pw_equal in pw_util.c does not test pw_passwd o bin/76736 dwmalone syslogd(8) pipelines losing messages o usb/76732 usb [ums] Mouse problems with USB KVM Switch o bin/76711 [patch] rm(1): parse error in rm.c:check() while parsi o bin/76697 simon newsyslog(8) keeps one more archive files than documen s threa/76694 threads fork cause hang in dup()/close() function in child (-l s threa/76690 threads fork hang in child for -lc_r o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o conf/76626 [patch] 460.status-mail-rejects shows destination doma o bin/76590 adding -mapall in nfs exports requires reboot o bin/76588 openssl(1) fails on loading keyfiles from BIO resource o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same o kern/76525 [fifo] select() hangs on EOF from named pipe (FIFO) s kern/76520 [libiconv] [patch] Add new kernel-side libiconv conver o kern/76504 silby Keep-alives doesn't work on half-closed sockets. s conf/76491 Addition into /etc/security few new functions o kern/76485 [libc] sched_getparam(2) returns weird priority number o usb/76461 usb [umass] disklabel of umass(4)-CAM(4)-da(4) not used by o kern/76398 [libc] stdio can lose data in the presence of signals f usb/76395 usb [uhci] USB printer does not work, usbdevs says "addr 0 o bin/76362 [patch] sys directory link points to wrong location p docs/76333 trhodes [patch] ferror(3): EOF indicator can be cleared by not o conf/76226 Default local.9600 gettytab initially uses parity o kern/76178 scsi [ahd] Problem with ahd and large SCSI Raid system o gnu/76169 [patch] Add PAM support to cvs pserver o kern/76144 [fifo] poll doesn't set POLLHUP when FIFO is closed o amd64/76136 amd64 [hang] system halts before reboot o bin/76134 fetch(1) doesn't like 401 errors with -A o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/75934 [libcrypt] [patch] missing blowfish functionality in p s usb/75928 usb [umass] [request] Cytronix SmartMedia card (SMC) reade o kern/75873 net Usability problem with non-RFC-compliant IP spoof prot o kern/75855 adrian [libc] getpwent(3) functions on 5.3 with large passwor o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn f usb/75797 usb [sound] [regression] 5.3-STABLE(2005 1/4) detect USB h s bin/75767 [libc] [request] "fdclose" function in libc o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o docs/75711 keramida [patch] opendir(3) missing ERRORS section o kern/75710 [cue] cue0 device configuration causes kernel panic f usb/75705 usb [umass] [panic] da0 attach / Optio S4 (with backtrace) s kern/75407 net [an] an(4): no carrier after short time o bin/75378 login(1): login/wtmp/utmp not updating properly o bin/75362 mount_smbfs(8) No buffer space available o bin/75258 [patch] dd(1) has not async signal safe interrupt hand s kern/75233 [fdc] breaking fdformat /dev/fd0 resets device permiss o bin/75177 philip Bug selecting psm operation level in moused(8) o kern/75157 Cannot print to /dev/lpt0 with HP Laserjet 1005 : Devi o conf/75137 jhb [sound] add snd_* modules support to /etc/rc.d/mixer o kern/75132 jhb [puc] [patch] add support for the Davicom 56PDV PCI Mo o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula o kern/75121 Wrong behaviour of IFF_LINK2 bit in 6in6 gifs? s kern/74986 jfv [patch] sysctlize a parameter of if_em's interrupt mod o kern/74827 [fdc] Problem writing data to floppies a kern/74809 [modules] [panic] smbfs panic if multiply mounted o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o o bin/74779 Background-fsck checks one filesystem twice and omits f usb/74771 usb [umass] [hang] mounting write-protected umass device a o amd64/74747 amd64 [panic] System panic on shutdown when process will not s kern/74708 [umapfs] [panic] UMAPFS kernel panic o gnu/74654 libsupc++.a lacks necessary functions o kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5.3 o conf/74610 Hostname resolution failure causes firewall rules to s o gnu/74531 gcc doesn't link correctly if -pg specified s usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o kern/74450 [libalias] [patch] enable libalias/natd to create skip o bin/74360 [patch] ndiscvt(8) generates a driver which doesn't ma s kern/74352 NFSCLIENT and booting to an mfsroot via TFTP are mutua o kern/74281 [digi] digi(4): Digiboard PCI Xem (64-ports) detection s kern/74242 rwatson Write to fifo with no reader fails in 6.0 current o kern/74238 firewire [firewire] fw_rcv: unknown response; firewire ad-hoc w o conf/74213 darrenr [patch] Connect src/etc/periodic/security/610.ipf6deni o usb/74211 usb [umass] USB flash drive causes CAM status 0x4 on 4.10R o bin/74178 [patch] grdc(6) - scrolling does not work and "AM"/"PM f i386/74153 i386 [pst] FreeBSD 5.3 cannot boot ftom pst o bin/74127 [patch] patch(1) may misapply hunks with too little co o kern/74104 ipfw [ipfw] ipfw2/1 conflict not detected or reported, manp o i386/74044 gavin [smb] ServerWorks OSB4 SMBus interface does not detect o conf/74004 [patch] add fam support to inetd.conf o kern/73961 [fdc] floppy disk drive performance problem [new in 5. o kern/73910 ipfw [ipfw] serious bug on forwarding of packets after NAT o bin/73884 Add NetBSD's rawrite32 to install tools s kern/73823 acpi [request] acpi / power-on by timer support o conf/73786 [patch] added WARNING in spanish to stable-supfile o kern/73777 emulation [linux] [patch] linux emulation: root dir special hand o kern/73744 [lpt] printing via cups causes "Interrupt storm" warni o conf/73677 rc [patch] add support for powernow states to power_profi s bin/73617 brucec sysinstall(8): fdisk editor unmarks active partition s www/73551 www [request] fix list archive 'quoted-printable' corrupti o www/73549 brd [request] fix mail list archive navigation difficulty f kern/73538 net [bge] problem with the Broadcom BCM5788 Gigabit Ethern o gnu/73512 marcel gdb -> Abort trap (core dumped) f bin/73511 sysinstall sysinstall(8): SCSI drive install failure - RC2 s kern/73496 [request] A more flexible version of mkstemp() s kern/73492 [request] Reliable Temporary Files o kern/73484 fs [ntfs] Kernel panic when doing `ls` from the client si o bin/73422 portmap forks ad infinitum when the NIS domain name is s bin/73411 [request] ftpd(8) could set attributes to 0600 while u o bin/73410 sysinstall sysinstall(8): Sysinstall could not allocate disklabel f conf/73337 delphij [nsswitch.conf] [patch] potential invalid free o kern/73328 edwin [patch] top(1) shows NICE as -111 on processes started o kern/73313 simokawa [firewire] Maxtor Onetouch drivers hang or corrupt dat o usb/73307 usb [panic] Kernel panics on USB disconnect o kern/73289 [sym] Interrupt storm on sym0 o bin/73261 Suspending su(1) sometimes hangs s kern/73177 geom kldload geom_* causes panic due to memory exhaustion o kern/73171 imp fwohci driver stating cardbus firewire card has incorr o bin/73019 fs [ufs] fsck_ufs(8) cannot alloc 607016868 bytes for ino o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX f kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible o kern/72987 ipfw [ipfw] ipfw/dummynet pipe/queue 'queue [BYTES]KBytes ( a kern/72920 emulation [linux]: path "prefixing" is not done on unix domain s o kern/72906 [twe] twe0 idefinite wait buffer o conf/72901 [patch]: dot.profile: prevent printing when doing an s o bin/72895 rink sysinstall(8): Sysinstall generates invalid partition o bin/72875 des Some utilities used in debugging do not function prope o kern/72850 apm suspend handling partial broken with 5.3-STABLE o kern/72838 system freezes when trying to umount my digital camera s usb/72733 usb [ucom] [request] Kyocera 7135 Palm OS connection probl o conf/72592 gavin [nis] NIS Domain Master fails as client of itself o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o i386/72566 acpi ACPI, FreeBSD disables fan on Compaq Armada 1750 o bin/72501 cperciva script(1) loops after EOF is read o conf/72465 [patch] United States International keyboard layout fo o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o bin/72398 whatis(8): emulators/mtools man pages are too funky fo o bin/72355 Can't run strings(1) on a (disk) device, even if you w o conf/72277 [patch] update for /usr/share/skel o kern/72224 [agp] umass devices broken by DRM (AGP issue?) o kern/72210 darrenr ipnat problem with IP Fastforward enabled o kern/72208 panic: bio_completed can't be greater than bio_length s ports/72202 simon portaudit warns about the CVS server vulnerability whi f kern/72194 stack backtrace after wakeup from sleeping state o bin/72173 csplit(1) ver 1.9 wrong behaviour with negative offset s kern/72041 [cam] [hang] Deadlock when disk is destroyed while use o conf/71994 [patch] dot.login: login shell may unnecessarily print s kern/71965 andre TCP MSS issue in combination with ipfw fwd o conf/71952 missing past participles in /usr/share/dict/words o bin/71928 Disk quota doesn't work with numeric login s bin/71855 [patch] making kdump(1) WARNS=6 clean o kern/71833 multiple process disc access / injustice o kern/71774 fs [ntfs] NTFS cannot "see" files on a WinXP filesystem o kern/71771 [amr] Hang during heavy load with amr raid controller o bin/71749 [patch] truss -f causes circular wait when traced proc o sparc/71729 sparc64 printf in kernel thread causes panic on SPARC o bin/71671 [patch] cleanup of the usr.sbin/apmd code o bin/71667 [patch] cleanup of the usr.sbin/bootparamd code o bin/71665 [patch] cleanup of the usr.sbin/dconschat code o bin/71661 [patch] cleanup of the usr.sbin/keyserv code o bin/71631 [patch] cleanup of the usr.sbin/pppctl code o bin/71630 [patch] cleanup of the usr.sbin/pppd code o bin/71629 [patch] cleanup of the usr.sbin/pppstats code o bin/71628 [patch] cleanup of the usr.sbin/rpcbind code o bin/71625 [patch] [nis] cleanup of the usr.sbin/rpc.ypupdated co o bin/71622 [patch] sicontrol(8): cleanup of the usr.sbin/sicontro p bin/71621 [patch] sliplogin(8): cleanup of the usr.sbin/sliplogi o bin/71618 [patch] timed(8): cleanup of the usr.sbin/timed code o bin/71617 [patch] [nis] ypserv(8): cleanup of the usr.sbin/ypser o bin/71616 [patch] [nis] yp_mkdb(8): cleanup of the usr.sbin/yp_m o bin/71613 [patch] traceroute(8): cleanup of the usr.sbin/tracero o bin/71602 [patch] uninitialized "len" used instead of "slen" wit o kern/71532 Multiple SCSI-Busses are seen differently by BIOS, loa a kern/71474 net [route] route lookup does not skip interfaces marked d o kern/71469 net default route to internet magically disappears with mu o usb/71455 usb [umass] Slow USB umass performance of 5.3 o kern/71450 [de] de(4): MAC address change on 21040 "Tulip" Ethern o usb/71417 usb [ugen] Cryptoflex e-gate USB token (ugen0) communicati o usb/71416 usb [ugen] Cryptoflex e-gate USB token (ugen0) detach is n o kern/71391 [nfs] [panic] md via NFS file + mount -t ntfs: panic: o conf/71386 loader.conf: hint.apic.0.disabled="YES" doesn't work. o kern/71366 ipfw [ipfw] "ipfw fwd" sometimes rewrites destination mac a s bin/71290 des [patch] passwd(1) cannot change passwords other than N o usb/71280 usb [aue] aue0 device (linksys usb100tx) doesn't work in 1 o conf/71254 [ncurses] xterm vs. cons* termtypes or sc(4) o kern/71219 /proc/*/map dont tell file offset o gnu/71210 Update to GNU sdiff: add user-preference for merge key o kern/71198 Lack of PUC device in GENERIC kernel causes interupt l o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes o kern/71045 [rl] [vr] DHCP-Request is sets other device's ip to nu f i386/71000 i386 [boot] BTX halted when booting from CD on a machine wi o kern/70904 net [ipf] ipfilter ipnat problem with h323 proxy support o i386/70832 yongari [re] re0: watchdog timeout on Evo N1015v o stand/70813 standards [patch] ls(1) not Posix compliant o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o bin/70756 indent(1) mishandles code that is protected for c++ co f kern/70753 gavin [boot] Device for firewire hard disk not created in ti o conf/70715 [periodic] Lack of year in dates in auth.log can cause o kern/70708 [nfs] gcore/procfs not finding /proc/pid/file on repea o kern/70649 [rtc] system clock slows down when heavily loaded o bin/70600 fsck(8) throws files away when it can't grow lost+foun o bin/70536 reboot(8) -dp tries to dump when powering off f i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice o usb/70523 usb [umct] [patch] umct sending/receiving wrong characters o kern/70511 [libc] When fread(3)ing with buffering turned off, man o bin/70476 reboot(8) change, -p behavior default for halt o kern/70401 darrenr [modules] Could not load ipl.ko when no INET6 in the k o bin/70336 telnetd(8) always exits with value 1 o bin/70335 inetd(8) inconsistent syslog behavior when max childre o i386/70330 marcel Re-Open 33262? - gdb does not handle pending signals p o bin/70297 amd(8) request to make amd timeouts per-mount local o bin/70245 ru [patch] [build] Change to src/release/Makefile to aid p kern/70096 trhodes [msdosfs] [patch] full msdos file system causes corrup o bin/70002 sysinstall sysinstall(8): fails to locate FTP dirs if the OS has o kern/69989 killing process that uses snp + unloading module + lis o bin/69986 sysinstall sysinstall(8): [patch] no job control in fixit shell o o kern/69963 ipfw [ipfw] install_state warning about already existing en o bin/69942 sysinstall sysinstall(8): sysinstall changes /etc/rc.conf after i o bin/69875 [patch] mlxcontrol(8): `mlxcontrol status ' p docs/69861 trhodes [patch] usr.bin/csplit/csplit.1 does not document POSI o kern/69826 [libc] 16th group has no effect when accesing file on o kern/69825 [libc] 1st group supplied to setgroups() does not take o i386/69750 acpi Boot without ACPI failed on ASUS L5 o bin/69723 sysinstall sysinstall(8): [request] allow to continue from packag o kern/69650 [patch] make getserv* functions work with nsdispatch o bin/69398 [patch] login(1) cleartext display of password in logi f bin/69362 mbr amd(8) does not properly detect the local network sett o ports/69309 ale mysql database backup script for periodic/daily o bin/69268 [patch] Fix ndiscvt(8) to warn you if it's going to ge s i386/69218 simokawa [boot] failure: 4.10-BETA and later do not boot on Asu o bin/69164 marcel gdb(1) amd64: coredump while debugging a core file. o bin/69083 [patch] vi(1) basic modelines for contrib/nvi o kern/69066 panic: nmdm page fault when slattach on a null modem d s threa/69020 threads pthreads library leaks _gc_mutex o bin/69010 [patch] [build] Portability fixes for FreeBSD build ut o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports o kern/68978 fs [panic] [ufs] crashes with failing hard disk, loose po a kern/68905 secteam [patch] core dumps are assigned wrong ownership o kern/68889 kmacy [panic] m_copym, length > size of mbuf chain o bin/68797 [patch] cut(1): fflush after each write if an option i o bin/68727 marcel gdb(1) coredumps after recent CURRENT upgrade o kern/68690 [libc] write(2) returns wrong value when EFAULT o bin/68586 dwmalone [patch] allow syslogd(8) to forward to non-default por o kern/68458 Burning DVD causes lots of FAILURE - READ_SUBCHANNEL I o bin/68437 [patch] conscontrol(8) DEVDIR -> _PATH_DEV fix and mor o bin/68328 [patch] syslogd(8) enable configuration of extra liste s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction o conf/68108 [patch] Adding mac-address /conf selector to diskless o kern/68076 [modules] Page fault when the sequence "kldunload ucom o bin/68062 standalone repeat(1) command o bin/67943 find(1) fails when current directory is not readable b o kern/67919 imagemagicks convert image to movie conversion kills 5 o alpha/67903 alpha hw.chipset.memory: 1099511627776 - thats way to much : o kern/67830 [smp] [patch] CPU affinity problem with forked child p o bin/67723 restore(8) FreeBSD 5.x restore cannot handle other pla s alpha/67626 alpha X crashes an alpha machine, resulting reboot s kern/67580 [request] add hints for boot failures p bin/67550 [patch] tftpd(8) Add BLK_SIZE option to tftpd server s kern/67545 [nfs] NFS Diskless Mount Option Suggestion o misc/67502 cvsadm cvs-all commit message did not include all files touch p bin/67365 gabor sysinstall(8) doesn't find latinamerican keymap o conf/67328 [ppp] Usermode PPP hangs on boot when NIS configured o kern/67326 rodrigc [msdosfs] crash after attempt to mount write protected o usb/67301 usb [uftdi] [panic] RTS and system panic o bin/67231 [patch] pam_krb5 doesn't honor default flags from /etc o bin/67142 [nis] rpc.yppasswdd incorrectly throws errors about in o i386/67050 imp CardBus (PCI ?) resource allocation problem (still on o bin/66988 [patch] apm(8) check validation of the returned values o kern/66960 [fdc] [patch] filesystems not unmounted during reboot o bin/66893 [patch] [nis] rpc.yppasswdd(8): Linux NIS clients conn o bin/66830 [nis] chsh(1) ypchsh(1) do not change user information o bin/66677 mv(1) incorrectly copies somedir/.. to ./.. when it cr s ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/obj/usr/ports o usb/66547 usb [ucom] Palm Tungsten T USB does not initialize correct o docs/66505 trhodes escaping '~' and '$' characters in login.conf setenv o o stand/66357 standards make POSIX conformance problem ('sh -e' & '+' command- p bin/66350 brucec sysinstall(8): sysinstall creates a partition of subty o kern/66348 rik [cx] FR mode of cx (Cronyx Sigma) does not work for 4. s ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java ports p docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to non-existent a o kern/66270 [hang] dump(8) causes machine freeze o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/66225 net [netgraph] [patch] extend ng_eiface(4) control message a kern/66185 [twe] twe driver generates gratuitous warning on shutd o kern/66162 phk [gbde] gbde destroy error o bin/66103 ppp(8) macro HISADDR is not sticky in filters o kern/66029 [crypto] [patch] MD5 alignment problem on a TriMedia p o kern/65920 fs [nwfs] Mounted Netware filesystem behaves strange o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr s ports/65804 portmgr [PATCH] bsd.port.mk is gratuitously slow o bin/65803 gad [patch] ps(1) enhancements (posix syntax, and more) o bin/65774 randi sysinstall(8): cannot run repair disk when booted from o i386/65648 imp cardbus("TI1131") won't work on Dell Latitude CP 233XT o kern/65616 net IPSEC can't detunnel GRE packets after real ESP encryp o bin/65483 vi(1) -r crashes o kern/65448 jhb _mtx_unlock_sleep() race condition if ADAPTIVE_MUTEXES o kern/65355 [pci] [patch] TC1000 serial ports need enabling o bin/65306 obrien [patch] [build] Portability fixes for FreeBSD build ut o bin/65299 vi(1) temp path contains double / o bin/65228 [Patch] Allow rup(1) to parse hostnames from a defined o java/65054 glewis Diablo 1.3.1 JVM runs out of file descriptors at 1021 s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( a kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr o conf/64788 [nsswitch.conf] nsswitch with ldap and starting ppp on s kern/64588 [joy] [request] Extend joystick driver architecture to p kern/64556 brucec [sis] [patch] if_sis short cable fix problems with Net o bin/64327 [patch] make(1): document surprising behaviour of assi o kern/64196 [kernel] [patch] remove the arbitrary MAXSHELLCMDLEN o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/64114 [vga] [patch] bad vertical refresh for console using R o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE f usb/63837 linimon [uhid] [patch] USB: hid_is_collection() only looks for o usb/63621 usb [umass] [panic] USB MemoryStick Reader stalls/crashes o bin/63608 Add a -c option to time(1) to display csh output o www/63552 gabor Validation errors due to CAPs in attribute values o bin/63489 top(1) finger(1) segfault when using NIS groups to res o kern/63431 [rtc] motherboard going to suspend mode stops system c o docs/63215 jeff Wrong prototypes in mi_switch(9) (ref docs/24311) o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o a bin/63197 [patch] tftp(1) Bus error, core dumped o docs/63084 des Several Man-pages reference non-existant pam.conf(5) a s bin/62965 portmgr pkg_add(1) -r fails if fetching multiple packages at a o kern/62890 ups proc pointer set by fork1 can be stale in fork,rfork,v f bin/62885 des pam_radius(8) doesn't maintain multiple state fields s stand/62858 standards malloc(0) not C99 compliant s java/62837 java linux-sun-jdk14 executables hang with COMPAT_LINUX in o kern/62833 sysinstall: can't install: integer divide fault o bin/62766 systat(1) -vm does not work on diskless machines o kern/62762 bde [msdosfs] Fsync for msdos fs does not sync entries o bin/62711 kensmith sysinstall(8): installation: "Insert Next CD" Prompt i o bin/62702 sysinstall sysinstall(8): backup of /etc and /root during sysinst f kern/62468 jh panic: system crashes when serial getty enabled and se o conf/62417 luigi diskless op script failed o docs/62412 trhodes one of the diskless boot methods described in the Hand o bin/62367 brucec sysinstall(8): 5.2.1-RC installation problems a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea s usb/62257 usb [umass] [request] card reader UCR-61S2B is only half-s o kern/62102 alc obreak update o bin/62077 [sound] [patch] Make it possible to abbreviate mixer(8 o kern/62042 luigi [ipfw] ipfw can't no more reject icmp (icmptypes 8) o i386/62003 remko [loader] [patch] make /boot/loader "reboot" code same o bin/61978 delphij [patch] sync setkey(8) token.l with KAME o alpha/61973 alpha Machine Check on boot-up of AlphaServer 2100A RM o bin/61971 kinit(1) --renewable fails f kern/61960 linimon [ata] [patch] BigDrive support for PC-98 architecture o alpha/61940 sysinstall sysinstall(8): Can't disklabel new disk from FreeBSD/a o kern/61909 5.2-Current fails to notice change of CD in drive o bin/61890 sysinstall sysinstall(8): fdisk(8) uses incorrect calculations fo s kern/61810 mounts done within a chroot show up wrong and can't be a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat o kern/61733 imp panic: resource_list_release: resource entry is not bu o bin/61716 mckusick newfs(8) code and manpage are out of sync s kern/61677 Unable to open CDROM tray if boot_cdrom is in loader.c s kern/61622 Intel Pro/100 Intelligent Server Adapter unsupported N o docs/61605 doc [request] Improve documentation for i386 disk geometry s bin/61603 randi sysinstall(8): wrong geometry guessed o kern/61503 fs [smbfs] mount_smbfs does not work as non-root s kern/61497 ups [kernel] [patch] __elfN(map_insert) bug s i386/61481 [patch] a mechanism to wire io-channel-check to userla o bin/61438 randi sysinstall(8): 5.2 nfs tasks running by default after o kern/61404 silby RFC1323 timestamps with HZ > 1000 o bin/61355 login(1) does not restore terminal ownership on exit o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o conf/61289 /etc/pccard_ether: please use ifn value on pccard scri o bin/61239 [patch] bootp enhancement, places the dhcp tags into t s kern/61165 scsi [panic] kernel page fault after calling cam_send_ccb o bin/61152 randi sysinstall(8): installer refuses to mount USB-floppy o o bin/60892 [patch] added -p option to kldxref(8) to allow creatio s kern/60874 [request] auto-assign devfs ruleset numbers o bin/60834 [patch] ftpd(8) send_data()+oldway: anonymous transfer o kern/60719 ipfw [ipfw] Headerless fragments generate cryptic error mes o kern/60699 [atapicam] DVD Multidrive udma mode autosensed wrong o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I o kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load o bin/60632 sysinstall sysinstall(8): UI bug in partition label screen in sys s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/60598 scsi wire down of scsi devices conflicts with config s ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify GnuPG signat o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o o docs/60529 ume resolver(5) man page is badly out of date o misc/60503 [modules] small error in modules installation f bin/60350 kensmith sysinstall(8): in Choose Distributions screen, "All" d o bin/60349 scottl sysinstall(8): 5.2-RC1 cannot do NFS installation p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp s kern/60293 net [patch] FreeBSD arp poison patch f kern/60235 phk some /dev-entries missing for newly auto-added disks o kern/60174 marcel debugging a kernel module in load/attach routines o kern/60089 scottl [udf] UDF filesystem appends garbage to files o gnu/59971 peter assertion "strncmp (repository, current_parsed_root->d o kern/59912 alc mremap() implementation lacking o kern/59903 [pci] [patch] "pci_find_device" returns [only/at] the o docs/59835 doc ipfw(8) man page does not warn about accepted but mean o bin/59777 [patch] ftpd(8)/FreeBSD 5: potential username enumerat o bin/59775 [patch] ftpd(8)/FreeBSD 5: incorrect reply for "unimpl o bin/59774 [patch] ftpd(8)/FreeBSD 5: syslog facility may be chan o bin/59772 [patch] ftpd(8)/FreeBSD 5: support for tcp_wrappers in a kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI o docs/59735 kensmith [patch] Adding a reference to Icelandic Rsync to mirro o bin/59708 sysinstall sysinstall(8): [patch] add sSMTP support for Mail sele o usb/59698 usb [keyboard] [patch] Rework of ukbd HID to AT code trans s bin/59638 des passwd(1) does not use PAM to change the password o conf/59600 [patch] Improved us.emacs.kbd mapping o bin/59564 [patch] from(1) add option (-S) to also display subjec o docs/59477 doc Outdated Info Documents at http://docs.freebsd.org/inf o www/59307 remko [patch] xml/xsl'ify & update publications page o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget s ports/59254 linimon ports that write something after bsd.port.mk o docs/59240 blackend [patch] handbook update: linux MATLAB o bin/59220 obrien [patch] systat(1) device select (:only) broken o kern/59183 imp [wi] wi problems with wi_cmd o docs/59044 doc [patch] doc.docbook.mk does not properly handle a sour p bin/58970 truss(1) coredumps for the no significant reason o kern/58967 Kernel kills processes in spite of cputime parameter i o kern/58941 rwatson [acl] acl under ufs2 doesn't handle disk corruption, p o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at p kern/58687 deischen [libc] [patch] gethostbyname(3) leaks kqueue file desc o bin/58483 [patch] mount(8): allow type special or node relative f bin/58390 jh bsdlabel(8) fails to display an error message if the l o kern/58373 mckusick [ufs] ufs inconsistency between 4.9-RC and 5.1 o bin/58293 vi(1) replace with CR (ASCII 13) doesn't work o kern/58154 mckusick Snapshots prevent disk sync on shutdown o bin/58012 [patch] tftpd(8) Multihomed tftpd enhancement a stand/57911 fnmatch ("[[:alpha:]]","x", FNM_PATHNAME) returns FNM_ o kern/57832 scottl [ips] softdep_deallocate_dependencies: dangling deps o bin/57715 [patch] tcopy(1) enhancement a kern/57696 [nfs] NFS client readdir terminates prematurely if ren o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets p bin/57630 lptcontrol(8) gives "device busy" if device turned off o kern/57603 [bktr] bktr driver: freeze on SMP machine o bin/57554 jilles sh(1) incorrect handling of quoted parameter expansion o kern/57522 [patch] New PID allocater algorithm from NetBSD o conf/57517 [patch] add parameter for /etc/periodic/daily/210.back s ports/57498 HEIMDAL_HOME should be defined in src or ports Makefil o misc/57464 brucec [boot] loader(8) seems to confuse files [4.7] s bin/57407 [patch] Better NTP support for dhclient(8) and friends s kern/57398 scsi [mly] Current fails to install on mly(4) based RAID di o kern/57350 [panic] using old monocrome printer port (IO_LPT3 / 0x o docs/57298 blackend [patch] add using compact flash cards info to handbook o stand/57295 harti make's handling of MAKEFLAGS is not POSIX conform s bin/57255 usb [patch] usbd(8) and multi-function devices s amd64/57250 kmacy [amd64] [patch] Broken PTRACE_GETFPREGS and PTRACE_SET o kern/57206 [panic] softdep_lock locks against itself, causing ker o bin/57089 w(1) does not honor the -n option s bin/57088 [cam] [patch] for a possible fd leak in libcam.c o bin/57045 trpt(8) option -t was disabled on -current s bin/57018 [patch] convert growfs(8) to use libufs(3) o conf/56934 rc [patch] rc.firewall rules for natd expect an interface s kern/56720 [libc] [request] UNICODE support in Resolver o kern/56664 bad file# in MTIO status buffer after MTEOD until MTRE o bin/56648 [patch] enable rcorder(8) to use a directory for locat o stand/56476 standards [patch] cd9660 unicode support simple hack s kern/56461 [rpc] FreeBSD client rpc.lockd incompatible with Linux o kern/56451 des [linprocfs] [patch] /compat/linux/proc/cpuinfo gives w o bin/56447 [patch] extend mt(1) command for AIT-2 tape drives o kern/56339 select() call (poll() too) hangs, yet call works perfe o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 o bin/56249 obrien ftpd(8) has two bugs (motd, munged utmp) o kern/56245 [bktr] Distorted and choppy video with bktr-driver on a kern/56233 net IPsec tunnel (ESP) over IPv6: MTU computation is wrong o kern/56031 luigi [ipfw] ipfw hangs on every invocation o kern/56024 acpi ACPI suspend drains battery while in S3 o kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw s bin/55965 sshd(8) problems with HostBasedAuthentication and NSS o gnu/55936 bugmeister send-pr(1) does not set mail envelope from o docs/55883 kensmith [patch] handbook advanced-networking/chapter.sgml s ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to use ${PORTSDIR s kern/55802 [request] Make kernel.GENERIC suitable for diskless us o kern/55793 [dc] Flaky behavior of if_dc when initializing a LNE10 o i386/55661 acpi ACPI suspend/resume problem on ARMADA M700 o kern/55617 fs [smbfs] Accessing an nsmb-mounted drive via a smb expo o i386/55603 [mly] unable to reboot when system runs from Mylex A35 o bin/55546 cdcontrol(1) play tr m:s.f interface is partially brok a kern/55542 andre [de] [patch] discard oversize frame (ether type 800 fl o bin/55539 [patch] Parse fstab(5) with spaces in path names o bin/55457 marcel GDB gets confused debugging libc_r threaded processes. o kern/55448 dbm(3): dbm_nextkey() misbehaves after dbm_store() in o misc/55387 [build] [patch] users LD_LIBRARY_PATH can interfere wi f bin/55349 mbr amd(8) mixes up symlinks in its virtual filesystem. p bin/55346 jilles sh(1) remembers terminated jobs too long p kern/55018 andre [digi] [patch] Digiboard PC/Xem fails to initialize wh o conf/55015 [patch] 700.kernelmsg: Security check output enhacemen o kern/54891 [libalias] [patch] libalias(3)/natd(8) and exporting c o kern/54884 mckusick FreeBSD -stable and -current free space handling for U o bin/54784 find(1) -ls wastes space o i386/54756 acpi ACPI suspend/resume problem on CF-W2 laptop s docs/54752 doc bus_dma explained in ISA section in Handbook: should b o bin/54683 sh(1) redundant history o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o bin/54594 [patch] make(1) apply regexps to the entire variable - o java/54463 glewis Apparent bug in jdk13 o docs/54461 kensmith [patch] Possible additions to Handbook (Basics and Use s bin/54446 portmgr [patch] pkg_delete(1) doesn't honour symlinks, portupg o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o stand/54410 standards one-true-awk not POSIX compliant (no extended REs) o kern/54383 net [nfs] [patch] NFS root configurations without dynamic o kern/54309 silby TCP Packet of 64K-1 crashes FreeBSD4.8 o conf/54170 [patch] error from weekly periodic script 330.catman o bin/54141 wrong behavour of cu(1) o bin/54097 [nis] Non-local yppasswd(1) -d broken in 5.1-CURRENT o docs/53751 doc bus_dma(9) incorrectly documents BUS_DMA_ALLOCNOW s stand/53682 [feature request] [patch] add fuser(1) utility o docs/53596 doc Updates to mt(1) manual page o bin/53560 logging domain names in wtmp is retarded o bin/53520 su(1) to another user does not update utmp o kern/53506 [partial patch] support gzipped modules o bin/53475 cp(1) copies files in reverse order to destination o kern/53447 alfred [kernel] poll(2) semantics differ from susV3/POSIX o bin/53341 sysinstall sysinstall(8): [patch] dump frequency in sysinstall is o bin/53288 edwin tail(1) will sometimes display more lines than it is t o docs/53271 doc bus_dma(9) fails to document alignment restrictions f kern/53137 jh [ffs] [panic] background fscking causing ffs_valloc pa o bin/53131 randi sysinstall(8): "ALL" could not turn check BOXes ON at s bin/52826 portmgr [request] Adding Timestamps to pkg info upon pkg_add(1 s ports/52765 portmgr [patch] Uncompressing manual pages may fail due too "a o bin/52743 ppp(8) /etc/ppp/ppp.linkup instability issues o kern/52725 [patch] installincludes for kmods s ports/52706 portmgr [patch] bsd.port.mk issues warning if a site is explic o kern/52638 scsi [panic] SCSI U320 on SMP server won't run faster than o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx o bin/52517 murray New functionality for mail(1) o bin/52469 ppp(8) Multiple devices using UDP don't work. o kern/52445 [mfs] panic when mounting floppy on MFS filesystem o bin/52343 [nis] login(1) problem on the server o misc/52256 embedded [picobsd] picobsd build script does not read in user/s s docs/52071 delphij [patch] Add more information about soft updates into a s usb/52026 usb [usb] [request] umass driver support for InSystem ISD2 o kern/51982 remko [sio] sio1: interrupt-level buffer overflows s usb/51958 usb [urio] [patch] update for urio driver o kern/51685 fs [hang] Unbounded inode allocation causes kernel to loc o bin/51628 [nis] ypmatch doesn't match keys in legacy NIS servers o kern/51583 fs [nullfs] [patch] allow to work with devices and socket o docs/51480 dds Multiple undefined references in the FreeBSD manual pa s kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o kern/51274 ipfw [ipfw] [patch] ipfw2 create dynamic rules with parent o ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILES o bin/51148 [patch] Control the cache size for pwd_mkdb(8) to spee s bin/51137 [patch] config(8) should check if a scheduler is selec s www/51135 www Problems with the mailing-lists search interface p docs/51133 murray RSH environmental variable not described in rcmd(3) o kern/51120 MSGBUF_SIZE doesn't work in makefiles o kern/51009 [aue] [patch] buggy aue driver fixed. o bin/50949 mtree(8) doesn't honor the -P when checking/changing o s kern/50827 [kernel] [patch] [request] add sane record locking o docs/50773 jmg [patch] NFS problems by jumbo frames to mention in bge a kern/50687 jmg ioctl(.., CDIOCCAPABILITY, ...) always reports "Inappr p bin/50656 cp(1) - wrong error on copying of multiple files o bin/50569 sh(1) doesn't handles ${HOME}/.profile correctly o kern/50526 [kernel] [patch] update to #! line termination o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o bin/50300 [patch] make the loader(8) use of terminal-control seq o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation o bin/50118 edwin calendar(1) dumps core if there is ./calendar/ o misc/50106 [build] [patch] make 'make release' more flexible behi s threa/49087 threads Signals lost in programs linked with libc_r o kern/49039 [sio] [patch] add support for RS485 hardware where dir a bin/49023 gad [patch] to lpd(8) (printjob.c) to pass source filename o bin/48989 brucec sysinstall(8): Sysinstall's partition editor gets con f kern/48976 gavin [modules] nwfs.ko oddity s bin/48962 des [patch] modify fetch(1) to allow bandwidth limiting o kern/48894 [nfs] Suggested improvements to the NFS read-ahead heu s threa/48856 threads Setting SIGCHLD to SIG_IGN still leaves zombies under o kern/48741 darrenr ipnat corrupts packets on gre interface with rul p bin/48730 obrien [patch] burncd(8) does not handle signals and causes d o alpha/48676 alpha Changing the baud rate of serial consoles for Alpha sy o gnu/48638 [libdialog] [patch] some bug fixes in libdialog o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/48471 pjd [jail] [patch] [request] private IPC for every jail o conf/48444 [patch] security.functions: count connection attempts o bin/48443 mtm [patch] periodic(8) executes too many files o kern/48425 Tape drive EOT handling problems in 4.7 f kern/48393 mckusick [ufs] ufs2 snapshot code bugs s bin/48341 brucec sysinstall(8): changes the active slice flag when it p o conf/48325 [patch] /etc/periodic/security/100.chksetuid doesn't w o bin/48309 ppp(8) pppoe connections fail to establish if throughp s kern/48279 [bktr] Brooktre878 may cause freeze o conf/48195 /var/db/mounttab error on diskless boot o bin/48183 marcel [patch] gdb(1) on a core(5)-file from a threaded proce o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o conf/48133 [patch] /etc/rc: improved vi recovery notification o docs/48101 doc [patch] add documentation on the fixit disk to the FAQ p docs/47818 trhodes [patch] ln(1) manpage is confusing o bin/47815 [patch] stty(1) -all should work. s kern/47813 [gre] pseudo-device gre(4) doesn't appear to work with o conf/47596 [periodic] daily security run complains if timezone ch o docs/47594 remko [patch] passwd(5) incorrectly states allowed username o bin/47576 edwin [patch] factor(6)ing of negative numbers o conf/47566 [vinum] [patch] add vinum status verification to perio o bin/47540 [patch] Make natd(8) configurable in running state wit f bin/47384 brucec sysinstall(8): sysinstall ignores intended destination o kern/47286 [request] make device probing verbose when using boot o kern/46973 [syscons] [patch] [request] syscons virtual terminals s conf/46913 darrenr ipf denied packets of security run output contains non o bin/46905 sysinstall sysinstall(8): FreeBSD 5.x cannot be installed from mu o bin/46888 gad [patch] Add script run hook to newsyslog(8) o kern/46866 [libc] NIS-based getpwent(3) falsely returns NULL o bin/46758 [patch] moused(8) enhancements s conf/46746 No way to set link addresses through rc.conf o kern/46694 imp Getting DUP packets when in Promiscous mode on wi0 a kern/46647 silby Failure to initialize MII on 3Com NIC results in panic o conf/46453 [internationalization] cons25l2, ISO8859-2 and console o stand/46441 stefanf /bin/sh does not do parameter expansion in PS1, PS2, P o conf/46409 Certain periodic scripts check broken NFS mounts. o bin/46352 [patch] login(1) open file descriptors and signal hand o bin/46328 gad [patch] patch for lpd(8) f bin/46235 brucec sysinstall(8): NTP servers for Finland require updatin o bin/46163 gad lpc(8) problem. Only root can modify despite man page o kern/46159 ipfw [ipfw] [patch] [request] ipfw dynamic rules lifetime f o stand/46119 standards Priority problems for SCHED_OTHER using pthreads o conf/46062 remko Remove skel from BSD.root.dist. s kern/46036 [RFE] select is unsuitable for implementing a periodic o bin/45990 dwmalone top(1) dumps core if specific errors in password file o kern/45896 dwmalone setnetgrent(3) should return error code o bin/45830 [kerberos] KDC has problems when listening to IPv6 and f i386/45773 yongari [bge] Softboot causes autoconf failure on Broadcom 570 o kern/45729 [libexec] [patch] make rbootd transfer the default fil o conf/45704 [patch] request to change cp866b font to cp866 o bin/45608 randi sysinstall(8): install should config all ether devices s kern/45568 gibbs [ahc] ahc(A19160) pci parity error o kern/45558 trhodes [msdosfs] mdconfig and msdosfs make fs writes hang s bin/45547 [patch] make burncd(8) handle .wav files. o bin/45529 gcooper [patch] hexdump(1) core-dumps with certain args o i386/45525 imp Dell Inspiron 7000 does not recognize PC-CARDs after r o kern/45373 mckusick softupdate / fs damaged after loss of power / CG 8: Ba o bin/45333 [patch] New option -r for chown(8) and chgrp(1) o docs/45303 remko Bug in PDF DocBook rendering o bin/45272 dump(8) / restore(8) problem o conf/45226 rc [patch] Fix for rc.network, ppp-user annoyance o conf/45222 [patch] daily rejected mail hosts report too long p bin/45193 [patch] truss(1) can't truss itself p gnu/45168 Buffer overflow in /usr/bin/dialog o docs/45011 trhodes [patch] style(9): '->' and '.' don't require spaces o gnu/44984 bugmeister [patch] send-pr(1) can use environmental variable $FRO o bin/44915 randi sysinstall(8): 'choose installation media' choose CD-R o bin/44894 markm telnet(1): as a local non-root user and remote it's po o conf/44717 [patch] update login.conf and unify login capabilities o kern/44587 scsi dev/dpt/dpt.h is missing defines required for DPT_HAND o kern/44580 [nfs] NFS updates file access time when file is modifi o kern/44578 [nis] getnetgrent fails to read NIS netgroup map o gnu/44564 peter [patch] Aborted cvs session causes an endless loop in o docs/44519 obrien ftpd.conf(5) contains references to ftpd(8) when it is s bin/44518 yar ftpd(8) does not show OPIE OTP challenge o kern/44372 roberto some kernel options prevent NTP clock synchronization o kern/44365 [headers] [patch] introduce ulong and unchar types o conf/44286 roberto /etc/defaults/rc.conf uses the obsolete ntpdate o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o bin/44212 [request] Unify 'recursive' options -r and -R o kern/44202 [rp] [patch] -stable rp driver does not work with mult o www/44181 re www "Release Information" organization o conf/44170 rc [patch] Add ability to run multiple pppoed(8) on start s bin/44122 ppp(8) tun0 gets a second ip adress after a disconnect o docs/44034 trhodes Multiple sysctl variables are not documented o java/43924 glewis writing from JAVA to a pipe sometimes hangs o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i o docs/43823 doc [patch] update to environ(7) manpage o bin/43819 [patch] changed truss(1) output for utrace calls o kern/43716 [puc] [patch] puc driver does not recognize Lava Dual- o kern/43625 imp [wi] wi(4) driver hangs after long data transfers o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl o kern/43611 [crypto] [patch] static-ize some symbols in sys/crypto o kern/43592 mktime(3) rejects dates at the start of daylight savin o bin/43582 [patch] passwd(1) fails on nonexistent users o kern/43577 [kernel] [patch] [request] new kernel option SHUTDOWN_ o kern/43576 imp Problem with wi driver and Lucent Orinoco Silver wirel o kern/43501 getpwnam(3), getpwuid fail when linking against Berkle o conf/43500 [patch] rc.syscons "allscreens" improvements s bin/43497 mount(8): mount -t nfs -> crunchgen incompatible o docs/43470 blackend solid-state article out of date (x109). o bin/43434 [patch] new option to dmesg(8) which allows to display o bin/43368 portmgr pkg_create(1) fails if target directory does not exist o bin/43367 incorrect report from who(1) after 'shutdown now' from a i386/43366 cy Cannot format media in USB floppy devices o kern/43355 idad driver will work if logical drives dont start at o bin/43337 des [patch] fetch(1) -s fails if -4 or possibly other opti o kern/42983 imp wi0 sporadically freezes the system for 1-2 seconds o bin/42974 [patch] syslogd(8): add ISO 8601 date format option o kern/42956 [libc] dlclose gives "invalid shared object handle" wh f kern/42801 jh [hang] FreeBSD freezes when opening cuaa0 with a motor o kern/42728 embedded [picobsd] many problems in src/usr.sbin/ppp/* after c o gnu/42726 cvsadm cvs -R pserver & val-tags: story continues o bin/42658 markm recompile telnetd(8) and log NULL ip in /var/wtmp o kern/42621 imp Dell Inspiron 5000e hangs when using Orinoco or Cisco o kern/42461 mdodd if_wi_pci.c,if_wi_pccard.c lack device_resume/device_s o kern/42442 problem in idlequeue/debugging mode ? o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42422 [libc] [patch] dbm_delete returns -1 instead of 1 when o bin/42407 ppp(8) IPV6CP fails o kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa o kern/42386 [libkvm] [patch] cleaning code from warnings in libkvm o bin/42336 [patch] ISO-fication of /usr/src/contrib/tcp_wrappers: o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o kern/42217 [libdisk] libdisk segfaults with 1024 bytes/sector dis o bin/42162 randi sysinstall(8): after restart, installation crashes, md o bin/42093 [nis] ypbind(8) hangs on NIC with the lowest scopeid o kern/42089 phk ntp_gettime returns time in wrong scale o bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports negative Ipkt o bin/42022 randi sysinstall(8): non-interactive mode prompts when only o bin/42018 portmgr pkg_info(1) with PKG_PATH searches through tarred pkgs s bin/42004 mpp [quotas] quota is still IPv4 only, and not INET indepe o bin/41949 sysinstall sysinstall(8): sysinstall sorts /etc/rc.conf during ne a bin/41947 gcooper [patch] hexdump(1) unprintable ASCII enhancement o docs/41919 blackend MINI kernel for bootfloppy (Handbook p.342) contains e o docs/41879 hrs [patch] cleanup to DOCROOT/share/sgml/freebsd.dsl o bin/41850 sysinstall sysinstall(8): sysinstall fails to create root filesys o docs/41824 murray [patch] LANG is not documented in setlocale(3) o bin/41817 [patch] pw(8): pw groupshow doesn't include the login s bin/41647 net ifconfig(8) doesn't accept lladdr along with inet addr o kern/41632 luigi bridging when one interface has no carrier a bin/41583 [patch] mtree(8) assorted mtree bugs p stand/41576 standards ln(1): replacing old dir-symlinks o bin/41556 obrien [patch] wtmp patch for ftpd(8) o kern/41543 emulation [patch] [request] easier wine/w23 support o bin/41526 mount(8) symlinked mount points get mounted more than o bin/41410 stefanf sh(1) bug on expanding $? in here-documents o i386/41364 imp [pccard] NewMedia "Bus Toaster" SCSI card w/ Advansys o kern/41307 [libalias] [patch] logging of links lifecycle (add/del o bin/41297 mp tcsh(1)/csh(1) backquote/braces expansion bug o bin/41271 [patch] non-suid crontab(1) o conf/41242 periodic scripts make unwarranted assumptions about PA o kern/41216 [nfs] Get "NFS append race" error o kern/41215 [keyboard] console revert back to kbd0 (AT) after KVM o bin/41213 top(1) blocks if NIS-related entries in passwd(5) are o bin/41190 [patch] sed(1) report the { linenum instead of EOF lin s misc/41179 [request] LD_LIBRARY_PATH security checks o bin/41159 [patch] new sed(1) -c option to allow ; as a separator o docs/41089 doc pax(1) -B option does not mention interaction with -z o usb/40948 usb [umass] [request] USB HP CDW8200 does not work o kern/40895 scsi wierd kernel / device driver bug o conf/40777 [patch] disktab does not support 2.88MB floppies s threa/40671 threads pthread_cancel doesn't remove thread from condition qu o bin/40597 [patch] add fdisk(8) ability of showing extended parti o bin/40572 vipw(8) prints silly message if $EDITOR fails o docs/40423 doc Keyboard(4)'s definition of parameters to GETFKEY/SETF o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > a bin/40282 [patch] kill(1) has bad error checking for command lin f bin/40260 sysinstall sysinstall(8): hang when detecting devices (No CD/DVD o bin/40215 [nis] NIS host search not terminate o kern/40206 Can not assign alias to any POINTOPOINT interface o gnu/40057 bugmeister send-pr -a flag does not work with -f s kern/40021 [build] [patch] use ld(1) to build kernel with linked- o kern/40017 [patch] allows config(8) to specify config metadata di o conf/39976 vi recovery halting boot process s kern/39937 net ipstealth issue o kern/39928 imp [wi] wi0 timeouts and hangs the system while sending d s threa/39922 threads [threads] [patch] Threaded applications executed with o bin/39849 restore(8) fails to overwrite files with schg flag set o kern/39681 [sysctl] [patch] add hidden kernel boot tunables to sy o ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DIR s conf/39580 sysinstall sysinstall(8): [request] more secure mount options o kern/39527 dwmalone getcwd() and unreadable parent directory o conf/39505 [patch] automate BUILDNAME variable for releases o bin/39463 mtm [patch] Add several options to fingerd(8) o bin/39439 tcopy(1) will not duplicate tapes with block size larg o kern/39388 scsi ncr/sym drivers fail with 53c810 and more than 256MB m o kern/39329 [mount] '..' at mountpoint is subject to the permissio o stand/39256 standards snprintf/vsnprintf aren't POSIX-conformant for strings o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o docs/38982 doc [patch] developers-handbook/Jail fix o bin/38940 [request] an option to *stat to allow supressing of he o misc/38937 delay between tracks in digital audio dumps from CD wi o bin/38854 brucec sysinstall(8): resetting during setup causes the targe o kern/38749 kientzle Diskless booting fails with some DHCP servers (no root s kern/38730 philip Memorex scrollpro mouse is not fully functional o bin/38727 [patch] mptable(1) should complain about garbage argum o kern/38626 luigi dummynet/traffic shaper: RED: max_th and min_th are li o bin/38610 randi sysinstall(8): should be able to mount ISO images on D s bin/38609 brucec sysinstall(8): [request] sysinstall should know the si s ports/38593 portmgr [request] Third level ports o docs/38556 doc EPS file of beastie, as addition to existing examples a kern/38554 net [patch] changing interface ipaddress doesn't seem to w o bin/38478 brucec sysinstall(8): In Choose Distributions screen, it's di s kern/38347 [libutil] [patch] [request] new library function abs2r o bin/38168 [patch] [request] installing curses-based versions of o bin/38057 brucec sysinstall(8): "install" document doesn't display corr o bin/38056 sysinstall sysinstall(8): User (creation)'s "Member groups" item o bin/38055 brucec sysinstall(8): Groups (creation) item should be before o alpha/38031 alpha osf1.ko not loaded during boot-time of linux-emu enabl o gnu/37910 bugmeister [patch] make send-pr(1) respect &'s in /etc/{master.}p o bin/37844 [patch] [build] make knob to not install progs with su o docs/37719 kensmith [request] Detail VOP_ naming in a relevant man-page o bin/37710 brucec sysinstall(8): LAN interface in wrong state after atte s threa/37676 threads libc_r: msgsnd(), msgrcv(), pread(), pwrite() need wra o bin/37672 pw(8) prints warnings after successful NIS map updates o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o kern/37589 imp Kernel panics upon resume from zzz on my IBM ThinkPad o conf/37569 [patch] Extend fstab(5) format to allow for spaces in o kern/37555 [kernel] [patch] vnode flags appear to be changed in n o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o i386/37523 davidxu [i386] [patch] lock for bios16 call and vm86call o bin/37442 [patch] sleep(1) to support time multipliers s kern/37441 davidxu [isa] [patch] ISA PNP parse problem o bin/37437 [patch] [request] Add HTTP-style support to vis(1)/unv o kern/37326 [bktr] smbus/bktr crash when omitting "device iicsmb" o bin/37083 [patch] [request] small improvement to talk(1): add cl o bin/37013 [patch] ls(1) directory name output trailing slash dup o kern/36952 ldd comand of linux does not work o kern/36916 randi [libdisk] [patch] DOS active partition flag lost in li o kern/36911 [ata] ATA cannot be disabled with hints or through BIO o kern/36902 [libc] [patch] proposed new format code %N for strftim s ports/36901 glewis WITHOUT_X11 Knob for port java/jdk13 s bin/36786 make ps(1) use 24-hour time by default s bin/36740 make ps(1) obey locale (particularly for times) o docs/36724 darrenr ipnat(5) manpage grammar is incomplete and inconsisten o kern/36626 login_cap(3) incorrectly claims that all resources fre o kern/36566 fs [smbfs] System reboot with dead smb mount and umount o bin/36556 [patch] regular expressions for tcpwrappers o bin/36553 gad [patch] [request] Two new features in newsyslog(8) s gnu/36460 cu(1) program does not work very well. a kern/36451 [bktr] [patch] Japan IF frequency is incorrect f docs/36432 gabor Proposal for doc/share/mk: make folded books using psu o kern/36415 [bktr] [patch] driver incorrectly handles the setting o bin/36385 luigi crunchgen(1) does not handle Makefiles with includes p o bin/36374 [patch] apmd(8): fix core dumps, other improvements o bin/36262 [patch] Fixed rusers(1) idle-time reporting to use min o kern/36170 [an] [patch] an(4) does an_init() even if interface is o bin/36143 [patch] moused(8): add dynamic (non linear) mouse acce a bin/36110 dmesg(8) output corrupt if /dev/console is busy o bin/35886 [patch] pax(1) enhancement: custom time format for lis o gnu/35878 /usr/bin/strip resets ABI type to FreeBSD o kern/35774 [libutil] logwtmp: Suboptimal auditing possibilities f o bin/35769 w(1) does not correctly interpret X sessions o bin/35717 which(1) returns wrong exit status for multiple argum s docs/35678 doc docproj Makefiles for web are broken for paths with sp o kern/35669 [nfs] NFSROOT breaks without a gateway o docs/35652 trhodes bsd.README seriously obsolete o bin/35568 make(1) declares target out of date, but $? is empty o conf/35545 [patch] enhanced periodic scripts: 100.clean-disks, 10 o misc/35542 bde [build] [patch] BDECFLAGS needs -U__STRICT_ANSI__ o kern/35442 net [sis] [patch] Problem transmitting runts in if_sis dri o kern/35429 select(2)/poll(2)/kevent(2) can't/don't notice lost co o bin/35400 randi sysinstall(8): sysinstall could improve manipulation o o kern/35399 poll(2) botches revents on dropped socket connections o kern/35396 poll(2) doesn't set POLLERR for failed connect(2) atte o kern/35377 process gets unkillable (-9) in "ttywai" state o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o kern/35234 scsi World access to /dev/pass? (for scanner) requires acce o bin/35214 obrien dump(8) program hangs while exiting o bin/35113 [patch] grdc(6) enhancement: countdown timer mode o bin/35109 edwin [patch] morse(6) add ability to decode morse code o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/34811 sh(1) "jobs" is not pipeable o bin/34788 dwmalone dmesg(8) issues with console output o bin/34728 DHCP hostname set as Hexadecimal string o kern/34665 net [ipf] [hang] ipfilter rcmd proxy "hangs". o bin/34628 portmgr [patch] pkg_add(1) pkg-routines ignore the recorded md s threa/34536 threads accept() blocks other threads o kern/34470 bde Modem gets sio1 interrupt-level buffer overflows' o bin/34412 [patch] tftp(1) will still try and receive traffic eve o bin/34309 gad lpd(8) does not garantie that controlfiles begin with o bin/34270 man(1) -k could be used to execute any command. o docs/34239 trhodes tunefs(8) man page doesn't describe arguments. s bin/34171 yar ftpd(8) indiscrete about unprivileged user accounts o bin/34146 newfs(8) defaults and vfs.usermount=1 tug at one anoth o gnu/34128 sdiff "e" doesn't work with some editors o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( o kern/33834 strptime(3) is misleading o bin/33809 mux [patch] mount_nfs(8) has trouble with embedded ':' in o bin/33774 [patch] for killall(1) a bin/33661 PAP AuthAck/AuthNak parsing problem in pppd(8) s docs/33589 doc [patch] to doc.docbook.mk to post process .tex files. o kern/33464 fs [ufs] soft update inconsistencies after system crash o kern/33203 [nfs] "got bad cookie" errors on NFS client o bin/33182 marcel gdb(1) seg faults when given handle SIGALRM nopass for o bin/33066 kensmith sysinstall(8): does not write to new disks as expected o bin/32828 jail [jail] w(1) incorrectly handles stale utmp slots with o kern/32812 [bktr] bktr driver missing tuner for eeprom detection. o bin/32808 dwmalone [patch] tcpd.h lacks prototype for hosts_ctl o bin/32667 systat(1) waste too much time reading input o bin/32619 des libfetch does not use RFC 1738's definiton of ftp: URL o bin/32501 maxim quot(8) is stupid regarding the filesystem option a bin/32411 shutdown(8) absolute-time handling could be more usefu a bin/32375 sysinstall sysinstall(8): sysinstall doesn't respect User generat o bin/32374 vi(1) -r doesn't work, file contained unexpected binar s threa/32295 threads [libc_r] [patch] pthread(3) dont dequeue signals s conf/32108 Proposed Firewall (IPv4) configuration script o bin/31987 [patch] allow dump(8) to notify operators by mail(1) o bin/31985 New /etc/remote flag for tip(1) to append LF to CR o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/31940 kmacy ip queue length too short o bin/31933 pw(8) can interpret numeric name as userid during user o kern/31906 [libc] No method available to unwind atexit(3) stack w o kern/31890 [syscons] [patch] new syscons font o gnu/31772 [patch] New option in dialog(1) o kern/31708 VM system / fsync / flushing delayed indefinitely? s kern/31686 andre Problem with the timestamp option when flag equals zer o kern/31647 net [libc] socket calls can return undocumented EINVAL o bin/31588 change request to allow mount(8) to set the MNT_IGNORE o bin/31387 mailwrapper(8): When getuid(2)=0, mailwrapper should d o kern/31380 [nfs] NFS rootfs mount failure message too cryptic o bin/31363 brucec sysinstall(8): "partition editor" silently corrects pa s bin/31304 [patch] fix crunchgen(1) to work with more contrib-kin o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk o bin/31034 dwmalone regularly add original address logging for tcpwrappers o conf/30938 [patch] Improving behavior of /etc/periodic/daily/110. o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem o bin/30863 bootpd(8) dovend.c Win95 compatibility improvement and o bin/30854 bootpd(8) bootpgw change - skip ARP modifications by o o conf/30812 [patch] giant termcap database update a bin/30737 brucec sysinstall(8): sysinstall leaks file descriptors on re o bin/30654 gad [patch] Added ability for newsyslog(8) to archive logs o conf/30590 /etc/hosts.equiv and ~/.rhosts interaction violates PO o bin/30542 [patch] add -q option to shut up killall(1) o bin/30517 randi sysinstall(8): using sysinstall with install.cfg has n s threa/30464 threads pthread mutex attributes -- pshared o bin/30424 Generalization of vipw(8) to lock pwdb while being edi o conf/30399 brueffer [bsd.cpu.mk] [patch] Have Fortran use the CPUTYPE vari o bin/30360 vmstat(8) returns impossible data o kern/30321 [patch] strftime(3) '%s' format does not work properly s i386/30206 mdodd [boot] PS/2 server 85 can't boot kern.flp o kern/30186 net [libc] getaddrinfo(3) does not handle incorrect servna o kern/30052 [dc] [patch] dc driver queues outgoing pkts indefinite a docs/30008 doc [patch] French softupdates document should be translat o bin/29903 [nis] ypbind(8) loses connection to NIS master and nev o bin/29897 des [patch] pam_unix(8) loginclass passwd_prompt p bin/29893 kensmith sysinstall(8): suggestions for 4.4 sysinstall o bin/29808 [nis] ypserv(8) dumps core in yp_find_db o kern/29698 emulation [linux] [patch] linux ipcs doesn'work o bin/29516 markm telnet(1) from an non FreeBSD host still uses /etc/tty s kern/29423 [request] [patch] new feature: kernel security hooks i o bin/29375 brucec sysinstall(8): disk editor gets confused by slices tha o bin/29363 gad [patch] newsyslog(8) can support time as extension o kern/29355 mux [kernel] [patch] add lchflags support s bin/29292 [patch] addition to burncd(8) for specific handling of a bin/29253 natd(8) forgets about udp connections o bin/29062 markm [libkrb] krb4 and krb5 multiply defined version symbol s i386/28975 [rp] RocketPort problems s kern/28840 gibbs [cam] Possible interrupt masking trouble in sys/cam/ca o bin/28798 mail(1) with a pager (more) requires fg/Ctrl-Z/fg to r o bin/28789 [patch] last(1) does not filter for uucp connects o bin/28620 ru [patch] install(1) has no way to pass options to strip o bin/28424 remko mtree(8) fails to report directory hierarchy mismatch o bin/28364 [patch] flex(1) generated files fail to compile cleanl o conf/28236 [patch] iso-8859-1_to_cp437.scm doesn't contain some u a bin/28223 remko su(1) doesn't look at login.conf all the time o bin/27972 losing information with talk(1) a conf/27896 Error in /etc/exports invalidates entire line, not jus o kern/27835 standards [libc] execve() doesn't conform to execve(2) spec in s o bin/27829 pax(1) uid/gid cache is read-only o bin/27687 fsck(8) wrapper is not properly passing options to fsc o kern/27660 Kernel does not return error if adding duplicate addre o docs/27605 doc [patch] Cross-document references () o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c o kern/27403 [lpt] lpt driver doesn't handle flags anymore o bin/27319 obrien df(1) displays amd pid processes o bin/27306 marcel [patch] hw watchpoints work unreliable under gdb(1) o bin/27281 vidcontrol(1) does not have error codes o bin/27258 getty(8) didn't check if if= isn't empty o kern/27232 [nfs] On NFSv3 mounted filesystems, stat returns st_bl o bin/27216 randi sysinstall(8): can not get to shell prompt from serial o kern/27008 kernel function sysbeep(xxx, 0) does produce sound s bin/26803 des fetch(1) Fix fetch to allow FTP puts in '-o' & allow ' o kern/26787 [patch] sysctl change request o bin/26695 change request: kill(1)/killall(1) -l output o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting a kern/26534 ipfw [ipfw] Add an option to ipfw to log gid/uid of who cau o bin/26486 remko [libc] [patch] setnetgrent hangs when netgroup contain a gnu/26362 "cvs server" doesn't honour the global --allow-root o docs/26286 doc *printf(3) etc should gain format string warnings o kern/26261 [sio] silo overflow problem in sio driver f kern/26142 vwe [nfs] Unlink fails on NFS mounted filesystem o bin/26005 vis(1)/unvis(1) MIME quoted-printable encoding added t a docs/26003 standards getgroups(2) lists NGROUPS_MAX but not syslimits.h f kern/25986 silby Socket would hang at LAST_ACK forever. o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d o bin/25736 ac(8) -d option probrem with overdays logon o kern/25733 [intpm] mismatch between error reporting in smbus fram s bin/25598 yar patch to let ftpd(8) output message when changing dire s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password o kern/25445 kernel statistics are displayed in wrong types and wra o alpha/25284 alpha PC164 won't reboot with graphics console o bin/25218 mailwrapper(8) invokes sendmail when resources are tig o bin/25015 cp(1) options -i and -f do not work as documented f kern/24959 kmacy [patch] proper TCP_NOPUSH/TCP_CORK compatibility o docs/24786 doc missing FILES descriptions in sa(4) o bin/24757 yar ftpd(8) not RFC compliant s threa/24632 threads libc_r delicate deviation from libc in handling SIGCHL f kern/24629 harti ng_socket failes to declare connected data sockets as s stand/24590 standards timezone function not compatible witn Single Unix Spec o kern/24528 Bad tracking of Modem status o bin/24513 peter new options for pppd(8) o bin/24485 [patch] to make cron(8) handle clock jumps s threa/24472 threads libc_r does not honor SO_SNDTIMEO/SO_RCVTIMEO socket o o bin/24461 [nis] Being able to increase the YP timeout without re o bin/24066 marcel gdb(1) can't detach from programs linked with libc_r a bin/23912 vi(1) underflow of cnt in vs_paint() by O_NUMBER_LENGT o bin/23562 markm [patch] telnetd(8) doesn't show message in file specif o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem a bin/23402 brucec sysinstall(8): upgrade ought to check partition sizes a bin/23254 [patch] yacc(1) accepts bad grammer p bin/23098 brucec sysinstall(8): [patch] if installing on a serial conso o conf/23063 net [arp] [patch] for static ARP tables in rc.network s i386/22944 alc [vm] [patch] isa_dmainit fails on machines with 512MB o misc/22914 brucec [bootinst] bootinst messages are not updated s kern/22417 gibbs [adw] [patch] advansys wide scsi driver does not suppo o conf/22308 [nfs] mounting NFS during boot blocks if host map come o kern/22291 [nfs] getcwd(3) fails on recently-modified NFS-mounted o bin/22182 vi(1) options noprint/print/octal broken s bin/22034 [request] nfsstat(1) lacks useful features found in So o kern/21998 kmacy [socket] [patch] ident only for outgoing connections a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to o conf/21675 [patch] Better and more disktab entries for MO drives o i386/21672 obrien [i386] AMD Duron Rev. A0 reports incorrect L2 cache si o stand/21519 standards sys/dir.h should be deprecated some more o kern/21463 emulation [linux] Linux compatability mode should not allow setu o bin/21315 Shells often behave oddly when executing shell scripts p bin/21089 jh [patch] vi(1) silently corrupts open file on SIGINT wh o bin/21008 gad lpr(1) Fix for lpr's handling of lots of jobs in a que o bin/20944 natd(8) enhancements, default config file and manpage o bin/20633 fdisk(8) doesn't handle LBA correctly o kern/20529 [ti] gigabit cards fail to link s bin/20521 rmt(8) /etc/rmt several problems o bin/20501 [patch] dump(8) extra flag to dump to offline autoload o bin/20391 jhb sysinstall(8): sysinstall should check debug.boothowto s kern/20333 des [libpam] ftp login fails on unix password when s/key a o bin/20282 randi sysinstall(8): sysinstall does not recover some /etc f o bin/20172 yacc(1) byacc 1.9 fails to generate $default transitio o bin/20054 yar ftpd(8) rotating _PATH_FTPDSTATFILE losts xferlog s docs/20028 doc ASCII docs should reflect tags in the sourc f kern/19913 silby add SYN+FIN counter o gnu/19882 obrien ld does not detect all undefined symbols! o bin/19837 ambrisko sysinstall(8): [patch] run Fix It floppy from serial p a kern/19782 mkisofs 1.12.1 (i386-unknown-freebsd4.0) doesn't prese p bin/19773 [patch] telnet(1) infinite loop depending on how fds a o bin/19772 df(1) output wrong for union-mounts o kern/19756 [patch] Inability to use linux extended partition (typ o bin/19683 brucec mount(8) displays incorrect mount point on failed moun s conf/19573 des Dot Files for Optional Shells s kern/19535 [procfs] [patch] procfs_rlimit tidyup s kern/19402 Signals 127 and 128 cannot be detected in wait4() inte o kern/18909 dwmalone select(2) timeout limited to 100000000 seconds o kern/18874 fs [2TB] 32bit NFS servers export wrong negative values t o gnu/18857 peter Enable GSSAPI in CVS if available s kern/18704 GLOB_ERR not handled correctly by glob() s kern/18558 silby [xl] 3COM 905B realy realy slow when using multiple ad o bin/18498 jhb allowing ELF_VERBOSE in /etc/make.conf o bin/18326 dwmalone no /usr/libdata/lint/llib-lc.ln o bin/18319 dump(8) fails with "cannot reopen disk: interrupted sy o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation o kern/18271 [patch] simplelock: klds not portable across UP and SM o kern/18200 mdodd 3com 3c509b recognized twice during boot s bin/18114 iostat(8): msps from iostat is wrong s bin/18100 [patch] update to src/usr.bin/from/from.c for multiple o conf/17993 obrien improving on the default /etc/amd.map s i386/17662 gibbs [cam] cam_xpt.c incorrectly disables tagged queuing fo o bin/17623 date(1) -v doesn't handle time changes (DST) correctly s conf/17540 [nfs] NIS host lookups cause NFS mounts to wedge at bo o kern/17504 [cam] [patch] Another Micropolis Synchronize Cache Pro o kern/17425 [ppbus] [patch] fix two small printing errors in ppbus p bin/17363 [patch] crontab(1) leaves files in /var/cron/tabs when o bin/17289 gad [patch] wrong permissions on /var/run/printer s kern/17109 darrenr fastroute crashes for lo0 udp s kern/17108 [nfs] SecureRPC not supported in mount_nfs command o bin/16948 brucec sysinstall(8): sysinstall/disklabel: bad partition tab o kern/16765 bde Add support for mark/space parity o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. p misc/15876 edwin [picobsd] PicoBSD message of the day problems o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c o bin/15619 peter [patch] standard pppd(8) doesn't authenticate users wi s kern/15478 incorrect utmp/wtmp records update upon connection bei s kern/15436 [syscons] syscons extension: "propellers" o bin/15205 [patch] Addition to random(6) o bin/15168 [patch] Adding tracklist support to fdformat(1) a kern/15095 silby TCP's advertised window is not scaled immediately upon o bin/15038 brucec sysinstall(8): easy to not notice that selection lists p conf/15010 keramida [patch] rc.firewall: "client" firewall configuration k s bin/14925 standards getsubopt isn't poisonous enough a bin/14682 gad lprm(1) unaware of lp(1) Environment Variables (LPDEST o kern/14646 kern.boottime affected by APM suspend/resume s kern/14562 ioctl() codes should be provided for ejecting all remo o bin/14318 randi sysinstall(8): sysinstall upon install has some counte s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai o bin/13882 mount(8) mount -p is missing the quota options s bin/13869 man(1) program saves multiple cached copies of the sam s conf/13775 multi-user boot may hang in NIS environment o bin/13397 vi(1) nvi mishandles tags files under certain conditio f kern/13326 kmacy [headers] [patch] additional timeval interfaces for .root fails to become root s bin/3170 vi(1): vi freaks and dump core if user doesn't exist s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o s bin/2137 vm statistics are bad s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus a bin/1375 linimon [patch] Extraneous warning from mv(1) 6554 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Jul 26 12:40:04 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8DB001065675 for ; Mon, 26 Jul 2010 12:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 55ACC8FC27 for ; Mon, 26 Jul 2010 12:40:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6QCe44l076989 for ; Mon, 26 Jul 2010 12:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6QCe4r2076988; Mon, 26 Jul 2010 12:40:04 GMT (envelope-from gnats) Resent-Date: Mon, 26 Jul 2010 12:40:04 GMT Resent-Message-Id: <201007261240.o6QCe4r2076988@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Emil Smolenski Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 72EA0106567C for ; Mon, 26 Jul 2010 12:39:02 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 66F838FC15 for ; Mon, 26 Jul 2010 12:39:02 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6QCd2cw086539 for ; Mon, 26 Jul 2010 12:39:02 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6QCd2jf086526; Mon, 26 Jul 2010 12:39:02 GMT (envelope-from nobody) Message-Id: <201007261239.o6QCd2jf086526@www.freebsd.org> Date: Mon, 26 Jul 2010 12:39:02 GMT From: Emil Smolenski To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/148961: [PATCH] netstart and network_ipv6 contains references to nonexistent files X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2010 12:40:04 -0000 >Number: 148961 >Category: misc >Synopsis: [PATCH] netstart and network_ipv6 contains references to nonexistent files >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 Jul 26 12:40:03 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Emil Smolenski >Release: 8.1-STABLE >Organization: >Environment: >Description: /etc/netstart tries to execute nonexistent /etc/rc.d/ip6fw script: # /etc/netstart (...) /etc/netstart: /etc/rc.d/ip6fw: not found (...) # ls /etc/rc.d/ip6fw ls: /etc/rc.d/ip6fw: No such file or directory Also /etc/rc.d/network_ipv6 contains reference to ip6fw: # grep ip6fw /etc/rc.d/network_ipv6 # REQUIRE: routing ip6fw >How-To-Repeat: # /etc/netstart # grep ip6fw /etc/rc.d/network_ipv6 # ls /etc/rc.d/ip6fw >Fix: Look at the attached patch. I'm not sure if patch for the network_ipv6 is proper. Patch attached with submission follows: diff -ruN etc.orig/netstart etc/netstart --- etc.orig/netstart 2009-08-03 10:13:06.000000000 +0200 +++ etc/netstart 2010-07-26 13:02:21.819860465 +0200 @@ -55,7 +55,6 @@ /etc/rc.d/dhclient ${_start} /etc/rc.d/ppp ${_start} /etc/rc.d/ipfw ${_start} -/etc/rc.d/ip6fw ${_start} /etc/rc.d/network_ipv6 ${_start} /etc/rc.d/routing ${_start} /etc/rc.d/mroute6d ${_start} diff -ruN etc.orig/rc.d/network_ipv6 etc/rc.d/network_ipv6 --- etc.orig/rc.d/network_ipv6 2009-08-03 10:13:06.000000000 +0200 +++ etc/rc.d/network_ipv6 2010-07-26 13:02:40.223567202 +0200 @@ -29,7 +29,7 @@ # # PROVIDE: network_ipv6 -# REQUIRE: routing ip6fw +# REQUIRE: routing ipfw # KEYWORD: nojail . /etc/rc.subr >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jul 26 14:00:17 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E9CFB106568B for ; Mon, 26 Jul 2010 14:00:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9029A8FC1F for ; Mon, 26 Jul 2010 14:00:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6QE0CG4054169 for ; Mon, 26 Jul 2010 14:00:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6QE0CaU054168; Mon, 26 Jul 2010 14:00:12 GMT (envelope-from gnats) Resent-Date: Mon, 26 Jul 2010 14:00:12 GMT Resent-Message-Id: <201007261400.o6QE0CaU054168@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Michael Meiszl Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C5551065692 for ; Mon, 26 Jul 2010 13:56:39 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 4FEED8FC1B for ; Mon, 26 Jul 2010 13:56:39 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6QDubkV025160 for ; Mon, 26 Jul 2010 13:56:37 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6QDub9t025159; Mon, 26 Jul 2010 13:56:37 GMT (envelope-from nobody) Message-Id: <201007261356.o6QDub9t025159@www.freebsd.org> Date: Mon, 26 Jul 2010 13:56:37 GMT From: Michael Meiszl To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/148963: update to 8.1 failes X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2010 14:00:18 -0000 >Number: 148963 >Category: misc >Synopsis: update to 8.1 failes >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Jul 26 14:00:12 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Michael Meiszl >Release: 8.0-p4 x86 >Organization: at home >Environment: FreeBSD flunder.werries.de 8.0-RELEASE-p4 FreeBSD 8.0-RELEASE-p4 #0: Mon Jul 12 20:22:27 UTC 2010 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: Fetching metadata signature for 8.1-RELEASE from update4.FreeBSD.org... done. Fetching metadata index... done. Fetching 1 metadata patches. done. Applying metadata patches... done. Fetching 1 metadata files... done. Inspecting system... done. Fetching files from 8.0-RELEASE for merging... done. Preparing to download files... done. Fetching 5 patches... done. Applying patches... done. Fetching 205 files... gunzip: unknown compression format 53babe0d2db52413ae0ec09331ecb4f63237ad6114a5f4f85ffa40a6068b90ed has incorrect hash. >How-To-Repeat: freebsd-update -r 8.1-RELASE upgrade it fetches about 16000 files, starts to fetch more patches and then breaks at a random number with above message. the 53babe... is always the same >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 27 00:12:03 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 566D9106566C; Tue, 27 Jul 2010 00:12:03 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2CE128FC1C; Tue, 27 Jul 2010 00:12:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6R0C3H7055469; Tue, 27 Jul 2010 00:12:03 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6R0C3TN055465; Tue, 27 Jul 2010 00:12:03 GMT (envelope-from linimon) Date: Tue, 27 Jul 2010 00:12:03 GMT Message-Id: <201007270012.o6R0C3TN055465@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-rc@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: conf/148961: [PATCH] netstart and network_ipv6 contains references to nonexistent files X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2010 00:12:03 -0000 Synopsis: [PATCH] netstart and network_ipv6 contains references to nonexistent files Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: linimon Responsible-Changed-When: Tue Jul 27 00:11:31 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=148961 From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 27 00:41:30 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 843BA106566B; Tue, 27 Jul 2010 00:41:30 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5B86D8FC13; Tue, 27 Jul 2010 00:41:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6R0fUo7087209; Tue, 27 Jul 2010 00:41:30 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6R0fUxQ087205; Tue, 27 Jul 2010 00:41:30 GMT (envelope-from linimon) Date: Tue, 27 Jul 2010 00:41:30 GMT Message-Id: <201007270041.o6R0fUxQ087205@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: gnu/148926: [patch] make gcc generate i486 code by default X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2010 00:41:30 -0000 Old Synopsis: make gcc generate i486 code by default New Synopsis: [patch] make gcc generate i486 code by default Responsible-Changed-From-To: freebsd-i386->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Jul 27 00:41:08 UTC 2010 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=148926 From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 27 03:20:06 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0DF511065673 for ; Tue, 27 Jul 2010 03:20:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DEB818FC1E for ; Tue, 27 Jul 2010 03:20:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6R3K5GT034288 for ; Tue, 27 Jul 2010 03:20:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6R3K55k034278; Tue, 27 Jul 2010 03:20:05 GMT (envelope-from gnats) Resent-Date: Tue, 27 Jul 2010 03:20:05 GMT Resent-Message-Id: <201007270320.o6R3K55k034278@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Neko Chang Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 883011065674 for ; Tue, 27 Jul 2010 03:13:08 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 75DE38FC0C for ; Tue, 27 Jul 2010 03:13:08 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6R3D8mZ013503 for ; Tue, 27 Jul 2010 03:13:08 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6R3D8j0013502; Tue, 27 Jul 2010 03:13:08 GMT (envelope-from nobody) Message-Id: <201007270313.o6R3D8j0013502@www.freebsd.org> Date: Tue, 27 Jul 2010 03:13:08 GMT From: Neko Chang To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/148979: [iwn][panic] Intel 5100agn cause panic on 8.1-STABLE amd64 in TOSHIBA M800 laptop X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2010 03:20:06 -0000 >Number: 148979 >Category: kern >Synopsis: [iwn][panic] Intel 5100agn cause panic on 8.1-STABLE amd64 in TOSHIBA M800 laptop >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 Jul 27 03:20:05 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Neko Chang >Release: 8.1-STABLE amd64 >Organization: Taiwan >Environment: Copyright (c) 1992-2010 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 is a registered trademark of The FreeBSD Foundation. FreeBSD 8.1-STABLE #0: Sun Jul 25 14:37:44 CST 2010 root@epopen.com:/usr/obj/usr/src/sys/EpopenKernel amd64 Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel(R) Core(TM)2 Duo CPU P8400 @ 2.26GHz (2261.02-MHz K8-class CPU) Origin = "GenuineIntel" Id = 0x10676 Family = 6 Model = 17 Stepping = 6 Features=0xbfebfbff Features2=0x8e3fd AMD Features=0x20100800 AMD Features2=0x1 TSC: P-state invariant real memory = 4294967296 (4096 MB) avail memory = 3934015488 (3751 MB) ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs FreeBSD/SMP: 1 package(s) x 2 core(s) cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 ioapic0: Changing APIC ID to 1 ioapic0 irqs 0-23 on motherboard Cuse4BSD v0.1.11 @ /dev/cuse ichwd module loaded acpi0: on motherboard acpi0: [ITHREAD] acpi0: Power Button (fixed) acpi_hpet0: iomem 0xfed00000-0xfed003ff on acpi0 Timecounter "HPET" frequency 14318180 Hz quality 900 Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x408-0x40b on acpi0 cpu0: on acpi0 cpu1: on acpi0 acpi_ec0: port 0x62,0x66 on acpi0 acpi_wmi0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 vgapci0: port 0x1800-0x1807 mem 0xf4000000-0xf43fffff,0xd0000000-0xdfffffff irq 16 at device 2.0 on pci0 acpi_video0: on vgapci0 agp0: on vgapci0 agp0: detected 131068k stolen memory agp0: aperture size is 256M drm0: on vgapci0 info: [drm] MSI enabled 1 message(s) vgapci0: child drm0 requested pci_enable_busmaster info: [drm] AGP at 0xd0000000 256MB info: [drm] Initialized i915 1.6.0 20080730 vgapci1: mem 0xf4400000-0xf44fffff at device 2.1 on pci0 uhci0: port 0x1820-0x183f irq 16 at device 26.0 on pci0 uhci0: [ITHREAD] usbus0: on uhci0 uhci1: port 0x1840-0x185f irq 21 at device 26.1 on pci0 uhci1: [ITHREAD] usbus1: on uhci1 uhci2: port 0x1860-0x187f irq 19 at device 26.2 on pci0 uhci2: [ITHREAD] usbus2: on uhci2 ehci0: mem 0xf4a04800-0xf4a04bff irq 19 at device 26.7 on pci0 ehci0: [ITHREAD] usbus3: EHCI version 1.0 usbus3: on ehci0 hdac0: mem 0xf4800000-0xf4803fff irq 22 at device 27.0 on pci0 hdac0: HDA Driver Revision: 20100226_0142 hdac0: [ITHREAD] pcib1: irq 17 at device 28.0 on pci0 pci2: on pcib1 pcib2: irq 17 at device 28.4 on pci0 pci7: on pcib2 mskc0: irq 16 at device 0.0 on pci7 msk0: on mskc0 msk0: disabling jumbo frame support msk0: Ethernet address: 00:1e:68:a9:7d:b7 miibus0: on msk0 e1000phy0: PHY 0 on miibus0 e1000phy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto mskc0: [ITHREAD] pcib3: irq 16 at device 28.5 on pci0 pci8: on pcib3 pci8: at device 0.0 (no driver attached) uhci3: port 0x1880-0x189f irq 23 at device 29.0 on pci0 uhci3: [ITHREAD] usbus4: on uhci3 uhci4: port 0x18a0-0x18bf irq 19 at device 29.1 on pci0 uhci4: [ITHREAD] usbus5: on uhci4 uhci5: port 0x18c0-0x18df irq 18 at device 29.2 on pci0 uhci5: [ITHREAD] usbus6: on uhci5 ehci1: mem 0xf4a04c00-0xf4a04fff irq 23 at device 29.7 on pci0 ehci1: [ITHREAD] usbus7: EHCI version 1.0 usbus7: on ehci1 pcib4: at device 30.0 on pci0 pci10: on pcib4 fwohci0: <1394 Open Host Controller Interface> mem 0xff501000-0xff501fff,0xf4700000-0xf47007ff at device 1.0 on pci10 fwohci0: [ITHREAD] fwohci0: OHCI version 1.10 (ROM=0) fwohci0: No. of Isochronous channels is 8. fwohci0: EUI64 00:1b:24:00:01:1e:77:92 fwohci0: Phy 1394a available S400, 1 ports. fwohci0: Link S400, max_rec 2048 bytes. firewire0: on fwohci0 fwe0: on firewire0 if_fwe0: Fake Ethernet address: 02:1b:24:1e:77:92 fwe0: Ethernet address: 02:1b:24:1e:77:92 fwip0: on firewire0 fwip0: Firewire address: 00:1b:24:00:01:1e:77:92 @ 0xfffe00000000, S400, maxrec 2048 sbp0: on firewire0 fwohci0: Initiate bus reset fwohci0: fwohci_intr_core: BUS reset fwohci0: fwohci_intr_core: node_id=0x00000000, SelfID Count=1, CYCLEMASTER mode sdhci0: mem 0xf4700800-0xf47008ff at device 1.2 on pci10 sdhci0: 1 slot(s) allocated sdhci0: [ITHREAD] mmc0: on sdhci0 pci10: at device 1.3 (no driver attached) isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0x1818-0x181f,0x180c-0x180f,0x1810-0x1817,0x1808-0x180b,0x18e0-0x18ff mem 0xf4a04000-0xf4a047ff irq 19 at device 31.2 on pci0 atapci0: [ITHREAD] atapci0: AHCI v1.20 controller with 4 3Gbps ports, PM not supported ata2: on atapci0 ata2: [ITHREAD] ata3: on atapci0 ata3: [ITHREAD] ata4: on atapci0 ata4: [ITHREAD] ata5: on atapci0 ata5: [ITHREAD] ichsmb0: port 0x1c00-0x1c1f irq 19 at device 31.3 on pci0 ichsmb0: [ITHREAD] smbus0: on ichsmb0 smb0: on smbus0 acpi_acad0: on acpi0 battery0: on acpi0 acpi_button0: on acpi0 acpi_lid0: on acpi0 acpi_tz0: on acpi0 atrtc0: port 0x70-0x77 irq 8 on acpi0 atrtc0: Warning: Couldn't map I/O. atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] atkbd0: [ITHREAD] psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: [ITHREAD] psm0: model Generic PS/2 mouse, device ID 0 ichwd0: on isa0 ichwd0: Intel ICH9M watchdog timer (ICH9 or equivalent) orm0: at iomem 0xd0000-0xd0fff,0xdf000-0xdffff 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 coretemp0: on cpu0 est0: on cpu0 p4tcc0: on cpu0 coretemp1: on cpu1 est1: on cpu1 p4tcc1: on cpu1 Timecounters tick every 1.000 msec vboxdrv: fAsync=0 offMin=0xe5 offMax=0x327 firewire0: 1 nodes, maxhop <= 0 cable IRM irm(0) (me) firewire0: bus manager 0 usbus0: 12Mbps Full Speed USB v1.0 usbus1: 12Mbps Full Speed USB v1.0 usbus2: 12Mbps Full Speed USB v1.0 usbus3: 480Mbps High Speed USB v2.0 usbus4: 12Mbps Full Speed USB v1.0 usbus5: 12Mbps Full Speed USB v1.0 usbus6: 12Mbps Full Speed USB v1.0 usbus7: 480Mbps High Speed USB v2.0 ad4: 238475MB at ata2-master UDMA100 SATA 1.5Gb/s ugen0.1: at usbus0 uhub0: on usbus0 ugen1.1: at usbus1 uhub1: on usbus1 ugen2.1: at usbus2 uhub2: on usbus2 ugen3.1: at usbus3 uhub3: on usbus3 ugen4.1: at usbus4 uhub4: on usbus4 ugen5.1: at usbus5 uhub5: on usbus5 ugen6.1: at usbus6 uhub6: on usbus6 ugen7.1: at usbus7 uhub7: on usbus7 acd0: DVDR at ata3-master UDMA33 SATA 1.5Gb/s hdac0: HDA Codec #0: Conexant CX20561 (Hermosa) hdac0: HDA Codec #1: Intel G45 HDMI pcm0: at cad 0 nid 1 on hdac0 pcm1: at cad 0 nid 1 on hdac0 pcm2: at cad 0 nid 1 on hdac0 pcm3: at cad 1 nid 1 on hdac0 GEOM: ad4: partition 3 does not start on a track boundary. GEOM: ad4: partition 3 does not end on a track boundary. GEOM: ad4: partition 2 does not start on a track boundary. GEOM: ad4: partition 2 does not end on a track boundary. GEOM: ad4: partition 1 does not start on a track boundary. GEOM: ad4: partition 1 does not end on a track boundary. mmcsd0: 241MB at mmc0 25MHz/4bit GEOM: mmcsd0: partition 1 does not start on a track boundary. GEOM: mmcsd0: partition 1 does not end on a track boundary. uhub0: 2 ports with 2 removable, self powered uhub1: 2 ports with 2 removable, self powered uhub2: 2 ports with 2 removable, self powered uhub4: 2 ports with 2 removable, self powered uhub5: 2 ports with 2 removable, self powered uhub6: 2 ports with 2 removable, self powered uhub3: 6 ports with 6 removable, self powered uhub7: 6 ports with 6 removable, self powered ugen3.2: at usbus3 umass0: on usbus3 acd0: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00 (probe7:ata3:0:0:0): TEST UNIT READY. CDB: 0 0 0 0 0 0 (probe7:ata3:0:0:0): CAM status: SCSI Status Error (probe7:ata3:0:0:0): SCSI status: Check Condition (probe7:ata3:0:0:0): SCSI sense: NOT READY asc:3a,0 (Medium not present) ugen7.2: at usbus7 (probe7:umass-sim0:0:0:0): TEST UNIT READY. CDB: 0 0 0 0 0 0 (probe7:umass-sim0:0:0:0): CAM status: SCSI Status Error (probe7:umass-sim0:0:0:0): SCSI status: Check Condition (probe7:umass-sim0:0:0:0): SCSI sense: UNIT ATTENTION asc:28,0 (Not ready to ready change, medium may have changed) pass0 at ata3 bus 0 scbus2 target 0 lun 0 pass0: Removable CD-ROM SCSI-0 device da0 at umass-sim0 bus 0 scbus3 target 0 lun 0 da0: Removable Direct Access SCSI-2 device da0: 40.000MB/s transfers da0: 980MB (2007040 512 byte sectors: 64H 32S/T 980C) pass0: 33.000MB/s transfers SMP: AP CPU #1 Launched! Trying to mount root from ufs:/dev/ad4s3a ugen4.2: at usbus4 Setting hostuuid: e0f6c98b-29c6-dc11-b6c2-001e68a97db7. Setting hostid: 0x3f30f98c. Entropy harvesting: interrupts ethernet point_to_point kickstart >Description: >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 27 04:10:09 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 11C081065672 for ; Tue, 27 Jul 2010 04:10:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 013368FC16 for ; Tue, 27 Jul 2010 04:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6R4A8Wg081728 for ; Tue, 27 Jul 2010 04:10:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6R4A8Ri081727; Tue, 27 Jul 2010 04:10:08 GMT (envelope-from gnats) Date: Tue, 27 Jul 2010 04:10:08 GMT Message-Id: <201007270410.o6R4A8Ri081727@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: chen neko Cc: Subject: Re: kern/148979: [iwn][panic] Intel 5100agn cause panic on 8.1-STABLE amd64 in TOSHIBA M800 laptop X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: chen neko List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2010 04:10:09 -0000 The following reply was made to PR kern/148979; it has been noted by GNATS. From: chen neko To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/148979: [iwn][panic] Intel 5100agn cause panic on 8.1-STABLE amd64 in TOSHIBA M800 laptop Date: Tue, 27 Jul 2010 11:38:24 +0800 Sorry, I don=E2=80=99t know why miss Description, and How-To-Repeat. Here, I add it. 1. Description: Hello FreeBSD team. In June, I upgraded to 8.1 prerelease amd64, All work fine. But I upgraded 8.1-STABLE amd64 yesterday, Cause kernel panic when kernel use ifconfig to confgure iwn device. Note: From 8.0, always /usr/src/sys/dev/acpica/acpi_pcib_acpi.c apply ACPI patch for TOSHIBA Under is panic log message... Fatal trap 12: page fault while in kernel mode cpuid =3D 1; acpi id =3D 01 fault virtual address =3D 0x18 fault code =3D supervisor read data, page not present instruction pointer =3D 0x20:0xffffffff8026546a stack pointer =3D 0x20:0xffffff80751df810 frame pointer =3D 0x20:0xffffff80751df870 code segment =3D base 0x0, limit 0xfffff, type 0x1b =3D DPL 0, pres 1, long 1, def32 0, gran 1 processor eflags =3D interrupt enabled, resume, IOPL =3D 0 current process =3D 57286 (ifconfig) trap number =3D 12 panic: page fault cpuid =3D 1 Uptime: 18s Cannot dump. Device not defined or unavailable. Automatic reboot in 15 seconds - press a key on the console to abort panic: bufwrite: buffer is not busy??? cpuid =3D 1 =3D=3D=3D End of panic log message =3D=3D=3D If I remove "device iwn" in mya kernel config file, Work fine. If need more information or debug, Please tell me Thanks very much. 2.How-To-Repeat: kernel config file "device iwn" exist. Please add to PR Thanks very much. From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 27 05:05:00 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD8BB1065672; Tue, 27 Jul 2010 05:05:00 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B46178FC0C; Tue, 27 Jul 2010 05:05:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6R550Fi045895; Tue, 27 Jul 2010 05:05:00 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6R55011045889; Tue, 27 Jul 2010 05:05:00 GMT (envelope-from linimon) Date: Tue, 27 Jul 2010 05:05:00 GMT Message-Id: <201007270505.o6R55011045889@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-net@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/148979: [iwn][panic] Intel 5100agn cause panic on 8.1-STABLE amd64 in TOSHIBA M800 laptop X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2010 05:05:01 -0000 Synopsis: [iwn][panic] Intel 5100agn cause panic on 8.1-STABLE amd64 in TOSHIBA M800 laptop Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Tue Jul 27 05:04:43 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=148979 From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 27 05:30:05 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42F3D1065674 for ; Tue, 27 Jul 2010 05:30:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 095278FC14 for ; Tue, 27 Jul 2010 05:30:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6R5U4qw065771 for ; Tue, 27 Jul 2010 05:30:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6R5U4Sr065768; Tue, 27 Jul 2010 05:30:04 GMT (envelope-from gnats) Date: Tue, 27 Jul 2010 05:30:04 GMT Message-Id: <201007270530.o6R5U4Sr065768@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Remko Lodder" Cc: Subject: Re: misc/148963: update to 8.1 failes X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Remko Lodder List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2010 05:30:05 -0000 The following reply was made to PR misc/148963; it has been noted by GNATS. From: "Remko Lodder" To: "Michael Meiszl" Cc: freebsd-gnats-submit@freebsd.org Subject: Re: misc/148963: update to 8.1 failes Date: Tue, 27 Jul 2010 07:27:59 +0200 >>>Description: >> Fetching metadata signature for 8.1-RELEASE from update4.FreeBSD.org... Did you try other mirrors and/or is the problem still there? -- /"\ Best regards, | remko@FreeBSD.org \ / Remko Lodder | remko@EFnet X http://www.evilcoder.org/ | / \ ASCII Ribbon Campaign | Against HTML Mail and News From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 27 09:20:04 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3EFCC106564A for ; Tue, 27 Jul 2010 09:20:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 164878FC18 for ; Tue, 27 Jul 2010 09:20:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6R9K3Yc021047 for ; Tue, 27 Jul 2010 09:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6R9K3HL021046; Tue, 27 Jul 2010 09:20:03 GMT (envelope-from gnats) Date: Tue, 27 Jul 2010 09:20:03 GMT Message-Id: <201007270920.o6R9K3HL021046@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: misc/148792: commit references a PR X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2010 09:20:04 -0000 The following reply was made to PR misc/148792; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: misc/148792: commit references a PR Date: Tue, 27 Jul 2010 09:12:30 +0000 (UTC) Author: roberto Date: Tue Jul 27 09:12:11 2010 New Revision: 210527 URL: http://svn.freebsd.org/changeset/base/210527 Log: MFC r210296: Week days are all lowercase in French. cf. http://www.academie-francaise.fr/langue/questions.html#jourdelasemaine (FR) PR: misc/148792 Submitted by: Mathieu Modified: stable/8/share/timedef/fr_FR.ISO8859-1.src stable/8/share/timedef/fr_FR.UTF-8.src Directory Properties: stable/8/share/timedef/ (props changed) Modified: stable/8/share/timedef/fr_FR.ISO8859-1.src ============================================================================== --- stable/8/share/timedef/fr_FR.ISO8859-1.src Tue Jul 27 09:01:03 2010 (r210526) +++ stable/8/share/timedef/fr_FR.ISO8859-1.src Tue Jul 27 09:12:11 2010 (r210527) @@ -35,23 +35,23 @@ décembre # # Short weekday names # -Dim -Lun -Mar -Mer -Jeu -Ven -Sam +dim +lun +mar +mer +jeu +ven +sam # # Long weekday names # -Dimanche -Lundi -Mardi -Mercredi -Jeudi -Vendredi -Samedi +dimanche +lundi +mardi +mercredi +jeudi +vendredi +samedi # # X_fmt # Modified: stable/8/share/timedef/fr_FR.UTF-8.src ============================================================================== --- stable/8/share/timedef/fr_FR.UTF-8.src Tue Jul 27 09:01:03 2010 (r210526) +++ stable/8/share/timedef/fr_FR.UTF-8.src Tue Jul 27 09:12:11 2010 (r210527) @@ -35,23 +35,23 @@ dĂŠcembre # # Short weekday names # -Dim -Lun -Mar -Mer -Jeu -Ven -Sam +dim +lun +mar +mer +jeu +ven +sam # # Long weekday names # -Dimanche -Lundi -Mardi -Mercredi -Jeudi -Vendredi -Samedi +dimanche +lundi +mardi +mercredi +jeudi +vendredi +samedi # # X_fmt # _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 27 09:40:03 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 665E3106564A for ; Tue, 27 Jul 2010 09:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4C0A18FC15 for ; Tue, 27 Jul 2010 09:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6R9e3mS040594 for ; Tue, 27 Jul 2010 09:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6R9e20K040593; Tue, 27 Jul 2010 09:40:03 GMT (envelope-from gnats) Date: Tue, 27 Jul 2010 09:40:03 GMT Message-Id: <201007270940.o6R9e20K040593@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Michael A. Meiszl" Cc: Subject: Re: misc/148963: update to 8.1 failes X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Michael A. Meiszl" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2010 09:40:03 -0000 The following reply was made to PR misc/148963; it has been noted by GNATS. From: "Michael A. Meiszl" To: Cc: Subject: Re: misc/148963: update to 8.1 failes Date: Tue, 27 Jul 2010 11:22:01 +0200 This is a multi-part message in MIME format. ------_=_NextPart_001_01CB2D6D.0D7594E2 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable In between (after about 10 retries on freebsd-update) the problem went away and the update finally worked. =20 But I still have no idea what happened (this box is very old already, it survived so many updates so far, this was the first one that gave troubles) =20 MAM =20 ------_=_NextPart_001_01CB2D6D.0D7594E2 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable

In between (after about 10 = retries on freebsd-update) the problem went away and the update finally = worked.

 

But I still have no idea what = happened (this box is very old already, it survived so many updates so far, this = was the first one that gave troubles)

 

MAM

 

------_=_NextPart_001_01CB2D6D.0D7594E2-- From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 27 09:50:01 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 74E9F1065672 for ; Tue, 27 Jul 2010 09:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3766F8FC0C for ; Tue, 27 Jul 2010 09:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6R9o1Wq049840 for ; Tue, 27 Jul 2010 09:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6R9o1Op049839; Tue, 27 Jul 2010 09:50:01 GMT (envelope-from gnats) Resent-Date: Tue, 27 Jul 2010 09:50:01 GMT Resent-Message-Id: <201007270950.o6R9o1Op049839@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, pluknet Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E7A9D1065673 for ; Tue, 27 Jul 2010 09:44:12 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id D9D608FC1D for ; Tue, 27 Jul 2010 09:44:12 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6R9iCET035993 for ; Tue, 27 Jul 2010 09:44:12 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6R9iC6a035992; Tue, 27 Jul 2010 09:44:12 GMT (envelope-from nobody) Message-Id: <201007270944.o6R9iC6a035992@www.freebsd.org> Date: Tue, 27 Jul 2010 09:44:12 GMT From: pluknet To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: conf/148989: [patch] whitespace in GENERIC X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2010 09:50:01 -0000 >Number: 148989 >Category: conf >Synopsis: [patch] whitespace in GENERIC >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 Jul 27 09:50:00 UTC 2010 >Closed-Date: >Last-Modified: >Originator: pluknet >Release: 8.1-RELEASE >Organization: >Environment: >Description: r193864 adds "optionsFLOWTABLE" to i386 and amd64 GENERIC file. That should be "optionsFLOWTABLE". >How-To-Repeat: >Fix: Use "options" for consistency. Patch attached with submission follows: Index: sys/i386/conf/GENERIC =================================================================== --- sys/i386/conf/GENERIC (revision 209989) +++ sys/i386/conf/GENERIC (working copy) @@ -63,7 +63,7 @@ options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4) options AUDIT # Security event auditing options MAC # TrustedBSD MAC Framework -options FLOWTABLE # per-cpu routing cache +options FLOWTABLE # per-cpu routing cache #options KDTRACE_HOOKS # Kernel DTrace hooks options INCLUDE_CONFIG_FILE # Include this file in kernel Index: sys/amd64/conf/GENERIC =================================================================== --- sys/amd64/conf/GENERIC (revision 209989) +++ sys/amd64/conf/GENERIC (working copy) @@ -62,7 +62,7 @@ options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4) options AUDIT # Security event auditing options MAC # TrustedBSD MAC Framework -options FLOWTABLE # per-cpu routing cache +options FLOWTABLE # per-cpu routing cache #options KDTRACE_FRAME # Ensure frames are compiled in #options KDTRACE_HOOKS # Kernel DTrace hooks options INCLUDE_CONFIG_FILE # Include this file in kernel >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 27 10:50:01 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9E8B51065673 for ; Tue, 27 Jul 2010 10:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 625798FC17 for ; Tue, 27 Jul 2010 10:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6RAo1Ut011030 for ; Tue, 27 Jul 2010 10:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6RAo15v011029; Tue, 27 Jul 2010 10:50:01 GMT (envelope-from gnats) Resent-Date: Tue, 27 Jul 2010 10:50:01 GMT Resent-Message-Id: <201007271050.o6RAo15v011029@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Douglas William Thrift Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18B4C1065670 for ; Tue, 27 Jul 2010 10:42:43 +0000 (UTC) (envelope-from douglas@douglasthrift.net) Received: from slowhand.douglasthrift.net (slowhand.douglasthrift.net [69.55.236.40]) by mx1.freebsd.org (Postfix) with ESMTP id EEE4C8FC1B for ; Tue, 27 Jul 2010 10:42:42 +0000 (UTC) Received: from localhost (mustang.douglasthrift.net [76.91.0.190]) (authenticated bits=0) by slowhand.douglasthrift.net (8.14.4/8.14.4) with ESMTP id o6RAgbtT098484 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Tue, 27 Jul 2010 03:42:42 -0700 (PDT) (envelope-from douglas@douglasthrift.net) Message-Id: <201007271042.o6RAgbtT098484@slowhand.douglasthrift.net> Date: Tue, 27 Jul 2010 03:42:42 -0700 (PDT) From: Douglas William Thrift To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: bin/148995: Patch: service(8) Show rc.d script usage when given just a script name X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Douglas William Thrift List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2010 10:50:01 -0000 >Number: 148995 >Category: bin >Synopsis: Patch: service(8) Show rc.d script usage when given just a script name >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jul 27 10:50:00 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Douglas William Thrift >Release: FreeBSD 8.1-RELEASE i386 >Organization: >Environment: System: FreeBSD backhome.douglasthrift.net 8.1-RELEASE FreeBSD 8.1-RELEASE #5: Sat Jul 24 21:11:20 PDT 2010 root@backhome.douglasthrift.net:/usr/obj/usr/src/sys/SOTIRED i386 >Description: Currently if service(8) is given just an rc.d script name and no command after, it prints its own usage message just as if no rc.d script were passed. This patch changes the behavior so that when just an rc.d script name is given service(8) runs the rc.d script without arguments which causes the rc.d script to print its usage. I find this behavior much more useful than having to type out the full path of the rc.d script to get its usage message. >How-To-Repeat: >Fix: --- service.patch begins here --- --- usr.sbin/service/service.sh.orig 2010-07-27 03:29:04.000000000 -0700 +++ usr.sbin/service/service.sh 2010-07-27 03:29:14.000000000 -0700 @@ -98,7 +98,7 @@ exit 0 fi -if [ $# -gt 1 ]; then +if [ $# -gt 0 ]; then script=$1 shift else --- service.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 27 20:00:12 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 329DE1065691 for ; Tue, 27 Jul 2010 20:00:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EAB1F8FC1C for ; Tue, 27 Jul 2010 20:00:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6RK0BMx050499 for ; Tue, 27 Jul 2010 20:00:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6RK0BUA050495; Tue, 27 Jul 2010 20:00:11 GMT (envelope-from gnats) Resent-Date: Tue, 27 Jul 2010 20:00:11 GMT Resent-Message-Id: <201007272000.o6RK0BUA050495@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Karel Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 72295106567D for ; Tue, 27 Jul 2010 19:59:50 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 47DC58FC15 for ; Tue, 27 Jul 2010 19:59:50 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6RJxm97055197 for ; Tue, 27 Jul 2010 19:59:49 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6RJxmSh055196; Tue, 27 Jul 2010 19:59:48 GMT (envelope-from nobody) Message-Id: <201007271959.o6RJxmSh055196@www.freebsd.org> Date: Tue, 27 Jul 2010 19:59:48 GMT From: Karel To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/149010: syslogd -s open udp socket X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2010 20:00:12 -0000 >Number: 149010 >Category: bin >Synopsis: syslogd -s open udp socket >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 Jul 27 20:00:11 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Karel >Release: 8.1-RELEASE >Organization: >Environment: FreeBSD 8.1-RELEASE #0 Mon Jul 19 02:55:53 UTC 2010 root@almeida.cse.buffalo.edu GENERIC i386 >Description: Syslogd in secure mode open udp4 and udp6 socket 514 >How-To-Repeat: set in rc.conf syslogd_flags="-s" and restart syslogd >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 27 20:26:13 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 070B81065678; Tue, 27 Jul 2010 20:26:13 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D20148FC18; Tue, 27 Jul 2010 20:26:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6RKQCcU079399; Tue, 27 Jul 2010 20:26:12 GMT (envelope-from alc@freefall.freebsd.org) Received: (from alc@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6RKQCMP079395; Tue, 27 Jul 2010 20:26:12 GMT (envelope-from alc) Date: Tue, 27 Jul 2010 20:26:12 GMT Message-Id: <201007272026.o6RKQCMP079395@freefall.freebsd.org> To: b@etek.chalmers.se, alc@FreeBSD.org, freebsd-bugs@FreeBSD.org From: alc@FreeBSD.org Cc: Subject: Re: kern/64196: [kernel] [patch] remove the arbitrary MAXSHELLCMDLEN X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2010 20:26:13 -0000 Synopsis: [kernel] [patch] remove the arbitrary MAXSHELLCMDLEN State-Changed-From-To: open->closed State-Changed-By: alc State-Changed-When: Tue Jul 27 20:20:30 UTC 2010 State-Changed-Why: MAXSHELLCMDSIZE was not eliminated, but it was increased to PAGE_SIZE in 2005, effectively doing the same thing as the patch proposed by this problem report. http://www.freebsd.org/cgi/query-pr.cgi?pr=64196 From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 27 22:40:02 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 415A91065677 for ; Tue, 27 Jul 2010 22:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 04A488FC1E for ; Tue, 27 Jul 2010 22:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6RMe1UK007872 for ; Tue, 27 Jul 2010 22:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6RMe12U007871; Tue, 27 Jul 2010 22:40:01 GMT (envelope-from gnats) Resent-Date: Tue, 27 Jul 2010 22:40:01 GMT Resent-Message-Id: <201007272240.o6RMe12U007871@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tuco Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 90ADA10656AA for ; Tue, 27 Jul 2010 22:34:59 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 7FBA18FC1A for ; Tue, 27 Jul 2010 22:34:59 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6RMYxdk079131 for ; Tue, 27 Jul 2010 22:34:59 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6RMYxWX079128; Tue, 27 Jul 2010 22:34:59 GMT (envelope-from nobody) Message-Id: <201007272234.o6RMYxWX079128@www.freebsd.org> Date: Tue, 27 Jul 2010 22:34:59 GMT From: Tuco To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/149012: please replace '#include ' with '#include ' X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2010 22:40:02 -0000 >Number: 149012 >Category: misc >Synopsis: please replace '#include ' with '#include ' >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jul 27 22:40:01 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Tuco >Release: Debian GNU/kFreeBSD >Organization: >Environment: >Description: On FreeBSD, and are the same file. POSIX only mandates , so in other systems isn't present. Lots of code, including libraries and utilities, in the FreeBSD source tree uses instead of , which makes it harder to port. Please could you replace all instances of '#include ' with '#include ', to make your code more portable and help projects that rely heavily on FreeBSD codebase (like Debian GNU/kFreeBSD)? Thanks! >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 27 23:15:38 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FEF81065690; Tue, 27 Jul 2010 23:15:38 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DB5EC8FC19; Tue, 27 Jul 2010 23:15:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6RNFbIe046071; Tue, 27 Jul 2010 23:15:37 GMT (envelope-from delphij@freefall.freebsd.org) Received: (from delphij@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6RNFb4e046067; Tue, 27 Jul 2010 23:15:37 GMT (envelope-from delphij) Date: Tue, 27 Jul 2010 23:15:37 GMT Message-Id: <201007272315.o6RNFb4e046067@freefall.freebsd.org> To: xkk@kdesi.cz, delphij@FreeBSD.org, freebsd-bugs@FreeBSD.org From: delphij@FreeBSD.org Cc: Subject: Re: bin/149010: syslogd -s open udp socket X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2010 23:15:38 -0000 Synopsis: syslogd -s open udp socket State-Changed-From-To: open->closed State-Changed-By: delphij State-Changed-When: Tue Jul 27 23:13:13 UTC 2010 State-Changed-Why: This behavior is by design. Use "-ss" if you want no listening; binding on the UDP port makes sure that syslogd can log remotely on other systems and is the recommended behavior of RFC 3164. http://www.freebsd.org/cgi/query-pr.cgi?pr=149010 From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 27 23:30:01 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CDAA71065672 for ; Tue, 27 Jul 2010 23:30:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ABABE8FC0A for ; Tue, 27 Jul 2010 23:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6RNU1uJ055461 for ; Tue, 27 Jul 2010 23:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6RNU1a4055460; Tue, 27 Jul 2010 23:30:01 GMT (envelope-from gnats) Resent-Date: Tue, 27 Jul 2010 23:30:01 GMT Resent-Message-Id: <201007272330.o6RNU1a4055460@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tuco Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E17F7106567A for ; Tue, 27 Jul 2010 23:23:33 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id B6CB38FC26 for ; Tue, 27 Jul 2010 23:23:33 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6RNNXR3014383 for ; Tue, 27 Jul 2010 23:23:33 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6RNNXf3014376; Tue, 27 Jul 2010 23:23:33 GMT (envelope-from nobody) Message-Id: <201007272323.o6RNNXf3014376@www.freebsd.org> Date: Tue, 27 Jul 2010 23:23:33 GMT From: Tuco To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/149013: make ZFS makefiles use the libraries from build directory X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2010 23:30:02 -0000 >Number: 149013 >Category: misc >Synopsis: make ZFS makefiles use the libraries from build directory >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jul 27 23:30:01 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Tuco >Release: Debian GNU/kFreeBSD >Organization: >Environment: >Description: This patch makes ZFS makefiles use the libraries from build directory instead of installed ones. Useful in situations where these libraries might not be installed (which is unlikely on FreeBSD, but not so unlikely on Debian GNU/kFreeBSD). >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ur cddl/lib/libzfs/Makefile cddl/lib/libzfs/Makefile --- cddl/lib/libzfs/Makefile 2008-11-17 15:49:29.000000000 -0500 +++ cddl/lib/libzfs/Makefile 2010-07-27 19:02:11.875304603 -0400 @@ -47,5 +47,6 @@ CFLAGS+= -I${.CURDIR}/../../../cddl/contrib/opensolaris/lib/libnvpair CFLAGS+= -I${.CURDIR}/../../../cddl/contrib/opensolaris/lib/libuutil/common CFLAGS+= -I${.CURDIR}/../../../cddl/contrib/opensolaris/lib/libzfs/common +CFLAGS+= -I${.CURDIR}/../../../lib/libgeom .include diff -ur cddl/sbin/zfs/Makefile cddl/sbin/zfs/Makefile --- cddl/sbin/zfs/Makefile 2008-03-27 19:21:25.000000000 -0400 +++ cddl/sbin/zfs/Makefile 2010-07-27 19:02:12.186072143 -0400 @@ -24,4 +24,10 @@ LDADD= -lzfs -lgeom -lbsdxml -lsbuf \ -lm -lnvpair -luutil -lutil +LDADD+= -L${.CURDIR}/../../../cddl/lib/libzfs \ + -L${.CURDIR}/../../../cddl/lib/libnvpair \ + -L${.CURDIR}/../../../cddl/lib/libuutil \ + -L${.CURDIR}/../../../lib/libgeom \ + -L${.CURDIR}/../../../lib/libsbuf + .include diff -ur cddl/sbin/zpool/Makefile cddl/sbin/zpool/Makefile --- cddl/sbin/zpool/Makefile 2008-11-17 15:49:29.000000000 -0500 +++ cddl/sbin/zpool/Makefile 2010-07-27 19:02:46.066584053 -0400 @@ -26,4 +26,9 @@ LDADD= -lavl -lzfs -lgeom -lbsdxml -lsbuf \ -lm -lnvpair -luutil -lutil +LDADD+= -L${.CURDIR}/../../../cddl/lib/libavl \ + -L${.CURDIR}/../../../cddl/lib/libzfs \ + -L${.CURDIR}/../../../cddl/lib/libnvpair \ + -L${.CURDIR}/../../../cddl/lib/libuutil + .include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 27 23:30:02 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3278C1065677 for ; Tue, 27 Jul 2010 23:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0FF698FC13 for ; Tue, 27 Jul 2010 23:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6RNU14T055472 for ; Tue, 27 Jul 2010 23:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6RNU1Bx055469; Tue, 27 Jul 2010 23:30:01 GMT (envelope-from gnats) Resent-Date: Tue, 27 Jul 2010 23:30:01 GMT Resent-Message-Id: <201007272330.o6RNU1Bx055469@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tuco Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 654F81065677 for ; Tue, 27 Jul 2010 23:28:46 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 53F2E8FC08 for ; Tue, 27 Jul 2010 23:28:46 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6RNSkSw024640 for ; Tue, 27 Jul 2010 23:28:46 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6RNSkYR024639; Tue, 27 Jul 2010 23:28:46 GMT (envelope-from nobody) Message-Id: <201007272328.o6RNSkYR024639@www.freebsd.org> Date: Tue, 27 Jul 2010 23:28:46 GMT From: Tuco To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/149014: make ZFS makefiles use the libraries from build directory X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2010 23:30:02 -0000 >Number: 149014 >Category: misc >Synopsis: make ZFS makefiles use the libraries from build directory >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jul 27 23:30:01 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Tuco >Release: Debian GNU/kFreeBSD >Organization: >Environment: >Description: Hello A few declarations in ZFS libraries/utilities collide with Glibc namespace, making it impossible to compile on GNU environment. Here is a patch that either renames them or avoids the conflict with preprocessor checks. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ur cddl/compat/opensolaris/include/solaris.h cddl/compat/opensolaris/include/solaris.h --- cddl/compat/opensolaris/include/solaris.h 2008-04-22 03:43:00.000000000 -0400 +++ cddl/compat/opensolaris/include/solaris.h 2010-07-26 19:18:00.428981335 -0400 @@ -5,6 +5,9 @@ #include +/* GNU libc has its own dirent64 declaration */ +#ifndef __GLIBC__ #define dirent64 dirent +#endif #endif /* !_SOLARIS_H_ */ diff -ur cddl/compat/opensolaris/misc/fsshare.c cddl/compat/opensolaris/misc/fsshare.c --- cddl/compat/opensolaris/misc/fsshare.c 2008-03-28 18:16:18.000000000 -0400 +++ cddl/compat/opensolaris/misc/fsshare.c 2010-07-26 19:48:58.456848324 -0400 @@ -67,7 +70,7 @@ * mountpoint specified in the 'skip' argument. */ static char * -getline(FILE *fd, const char *skip) +xgetline(FILE *fd, const char *skip) { static char line[MAXLINESIZE]; size_t len, skiplen; @@ -198,7 +201,7 @@ /* Place big, fat warning at the begining of the file. */ fprintf(newfd, "%s", FILE_HEADER); - while (oldfd != NULL && (line = getline(oldfd, mountpoint)) != NULL) + while (oldfd != NULL && (line = xgetline(oldfd, mountpoint)) != NULL) fprintf(newfd, "%s\n", line); if (oldfd != NULL && ferror(oldfd) != 0) { error = ferror(oldfd); diff -ur cddl/compat/opensolaris/misc/mnttab.c cddl/compat/opensolaris/misc/mnttab.c --- cddl/compat/opensolaris/misc/mnttab.c 2008-11-17 15:49:29.000000000 -0500 +++ cddl/compat/opensolaris/misc/mnttab.c 2010-07-26 18:46:46.354168277 -0400 @@ -63,7 +63,7 @@ } char * -hasmntopt(struct mnttab *mnt, char *opt) +solaris_hasmntopt(struct mnttab *mnt, char *opt) { char tmpopts[MNT_LINE_MAX]; char *f, *opts = tmpopts; diff -ur cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c --- cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c 2008-11-17 15:49:29.000000000 -0500 +++ cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c 2010-07-26 18:46:46.353151407 -0400 @@ -2166,11 +2166,11 @@ case ZFS_PROP_NBMAND: *val = getprop_uint64(zhp, prop, source); - if (hasmntopt(&mnt, mntopt_on) && !*val) { + if (solaris_hasmntopt(&mnt, mntopt_on) && !*val) { *val = B_TRUE; if (src) *src = ZPROP_SRC_TEMPORARY; - } else if (hasmntopt(&mnt, mntopt_off) && *val) { + } else if (solaris_hasmntopt(&mnt, mntopt_off) && *val) { *val = B_FALSE; if (src) *src = ZPROP_SRC_TEMPORARY; diff -ur cddl/contrib/opensolaris/lib/libzpool/common/kernel.c cddl/contrib/opensolaris/lib/libzpool/common/kernel.c --- cddl/contrib/opensolaris/lib/libzpool/common/kernel.c 2009-07-09 16:22:05.000000000 -0400 +++ cddl/contrib/opensolaris/lib/libzpool/common/kernel.c 2010-07-26 18:46:46.363308187 -0400 @@ -463,7 +463,7 @@ /*ARGSUSED*/ int vn_rdwr(int uio, vnode_t *vp, void *addr, ssize_t len, offset_t offset, - int x1, int x2, rlim64_t x3, void *x4, ssize_t *residp) + int x1, int x2, solaris_rlim64_t x3, void *x4, ssize_t *residp) { ssize_t iolen, split; diff -ur cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h --- cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h 2009-07-09 16:22:05.000000000 -0400 +++ cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h 2010-07-26 18:46:46.368459207 -0400 @@ -105,8 +105,8 @@ #define ZFS_LOG(...) do { } while (0) -typedef u_longlong_t rlim64_t; -#define RLIM64_INFINITY ((rlim64_t)-3) +typedef u_longlong_t solaris_rlim64_t; +#define RLIM64_INFINITY ((solaris_rlim64_t)-3) #ifdef ZFS_DEBUG extern void dprintf_setup(int *argc, char **argv); @@ -438,7 +438,7 @@ extern int vn_openat(char *path, int x1, int oflags, int mode, vnode_t **vpp, int x2, int x3, vnode_t *vp, int fd); extern int vn_rdwr(int uio, vnode_t *vp, void *addr, ssize_t len, - offset_t offset, int x1, int x2, rlim64_t x3, void *x4, ssize_t *residp); + offset_t offset, int x1, int x2, solaris_rlim64_t x3, void *x4, ssize_t *residp); extern void vn_close(vnode_t *vp, int openflag, cred_t *cr, kthread_t *td); #define vn_remove(path, x1, x2) remove(path) diff -ur sys/cddl/compat/opensolaris/sys/dirent.h sys/cddl/compat/opensolaris/sys/dirent.h --- sys/cddl/compat/opensolaris/sys/dirent.h 2008-03-28 18:16:18.000000000 -0400 +++ sys/cddl/compat/opensolaris/sys/dirent.h 2010-07-26 19:18:26.928512005 -0400 @@ -32,7 +32,10 @@ #include_next typedef struct dirent dirent64_t; +/* GNU libc has its own dirent64 declaration */ +#ifndef __GLIBC__ #define dirent64 dirent +#endif #define ino64_t ino_t #define d_ino d_fileno diff -ur sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c --- sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c 2009-10-12 16:36:55.000000000 -0400 +++ sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c 2010-07-26 18:46:46.380558137 -0400 @@ -677,7 +677,7 @@ zfs_write(vnode_t *vp, uio_t *uio, int ioflag, cred_t *cr, caller_context_t *ct) { znode_t *zp = VTOZ(vp); - rlim64_t limit = MAXOFFSET_T; + solaris_rlim64_t limit = MAXOFFSET_T; ssize_t start_resid = uio->uio_resid; ssize_t tx_bytes; uint64_t end_size; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 27 23:40:02 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F60A1065674 for ; Tue, 27 Jul 2010 23:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0D5FE8FC0C for ; Tue, 27 Jul 2010 23:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6RNe1an065884 for ; Tue, 27 Jul 2010 23:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6RNe1it065883; Tue, 27 Jul 2010 23:40:01 GMT (envelope-from gnats) Resent-Date: Tue, 27 Jul 2010 23:40:01 GMT Resent-Message-Id: <201007272340.o6RNe1it065883@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tuco Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 447B81065676 for ; Tue, 27 Jul 2010 23:31:41 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 198818FC1D for ; Tue, 27 Jul 2010 23:31:41 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6RNVegU024883 for ; Tue, 27 Jul 2010 23:31:40 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6RNVeTm024882; Tue, 27 Jul 2010 23:31:40 GMT (envelope-from nobody) Message-Id: <201007272331.o6RNVeTm024882@www.freebsd.org> Date: Tue, 27 Jul 2010 23:31:40 GMT From: Tuco To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/149015: misc fixes for ZFS code to build on Glibc X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2010 23:40:02 -0000 >Number: 149015 >Category: misc >Synopsis: misc fixes for ZFS code to build on Glibc >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jul 27 23:40:01 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Tuco >Release: Debian GNU/kFreeBSD >Organization: >Environment: >Description: Hello Here's a patch with a few more fixes for ZFS code to build on Glibc, which don't fall in the other categories. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ur cddl/contrib/opensolaris/head/thread.h cddl/contrib/opensolaris/head/thread.h --- cddl/contrib/opensolaris/head/thread.h 2009-07-09 16:22:05.000000000 -0400 +++ cddl/contrib/opensolaris/head/thread.h 2010-07-26 20:05:56.053037598 -0400 @@ -30,7 +30,10 @@ #pragma ident "%Z%%M% %I% %E% SMI" #include +/* On GNU libc, non-POSIX facilities are in */ +#ifndef __GLIBC__ #include +#endif #include /* diff -ur sys/cddl/compat/opensolaris/sys/sysmacros.h sys/cddl/compat/opensolaris/sys/sysmacros.h --- sys/cddl/compat/opensolaris/sys/sysmacros.h 2009-02-28 11:21:25.000000000 -0500 +++ sys/cddl/compat/opensolaris/sys/sysmacros.h 2010-07-26 18:46:46.357213427 -0400 @@ -103,7 +103,7 @@ * High order bit is 31 (or 63 in _LP64 kernel). */ static __inline int -highbit(ulong_t i) +highbit(unsigned long i) { register int h = 1; diff -ur sys/cddl/compat/opensolaris/sys/time.h sys/cddl/compat/opensolaris/sys/time.h --- sys/cddl/compat/opensolaris/sys/time.h 2008-11-17 15:49:29.000000000 -0500 +++ sys/cddl/compat/opensolaris/sys/time.h 2010-07-27 18:59:40.382806704 -0400 @@ -29,7 +29,12 @@ #ifndef _OPENSOLARIS_SYS_TIME_H_ #define _OPENSOLARIS_SYS_TIME_H_ +/* GNU libc has but no */ +#ifdef __GLIBC__ +#include_next +#else #include_next +#endif #define SEC 1 #define MILLISEC 1000 diff -ur sys/cddl/contrib/opensolaris/common/nvpair/nvpair.c sys/cddl/contrib/opensolaris/common/nvpair/nvpair.c --- sys/cddl/contrib/opensolaris/common/nvpair/nvpair.c 2009-08-15 22:21:24.000000000 -0400 +++ sys/cddl/contrib/opensolaris/common/nvpair/nvpair.c 2010-07-26 19:42:43.000000000 -0400 @@ -2199,11 +2199,11 @@ int err = 0; nvstream_t nvs; int nvl_endian; -#if BYTE_ORDER == _LITTLE_ENDIAN +#if BYTE_ORDER == LITTLE_ENDIAN int host_endian = 1; #else int host_endian = 0; -#endif /* _LITTLE_ENDIAN */ +#endif /* LITTLE_ENDIAN */ nvs_header_t *nvh = (void *)buf; if (buflen == NULL || nvl == NULL || >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jul 28 00:10:04 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 53E2E1065697 for ; Wed, 28 Jul 2010 00:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2AF1A8FC12 for ; Wed, 28 Jul 2010 00:10:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6S0A4x8094023 for ; Wed, 28 Jul 2010 00:10:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6S0A4Ph094019; Wed, 28 Jul 2010 00:10:04 GMT (envelope-from gnats) Date: Wed, 28 Jul 2010 00:10:04 GMT Message-Id: <201007280010.o6S0A4Ph094019@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Tuco Cc: Subject: Re: misc/149014: make ZFS makefiles use the libraries from build directory X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Tuco List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jul 2010 00:10:04 -0000 The following reply was made to PR misc/149014; it has been noted by GNATS. From: Tuco To: bug-followup@FreeBSD.org Cc: Subject: Re: misc/149014: make ZFS makefiles use the libraries from build directory Date: Wed, 28 Jul 2010 01:39:33 +0200 Ops, I typed the wrong subject. This PR is about namespace collisions with Glibc (see description). Sorry! From owner-freebsd-bugs@FreeBSD.ORG Wed Jul 28 02:14:52 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE2B51065676; Wed, 28 Jul 2010 02:14:52 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C564D8FC1B; Wed, 28 Jul 2010 02:14:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6S2Eqsu021216; Wed, 28 Jul 2010 02:14:52 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6S2EqgM021212; Wed, 28 Jul 2010 02:14:52 GMT (envelope-from linimon) Date: Wed, 28 Jul 2010 02:14:52 GMT Message-Id: <201007280214.o6S2EqgM021212@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-fs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/149013: [zfs] [patch] make ZFS makefiles use the libraries from build directory X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jul 2010 02:14:53 -0000 Old Synopsis: make ZFS makefiles use the libraries from build directory New Synopsis: [zfs] [patch] make ZFS makefiles use the libraries from build directory Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: linimon Responsible-Changed-When: Wed Jul 28 02:14:30 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=149013 From owner-freebsd-bugs@FreeBSD.ORG Wed Jul 28 02:15:45 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A96EF106566B; Wed, 28 Jul 2010 02:15:45 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 806C28FC0C; Wed, 28 Jul 2010 02:15:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6S2FjC4021272; Wed, 28 Jul 2010 02:15:45 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6S2Fjqw021268; Wed, 28 Jul 2010 02:15:45 GMT (envelope-from linimon) Date: Wed, 28 Jul 2010 02:15:45 GMT Message-Id: <201007280215.o6S2Fjqw021268@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-fs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/149014: [zfs] [patch] declarations in ZFS libraries/utilities collide with glibc namespace X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jul 2010 02:15:45 -0000 Old Synopsis: make ZFS makefiles use the libraries from build directory New Synopsis: [zfs] [patch] declarations in ZFS libraries/utilities collide with glibc namespace Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: linimon Responsible-Changed-When: Wed Jul 28 02:15:10 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=149014 From owner-freebsd-bugs@FreeBSD.ORG Wed Jul 28 02:16:12 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5509F1065674; Wed, 28 Jul 2010 02:16:12 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2C9648FC19; Wed, 28 Jul 2010 02:16:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6S2GCfF021324; Wed, 28 Jul 2010 02:16:12 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6S2GCHv021320; Wed, 28 Jul 2010 02:16:12 GMT (envelope-from linimon) Date: Wed, 28 Jul 2010 02:16:12 GMT Message-Id: <201007280216.o6S2GCHv021320@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-fs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/149015: [zfs] [patch] misc fixes for ZFS code to build on Glibc X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jul 2010 02:16:12 -0000 Old Synopsis: misc fixes for ZFS code to build on Glibc New Synopsis: [zfs] [patch] misc fixes for ZFS code to build on Glibc Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: linimon Responsible-Changed-When: Wed Jul 28 02:15:57 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=149015 From owner-freebsd-bugs@FreeBSD.ORG Wed Jul 28 02:17:40 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70EB91065678; Wed, 28 Jul 2010 02:17:40 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 47A318FC24; Wed, 28 Jul 2010 02:17:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6S2HepS021384; Wed, 28 Jul 2010 02:17:40 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6S2He5R021380; Wed, 28 Jul 2010 02:17:40 GMT (envelope-from linimon) Date: Wed, 28 Jul 2010 02:17:40 GMT Message-Id: <201007280217.o6S2He5R021380@freefall.freebsd.org> To: tuco.xyz@gmail.com, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/149012: [headers] [request] please replace '#include ' with '#include ' X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jul 2010 02:17:40 -0000 Old Synopsis: please replace '#include ' with '#include ' New Synopsis: [headers] [request] please replace '#include ' with '#include ' State-Changed-From-To: open->suspended State-Changed-By: linimon State-Changed-When: Wed Jul 28 02:16:41 UTC 2010 State-Changed-Why: Mark as suspended waiting patches. http://www.freebsd.org/cgi/query-pr.cgi?pr=149012 From owner-freebsd-bugs@FreeBSD.ORG Wed Jul 28 05:39:40 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A3AB31065679; Wed, 28 Jul 2010 05:39:40 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7B44A8FC12; Wed, 28 Jul 2010 05:39:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6S5de60021872; Wed, 28 Jul 2010 05:39:40 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6S5dc9N021868; Wed, 28 Jul 2010 05:39:38 GMT (envelope-from remko) Date: Wed, 28 Jul 2010 05:39:38 GMT Message-Id: <201007280539.o6S5dc9N021868@freefall.freebsd.org> To: mam@werries.de, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org From: remko@FreeBSD.org Cc: Subject: Re: misc/148963: update to 8.1 failes X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jul 2010 05:39:40 -0000 Synopsis: update to 8.1 failes State-Changed-From-To: open->closed State-Changed-By: remko State-Changed-When: Wed Jul 28 05:39:37 UTC 2010 State-Changed-Why: Closing the PR after discussing this with the submitter, seemed like an intermediate problem on some end or in between. Thanks for trying to make FreeBSD better!! http://www.freebsd.org/cgi/query-pr.cgi?pr=148963 From owner-freebsd-bugs@FreeBSD.ORG Wed Jul 28 05:40:02 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5E9941065673 for ; Wed, 28 Jul 2010 05:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 36CC68FC19 for ; Wed, 28 Jul 2010 05:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6S5e2cb021902 for ; Wed, 28 Jul 2010 05:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6S5e22j021901; Wed, 28 Jul 2010 05:40:02 GMT (envelope-from gnats) Resent-Date: Wed, 28 Jul 2010 05:40:02 GMT Resent-Message-Id: <201007280540.o6S5e22j021901@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Vladimir Kurtukov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B466F1065670 for ; Wed, 28 Jul 2010 05:32:28 +0000 (UTC) (envelope-from vk@dss.kbb.ru) Received: from kbb2.kbb.ru (kbb2.kbb.ru [62.231.189.33]) by mx1.freebsd.org (Postfix) with ESMTP id 10B998FC13 for ; Wed, 28 Jul 2010 05:32:25 +0000 (UTC) Received: from dss.kbb.ru (dss.srv.kbb [192.168.120.103]) by kbb2.kbb.ru (8.14.4/8.14.4) with ESMTP id o6S5Lajd045843 for ; Wed, 28 Jul 2010 12:21:36 +0700 (NOVST) (envelope-from vk@dss.kbb.ru) Received: from dss.kbb.ru (localhost [127.0.0.1]) by dss.kbb.ru (8.14.4/8.14.4) with ESMTP id o6S5LNSh005306 for ; Wed, 28 Jul 2010 12:21:24 +0700 (NOVST) (envelope-from vk@dss.kbb.ru) Received: (from vk@localhost) by dss.kbb.ru (8.14.4/8.14.4/Submit) id o6S5LNN4005305; Wed, 28 Jul 2010 12:21:23 +0700 (NOVST) (envelope-from vk) Message-Id: <201007280521.o6S5LNN4005305@dss.kbb.ru> Date: Wed, 28 Jul 2010 12:21:23 +0700 (NOVST) From: Vladimir Kurtukov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/149022: File system operations hangs with suspfs state X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Vladimir Kurtukov List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jul 2010 05:40:02 -0000 >Number: 149022 >Category: kern >Synopsis: File system operations hangs with suspfs state >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jul 28 05:40:01 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Vladimir Kurtukov >Release: FreeBSD 9.0-CURRENT i386 >Organization: AB KuznetskBusinessBank >Environment: System: FreeBSD dss.kbb.ru 9.0-CURRENT FreeBSD 9.0-CURRENT #2: Mon Jul 26 09:14:09 NOVST 2010 root@dss.kbb.ru:/usr/obj/usr/src/sys/DSS i386 Uniprocessor desktop machine, two HDD, part of space is geom_mirror for root partition, other in geom_stripe with 64k stripe size, geom_cache (-b 128k -s 1024) over the stripe. /usr, /var, /mnt/.1 filesystems on geom_cache with SUJ enabled. Current hang with geom_sched enabled, but previous was without geom_sched. No WITNESS and other debugging functions, only debugger. >Description: File system operations hangs with suspfs state, system still responsible, other functions like console, networking work fine. May be SUJ deadlock, but not sure. Kernel core dump available by request (100MB compressed) vk@dss$ ls load: 0.12 cmd: ls 99574 [suspfs] 1.25r 0.00u 0.00s 0% 1128k load: 0.12 cmd: ls 99574 [suspfs] 2.26r 0.00u 0.00s 0% 1128k load: 0.12 cmd: ls 99574 [suspfs] 2.53r 0.00u 0.00s 0% 1128k load: 0.12 cmd: ls 99574 [suspfs] 2.77r 0.00u 0.00s 0% 1128k load: 0.11 cmd: ls 99574 [suspfs] 2.99r 0.00u 0.00s 0% 1128k load: 0.11 cmd: ls 99574 [suspfs] 3.23r 0.00u 0.00s 0% 1128k KDB: enter: manual escape to debugger [ thread pid 12 tid 100016 ] Stopped at breakpoint+0x4: popl %ebp db> ps pid ppid pgrp uid state wmesg wchan cmd 99614 1859 99614 95 Ds suspfs 0xc4659a68 bforce 99578 99576 99578 0 Ds suspfs 0xc4659a68 atrun 99577 99575 99577 2 DEs suspfs 0xc4659a68 sh 99576 1737 1737 0 S piperd 0xc4514c40 cron 99575 1737 1737 0 S wait 0xc543cd48 cron 99574 6034 99574 1000 D+ suspfs 0xc4659a68 ls 99573 22088 22059 1000 D+ suspfs 0xc4659a68 xterm 99570 1859 99570 95 Ds suspfs 0xc4659a68 bforce 99569 1 25426 0 D suspfs 0xc4659a68 sendmail 99566 99565 99566 0 Ds suspfs 0xc4659a68 atrun 99565 1737 1737 0 S piperd 0xcfa92ab8 cron 99122 25426 25426 0 S select 0xce469764 sendmail 99060 1899 99060 1000 S+ ttyin 0xc3b43670 bash 92088 89311 92088 1000 S+ select 0xc646dca4 ssh 89311 8335 89311 1000 Ss+ wait 0xc4744550 bash 37731 35682 37731 1000 S+ select 0xc5ca79a4 ssh 35682 8335 35682 1000 Ss+ wait 0xc4a2ad48 bash 22161 1 22075 1000 S select 0xc4e3b924 initial thread 22159 22155 22059 1000 S+ (threaded) firefox-bin 100212 S ucond 0xc5d5ae00 firefox-bin 100211 S ucond 0xc4930780 firefox-bin 100174 S ucond 0xc4d40080 firefox-bin 100144 S ucond 0xc45f3680 firefox-bin 100210 S ucond 0xc6114880 firefox-bin 100139 S ucond 0xc4d40e80 firefox-bin 100138 S ucond 0xc5364580 firefox-bin 100137 S ucond 0xc4d40280 firefox-bin 100136 S select 0xc49cdd64 firefox-bin 100245 S suspfs 0xc4659a68 initial thread 22155 22151 22059 1000 S+ wait 0xc4513000 sh 22151 1 22059 1000 S+ wait 0xcfa8b000 sh 22099 1 22059 1000 S+ select 0xc4961564 initial thread 22092 1 22059 1000 S+ select 0xc610ba64 xfce4-settings-help 22091 22077 22059 1000 D+ (threaded) pidgin 100130 D suspfs 0xc4659a68 initial thread 22089 22077 22059 1000 S+ (threaded) xfdesktop 100236 S select 0xcb03dca4 initial thread 22088 22077 22059 1000 D+ (threaded) xfce4-panel 100135 S piperd 0xcfa92188 xfce4-panel 100133 D suspfs 0xc4659a68 initial thread 22087 1 22086 1000 S select 0xc5cb0c24 initial thread 22085 22077 22059 1000 S+ select 0xc55fb424 initial thread 22084 22077 22059 1000 S+ select 0xc610a9a4 initial thread 22083 1 22059 1000 S+ select 0xc57087e4 xfsettingsd 22079 1 22075 1000 S select 0xc49d0be4 initial thread 22077 22059 22059 1000 S+ (threaded) xfce4-session 100134 S piperd 0xc4654000 xfce4-session 100125 S select 0xcb03f1e4 initial thread 22075 1 22075 1000 Ss select 0xc5c567a4 dbus-daemon 22074 1 22059 1000 S+ select 0xc5054724 dbus-launch 22069 1 22069 1000 Ss select 0xc5cad2e4 ssh-agent 22059 22055 22059 1000 S+ wait 0xc4a2a000 sh 22056 22055 22056 1000 S+ select 0xc49c2ce4 initial thread 22055 22022 22022 1000 S+ wait 0xc4511d48 xinit 22022 7646 22022 1000 S+ wait 0xc5383d48 sh 18772 29861 29861 80 SJ lockf 0xc4abf880 httpd 18771 29861 29861 80 SJ lockf 0xc481a3c0 httpd 6034 5989 6034 1000 S+ wait 0xc6097d48 bash 5989 1 5989 0 SWs+ wait 0xc456a000 login 5911 30208 5911 1000 S+ select 0xc7938be4 ssh 53815 25405 53815 1000 S+ select 0xc60249a4 ssh 53814 29861 29861 80 SJ lockf 0xc5252800 httpd 30208 1898 30208 1000 SW+ wait 0xc6097aa0 bash 30078 29861 29861 80 SJ lockf 0xc47c99c0 httpd 29885 29861 29861 80 SJ select 0xc6109ce4 httpd 29868 29861 29861 80 SJ lockf 0xc5144dc0 httpd 29867 29861 29861 80 SJ lockf 0xc4ec7c80 httpd 29866 29861 29861 80 SJ lockf 0xc68c8200 httpd 29865 29861 29861 80 SJ lockf 0xc4ef95c0 httpd 29864 29861 29861 80 SJ lockf 0xc6944780 httpd 29861 1 29861 0 SsJ select 0xc6109c24 httpd 29850 1 29850 0 SsJ nanslp 0xc0b5ff84 cron 29844 1 29844 25 SsJ pause 0xc4538af8 sendmail 29838 1 29838 0 SsJ select 0xc76e9e24 sendmail 29833 1 29833 0 SsJ select 0xc44dada4 sshd 29779 1 29779 0 SsJ select 0xce3be124 syslogd 25429 1 25429 25 Ss pause 0xc6097300 sendmail 25426 1 25426 0 Ss select 0xc5c597e4 sendmail 25405 25404 25405 1000 SWs+ wait 0xc4744d48 bash 25404 1954 25404 1000 S+ select 0xc464dd24 mc 91143 1 91143 26 Ss (threaded) milter-greylist 100141 S select 0xc5e9ac64 milter-greylist 100214 S sigwait 0xdfb9aba0 milter-greylist 100195 S ucond 0xc471b280 milter-greylist 100148 S ucond 0xc4957800 milter-greylist 100126 S select 0xc4e3a124 milter-greylist 55568 55567 55567 26 S (threaded) dkim-filter 100194 S select 0xc4eca024 dkim-filter 100196 S sigwait 0xdfb64ba0 dkim-filter 100143 S sigwait 0xdfa9aba0 dkim-filter 100140 S select 0xce3bd664 dkim-filter 100116 S select 0xc60f23e4 dkim-filter 55567 1 55567 26 SWs wait 0xc4513d48 dkim-filter 11647 11646 11647 0 S+ ttyin 0xc860d470 bash 11646 8337 11646 1000 SW+ wait 0xc543b000 su 10912 10911 10912 0 Ss+ ttyin 0xc860d270 bash 10911 8345 10911 0 D+ suspfs 0xc4659a68 mc 10891 10890 10891 0 Ss+ ttyin 0xc860e870 bash 10890 10093 10890 0 D+ suspfs 0xc4659a68 mc 10093 1901 10093 0 SW+ wait 0xc4503550 bash 8345 1893 8345 0 SW+ wait 0xc4503d48 bash 8337 8335 8337 1000 SWs+ wait 0xc5d132a8 bash 8335 8334 8335 1000 Ss select 0xc44e80a4 screen 8334 8326 8334 1000 S+ pause 0xc450a058 screen 8326 1896 8326 1000 SW+ wait 0xc4511000 bash 7646 1903 7646 1000 S+ wait 0xc5d13550 bash 1954 1894 1954 1000 SW+ wait 0xc5d142a8 bash 1912 1904 1912 1000 S+ select 0xc52c7164 ssh 1904 1897 1904 1000 SW+ wait 0xc537f2a8 bash 1903 1 1903 0 SWs+ wait 0xc537f550 login 1902 1 1902 0 Ss+ ttyin 0xc3b43c70 getty 1901 1 1901 0 SWs+ wait 0xc537faa0 login 1900 1 1900 0 Ss+ ttyin 0xc3b43870 getty 1899 1 1899 0 Ss+ wait 0xc5383000 login 1898 1 1898 0 SWs+ wait 0xc53832a8 login 1897 1 1897 0 SWs+ wait 0xc5383550 login 1896 1 1896 0 SWs+ wait 0xc46b7550 login 1894 1 1894 0 SWs+ wait 0xc39e2aa0 login 1893 1 1893 0 SWs+ wait 0xc46ba7f8 login 1859 1 1859 0 Ss select 0xc44e71e4 inetd 1835 1 1835 95 Ds suspfs 0xc4659a68 bforce 1737 1 1737 0 Ss nanslp 0xc0b5ff84 cron 1718 1 1718 0 Ss select 0xc52c76e4 sshd 1647 1 1647 0 Ss select 0xc4e3be64 ntpd 1615 1 1615 0 Ss select 0xc4e39c24 lpd 1435 1 1435 0 Ss select 0xc4e399a4 moused 1402 1400 1400 0 S (threaded) nfsd 100083 S rpcsvc 0xc4e39d90 nfsd: service 100082 S rpcsvc 0xc4e3a610 nfsd: service 100081 S rpcsvc 0xc4e3a4d0 nfsd: service 100070 S rpcsvc 0xc3b2a6d0 nfsd: master 1400 1 1400 0 Ss select 0xc4e3a6e4 nfsd 1398 1 1398 0 Ss select 0xc44e8ba4 mountd 1377 1 1377 0 Ss select 0xc44da9e4 rpcbind 1234 1 1234 0 Ss select 0xc4e3b0e4 syslogd 982 1 982 0 Ss select 0xc464db24 devd 121 1 121 0 SWs pause 0xc46ba300 adjkerntz 22 0 0 0 DL flowclea 0xc0b73bcc [flowcleaner] 21 0 0 0 DL getblk 0xd2ac7bc0 [softdepflush] 20 0 0 0 DL syncer 0xc0b739d4 [syncer] 19 0 0 0 DL vlruwt 0xc4635550 [vnlru] 18 0 0 0 DL psleep 0xc0b7370c [bufdaemon] 17 0 0 0 DL pgzero 0xc0b81514 [pagezero] 16 0 0 0 DL psleep 0xc0b81154 [vmdaemon] 15 0 0 0 DL psleep 0xc0b81118 [pagedaemon] 9 0 0 0 DL m:w1 0xc44dfc00 [g_mirror root] 8 0 0 0 DL ccb_scan 0xc0b461d4 [xpt_thrd] 7 0 0 0 DL pftm 0xc04c2b2e [pfpurge] 6 0 0 0 DL waiting_ 0xc0b75718 [sctp_iterator] 5 0 0 0 DL - 0xc39be03c [fdc0] 14 0 0 0 DL (threaded) [usb] 100045 D - 0xc3a9ad0c [usbus4] 100044 D - 0xc3a9acdc [usbus4] 100043 D - 0xc3a9acac [usbus4] 100042 D - 0xc3a9ac7c [usbus4] 100040 D - 0xc3a88dac [usbus3] 100039 D - 0xc3a88d7c [usbus3] 100038 D - 0xc3a88d4c [usbus3] 100037 D - 0xc3a88d1c [usbus3] 100036 D - 0xc3a76dac [usbus2] 100035 D - 0xc3a76d7c [usbus2] 100034 D - 0xc3a76d4c [usbus2] 100033 D - 0xc3a76d1c [usbus2] 100031 D - 0xc3a5cdac [usbus1] 100030 D - 0xc3a5cd7c [usbus1] 100029 D - 0xc3a5cd4c [usbus1] 100028 D - 0xc3a5cd1c [usbus1] 100026 D - 0xc3a46dac [usbus0] 100025 D - 0xc3a46d7c [usbus0] 100024 D - 0xc3a46d4c [usbus0] 100023 D - 0xc3a46d1c [usbus0] 13 0 0 0 DL - 0xc0b5fde4 [yarrow] 4 0 0 0 DL - 0xc0b5daa4 [g_down] 3 0 0 0 DL - 0xc0b5daa0 [g_up] 2 0 0 0 DL - 0xc0b5da98 [g_event] 12 0 0 0 RL (threaded) [intr] 100053 I [swi0: uart uart] 100052 I [irq12: psm0] 100051 I [irq1: atkbd0] 100050 I [irq17: pcm0] 100049 I [irq15: ata1] 100048 I [irq14: ata0] 100047 I [irq22: fxp1] 100046 I [irq20: fxp0] 100041 I [irq23: ehci0] 100032 I [irq18: uhci2] 100027 I [irq19: uhci1] 100022 I [irq16: uhci0 uhci3] 100021 I [irq9: acpi0] 100019 I [swi2: cambio] 100018 I [swi5: +] 100016 Run CPU 0 [swi6: Giant taskq] 100015 I [swi6: task queue] 100006 I [swi4: clock] 100005 I [swi3: vm] 100004 I [swi1: netisr 0] 11 0 0 0 RL [idle: cpu0] 1 0 1 0 SLs wait 0xc3954d48 [init] 10 0 0 0 DL audit_wo 0xc0b7ef40 [audit] 0 0 0 0 DLs (threaded) [kernel] 100058 D - 0xc3b2a8c0 [dummynet] 100055 D deadlkre 0xc0b5fde4 [deadlkres] 100020 D - 0xc39f2280 [kqueue taskq] 100017 D - 0xc39f2440 [thread taskq] 100014 D - 0xc39f2800 [acpi_task_2] 100013 D - 0xc39f2800 [acpi_task_1] 100012 D - 0xc39f2800 [acpi_task_0] 100010 D - 0xc3932380 [firmware taskq] 100000 D sched 0xc0b5db80 [swapper] KDB: enter: manual escape to debugger [ thread pid 12 tid 100016 ] Stopped at breakpoint+0x4: popl %ebp db> show pcpu cpuid = 0 dynamic pcpu = 0x4dfc00 curthread = 0xc3a16840: pid 12 "swi6: Giant taskq" curpcb = 0xc365dd80 fpcurthread = none idlethread = 0xc3956840: tid 100003 "idle: cpu0" APIC ID = 0 currentldt = 0x50 db> cont KDB: enter: manual escape to debugger [ thread pid 12 tid 100016 ] Stopped at breakpoint+0x4: popl %ebp db> show pcpu cpuid = 0 dynamic pcpu = 0x4dfc00 curthread = 0xc3a16840: pid 12 "swi6: Giant taskq" curpcb = 0xc365dd80 fpcurthread = none idlethread = 0xc3956840: tid 100003 "idle: cpu0" APIC ID = 0 currentldt = 0x50 db> cont KDB: enter: manual escape to debugger [ thread pid 12 tid 100016 ] Stopped at breakpoint+0x4: popl %ebp db> show allpcpu Current CPU: 0 cpuid = 0 dynamic pcpu = 0x4dfc00 curthread = 0xc3a16840: pid 12 "swi6: Giant taskq" curpcb = 0xc365dd80 fpcurthread = none idlethread = 0xc3956840: tid 100003 "idle: cpu0" APIC ID = 0 currentldt = 0x50 dss.kbb.ru dumped core - see /var/crash/vmcore.0 Wed Jul 28 11:06:12 NOVST 2010 FreeBSD dss.kbb.ru 9.0-CURRENT FreeBSD 9.0-CURRENT #2: Mon Jul 26 09:14:09 NOVST 2010 root@dss.kbb.ru:/usr/obj/usr/src/sys/DSS i386 panic: from debugger 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: KDB: enter: manual escape to debugger panic: from debugger cpuid = 0 Uptime: 1d18h4m47s Physical memory: 738 MB Dumping 240 MB: 225 209 193 177 161 145 129 113 97 81 65 49 33 17 1 Reading symbols from /boot/kernel/geom_mirror.ko...Reading symbols from /boot/kernel/geom_mirror.ko.symbols...done. done. Loaded symbols for /boot/kernel/geom_mirror.ko Reading symbols from /boot/kernel/geom_stripe.ko...Reading symbols from /boot/kernel/geom_stripe.ko.symbols...done. done. Loaded symbols for /boot/kernel/geom_stripe.ko Reading symbols from /boot/kernel/snd_ich.ko...Reading symbols from /boot/kernel/snd_ich.ko.symbols...done. done. Loaded symbols for /boot/kernel/snd_ich.ko Reading symbols from /boot/kernel/sound.ko...Reading symbols from /boot/kernel/sound.ko.symbols...done. done. Loaded symbols for /boot/kernel/sound.ko Reading symbols from /boot/kernel/geom_cache.ko...Reading symbols from /boot/kernel/geom_cache.ko.symbols...done. done. Loaded symbols for /boot/kernel/geom_cache.ko Reading symbols from /boot/kernel/linux.ko...Reading symbols from /boot/kernel/linux.ko.symbols...done. done. Loaded symbols for /boot/kernel/linux.ko Reading symbols from /boot/kernel/logo_saver.ko...Reading symbols from /boot/kernel/logo_saver.ko.symbols...done. done. Loaded symbols for /boot/kernel/logo_saver.ko Reading symbols from /boot/kernel/i915.ko...Reading symbols from /boot/kernel/i915.ko.symbols...done. done. Loaded symbols for /boot/kernel/i915.ko Reading symbols from /boot/kernel/drm.ko...Reading symbols from /boot/kernel/drm.ko.symbols...done. done. Loaded symbols for /boot/kernel/drm.ko Reading symbols from /boot/kernel/gsched_rr.ko...Reading symbols from /boot/kernel/gsched_rr.ko.symbols...done. done. Loaded symbols for /boot/kernel/gsched_rr.ko Reading symbols from /boot/kernel/geom_sched.ko...Reading symbols from /boot/kernel/geom_sched.ko.symbols...done. done. Loaded symbols for /boot/kernel/geom_sched.ko #0 doadump () at /usr/src/sys/kern/kern_shutdown.c:245 245 dumptid = curthread->td_tid; (kgdb) #0 doadump () at /usr/src/sys/kern/kern_shutdown.c:245 #1 0xc06a341d in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:416 #2 0xc06a38af in panic (fmt=Could not find the frame base for "panic". ) at /usr/src/sys/kern/kern_shutdown.c:590 #3 0xc04fe79e in db_panic (addr=Could not find the frame base for "db_panic". ) at /usr/src/sys/ddb/db_command.c:478 #4 0xc04fe6ee in db_command (last_cmdp=0xc0b4877c, cmd_table=0x0, dopager=1) at /usr/src/sys/ddb/db_command.c:445 #5 0xc04fe806 in db_command_loop () at /usr/src/sys/ddb/db_command.c:498 #6 0xc0501049 in db_trap (type=3, code=0) at /usr/src/sys/ddb/db_main.c:229 #7 0xc06dc4e7 in kdb_trap (type=3, code=0, tf=0xc365db1c) at /usr/src/sys/kern/subr_kdb.c:535 #8 0xc0a33b22 in trap (frame=0xc365db1c) at /usr/src/sys/i386/i386/trap.c:697 #9 0xc0a14cfc in calltrap () at /usr/src/sys/i386/i386/exception.s:166 #10 0xc06dc0c5 in breakpoint () at cpufunc.h:71 #11 0xc06dc0b5 in kdb_enter (why=0xc0a8e4d5 "break", msg=0xc0a8e4bb "manual escape to debugger") at /usr/src/sys/kern/subr_kdb.c:340 #12 0xc05aabb6 in scgetc (sc=0xc0b985a0, flags=2) at /usr/src/sys/dev/syscons/syscons.c:3432 #13 0xc05a3cfd in sckbdevent (thiskbd=0xc3943600, event=0, arg=0xc0b985a0) at /usr/src/sys/dev/syscons/syscons.c:693 #14 0xc0571929 in kbdmux_intr (kbd=0xc3943600, arg=0x0) at /usr/src/sys/dev/kbdmux/kbdmux.c:549 #15 0xc0570fcb in kbdmux_kbd_intr (xkbd=0xc3943600, pending=1) at /usr/src/sys/dev/kbdmux/kbdmux.c:208 #16 0xc06eaae9 in taskqueue_run (queue=0xc39f24c0, tpp=0xc39f24d4) at /usr/src/sys/kern/subr_taskqueue.c:240 #17 0xc06eadbf in taskqueue_swi_giant_run (dummy=0x0) at /usr/src/sys/kern/subr_taskqueue.c:294 #18 0xc06716d0 in intr_event_execute_handlers (p=0xc39547f8, ie=0xc39a3100) at /usr/src/sys/kern/kern_intr.c:1220 #19 0xc0671787 in ithread_execute_handlers (p=0xc39547f8, ie=0xc39a3100) at /usr/src/sys/kern/kern_intr.c:1233 #20 0xc06718c1 in ithread_loop (arg=0xc3953320) at /usr/src/sys/kern/kern_intr.c:1315 #21 0xc066f45a in fork_exit (callout=0xc0671845 , arg=0xc3953320, frame=0xc365dd28) at /usr/src/sys/kern/kern_fork.c:843 #22 0xc0a14d74 in fork_trampoline () at /usr/src/sys/i386/i386/exception.s:273 (kgdb) ------------------------------------------------------------------------ ps -axl UID PID PPID CPU PRI NI VSZ RSS MWCHAN STAT TT TIME COMMAND 0 0 0 0 -68 0 0 0 - DLs ?? -28576326:-34.55 [kernel] 0 1 0 0 44 0 8032 76 wait DLs ?? -25356019:-18.55 [init] 0 2 0 0 -8 0 0 0 - DL ?? -19504965:-10.55 [g_event] 0 3 0 0 -8 0 0 0 - DL ?? -3327766:-38.55 [g_up] 0 4 0 0 -8 0 0 0 - DL ?? 6513292:05.00 [g_down] 0 5 0 0 -16 0 0 0 - DL ?? 27808067:26.00 [fdc0] 0 6 0 0 -16 0 0 0 waitin DL ?? 1146:57.00 [sctp_ite 0 7 0 0 44 0 0 0 pftm DL ?? -3680890:-5.55 [pfpurge] 0 8 0 0 44 0 0 0 ccb_sc DL ?? 22184:34.00 [xpt_thrd 0 9 0 0 -8 0 0 0 m:w1 DL ?? -27874408:-36.55 [g_mirror 0 10 0 0 -16 0 0 0 audit_ DL ?? 0:00.00 [audit] 0 11 0 0 171 0 0 0 - RL ?? 33486906:36.00 [idle] 0 12 0 0 -48 0 0 0 - WL ?? 526512:43.00 [intr] 0 13 0 0 -16 0 0 0 - DL ?? 6216227:26.00 [yarrow] 0 14 0 0 -64 0 0 0 - DL ?? -4059862:-59.55 [usb] 0 15 0 0 44 0 0 0 psleep DL ?? 34371000:36.00 [pagedaem 0 16 0 0 44 0 0 0 psleep DL ?? 27615062:28.00 [vmdaemon 0 17 0 0 76 0 0 0 pgzero DL ?? 122010:10.00 [pagezero 0 18 0 0 45 0 0 0 psleep DL ?? 10183027:06.00 [bufdaemo 0 19 0 0 44 0 0 0 vlruwt DL ?? -2385566:-14.55 [vnlru] 0 20 0 0 44 0 0 0 syncer DL ?? 34502453:27.55 [syncer] 0 21 0 0 44 0 0 0 getblk DL ?? -7529719:00.55 [softdepf 0 22 0 0 -16 0 0 0 flowcl DL ?? 21283936:13.00 [flowclea 0 121 1 0 76 0 1624 0 pause DWs ?? 0:00.00 [adjkernt 0 982 1 0 44 0 8032 212 select Ds ?? 1308468:46.00 [devd] 0 1234 1 0 44 0 9596 712 select Ds ?? -7814185:-11.55 [syslogd] 0 1377 1 0 44 0 9620 736 select Ds ?? 8141005:56.00 [rpcbind] 0 1398 1 0 44 0 9596 788 select Ds ?? 1167578:47.00 [mountd] 0 1400 1 0 76 0 9516 512 select Ds ?? 1735031:55.00 [nfsd] 0 1402 1400 0 44 0 9516 452 rpcsvc D ?? -33317594:-30.55 [nfsd] 0 1435 1 0 44 0 9696 520 select Ds ?? 19441541:22.00 [moused] 0 1615 1 0 76 0 9516 512 select Ds ?? 223122:44.00 [lpd] 0 1647 1 0 44 0 11140 1048 select Ds ?? 11955544:16.00 [ntpd] 0 1718 1 0 76 0 12840 600 select Ds ?? 85016:26.00 [sshd] 0 1737 1 0 44 0 9620 468 nanslp Ds ?? 22431821:20.00 [cron] 95 1835 1 0 44 0 1876 508 suspfs Ds ?? 29308693:30.00 [bforce] 0 1859 1 0 44 0 9652 652 select Ds ?? 3056727:59.00 [inetd] 0 1893 1 0 44 0 10016 0 wait DWs ?? 0:00.00 [login] 0 1894 1 0 44 0 10016 0 wait DWs ?? 0:00.00 [login] 0 1896 1 0 44 0 10016 0 wait DWs ?? 0:00.00 [login] 0 1897 1 0 45 0 10016 0 wait DWs ?? 0:00.00 [login] 0 1898 1 0 44 0 10016 0 wait DWs ?? 0:00.00 [login] 0 1899 1 0 44 0 10016 1620 wait Ds ?? 1680311:20.00 [login] 0 1900 1 0 76 0 9596 432 ttyin Ds+ ?? 168286:57.00 [getty] 0 1901 1 0 44 0 10016 0 wait DWs ?? 0:00.00 [login] 0 1902 1 0 76 0 9596 432 ttyin Ds+ ?? 161782:37.00 [getty] 0 1903 1 0 44 0 10016 0 wait DWs ?? 0:00.00 [login] 1000 1904 1897 0 44 0 10796 1212 suspfs D+ ?? 1074191:15.00 [bash] 1000 1954 1894 0 44 0 10808 0 wait DW ?? 0:00.00 [bash] 1000 5911 30208 0 44 0 12580 1088 select D+ ?? -28549660:-41.55 [ssh] 0 5989 1 0 44 0 10016 0 wait DWs ?? 0:00.00 [login] 1000 6034 5989 0 44 0 10808 1456 wait D ?? 2130616:48.00 [bash] 1000 7646 1903 0 44 0 10808 868 wait D ?? 1086033:37.00 [bash] 1000 8326 1896 0 48 0 10796 0 wait DW ?? 0:00.00 [bash] 1000 8334 8326 0 44 0 10152 184 pause D+ ?? 12001851:24.00 [screen] 0 8335 8334 0 44 0 10152 1436 select Ds ?? -28242263:-4.55 [screen] 1000 8337 8335 0 44 0 10796 0 wait DWs ?? 0:00.00 [bash] 0 8345 1893 0 44 0 10796 0 wait DW ?? 0:00.00 [bash] 0 10093 1901 0 45 0 10796 0 wait DW ?? 0:00.00 [bash] 0 10890 10093 0 44 0 17116 2612 suspfs D+ ?? -33825126:-54.55 [mc] 0 10891 10890 0 44 0 10796 1144 ttyin Ds+ ?? 5332361:07.00 [bash] 0 10911 8345 0 44 0 17116 3356 suspfs D+ ?? -12733091:-43.55 [mc] 0 10912 10911 0 44 0 10796 1208 ttyin Ds+ ?? 18654528:13.00 [bash] 0 11646 8337 0 44 0 10012 0 wait DW ?? 0:00.00 [su] 0 11647 11646 0 44 0 10808 1336 ttyin D+ ?? 3372491:00.00 [bash] 80 18771 29861 0 46 0 5604 1716 lockf D ?? 27309825:56.00 [httpd] 80 18772 29861 0 46 0 5644 1744 lockf D ?? 28897571:54.00 [httpd] 1000 22022 7646 0 76 0 9860 912 wait D+ ?? 497418:09.00 [sh] 1000 22055 22022 0 50 0 10788 972 wait D+ ?? 286491:55.00 [xinit] 0 22056 22055 0 44 0 196680 166740 select D ?? -13506071:-50.55 [Xorg] 1000 22059 22055 0 76 0 9860 892 wait D ?? 944279:32.00 [sh] 1000 22069 1 0 76 0 12512 1296 select Ds ?? 30709:05.00 [ssh-agen 1000 22074 1 0 68 0 10884 1044 select D ?? 75801:53.00 [dbus-lau 1000 22075 1 0 44 0 9736 1132 select Ds ?? -24171640:-9.55 [dbus-dae 1000 22077 22059 0 44 0 32380 9396 piperd D ?? 16376018:20.00 [xfce4-se 1000 22079 1 0 45 0 12288 1888 select D ?? 4416457:26.00 [xfconfd] 1000 22083 1 0 44 0 21888 6332 select D ?? 1469203:12.00 [xfsettin 1000 22084 22077 0 44 0 24120 9436 select D ?? 24054978:57.00 [xfwm4] 1000 22085 22077 0 44 0 22864 6736 select D ?? 16727163:22.00 [Thunar] 1000 22087 1 0 45 0 11664 1292 select D ?? 822791:36.00 [gam_serv 1000 22088 22077 0 44 0 37364 11736 piperd D ?? -13530150:-29.55 [xfce4-pa 1000 22089 22077 0 44 0 38856 11368 select D ?? -7563624:-50.55 [xfdeskto 1000 22091 22077 0 44 0 58984 24180 suspfs D ?? 26635636:21.00 [pidgin] 1000 22092 1 0 44 0 22720 7524 l D ?? -16310290:-52.55 [xfce4-se 1000 22099 1 0 45 0 14796 3272 select D ?? 19139482:44.00 [gkrellm] 1000 22151 1 0 76 0 9860 900 wait D ?? 814583:03.00 [sh] 1000 22155 22151 0 76 0 9860 936 wait D ?? 344077:27.00 [sh] 1000 22159 22155 0 76 0 199104 119248 ucond D ?? 6875064:41.00 [firefox- 1000 22161 1 0 44 0 12900 2564 select D ?? 2613022:32.00 [gconfd-2 1000 25404 1954 0 44 0 13020 832 select D+ ?? -28670328:-29.55 [mc] 1000 25405 25404 0 44 0 10808 0 wait DWs ?? 0:00.00 [bash] 0 25426 1 0 44 0 11256 1272 select Ds ?? 21547106:37.00 [sendmail 25 25429 1 0 44 0 11256 664 pause Ds ?? 1494141:19.00 [sendmail 0 29779 1 0 44 0 1516 348 select Ds ?? -27076192:-11.55 [syslogd] 0 29833 1 0 44 0 3808 340 select Ds ?? 175153:48.00 [sshd] 0 29838 1 0 44 0 3776 844 select Ds ?? 4284093:13.00 [sendmail 25 29844 1 0 44 0 3652 528 pause Ds ?? 1364358:51.00 [sendmail 0 29850 1 0 44 0 1536 272 nanslp Ds ?? 15369210:59.00 [cron] 0 29861 1 0 44 0 5400 344 select Ds ?? 33868907:54.00 [httpd] 80 29864 29861 0 46 0 5600 1592 lockf D ?? 32483642:19.00 [httpd] 80 29865 29861 0 46 0 5592 1616 lockf D ?? 31707095:32.00 [httpd] 80 29866 29861 0 44 0 5620 1592 select D ?? 29191840:12.00 [httpd] 80 29867 29861 0 46 0 5644 1616 lockf D ?? 34113028:31.00 [httpd] 80 29868 29861 0 44 0 5656 1616 lockf D ?? 32255286:27.00 [httpd] 80 29885 29861 0 47 0 5628 1592 lockf D ?? 34172955:23.55 [httpd] 80 30078 29861 0 46 0 5652 1604 lockf D ?? 30472484:18.00 [httpd] 1000 30208 1898 0 44 0 10808 0 wait DW ?? 0:00.00 [bash] 1000 35682 8335 0 46 0 10796 1784 wait Ds ?? 1205947:24.00 [bash] 1000 37731 35682 0 44 0 12580 2324 select D+ ?? 1922456:52.00 [ssh] 80 53814 29861 0 44 0 5664 1752 lockf D ?? 30435249:33.00 [httpd] 1000 53815 25405 0 44 0 12580 864 select D+ ?? 13876756:23.00 [ssh] 26 55567 1 0 76 0 11356 0 wait DWs ?? 0:00.00 [dkim-fil 26 55568 55567 0 44 0 25180 2188 select D ?? -27570932:-17.55 [dkim-fil 1000 89311 8335 0 44 0 10796 2112 wait Ds ?? 1429245:14.00 [bash] 26 91143 1 0 44 0 16468 2132 select Ds ?? 29366026:26.00 [milter-g 1000 92088 89311 0 44 0 12580 3112 select D+ ?? -28948054:-40.55 [ssh] 1000 99060 1899 0 44 0 10796 2140 ttyin D+ ?? 917953:33.00 [bash] 0 99122 25426 0 44 0 11256 2124 select D ?? 292046:56.00 [sendmail 0 99565 1737 0 44 0 9620 1008 piperd D ?? 36720:42.00 [cron] 0 99566 99565 0 44 0 476 240 suspfs Ds ?? 266093:12.00 [atrun] 0 99569 1 0 47 0 11384 2488 suspfs D ?? 283426:23.00 [sendmail 95 99570 1859 0 44 0 1624 500 suspfs Ds ?? 203812:17.00 [bforce] 0 99573 22088 0 45 0 792 472 suspfs D ?? 570046:23.00 [xterm] 1000 99574 6034 0 44 0 9844 1128 suspfs D+ ?? 152472:09.00 [ls] 0 99575 1737 0 44 0 9620 1016 wait D ?? 40283:30.00 [cron] 0 99576 1737 0 44 0 9620 1008 piperd D ?? 34039:14.00 [cron] 2 99577 99575 0 76 0 9860 1352 suspfs DEs ?? 750763:18.00 [sh] 0 99578 99576 0 45 0 476 240 suspfs Ds ?? 262781:36.00 [atrun] 95 99614 1859 0 44 0 1624 500 suspfs Ds ?? 209953:49.00 [bforce] 0 99652 1737 0 44 0 9620 1008 piperd D ?? 34895:28.00 [cron] 0 99653 1737 0 44 0 9620 1016 wait D ?? 41759:13.00 [cron] 0 99654 1737 0 44 0 9620 1008 piperd D ?? 36068:29.00 [cron] 0 99655 99652 0 44 0 9520 792 suspfs Ds ?? 323024:06.00 [newsyslo 0 99656 99654 0 44 0 476 240 suspfs Ds ?? 264477:06.00 [atrun] 2 99657 99653 0 76 0 9860 1352 suspfs DEs ?? 781064:06.00 [sh] 95 99788 1859 0 44 0 1624 500 suspfs Ds ?? 209561:49.00 [bforce] 95 99790 1859 0 44 0 1624 500 suspfs Ds ?? 204439:10.00 [bforce] ------------------------------------------------------------------------ vmstat -s 672824728 cpu context switches 31790520 device interrupts 151415057 software interrupts 217675304 traps 343637623 system calls 22 kernel threads created 561292 fork() calls 137454 vfork() calls 0 rfork() calls 41772 swap pager pageins 102763 swap pager pages paged in 93192 swap pager pageouts 312501 swap pager pages paged out 31566 vnode pager pageins 164360 vnode pager pages paged in 0 vnode pager pageouts 0 vnode pager pages paged out 2518 page daemon wakeups 37761297 pages examined by the page daemon 161002 pages reactivated 14395053 copy-on-write faults 4025 copy-on-write optimized faults 146883587 zero fill pages zeroed 3042544 zero fill pages prezeroed 43952 intransit blocking page faults 180277201 total VM faults taken 0 pages affected by kernel thread creation 511932122 pages affected by fork() 124888738 pages affected by vfork() 0 pages affected by rfork() 0 pages cached 177605259 pages freed 444764 pages freed by daemon 0 pages freed by exiting processes 49010 pages active 66464 pages inactive 4968 pages in VM cache 48581 pages wired down 16335 pages free 4096 bytes per page 341928331 total name lookups cache hits (83% pos + 11% neg) system 0% per-directory deletions 0%, falsehits 0%, toolong 0% ------------------------------------------------------------------------ vmstat -m Type InUse MemUse HighUse Requests Size(s) prison 3 3K - 3 16,256,2048 KTRACE 100 13K - 100 128 linker 159 411K - 286 16,32,512,1024,2048,4096 ddb_capture 1 48K - 1 lockf 179 8K - 545150 32,64,128 devbuf 3729 5861K - 376697 16,32,64,128,256,512,1024,2048,4096 temp 28 233K - 2055900 16,32,64,128,256,512,1024,2048,4096 ip6ndp 7 1K - 8 64,128 agp 7 1K - 13 16,64 USB 35 6K - 46 16,32,64,128,1024,4096 module 265 17K - 265 64,128 mtx_pool 2 8K - 2 4096 USBdev 20 6K - 25 32,128,1024 osd 3 1K - 3 16,32 ata_generic 3 3K - 3 1024 acpica 1634 84K - 51670 16,32,64,128,256,512,1024 pgrp 78 5K - 4717 64 session 55 4K - 3455 64 proc 2 8K - 2 4096 subproc 331 597K - 698963 256,4096 cred 188 18K - 5395394 64,128 plimit 41 11K - 44111 256 uidinfo 8 2K - 1950 64,1024 CAM dev queue 3 1K - 4 128 sysctl 0 0K - 1096195 16,32,64 sysctloid 3151 96K - 3266 16,32,64,128 sysctltmp 0 0K - 118960 16,32,64,128,4096 umtx 570 54K - 570 64,128 p1003.1b 1 1K - 1 16 SWAP 4 281K - 4 64 bus 709 34K - 3650 16,32,64,128,256,512,1024 bus-sc 59 128K - 1067 16,32,64,128,256,512,1024,2048,4096 scsi_cd 0 0K - 6 16 devstat 14 29K - 14 16,4096 eventhandler 88 5K - 88 32,64,128 acpitask 1 1K - 1 1024 kobj 179 358K - 102610 2048 Per-cpu 1 1K - 1 16 acpisem 14 2K - 14 64,128 rman 162 10K - 579 16,32,64 sbuf 0 0K - 3650 16,32,64,128,256,512,1024,2048,4096 ad_driver 2 1K - 2 32 ar_driver 0 0K - 12 512,2048 acd_driver 1 2K - 1 2048 stack 0 0K - 2 128 taskqueue 13 1K - 13 16,64 Unitno 18 1K - 7540 16,64 ioctlops 0 0K - 12594786 16,32,64,128,256,512,1024,2048,4096 select 192 12K - 192 64 iov 0 0K - 5111598 16,64,128,256 msg 4 25K - 4 1024,4096 sem 4 101K - 4 1024,4096 shm 9 20K - 311 1024 tty 25 13K - 89 512,1024 pts 6 1K - 68 128 mbuf_tag 0 0K - 9050271 32,64,256 ksem 1 4K - 1 4096 shmfd 1 4K - 1 4096 soname 51 6K - 277442 16,32,64,128 pcb 46 79K - 88530 16,64,512,1024,2048,4096 acl 0 0K - 23106 4096 biobuf 0 0K - 29111 2048 vfscache 1 256K - 1 cl_savebuf 0 0K - 96620 32,64 export_host 4 1K - 20 128 vfs_hash 1 128K - 1 vnodes 3 1K - 22 32,128 DEVFS2 116 2K - 138 16 mount 116 5K - 1435 16,32,64,128,256,1024 vnodemarker 0 0K - 83796 512 BPF 5 1K - 149 16,64,256 DEVFS3 289 37K - 433 128 ifnet 6 6K - 6 64,1024 ifaddr 72 15K - 72 16,32,64,128,256,512,2048 ether_multi 40 2K - 46 16,32,64 clone 5 20K - 5 4096 arpcom 3 1K - 3 16 lltable 22 5K - 113 128,256 DEVFS1 116 29K - 237 256 DEVFS_RULE 53 13K - 103 32,256 DEVFS 29 1K - 31 16,64 DEVFSP 1 1K - 36 32 pfs_nodes 21 3K - 21 128 routetbl 233 8245K - 914825 16,32,64,128,256,512 igmp 5 1K - 5 128 in_multi 2 1K - 2 128 pfs_vncache 1 1K - 975 32 GEOM 176 98K - 2450 16,32,64,128,256,512,1024,2048 dummynet 3 2K - 3 512 dummynet 3 1K - 1644 256,512 ata_cam 2 2K - 23 64,256,1024 IpFw/IpAcct 76 10K - 341 16,32,64,128,256,512,1024 sctp_a_it 0 0K - 3 16 sctp_vrf 1 1K - 1 64 sctp_ifa 6 1K - 6 128 sctp_ifn 2 1K - 2 128 sctp_iter 0 0K - 3 256 hostcache 1 16K - 1 syncache 1 72K - 1 in6_mfilter 1 1K - 1 512 in6_multi 22 3K - 22 16,256 ip6_moptions 2 1K - 2 32,128 kbdmux 6 18K - 6 16,256,1024,2048 mld 5 1K - 5 128 NFS FHA 1 1K - 42367 32,1024 rpc 1036 262K - 126474 16,32,64,128,256,512,2048,4096 audit_evclass 172 3K - 211 16 pagedep 1 32K - 90466 128 inodedep 12598 3278K - 972352 256 bmsafemap 31 8K - 27449 128,4096 newblk 108 46K - 2854746 128 indirdep 11 1K - 41929 64 freefrag 7350 460K - 562164 64 freeblks 668 42K - 405701 64 freefile 2880 90K - 461844 32 diradd 0 0K - 691462 64 mkdir 0 0K - 57112 64 dirrem 13263 829K - 589958 64 newdirblk 0 0K - 32331 32 freework 475 30K - 674165 64 freedep 0 0K - 12312 32 jaddref 84 6K - 748574 64 jremref 0 0K - 638280 64 jmvref 0 0K - 13141 64 jnewblk 5044 316K - 2854745 64 jfreeblk 0 0K - 634878 64 jfreefrag 0 0K - 562164 64 jseg 57098 3569K - 275595 64 jsegdep 27405 857K - 5451103 32 sbdep 0 0K - 8301 32 jtrunc 0 0K - 12462 64 savedino 0 0K - 2980901 256 jblocks 6 1K - 6 128 ufs_dirhash 216 98K - 86446 16,32,64,128,256,512,1024,2048,4096 ufs_mount 12 37K - 12 256,2048,4096 UMAHash 3 13K - 12 256,512,1024,2048,4096 acpidev 51 2K - 51 32 vm_pgdata 3 65K - 3 64 CAM SIM 3 1K - 4 128 atkbddev 2 1K - 2 32 isadev 5 1K - 5 64 CAM XPT 32 11K - 93 16,32,64,256,1024,2048 apmdev 1 1K - 1 64 CAM periph 4 1K - 18 16,32,64,128 memdesc 1 4K - 12 32,4096 nexusdev 4 1K - 4 16 entropy 1024 64K - 1024 64 UART 6 3K - 6 16,256,1024 CAM queue 11 1K - 56 16 cdev 11 2K - 11 128 scsi_da 0 0K - 15 16 filedesc 219 98K - 712201 16,32,64,128,256,512,1024,2048,4096 sigio 2 1K - 94 32 kenv 82 8K - 86 16,32,64,128,4096 kqueue 4 3K - 132801 128,1024,2048,4096 proc-args 103 6K - 542467 16,32,64,128,256 pci_link 16 2K - 16 64,128 io_apic 1 1K - 1 1024 ithread 78 6K - 169 16,64,128 mixer 1 4K - 1 4096 mirror_data 3 1K - 14933 32,128,512 stripe_data 2 1K - 2 16,32 feeder 19 1K - 366265 16,64 ac97 2 1K - 2 16,512 gcache_data 45 3K - 45409 64 linux 14 1K - 14 32,64 drm_ctxbitmap 1 4K - 1 4096 drm_agplists 1 1K - 1 64 drm_buflists 2 1K - 4 32 drm_files 1 1K - 4 64 drm_maps 9 9K - 21 64 drm_driver 5 5K - 6 16,32,64,256,4096 drm_sarea 1 1K - 1 16 drm_dma 1 1K - 1 16 GEOM_SCHED 6 1K - 41897 64,128 ------------------------------------------------------------------------ vmstat -z ITEM SIZE LIMIT USED FREE REQ FAIL SLEEP UMA Kegs: 128, 0, 108, 12, 108, 0, 0 UMA Zones: 896, 0, 108, 0, 108, 0, 0 UMA Slabs: 284, 0, 1072, 664, 163061, 0, 0 UMA RCntSlabs: 544, 0, 472, 298, 7932, 0, 0 UMA Hash: 128, 0, 3, 27, 6, 0, 0 16 Bucket: 76, 0, 6, 44, 71, 0, 0 32 Bucket: 140, 0, 25, 31, 112, 0, 0 64 Bucket: 268, 0, 15, 27, 193, 13, 0 128 Bucket: 524, 0, 126, 21, 48748,69538, 0 VM OBJECT: 136, 0, 10810, 27760,10016214, 0, 0 MAP: 140, 0, 7, 21, 7, 0, 0 KMAP ENTRY: 72, 46905, 2033, 1094, 640573, 0, 0 MAP ENTRY: 72, 0, 4700, 600,19864195, 0, 0 DP fakepg: 72, 0, 32797, 63, 65714, 0, 0 SG fakepg: 72, 0, 0, 0, 0, 0, 0 mt_zone: 2056, 0, 286, 104, 286, 0, 0 16: 16, 0, 2879, 369,10987127, 0, 0 32: 32, 0, 32802, 2454, 9830478, 0, 0 64: 64, 0, 88902, 2312,27124409, 0, 0 128: 128, 0, 3107, 3943, 6120483, 0, 0 256: 256, 0, 14685, 2895, 5766259, 0, 0 512: 512, 0, 289, 495, 748890, 0, 0 1024: 1024, 0, 60, 88, 899649, 0, 0 2048: 2048, 0, 227, 193, 217182, 0, 0 4096: 4096, 0, 253, 40, 752278, 0, 0 Files: 56, 0, 541, 799,46472284, 0, 0 TURNSTILE: 72, 0, 286, 14, 286, 0, 0 umtx pi: 52, 0, 0, 0, 0, 0, 0 MAC labels: 20, 0, 0, 0, 0, 0, 0 PROC: 680, 0, 136, 56, 698768, 0, 0 THREAD: 704, 0, 259, 26, 3831, 0, 0 SLEEPQUEUE: 44, 0, 286, 68, 286, 0, 0 VMSPACE: 240, 0, 115, 45, 698748, 0, 0 cpuset: 40, 0, 3, 181, 4, 0, 0 audit_record: 816, 0, 0, 0, 0, 0, 0 mbuf_packet: 256, 0, 243, 1211, 6498653, 0, 0 mbuf: 256, 0, 1176, 1470,10280119, 0, 0 mbuf_cluster: 2048, 24640, 748, 196, 1271319, 0, 0 mbuf_jumbo_page: 4096, 12320, 0, 0, 0, 0, 0 mbuf_jumbo_9k: 9216, 18480, 0, 0, 0, 0, 0 mbuf_jumbo_16k: 16384, 12320, 0, 0, 0, 0, 0 mbuf_ext_refcnt: 4, 0, 0, 203, 598094, 0, 0 g_bio: 140, 0, 0, 756,29917606, 0, 0 ttyinq: 152, 0, 270, 224, 6480, 0, 0 ttyoutq: 256, 0, 144, 111, 2659, 0, 0 ata_request: 208, 0, 1, 511, 4282961, 0, 0 ata_composite: 180, 0, 0, 0, 0, 0, 0 VNODE: 272, 0, 16239, 18481, 2283603, 0, 0 VNODEPOLL: 60, 0, 73, 809, 889, 0, 0 NAMEI: 1024, 0, 0, 20,85865089, 0, 0 S VFS Cache: 72, 0, 15611, 27637,16134816, 0, 0 L VFS Cache: 292, 0, 278, 554, 437507, 0, 0 DIRHASH: 1024, 0, 43, 93, 185461, 0, 0 NFSMOUNT: 524, 0, 0, 0, 0, 0, 0 NFSNODE: 456, 0, 0, 0, 0, 0, 0 pipe: 392, 0, 46, 34, 252355, 0, 0 ksiginfo: 80, 0, 181, 107, 388273, 0, 0 itimer: 220, 0, 1, 35, 1, 0, 0 KNOTE: 72, 0, 72, 723, 135515, 0, 0 socket: 412, 24642, 176, 58, 106117, 0, 0 ipq: 32, 791, 0, 0, 0, 0, 0 udp_inpcb: 220, 24642, 22, 32, 77026, 0, 0 udpcb: 8, 24766, 22, 181, 77026, 0, 0 tcp_inpcb: 220, 24642, 40, 68, 17973, 0, 0 tcpcb: 632, 24642, 40, 38, 17973, 0, 0 tcptw: 52, 4968, 0, 144, 3813, 0, 0 syncache: 112, 15365, 0, 70, 2135, 0, 0 hostcache: 76, 15400, 41, 109, 483, 0, 0 tcpreass: 20, 1690, 0, 338, 112785, 0, 0 sackhole: 20, 0, 0, 169, 623, 0, 0 sctp_ep: 860, 24640, 0, 0, 0, 0, 0 sctp_asoc: 1484, 40000, 0, 0, 0, 0, 0 sctp_laddr: 24, 80040, 0, 145, 5, 0, 0 sctp_raddr: 432, 80001, 0, 0, 0, 0, 0 sctp_chunk: 92, 400008, 0, 0, 0, 0, 0 sctp_readq: 76, 400000, 0, 0, 0, 0, 0 sctp_stream_msg_out: 64, 400020, 0, 0, 0, 0, 0 sctp_asconf: 24, 400055, 0, 0, 0, 0, 0 sctp_asconf_ack: 24, 400055, 0, 0, 0, 0, 0 ripcb: 220, 24642, 0, 36, 246, 0, 0 unpcb: 172, 24656, 113, 48, 10864, 0, 0 rtentry: 108, 0, 19, 53, 19, 0, 0 pfsrctrpl: 124, 10013, 0, 0, 0, 0, 0 pfrulepl: 828, 0, 7, 5, 7, 0, 0 pfstatepl: 284, 10010, 49, 455, 162190, 0, 0 pfaltqpl: 224, 0, 0, 0, 0, 0, 0 pfpooladdrpl: 68, 0, 4, 108, 4, 0, 0 pfrktable: 1240, 1002, 0, 0, 0, 0, 0 pfrkentry: 156, 200000, 0, 0, 0, 0, 0 pfrkentry2: 156, 0, 0, 0, 0, 0, 0 pffrent: 16, 5075, 0, 203, 38619, 0, 0 pffrag: 48, 0, 0, 156, 6453, 0, 0 pffrcache: 48, 10062, 0, 0, 0, 0, 0 pffrcent: 12, 50141, 0, 0, 0, 0, 0 pfstatescrub: 28, 0, 0, 0, 0, 0, 0 pfiaddrpl: 100, 0, 0, 0, 0, 0, 0 pfospfen: 108, 0, 696, 24, 696, 0, 0 pfosfp: 28, 0, 407, 228, 407, 0, 0 IPFW dynamic rule: 108, 0, 99, 189, 21681, 0, 0 divcb: 220, 24642, 0, 0, 0, 0, 0 g_stripe_zone: 131072, 3200, 0, 0, 0, 0, 0 gcache: 131072, 0, 45, 159, 45409, 0, 0 selfd: 28, 0, 367, 268,100989132, 0, 0 ip4flow: 40, 24656, 4, 180, 10317, 0, 0 ip6flow: 64, 24650, 0, 174, 1, 0, 0 SWAPMETA: 276, 92834, 2875, 5525, 36364, 0, 0 Mountpoints: 648, 0, 7, 5, 7, 0, 0 FFS inode: 116, 0, 16182, 26916, 2282199, 0, 0 FFS1 dinode: 128, 0, 0, 0, 0, 0, 0 FFS2 dinode: 256, 0, 16182, 19713, 2282199, 0, 0 ------------------------------------------------------------------------ vmstat -i interrupt total rate irq1: atkbd0 126246 847 irq0: attimer0 19230043 129060 irq6: fdc0 11 0 irq12: psm0 1325857 8898 irq14: ata0 2124151 14256 irq15: ata1 2155003 14463 irq16: uhci0 uhci3 493891 3314 irq17: pcm0 40938 274 irq20: fxp0 6293916 42241 irq23: ehci0 464 3 cpu0:timer 151286734 1015347 Total 183077254 1228706 ------------------------------------------------------------------------ pstat -T 541/11848 files 52M/1559M swap space ------------------------------------------------------------------------ pstat -s Device 512-blocks Used Avail Capacity /dev/ad0s1b 1597184 53312 1543872 3% /dev/ad2s1b 1597184 53408 1543776 3% Total 3194368 106720 3087648 3% ------------------------------------------------------------------------ iostat iostat: kvm_read(_tk_nin): invalid address (0x0) iostat: disabling TTY statistics iostat: kvm_getcptime: invalid address (0x0) iostat: disabling CPU time statistics ad0 ad2 cd0 KB/t tps MB/s KB/t tps MB/s KB/t tps MB/s 19.00 14186 263.19 18.85 14391 264.90 0.00 0 0.00 ------------------------------------------------------------------------ ipcs -a Message Queues: T ID KEY MODE OWNER GROUP CREATOR CGROUP CBYTES QNUM QBYTES LSPID LRPID STIME RTIME CTIME Shared Memory: T ID KEY MODE OWNER GROUP CREATOR CGROUP NATTCH SEGSZ CPID LPID ATIME DTIME CTIME m 196608 0 --rw------- vk vk vk vk 2 393216 22084 22056 8:32:00 no-entry 8:32:00 m 131073 0 --rw------- vk vk vk vk 2 393216 22084 22056 8:32:00 no-entry 8:32:00 m 131074 0 --rw------- vk vk vk vk 2 393216 22089 22056 8:32:03 no-entry 8:32:03 m 131075 0 --rw------- vk vk vk vk 2 393216 22089 22056 8:32:06 no-entry 8:32:06 m 131076 0 --rw------- vk vk vk vk 2 393216 22088 22056 8:32:06 10:53:57 8:32:06 m 3997701 0 --rw------- vk vk vk vk 2 393216 22099 22056 8:32:11 10:34:04 8:32:11 m 3801094 0 --rw------- vk vk vk vk 2 393216 22091 22056 8:32:12 8:32:35 8:32:12 m 3014663 0 --rw------- vk vk vk vk 2 393216 22091 22056 8:32:12 8:32:17 8:32:12 m 3014664 0 --rw------- vk vk vk vk 2 393216 22159 22056 8:33:51 8:33:58 8:33:51 m 196617 0 --rw------- vk vk vk vk 2 393216 22077 22056 8:31:58 8:32:10 8:31:58 Semaphores: T ID KEY MODE OWNER GROUP CREATOR CGROUP NSEMS OTIME CTIME ------------------------------------------------------------------------ ipcs -T msginfo: msgmax: 16384 (max characters in a message) msgmni: 40 (# of message queues) msgmnb: 2048 (max characters in a message queue) msgtql: 40 (max # of messages in system) msgssz: 8 (size of a message segment) msgseg: 2048 (# of message segments in system) shminfo: shmmax: 536870912 (max shared memory segment size) shmmin: 1 (min shared memory segment size) shmmni: 192 (max number of shared memory identifiers) shmseg: 128 (max shared memory segments per process) shmall: 131072 (max amount of shared memory in pages) seminfo: semmap: 30 (# of entries in semaphore map) semmni: 50 (# of semaphore identifiers) semmns: 340 (# of semaphores in system) semmnu: 150 (# of undo structures in system) semmsl: 340 (max # of semaphores per id) semopm: 100 (max # of operations per semop call) semume: 50 (max # of undo entries per process) semusz: 616 (size in bytes of undo structure) semvmx: 32767 (semaphore maximum value) semaem: 16384 (adjust on exit max value) ------------------------------------------------------------------------ nfsstat Client Info: Rpc Counts: Getattr Setattr Lookup Readlink Read Write Create Remove 0 0 0 0 0 0 0 0 Rename Link Symlink Mkdir Rmdir Readdir RdirPlus Access 0 0 0 0 0 0 0 0 Mknod Fsstat Fsinfo PathConf Commit 0 0 0 0 0 Rpc Info: TimedOut Invalid X Replies Retries Requests 0 0 0 0 0 Cache Info: Attr Hits Misses Lkup Hits Misses BioR Hits Misses BioW Hits Misses 0 0 0 0 0 0 0 0 BioRLHits Misses BioD Hits Misses DirE Hits Misses 0 0 0 0 0 0 Server Info: Getattr Setattr Lookup Readlink Read Write Create Remove 0 8 7016 0 12695 6427 14 13 Rename Link Symlink Mkdir Rmdir Readdir RdirPlus Access 0 0 0 4 2 104 0 15376 Mknod Fsstat Fsinfo PathConf Commit 0 1635 2 0 130 Server Ret-Failed 4249 Server Faults 0 Server Cache Stats: Inprog Idem Non-idem Misses 0 0 0 0 Server Write Gathering: WriteOps WriteRPC Opsaved 6427 6427 0 ------------------------------------------------------------------------ netstat -s tcp: 3359163 packets sent 255866 data packets (135979014 bytes) 1446 data packets (1572174 bytes) retransmitted 59 data packets unnecessarily retransmitted 0 resends initiated by MTU discovery 2113826 ack-only packets (55064 delayed) 0 URG only packets 12 window probe packets 957257 window update packets 30772 control packets 4875834 packets received 249997 acks (for 135481687 bytes) 12246 duplicate acks 0 acks for unsent data 4606398 packets (1865795108 bytes) received in-sequence 1559 completely duplicate packets (371580 bytes) 0 old duplicate packets 2 packets with some dup. data (706 bytes duped) 112725 out-of-order packets (159609409 bytes) 50 packets (50 bytes) of data after window 50 window probes 905 window update packets 82 packets received after close 0 discarded for bad checksums 0 discarded for bad header offset fields 0 discarded because packet too short 31760 discarded due to memory problems 15588 connection requests 2128 connection accepts 0 bad connection attempts 0 listen queue overflows 344 ignored RSTs in the windows 15966 connections established (including accepts) 17937 connections closed (including 267 drops) 5290 connections updated cached RTT on close 5313 connections updated cached RTT variance on close 385 connections updated cached ssthresh on close 1497 embryonic connections dropped 242773 segments updated rtt (of 229413 attempts) 1903 retransmit timeouts 28 connections dropped by rexmit timeout 15 persist timeouts 0 connections dropped by persist timeout 0 Connections (fin_wait_2) dropped because of timeout 18 keepalive timeouts 14 keepalive probes sent 4 connections dropped by keepalive 9000 correct ACK header predictions 4338311 correct data packet header predictions 2135 syncache entries added 21 retransmitted 19 dupsyn 0 dropped 2128 completed 0 bucket overflow 0 cache overflow 6 reset 1 stale 0 aborted 0 badack 0 unreach 0 zone failures 2135 cookies sent 0 cookies received 323 SACK recovery episodes 686 segment rexmits in SACK recovery episodes 910352 byte rexmits in SACK recovery episodes 3484 SACK options (SACK blocks) received 155471 SACK options (SACK blocks) sent 0 SACK scoreboard overflow 0 packets with ECN CE bit set 0 packets with ECN ECT(0) bit set 0 packets with ECN ECT(1) bit set 0 successful ECN handshakes 0 times ECN reduced the congestion window udp: 460481 datagrams received 0 with incomplete header 0 with bad data length field 0 with bad checksum 786 with no checksum 9327 dropped due to no socket 329789 broadcast/multicast datagrams undelivered 0 dropped due to full socket buffers 0 not for hashed pcb 121365 delivered 113810 datagrams output 0 times multicast source filter matched ip: 5561487 total packets received 0 bad header checksums 0 with size smaller than minimum 0 with data size < data length 0 with ip length > max ip packet size 0 with header length < data size 0 with data length < header length 0 with bad options 0 with incorrect version number 0 fragments received 0 fragments dropped (dup or out of space) 0 fragments dropped after timeout 0 packets reassembled ok 5338383 packets for this host 1358 packets for unknown/unsupported protocol 0 packets forwarded (0 packets fast forwarded) 27504 packets not forwardable 0 packets received for unknown multicast group 0 redirects sent 3491991 packets sent from this host 288 packets sent with fabricated ip header 0 output packets dropped due to no bufs, etc. 0 output packets discarded due to no route 12033 output datagrams fragmented 71708 fragments created 0 datagrams that can't be fragmented 0 tunneling packets that can't find gif 0 datagrams with bad address in header icmp: 1332 calls to icmp_error 0 errors not generated in response to an icmp message Output histogram: echo reply: 168 destination unreachable: 1332 0 messages with bad code fields 0 messages less than the minimum length 0 messages with bad checksum 0 messages with bad length 0 multicast echo requests ignored 0 multicast timestamp requests ignored Input histogram: echo reply: 1853 destination unreachable: 1153 echo: 168 time exceeded: 252 168 message responses generated 0 invalid return addresses 0 no return routes igmp: 0 messages received 0 messages received with too few bytes 0 messages received with wrong TTL 0 messages received with bad checksum 0 V1/V2 membership queries received 0 V3 membership queries received 0 membership queries received with invalid field(s) 0 general queries received 0 group queries received 0 group-source queries received 0 group-source queries dropped 0 membership reports received 0 membership reports received with invalid field(s) 0 membership reports received for groups to which we belong 0 V3 reports received without Router Alert 0 membership reports sent arp: 142 ARP requests sent 360 ARP replies sent 511616 ARP requests received 2498 ARP replies received 514114 ARP packets received 8 total packets dropped due to no ARP entry 91 ARP entrys timed out 0 Duplicate IPs seen ip6: 0 total packets received 0 with size smaller than minimum 0 with data size < data length 0 with bad options 0 with incorrect version number 0 fragments received 0 fragments dropped (dup or out of space) 0 fragments dropped after timeout 0 fragments that exceeded limit 0 packets reassembled ok 0 packets for this host 0 packets forwarded 0 packets not forwardable 0 redirects sent 5 packets sent from this host 0 packets sent with fabricated ip header 0 output packets dropped due to no bufs, etc. 64 output packets discarded due to no route 0 output datagrams fragmented 0 fragments created 0 datagrams that can't be fragmented 0 packets that violated scope rules 0 multicast packets which we don't join Mbuf statistics: 0 one mbuf 0 one ext mbuf 0 two or more ext mbuf 0 packets whose headers are not continuous 0 tunneling packets that can't find gif 0 packets discarded because of too many headers 0 failures of source address selection Source addresses selection rule applied: icmp6: 0 calls to icmp6_error 0 errors not generated in response to an icmp6 message 0 errors not generated because of rate limitation Output histogram: neighbor solicitation: 1 0 messages with bad code fields 0 messages < minimum length 0 bad checksums 0 messages with bad length Histogram of error messages to be generated: 0 no route 0 administratively prohibited 0 beyond scope 0 address unreachable 0 port unreachable 0 packet too big 0 time exceed transit 0 time exceed reassembly 0 erroneous header field 0 unrecognized next header 0 unrecognized option 0 redirect 0 unknown 0 message responses generated 0 messages with too many ND options 0 messages with bad ND options 0 bad neighbor solicitation messages 0 bad neighbor advertisement messages 0 bad router solicitation messages 0 bad router advertisement messages 0 bad redirect messages 0 path MTU changes rip6: 0 messages received 0 checksum calculations on inbound 0 messages with bad checksum 0 messages dropped due to no socket 0 multicast messages dropped due to no socket 0 messages dropped due to full socket buffers 0 delivered 0 datagrams output ------------------------------------------------------------------------ netstat -m 1419/2681/4100 mbufs in use (current/cache/total) 18446744073709551153/1407/944/24640 mbuf clusters in use (current/cache/total/max) 243/1211 mbuf+clusters out of packet secondary zone in use (current/cache) 0/0/0/12320 4k (page size) jumbo clusters in use (current/cache/total/max) 0/0/0/18480 9k jumbo clusters in use (current/cache/total/max) 0/0/0/12320 16k jumbo clusters in use (current/cache/total/max) 18014398509481412K/3484K/2913K bytes allocated to network (current/cache/total) 0/0/0 requests for mbufs denied (mbufs/clusters/mbuf+clusters) 0/0/0 requests for jumbo clusters denied (4k/9k/16k) 0 requests for sfbufs denied 0 requests for sfbufs delayed 0 requests for I/O initiated by sendfile 0 calls to protocol drain routines ------------------------------------------------------------------------ netstat -id Name Mtu Network Address Ipkts Ierrs Idrop Opkts Oerrs Coll Drop fxp0 1500 00:13:d4:f9:90:87 6498582 40 0 3524532 0 0 0 fxp0 1500 192.168.120.0 dss 4792091 - - 3520278 - - - fxp0 1500 fe80:1::213:d fe80:1::213:d4ff: 0 - - 2 - - - fxp0 1500 192.168.120.1 nkz.net.ru 541121 - - 0 - - - fxp1* 1500 00:20:35:67:52:1e 0 0 0 0 0 0 0 ipfw0 65536 0 0 0 0 0 0 0 pflog 33200 0 0 0 0 0 0 0 lo0 16384 27902 0 0 27902 0 0 0 lo0 16384 your-net localhost 1953 - - 27902 - - - lo0 16384 localhost ::1 0 - - 0 - - - lo0 16384 fe80:5::1 fe80:5::1 0 - - 0 - - - ------------------------------------------------------------------------ netstat -anr Routing tables Internet: Destination Gateway Flags Refs Use Netif Expire default 192.168.121.33 UGS 3 1551336 fxp0 127.0.0.1 link#5 UH 0 1953 lo0 192.168.120.0/22 link#1 U 1 1916805 fxp0 192.168.120.103 link#1 UHS 0 1270 lo0 192.168.120.104 link#1 UHS 0 24679 lo0 => 192.168.120.104/32 link#1 U 0 0 fxp0 Internet6: Destination Gateway Flags Netif Expire ::/96 ::1 UGRS lo0 ::1 ::1 UH lo0 ::ffff:0.0.0.0/96 ::1 UGRS lo0 fe80::/10 ::1 UGRS lo0 fe80::%fxp0/64 link#1 U fxp0 fe80::213:d4ff:fef9:9087%fxp0 link#1 UHS lo0 fe80::%lo0/64 link#5 U lo0 fe80::1%lo0 link#5 UHS lo0 ff01:1::/32 fe80::213:d4ff:fef9:9087%fxp0 U fxp0 ff01:5::/32 ::1 U lo0 ff02::/16 ::1 UGRS lo0 ff02::%fxp0/32 fe80::213:d4ff:fef9:9087%fxp0 U fxp0 ff02::%lo0/32 ::1 U lo0 ------------------------------------------------------------------------ netstat -anA Active Internet connections (including servers) Tcpcb Proto Recv-Q Send-Q Local Address Foreign Address (state) c5f904f0 tcp4 191 0 192.168.120.103.24 213.184.65.68.3086 ESTABLISHED c5f90768 tcp4 191 0 192.168.120.103.24 213.184.65.68.1714 CLOSED c45d1278 tcp4 191 0 192.168.120.103.24 213.184.65.68.4747 CLOSE_WAIT c5f8e768 tcp4 191 0 192.168.120.103.24 213.184.65.68.1308 CLOSED cfa93c58 tcp4 0 0 192.168.120.103.52 192.168.121.107.30 CLOSE_WAIT c56099e0 tcp4 131224 0 192.168.120.103.23 69.147.83.42.80 ESTABLISHED c45269e0 tcp4 0 0 192.168.120.103.49 192.168.121.107.30 ESTABLISHED c4527768 tcp4 0 0 192.168.120.103.25 95.57.150.133.3072 ESTABLISHED c5f90c58 tcp4 0 0 192.168.120.103.10 79.175.37.66.22 ESTABLISHED c45289e0 tcp4 0 0 192.168.120.103.41 89.189.172.250.22 ESTABLISHED c45d2c58 tcp4 14638 0 192.168.120.103.16 205.188.8.215.5190 ESTABLISHED c5f90278 tcp4 4686 0 192.168.120.103.17 77.88.57.177.5222 ESTABLISHED c4539c58 tcp4 2918 0 192.168.120.103.45 213.184.72.155.522 ESTABLISHED c51104f0 tcp4 0 0 *.6000 *.* LISTEN c4526c58 tcp6 0 0 *.6000 *.* LISTEN cfa93000 tcp4 0 0 192.168.120.103.25 92.82.66.33.51203 FIN_WAIT_2 c45279e0 tcp4 0 0 192.168.120.103.36 192.168.121.107.22 ESTABLISHED cfa93768 tcp4 0 0 192.168.120.103.31 217.116.143.8.22 ESTABLISHED c4526768 tcp4 0 0 192.168.120.104.80 *.* LISTEN c45264f0 tcp4 0 0 192.168.120.104.44 *.* LISTEN c4526278 tcp4 0 0 192.168.120.104.58 *.* LISTEN c4528768 tcp4 0 0 192.168.120.104.25 *.* LISTEN c45d19e0 tcp4 0 0 192.168.120.104.22 *.* LISTEN c45d1768 tcp4 0 0 *.587 *.* LISTEN c5f8e4f0 tcp6 0 0 *.25 *.* LISTEN c45394f0 tcp4 0 0 *.25 *.* LISTEN c45274f0 tcp4 0 0 192.168.120.103.24 192.168.121.34.584 CLOSED c4539000 tcp4 0 0 192.168.120.103.39 192.168.121.34.584 CLOSED c5110768 tcp4 0 0 *.60179 *.* LISTEN c5110278 tcp4 0 0 *.24554 *.* LISTEN c51109e0 tcp4 0 0 *.22 *.* LISTEN c5110c58 tcp6 0 0 *.22 *.* LISTEN c56094f0 tcp4 0 0 *.515 *.* LISTEN c510f000 tcp6 0 0 *.515 *.* LISTEN c510f278 tcp6 0 0 *.2049 *.* LISTEN c510f4f0 tcp4 0 0 *.2049 *.* LISTEN c510f768 tcp4 0 0 *.929 *.* LISTEN c510f9e0 tcp6 0 0 *.929 *.* LISTEN c510fc58 tcp4 0 0 *.111 *.* LISTEN c5110000 tcp6 0 0 *.111 *.* LISTEN c4cd20dc udp4 0 0 *.24774 *.* c4cd26e0 udp4 0 0 192.168.120.104.51 *.* c4cd2b2c udp4 0 0 *.55967 *.* c4cd1b2c udp6 0 0 fe80:5::1.123 *.* c4cd1294 udp6 0 0 ::1.123 *.* c4cd17bc udp4 0 0 127.0.0.1.123 *.* c4cd1898 udp4 0 0 192.168.120.104.12 *.* c4cd1a50 udp6 0 0 fe80:1::213:d4ff.1 *.* c4cd1c08 udp4 0 0 192.168.120.103.12 *.* c4cd1dc0 udp6 0 0 *.123 *.* c4cd2000 udp4 0 0 *.123 *.* c4cd1604 udp6 0 0 *.2049 *.* c4cd144c udp4 0 0 *.2049 *.* c4cd1ce4 udp4 0 0 *.929 *.* c4cd1e9c udp6 0 0 *.929 *.* c4cd1974 udp6 0 0 *.* *.* c4cd16e0 udp4 0 0 *.881 *.* c4cd1528 udp4 0 0 *.111 *.* c4cd1370 udp6 0 0 *.699 *.* c4cd11b8 udp6 0 0 *.111 *.* c4cd1000 udp4 0 0 *.514 *.* c4cd10dc udp6 0 0 *.514 *.* Active UNIX domain sockets Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr c45e94b4 stream 0 0 0 0 0 0 c45e98bc stream 0 0 0 c3c0fa14 0 0 /var/run/milterdkim/filter c3c0fa14 stream 0 0 0 c45e98bc 0 0 c45e9d70 stream 0 0 0 c45e9e1c 0 0 /var/milter-greylist/milter-greylist.sock c45e9e1c stream 0 0 0 c45e9d70 0 0 c45e9764 stream 0 0 0 c3c0f0ac 0 0 /var/tmp/orbit-vk/linc-568f-0-46ff38b8bdc4c c3c0f0ac stream 0 0 0 c45e9764 0 0 c3c0f158 stream 0 0 cf0e6220 0 0 0 /var/tmp/orbit-vk/linc-568f-0-46ff38b8bdc4c c3c0fd70 stream 0 0 0 c3c0fcc4 0 0 /var/tmp/orbit-vk/linc-5691-0-44538c3c9ddf1 c3c0fcc4 stream 0 0 0 c3c0fd70 0 0 c45e92b0 stream 0 0 0 c45e960c 0 0 /var/tmp/dbus-R9tUMYkptY c45e960c stream 0 0 0 c45e92b0 0 0 c45e9ac0 stream 0 0 ce32e220 0 0 0 /var/tmp/orbit-vk/linc-5691-0-44538c3c9ddf1 c3c0fec8 stream 0 0 0 c4e9760c 0 0 /var/tmp/dbus-R9tUMYkptY c4e9760c stream 0 0 0 c3c0fec8 0 0 c4e976b8 stream 0 0 0 c3c0f60c 0 0 /tmp/.X11-unix/X0 c3c0f60c stream 8192 0 0 c4e976b8 0 0 c45e9a14 stream 0 0 0 c45e9408 0 0 /tmp/.X11-unix/X0 c45e9408 stream 0 0 0 c45e9a14 0 0 c4e97764 stream 0 0 0 cfd31cc4 0 0 /tmp/.ICE-unix/22077 cfd31cc4 stream 0 0 0 c4e97764 0 0 cfd31204 stream 0 0 0 cfd3160c 0 0 /var/tmp/dbus-R9tUMYkptY cfd3160c stream 0 0 0 cfd31204 0 0 cfd31ac0 stream 0 0 0 cfd316b8 0 0 /tmp/.X11-unix/X0 cfd316b8 stream 6400 0 0 cfd31ac0 0 0 cfd31c18 stream 0 0 0 cfd31764 0 0 cfd31764 stream 0 0 0 cfd31c18 0 0 cfd31b6c stream 0 0 0 cfd31e1c 0 0 /tmp/.ICE-unix/22077 cfd31e1c stream 0 0 0 cfd31b6c 0 0 cfd31d70 stream 0 0 0 c4e98c18 0 0 /var/tmp/dbus-R9tUMYkptY c4e98c18 stream 0 0 0 cfd31d70 0 0 c4e98cc4 stream 0 0 0 c4e98158 0 0 /tmp/fam-vk/fam- c4e98158 stream 0 0 0 c4e98cc4 0 0 c4e984b4 stream 0 0 0 c4e98e1c 0 0 /tmp/.ICE-unix/22077 c4e98e1c stream 0 0 0 c4e984b4 0 0 c4e98d70 stream 0 0 0 c4e980ac 0 0 /tmp/.ICE-unix/22077 c4e980ac stream 0 0 0 c4e98d70 0 0 c4e98204 stream 0 0 0 c4e98810 0 0 /var/tmp/dbus-R9tUMYkptY c4e98810 stream 0 0 0 c4e98204 0 0 c4e986b8 stream 0 0 0 c4e98764 0 0 /tmp/.X11-unix/X0 c4e98764 stream 0 0 0 c4e986b8 0 0 c4e9860c stream 0 0 0 c4e982b0 0 0 /var/tmp/dbus-R9tUMYkptY c4e982b0 stream 0 0 0 c4e9860c 0 0 c4e98408 stream 0 0 0 c4e97560 0 0 /tmp/.X11-unix/X0 c4e97560 stream 0 0 0 c4e98408 0 0 c4e974b4 stream 0 0 0 c4e97ac0 0 0 /tmp/.X11-unix/X0 c4e97ac0 stream 992 0 0 c4e974b4 0 0 c4e97810 stream 0 0 0 c4e97968 0 0 /tmp/.ICE-unix/22077 c4e97968 stream 0 0 0 c4e97810 0 0 cfd310ac stream 0 0 0 c3c0f35c 0 0 /tmp/fam-vk/fam- c3c0f35c stream 0 0 0 cfd310ac 0 0 c3c0f4b4 stream 0 0 c5a13dd0 0 0 0 /tmp/fam-vk/fam- c4e9835c stream 0 0 0 c4e98ac0 0 0 /tmp/.X11-unix/X0 c4e98ac0 stream 0 0 0 c4e9835c 0 0 c4e98968 stream 0 0 0 c4e97e1c 0 0 /tmp/.ICE-unix/22077 c4e97e1c stream 0 0 0 c4e98968 0 0 c4e988bc stream 0 0 0 cfd31a14 0 0 /var/tmp/dbus-R9tUMYkptY cfd31a14 stream 0 0 0 c4e988bc 0 0 c3c0fe1c stream 0 0 0 cfd31968 0 0 /tmp/.X11-unix/X0 cfd31968 stream 0 0 0 c3c0fe1c 0 0 c4e98ec8 stream 0 0 0 c4e98000 0 0 /var/tmp/dbus-R9tUMYkptY c4e98000 stream 0 0 0 c4e98ec8 0 0 c4e97cc4 stream 0 0 0 c45e96b8 0 0 /tmp/.X11-unix/X0 c45e96b8 stream 0 0 0 c4e97cc4 0 0 cfd318bc stream 0 0 cf8e5220 0 0 0 /tmp/.ICE-unix/22077 cfd31000 stream 0 0 0 c4556c18 0 0 /var/tmp/dbus-R9tUMYkptY c4556c18 stream 0 0 0 cfd31000 0 0 c4e97a14 stream 0 0 0 c4e97d70 0 0 /var/tmp/dbus-R9tUMYkptY c4e97d70 stream 0 0 0 c4e97a14 0 0 cfd31158 stream 0 0 0 c4e98a14 0 0 /tmp/.X11-unix/X0 c4e98a14 stream 0 0 0 cfd31158 0 0 cfd31560 stream 0 0 0 c3c0f204 0 0 /tmp/.X11-unix/X0 c3c0f204 stream 0 0 0 cfd31560 0 0 cfd31ec8 stream 0 0 0 c4e98b6c 0 0 c4e98b6c stream 0 0 0 cfd31ec8 0 0 c4e98560 stream 0 0 ce883cc0 0 0 0 /var/tmp/dbus-R9tUMYkptY c3c0f2b0 stream 0 0 0 cfd31810 0 0 /tmp/.X11-unix/X0 cfd31810 stream 0 0 0 c3c0f2b0 0 0 c45e9560 stream 0 0 c457dbb0 0 0 0 /tmp/ssh-3YtlcstrMZ/agent.22068 c7a95204 stream 0 0 0 cfd314b4 0 0 /tmp/.X11-unix/X0 cfd314b4 stream 0 0 0 c7a95204 0 0 c3c0f000 stream 0 0 c7880dd0 0 0 0 /tmp/.X11-unix/X0 cfd31408 stream 0 0 ce334220 0 0 0 /var/milter-greylist/milter-greylist.sock c455660c stream 0 0 0 c3c0f6b8 0 0 c3c0f6b8 stream 0 0 0 c455660c 0 0 c3c0f968 stream 0 0 ceeb4bb0 0 0 0 /var/run/milterdkim/filter c4556810 stream 0 0 0 c4556968 0 0 c4556968 stream 0 0 0 c4556810 0 0 c4e97000 stream 0 0 c5608000 0 0 0 /var/run/printer c4e972b0 stream 0 0 c5109220 0 0 0 /var/run/rpcbind.sock c4e97c18 stream 0 0 c4e38000 0 0 0 /var/run/devd.pipe c45e935c dgram 0 0 0 c4e9735c 0 cfd312b0 cfd312b0 dgram 0 0 0 c4e9735c 0 c45e9ec8 c45e9ec8 dgram 0 0 0 c4e9735c 0 c3c0f810 c3c0f8bc dgram 0 0 0 c7a95b6c 0 0 c45e9158 dgram 0 0 0 c7a95ac0 0 0 c7a95ac0 dgram 0 0 c4bd0dd0 0 c45e9158 0 /var/run/logpriv c7a95b6c dgram 0 0 c6183660 0 c3c0f8bc 0 /var/run/log c45560ac dgram 0 0 0 c4e97408 0 cfd3135c c3c0f810 dgram 0 0 0 c4e9735c 0 c3c0f764 c3c0f764 dgram 0 0 0 c4e9735c 0 c4556cc4 cfd3135c dgram 0 0 0 c4e97408 0 0 c4556cc4 dgram 0 0 0 c4e9735c 0 c45566b8 c45566b8 dgram 0 0 0 c4e9735c 0 c4556ac0 c4556ac0 dgram 0 0 0 c4e9735c 0 c4e97ec8 c4e97ec8 dgram 0 0 0 c4e9735c 0 c4e97b6c c4e97b6c dgram 0 0 0 c4e9735c 0 c4e978bc c4e978bc dgram 0 0 0 c4e9735c 0 c4e97158 c4e97158 dgram 0 0 0 c4e9735c 0 c4e970ac c4e970ac dgram 0 0 0 c4e9735c 0 c4e97204 c4e97204 dgram 0 0 0 c4e9735c 0 0 c4e9735c dgram 0 0 c504ecc0 0 c45e935c 0 /var/run/logpriv c4e97408 dgram 0 0 c504edd0 0 c45560ac 0 /var/run/log ------------------------------------------------------------------------ netstat -aL Current listen queue sizes (qlen/incqlen/maxqlen) Proto Listen Local Address tcp4 0/0/128 *.x11 tcp6 0/0/128 *.x11 tcp4 0/0/128 nkz.net.ru.http tcp4 0/0/128 nkz.net.ru.https tcp4 0/0/10 nkz.net.ru.submission tcp4 0/0/10 nkz.net.ru.smtp tcp4 0/0/128 nkz.net.ru.ssh tcp4 0/0/10 *.submission tcp6 0/0/10 *.smtp tcp4 0/0/10 *.smtp tcp4 0/0/64 *.fido tcp4 0/0/64 *.binkp tcp4 0/0/128 *.ssh tcp6 0/0/128 *.ssh tcp4 0/0/5 *.printer tcp6 0/0/5 *.printer tcp6 0/0/5 *.nfsd tcp4 0/0/5 *.nfsd tcp4 0/0/128 *.929 tcp6 0/0/128 *.929 tcp4 0/0/128 *.sunrpc tcp6 0/0/128 *.sunrpc unix 0/0/10 /var/tmp/orbit-vk/linc-568f-0-46ff38b8bdc4c unix 0/0/10 /var/tmp/orbit-vk/linc-5691-0-44538c3c9ddf1 unix 0/0/30 /tmp/fam-vk/fam- unix 0/0/128 /tmp/.ICE-unix/22077 unix 0/0/30 /var/tmp/dbus-R9tUMYkptY unix 0/0/128 /tmp/ssh-3YtlcstrMZ/agent.22068 unix 0/0/128 /tmp/.X11-unix/X0 unix 0/0/128 /var/milter-greylist/milter-greylist.sock unix 0/0/128 /var/run/milterdkim/filter unix 0/0/5 /var/run/printer unix 0/0/128 /var/run/rpcbind.sock unix 0/0/4 /var/run/devd.pipe ------------------------------------------------------------------------ fstat USER CMD PID FD MOUNT INUM MODE SZ|DV R/W fido bforce 99790 root / 2 drwxr-xr-x 512 r fido bforce 99790 wd / 2 drwxr-xr-x 512 r fido bforce 99790 text /usr 4358192 -r-xr-xr-x 259576 r fido bforce 99790 0* internet stream tcp c5f904f0 fido bforce 99790 1* internet stream tcp c5f904f0 fido bforce 99790 2* internet stream tcp c5f904f0 fido bforce 99788 root / 2 drwxr-xr-x 512 r fido bforce 99788 wd / 2 drwxr-xr-x 512 r fido bforce 99788 text /usr 4358192 -r-xr-xr-x 259576 r fido bforce 99788 0* internet stream tcp c5f90768 fido bforce 99788 1* internet stream tcp c5f90768 fido bforce 99788 2* internet stream tcp c5f90768 operator sh 99657 root / 2 drwxr-xr-x 512 r operator sh 99657 wd / 2 drwxr-xr-x 512 r operator sh 99657 text / 13723 -r-xr-xr-x 118288 r root atrun 99656 root / 2 drwxr-xr-x 512 r root atrun 99656 wd / 38410 drwxr-xr-x 1024 r root atrun 99656 text /usr 23618 -r-xr-xr-x 11684 r root atrun 99656 0* pipe c3c19ab8 <-> c3c19b70 0 rw root atrun 99656 1* pipe c4654860 <-> c46547a8 0 rw root atrun 99656 2* pipe c4654860 <-> c46547a8 0 rw root newsyslog 99655 root / 2 drwxr-xr-x 512 r root newsyslog 99655 wd / 38410 drwxr-xr-x 1024 r root newsyslog 99655 text /usr 4522388 -r-xr-xr-x 34168 r root newsyslog 99655 0* pipe c4516000 <-> c45160b8 0 rw root newsyslog 99655 1* pipe c46546d8 <-> c4654620 0 rw root newsyslog 99655 2* pipe c46546d8 <-> c4654620 0 rw root cron 99654 root / 2 drwxr-xr-x 512 r root cron 99654 wd /var 2425856 drwxr-x--- 512 r root cron 99654 text /usr 4522310 -r-xr-xr-x 33536 r root cron 99654 0 /dev 14 crwxrwxrwx null rw root cron 99654 1 /dev 14 crwxrwxrwx null rw root cron 99654 2 /dev 14 crwxrwxrwx null rw root cron 99654 5* pipe c46547a8 <-> c4654860 0 rw root cron 99653 root / 2 drwxr-xr-x 512 r root cron 99653 wd /var 2425856 drwxr-x--- 512 r root cron 99653 text /usr 4522310 -r-xr-xr-x 33536 r root cron 99653 0 /dev 14 crwxrwxrwx null rw root cron 99653 1 /dev 14 crwxrwxrwx null rw root cron 99653 2 /dev 14 crwxrwxrwx null rw root cron 99652 root / 2 drwxr-xr-x 512 r root cron 99652 wd /var 2425856 drwxr-x--- 512 r root cron 99652 text /usr 4522310 -r-xr-xr-x 33536 r root cron 99652 0 /dev 14 crwxrwxrwx null rw root cron 99652 1 /dev 14 crwxrwxrwx null rw root cron 99652 2 /dev 14 crwxrwxrwx null rw root cron 99652 5* pipe c4654620 <-> c46546d8 0 rw fido bforce 99614 root / 2 drwxr-xr-x 512 r fido bforce 99614 wd / 2 drwxr-xr-x 512 r fido bforce 99614 text /usr 4358192 -r-xr-xr-x 259576 r fido bforce 99614 0* internet stream tcp c45d1278 fido bforce 99614 1* internet stream tcp c45d1278 fido bforce 99614 2* internet stream tcp c45d1278 root atrun 99578 root / 2 drwxr-xr-x 512 r root atrun 99578 wd / 38410 drwxr-xr-x 1024 r root atrun 99578 text /usr 23618 -r-xr-xr-x 11684 r root atrun 99578 0* pipe cfa92930 <-> cfa929e8 0 rw root atrun 99578 1* pipe c4514cf8 <-> c4514c40 0 rw root atrun 99578 2* pipe c4514cf8 <-> c4514c40 0 rw operator sh 99577 root / 2 drwxr-xr-x 512 r operator sh 99577 wd / 2 drwxr-xr-x 512 r operator sh 99577 text / 13723 -r-xr-xr-x 118288 r root cron 99576 root / 2 drwxr-xr-x 512 r root cron 99576 wd /var 2425856 drwxr-x--- 512 r root cron 99576 text /usr 4522310 -r-xr-xr-x 33536 r root cron 99576 0 /dev 14 crwxrwxrwx null rw root cron 99576 1 /dev 14 crwxrwxrwx null rw root cron 99576 2 /dev 14 crwxrwxrwx null rw root cron 99576 5* pipe c4514c40 <-> c4514cf8 0 rw root cron 99575 root / 2 drwxr-xr-x 512 r root cron 99575 wd /var 2425856 drwxr-x--- 512 r root cron 99575 text /usr 4522310 -r-xr-xr-x 33536 r root cron 99575 0 /dev 14 crwxrwxrwx null rw root cron 99575 1 /dev 14 crwxrwxrwx null rw root cron 99575 2 /dev 14 crwxrwxrwx null rw vk ls 99574 root / 2 drwxr-xr-x 512 r vk ls 99574 wd /usr 5982209 drwxr-xr-x 15872 r vk ls 99574 text / 13708 -r-xr-xr-x 26052 r vk ls 99574 0 /dev 56 crw------- ttyv2 rw vk ls 99574 1 /dev 56 crw------- ttyv2 rw vk ls 99574 2 /dev 56 crw------- ttyv2 rw root xterm 99573 root / 2 drwxr-xr-x 512 r root xterm 99573 wd /usr 5982209 drwxr-xr-x 15872 r root xterm 99573 text /usr 4174712 -rws--x--x 276800 r root xterm 99573 0 /dev 14 crwxrwxrwx null r root xterm 99573 1 /dev 64 crw------- ttyva rw root xterm 99573 2 /dev 64 crw------- ttyva rw fido bforce 99570 root / 2 drwxr-xr-x 512 r fido bforce 99570 wd / 2 drwxr-xr-x 512 r fido bforce 99570 text /usr 4358192 -r-xr-xr-x 259576 r fido bforce 99570 0* internet stream tcp c5f8e768 fido bforce 99570 1* internet stream tcp c5f8e768 fido bforce 99570 2* internet stream tcp c5f8e768 root sendmail 99569 root / 2 drwxr-xr-x 512 r root sendmail 99569 wd /var 894979 drwxr-xr-x 512 r root sendmail 99569 text /usr 23585 -r-xr-sr-x 680116 r root sendmail 99569 0 /dev 14 crwxrwxrwx null r root sendmail 99569 1 /dev 14 crwxrwxrwx null w root sendmail 99569 2 /dev 14 crwxrwxrwx null w root sendmail 99569 3* local dgram c3c0f810 <-> c4e9735c root sendmail 99569 4 /var 895021 -rw------- 1986 rw root sendmail 99569 5 / 26006 -rw-r----- 16384 r root sendmail 99569 6* local stream c45e94b4 root sendmail 99569 7 / 25996 -rw-r----- 65536 r root sendmail 99569 9* internet stream tcp cfa93c58 root atrun 99566 root / 2 drwxr-xr-x 512 r root atrun 99566 wd / 38410 drwxr-xr-x 1024 r root atrun 99566 text /usr 23618 -r-xr-xr-x 11684 r root atrun 99566 0* pipe c4516620 <-> c45166d8 0 rw root atrun 99566 1* pipe cfa92b70 <-> cfa92ab8 0 rw root atrun 99566 2* pipe cfa92b70 <-> cfa92ab8 0 rw root cron 99565 root / 2 drwxr-xr-x 512 r root cron 99565 wd /var 2425856 drwxr-x--- 512 r root cron 99565 text /usr 4522310 -r-xr-xr-x 33536 r root cron 99565 0 /dev 14 crwxrwxrwx null rw root cron 99565 1 /dev 14 crwxrwxrwx null rw root cron 99565 2 /dev 14 crwxrwxrwx null rw root cron 99565 5* pipe cfa92ab8 <-> cfa92b70 0 rw root sendmail 99122 root / 2 drwxr-xr-x 512 r root sendmail 99122 wd /var 894979 drwxr-xr-x 512 r root sendmail 99122 text /usr 23585 -r-xr-sr-x 680116 r root sendmail 99122 0 /dev 14 crwxrwxrwx null r root sendmail 99122 1* internet stream tcp c4527768 root sendmail 99122 2 /dev 14 crwxrwxrwx null w root sendmail 99122 3* local dgram c3c0f810 <-> c4e9735c root sendmail 99122 4* internet stream tcp c4527768 root sendmail 99122 5 / 26007 -rw-r----- 16384 r root sendmail 99122 6* local stream c45e9e1c <-> c45e9d70 root sendmail 99122 7* local stream c3c0fa14 <-> c45e98bc root sendmail 99122 8* internet stream tcp c4527768 root sendmail 99122 9* internet stream tcp c45269e0 vk bash 99060 root / 2 drwxr-xr-x 512 r vk bash 99060 wd /usr 5982209 drwxr-xr-x 15872 r vk bash 99060 text /usr 4176031 -rwxr-xr-x 619912 r vk bash 99060 0 /dev 60 crw------- ttyv6 rw vk bash 99060 1 /dev 60 crw------- ttyv6 rw vk bash 99060 2 /dev 60 crw------- ttyv6 rw vk bash 99060 255 /dev 60 crw------- ttyv6 rw vk ssh 92088 root / 2 drwxr-xr-x 512 r vk ssh 92088 wd /usr 5982209 drwxr-xr-x 15872 r vk ssh 92088 text /usr 1012781 -r-xr-xr-x 139236 r vk ssh 92088 0 /dev 137 crw--w---- pts/7 rw vk ssh 92088 1 /dev 137 crw--w---- pts/7 rw vk ssh 92088 2 /dev 137 crw--w---- pts/7 rw vk ssh 92088 3* internet stream tcp c5f90c58 vk ssh 92088 4 /dev 137 crw--w---- pts/7 rw vk ssh 92088 5 /dev 137 crw--w---- pts/7 rw vk ssh 92088 6 /dev 137 crw--w---- pts/7 rw vk bash 89311 root / 2 drwxr-xr-x 512 r vk bash 89311 wd /usr 5982209 drwxr-xr-x 15872 r vk bash 89311 text /usr 4176031 -rwxr-xr-x 619912 r vk bash 89311 0 /dev 137 crw--w---- pts/7 rw vk bash 89311 1 /dev 137 crw--w---- pts/7 rw vk bash 89311 2 /dev 137 crw--w---- pts/7 rw vk bash 89311 255 /dev 137 crw--w---- pts/7 rw vk ssh 37731 root / 2 drwxr-xr-x 512 r vk ssh 37731 wd /usr 5982209 drwxr-xr-x 15872 r vk ssh 37731 text /usr 1012781 -r-xr-xr-x 139236 r vk ssh 37731 0 /dev 108 crw--w---- pts/0 rw vk ssh 37731 1 /dev 108 crw--w---- pts/0 rw vk ssh 37731 2 /dev 108 crw--w---- pts/0 rw vk ssh 37731 3* internet stream tcp c45289e0 vk ssh 37731 4 /dev 108 crw--w---- pts/0 rw vk ssh 37731 5 /dev 108 crw--w---- pts/0 rw vk ssh 37731 6 /dev 108 crw--w---- pts/0 rw vk bash 35682 root / 2 drwxr-xr-x 512 r vk bash 35682 wd /usr 5982209 drwxr-xr-x 15872 r vk bash 35682 text /usr 4176031 -rwxr-xr-x 619912 r vk bash 35682 0 /dev 108 crw--w---- pts/0 rw vk bash 35682 1 /dev 108 crw--w---- pts/0 rw vk bash 35682 2 /dev 108 crw--w---- pts/0 rw vk bash 35682 255 /dev 108 crw--w---- pts/0 rw vk gconfd-2 22161 root / 2 drwxr-xr-x 512 r vk gconfd-2 22161 wd / 2 drwxr-xr-x 512 r vk gconfd-2 22161 text /usr 4175240 -r-xr-xr-x 52116 r vk gconfd-2 22161 0 /dev 14 crwxrwxrwx null rw vk gconfd-2 22161 1 /dev 14 crwxrwxrwx null rw vk gconfd-2 22161 2 /dev 14 crwxrwxrwx null rw vk gconfd-2 22161 3 /dev 14 crwxrwxrwx null rw vk gconfd-2 22161 4 /dev 14 crwxrwxrwx null rw vk gconfd-2 22161 5* pipe c46927a8 <-> c4692860 0 rw vk gconfd-2 22161 6 /usr 4239401 drwxr-xr-x 512 r vk gconfd-2 22161 7 /usr 4239403 drwxr-xr-x 512 r vk gconfd-2 22161 8* pipe c4692860 <-> c46927a8 0 rw vk gconfd-2 22161 9* pipe c4692000 <-> c46920b8 0 rw vk gconfd-2 22161 10* pipe c46920b8 <-> c4692000 0 rw vk gconfd-2 22161 11* pipe c4692310 <-> c46923c8 0 rw vk gconfd-2 22161 12* pipe c46923c8 <-> c4692310 0 rw vk gconfd-2 22161 13* local stream c45e9ac0 vk gconfd-2 22161 14* local stream c45e960c <-> c45e92b0 vk gconfd-2 22161 15* local stream c3c0fd70 <-> c3c0fcc4 vk gconfd-2 22161 16* local stream c3c0f0ac <-> c45e9764 vk firefox-bin 22159 root / 2 drwxr-xr-x 512 r vk firefox-bin 22159 wd /usr 5982209 drwxr-xr-x 15872 r vk firefox-bin 22159 text /usr 4384512 -rwxr-xr-x 8212 r vk firefox-bin 22159 0 /dev 14 crwxrwxrwx null r vk firefox-bin 22159 1 /dev 64 crw------- ttyva rw vk firefox-bin 22159 2 /dev 64 crw------- ttyva rw vk firefox-bin 22159 3* local stream c3c0f60c <-> c4e976b8 vk firefox-bin 22159 4* pipe c4514498 <-> c4514550 0 rw vk firefox-bin 22159 5* pipe c4514550 <-> c4514498 0 rw vk firefox-bin 22159 6 /usr 6571398 -rw-r--r-- 0 w vk firefox-bin 22159 7* pipe c4514188 <-> c4514240 0 rw vk firefox-bin 22159 8* pipe c4514240 <-> c4514188 0 rw vk firefox-bin 22159 9* pipe c4514000 <-> c45140b8 1 rw vk firefox-bin 22159 10* pipe c45140b8 <-> c4514000 0 rw vk firefox-bin 22159 11 /dev 24 crw-rw-rw- random r vk firefox-bin 22159 12 /usr 6571421 -rw-r--r-- 25690112 rw vk firefox-bin 22159 13 /usr 6860676 -rw-r--r-- 1084007 r vk firefox-bin 22159 14 /usr 6907285 -rw-r--r-- 1850704 r vk firefox-bin 22159 15 /usr 6860477 -rw-r--r-- 1309875 r vk firefox-bin 22159 16 /usr 4384459 -rw-r--r-- 484493 r vk firefox-bin 22159 17* local stream c4e9760c <-> c3c0fec8 vk firefox-bin 22159 18 /usr 6595568 -rw-r--r-- 2730539 r vk firefox-bin 22159 19 /usr 4384469 -rw-r--r-- 2087594 r vk firefox-bin 22159 20* pipe c3c19188 <-> c3c19240 0 rw vk firefox-bin 22159 21* pipe c3c19240 <-> c3c19188 0 rw vk firefox-bin 22159 22* pipe c3c19310 <-> c3c193c8 0 rw vk firefox-bin 22159 23* pipe c3c193c8 <-> c3c19310 0 rw vk firefox-bin 22159 24* local stream c3c0fcc4 <-> c3c0fd70 vk firefox-bin 22159 25* local stream c3c0f158 vk firefox-bin 22159 26* local stream c45e9764 <-> c3c0f0ac vk firefox-bin 22159 27 /usr 6571429 -rw-r--r-- 2048 rw vk firefox-bin 22159 28 /usr 4384461 -rw-r--r-- 2063409 r vk firefox-bin 22159 29 /usr 6571409 -rw-r--r-- 2965504 rw vk firefox-bin 22159 31 /usr 6907300 -rw-r--r-- 42480 r vk firefox-bin 22159 32 /usr 6907321 -rw-r--r-- 493982 r vk firefox-bin 22159 33 /usr 6571418 -rw-r--r-- 191488 rw vk firefox-bin 22159 34 /usr 6571435 -rw-r--r-- 7736 rw vk firefox-bin 22159 35 /usr 6571383 drwx------ 2048 r vk firefox-bin 22159 36 /usr 6594894 -rw-r--r-- 110516 r vk firefox-bin 22159 37 /usr 6595540 -rw-r--r-- 20669 r vk firefox-bin 22159 38 /usr 6571443 -rw-r--r-- 2048 rw vk firefox-bin 22159 39 /usr 6571425 -rw-r--r-- 27648 rw vk firefox-bin 22159 40 /usr 6571424 -rw-r--r-- 32768 rw vk firefox-bin 22159 41 /usr 6571417 -rw-r--r-- 7168 rw vk firefox-bin 22159 42* internet stream tcp c56099e0 vk firefox-bin 22159 43 /usr 6571446 -rw------- 409600 rw vk firefox-bin 22159 44 /usr 6571447 -rw------- 65536 rw vk firefox-bin 22159 45* pipe c45167a8 <-> c4516860 0 rw vk firefox-bin 22159 46* pipe c4516860 <-> c45167a8 0 rw vk firefox-bin 22159 48 /usr 6571396 -rw------- 99984 w vk firefox-bin 22159 51 /usr 6079856 -rw------- 23193600 w vk firefox-bin 22159 56 /usr 6571428 -rw-r--r-- 0 rw vk firefox-bin 22159 58 /usr 6571426 -rw-r--r-- 174080 rw vk sh 22155 root / 2 drwxr-xr-x 512 r vk sh 22155 wd /usr 5982209 drwxr-xr-x 15872 r vk sh 22155 text / 13723 -r-xr-xr-x 118288 r vk sh 22155 0 /dev 14 crwxrwxrwx null r vk sh 22155 1 /dev 64 crw------- ttyva rw vk sh 22155 2 /dev 64 crw------- ttyva rw vk sh 22155 10 /usr 4384523 -rwxrwxr-x 10579 r vk sh 22151 root / 2 drwxr-xr-x 512 r vk sh 22151 wd /usr 5982209 drwxr-xr-x 15872 r vk sh 22151 text / 13723 -r-xr-xr-x 118288 r vk sh 22151 0 /dev 14 crwxrwxrwx null r vk sh 22151 1 /dev 64 crw------- ttyva rw vk sh 22151 2 /dev 64 crw------- ttyva rw vk sh 22151 10 /usr 4176523 -rwxr-xr-x 3930 r vk gkrellm 22099 root / 2 drwxr-xr-x 512 r vk gkrellm 22099 wd /usr 5982209 drwxr-xr-x 15872 r vk gkrellm 22099 text /usr 4176643 -r-x--s--x 571480 r vk gkrellm 22099 0 /dev 14 crwxrwxrwx null r vk gkrellm 22099 1 /dev 64 crw------- ttyva rw vk gkrellm 22099 2 /dev 64 crw------- ttyva rw vk gkrellm 22099 3 /dev 9 crw-r----- mem r vk gkrellm 22099 4 /dev 10 crw-r----- kmem r vk gkrellm 22099 5* local stream c45e9408 <-> c45e9a14 vk gkrellm 22099 6* pipe c4820000 <-> c48200b8 0 rw vk gkrellm 22099 7* pipe c48200b8 <-> c4820000 0 rw vk gkrellm 22099 8* pipe c4654000 <-> c46540b8 0 rw vk gkrellm 22099 9* pipe c46540b8 <-> c4654000 0 rw vk gkrellm 22099 19* pipe c4692550 <-> c4692498 0 rw vk xfce4-settings-hel 22092 root / 2 drwxr-xr-x 512 r vk xfce4-settings-hel 22092 wd /usr 5982209 drwxr-xr-x 15872 r vk xfce4-settings-hel 22092 text /usr 4175675 -r-xr-xr-x 32268 r vk xfce4-settings-hel 22092 0 /dev 64 crw------- ttyva rw vk xfce4-settings-hel 22092 1 /dev 64 crw------- ttyva rw vk xfce4-settings-hel 22092 2 /dev 64 crw------- ttyva rw vk xfce4-settings-hel 22092 3* local stream c4e98764 <-> c4e986b8 vk xfce4-settings-hel 22092 4* pipe c4692188 <-> c4692240 0 rw vk xfce4-settings-hel 22092 5* pipe c4692240 <-> c4692188 0 rw vk xfce4-settings-hel 22092 6* local stream c4e98810 <-> c4e98204 vk xfce4-settings-hel 22092 7* local stream c4e980ac <-> c4e98d70 vk xfce4-settings-hel 22092 8* pipe c4654000 <-> c46540b8 0 rw vk xfce4-settings-hel 22092 9* pipe c46540b8 <-> c4654000 0 rw vk xfce4-settings-hel 22092 10* pipe c4693dc8 <-> c4693e80 0 rw vk xfce4-settings-hel 22092 11* pipe c4693e80 <-> c4693dc8 0 rw vk pidgin 22091 root / 2 drwxr-xr-x 512 r vk pidgin 22091 wd /usr 5982209 drwxr-xr-x 15872 r vk pidgin 22091 text /usr 4176482 -r-xr-xr-x 846000 r vk pidgin 22091 0 /dev 64 crw------- ttyva rw vk pidgin 22091 1 /dev 64 crw------- ttyva rw vk pidgin 22091 2 /dev 64 crw------- ttyva rw vk pidgin 22091 3* local stream cfd31764 <-> cfd31c18 vk pidgin 22091 4* local stream cfd31c18 <-> cfd31764 vk pidgin 22091 5* pipe c4516c40 <-> c4516cf8 0 rw vk pidgin 22091 6* pipe c4516cf8 <-> c4516c40 0 rw vk pidgin 22091 7* local stream cfd316b8 <-> cfd31ac0 vk pidgin 22091 8* pipe c4654000 <-> c46540b8 0 rw vk pidgin 22091 9* pipe c46540b8 <-> c4654000 0 rw vk pidgin 22091 10* local stream cfd3160c <-> cfd31204 vk pidgin 22091 11* internet stream tcp c45d2c58 vk pidgin 22091 12* internet dgram udp c4cd20dc vk pidgin 22091 13* local stream cfd31cc4 <-> c4e97764 vk pidgin 22091 14* pipe c4516dc8 <-> c4516e80 0 rw vk pidgin 22091 15* pipe c4692c40 <-> c4692cf8 0 rw vk pidgin 22091 16* pipe c4692dc8 <-> c4692e80 0 rw vk pidgin 22091 17* internet stream tcp c4539c58 vk pidgin 22091 18* internet stream tcp c5f90278 vk pidgin 22091 19* pipe c4693550 <-> c4693498 0 rw vk pidgin 22091 20* pipe c4654e80 <-> c4654dc8 0 rw vk pidgin 22091 21* pipe cfa92e80 <-> cfa92dc8 0 rw vk xfdesktop 22089 root / 2 drwxr-xr-x 512 r vk xfdesktop 22089 wd /usr 5982209 drwxr-xr-x 15872 r vk xfdesktop 22089 text /usr 4175906 -r-xr-xr-x 231116 r vk xfdesktop 22089 0 /dev 64 crw------- ttyva rw vk xfdesktop 22089 1 /dev 64 crw------- ttyva rw vk xfdesktop 22089 2 /dev 64 crw------- ttyva rw vk xfdesktop 22089 3* local stream c4e97560 <-> c4e98408 vk xfdesktop 22089 4* pipe c4654498 <-> c4654550 0 rw vk xfdesktop 22089 5* pipe c4654550 <-> c4654498 0 rw vk xfdesktop 22089 6* local stream c4e98e1c <-> c4e984b4 vk xfdesktop 22089 7* local stream c4e98158 <-> c4e98cc4 vk xfdesktop 22089 8* pipe c4654000 <-> c46540b8 0 rw vk xfdesktop 22089 9* pipe c46540b8 <-> c4654000 0 rw vk xfdesktop 22089 10* local stream c4e98c18 <-> cfd31d70 vk xfdesktop 22089 11* pipe c4693188 <-> c4693240 0 rw vk xfdesktop 22089 12* pipe c4693240 <-> c4693188 0 rw vk xfce4-panel 22088 root / 2 drwxr-xr-x 512 r vk xfce4-panel 22088 wd /usr 5982209 drwxr-xr-x 15872 r vk xfce4-panel 22088 text /usr 4175466 -r-xr-xr-x 82244 r vk xfce4-panel 22088 0 /dev 64 crw------- ttyva rw vk xfce4-panel 22088 1 /dev 64 crw------- ttyva rw vk xfce4-panel 22088 2 /dev 64 crw------- ttyva rw vk xfce4-panel 22088 3* local stream c4e97ac0 <-> c4e974b4 vk xfce4-panel 22088 4* pipe c4692ab8 <-> c4692b70 0 rw vk xfce4-panel 22088 5* pipe c4692b70 <-> c4692ab8 0 rw vk xfce4-panel 22088 6* pipe cfa92c40 <-> cfa92cf8 0 rw vk xfce4-panel 22088 7* pipe cfa92cf8 <-> cfa92c40 0 rw vk xfce4-panel 22088 8* pipe c4654000 <-> c46540b8 0 rw vk xfce4-panel 22088 9* pipe c46540b8 <-> c4654000 0 rw vk xfce4-panel 22088 10* local stream cfd31e1c <-> cfd31b6c vk xfce4-panel 22088 11* pipe cfa92188 <-> cfa92240 0 rw vk xfce4-panel 22088 12* pipe cfa92240 <-> cfa92188 0 rw vk gam_server 22087 root / 2 drwxr-xr-x 512 r vk gam_server 22087 wd /usr 5982209 drwxr-xr-x 15872 r vk gam_server 22087 text /usr 4170259 -r-xr-xr-x 58964 r vk gam_server 22087 0 /dev 14 crwxrwxrwx null r vk gam_server 22087 1 /dev 14 crwxrwxrwx null w vk gam_server 22087 2 /dev 14 crwxrwxrwx null w vk gam_server 22087 4* local stream c3c0f4b4 vk gam_server 22087 5* pipe c4693ab8 <-> c4693b70 0 rw vk gam_server 22087 6* pipe c4693b70 <-> c4693ab8 0 rw vk gam_server 22087 7* local stream cfd310ac <-> c3c0f35c vk gam_server 22087 8 /usr 6194511 -rw-r--r-- 1237 r vk gam_server 22087 9* local stream c4e98cc4 <-> c4e98158 vk gam_server 22087 10 /usr 6076460 drwx------ 512 r vk gam_server 22087 11 /usr 4338213 drwxr-xr-x 512 r vk gam_server 22087 12 /usr 4338214 -r--r--r-- 3608 r vk gam_server 22087 13 /usr 4338200 drwxr-xr-x 512 r vk gam_server 22087 14 /usr 4338201 -r--r--r-- 3589 r vk gam_server 22087 15 /usr 4338202 -r--r--r-- 3097 r vk gam_server 22087 16 /usr 4338203 -r--r--r-- 2620 r vk gam_server 22087 17 /usr 4338204 -r--r--r-- 3400 r vk gam_server 22087 18 /usr 4338205 -r--r--r-- 3613 r vk gam_server 22087 19 /usr 4338206 -r--r--r-- 3593 r vk gam_server 22087 20 /usr 4338207 -r--r--r-- 3015 r vk gam_server 22087 21 /usr 4338208 -r--r--r-- 2937 r vk gam_server 22087 22 /usr 4338209 -r--r--r-- 3632 r vk gam_server 22087 23 /usr 4338210 -r--r--r-- 3045 r vk gam_server 22087 24 /usr 4338211 -r--r--r-- 3796 r vk gam_server 22087 25 /usr 4338212 -r--r--r-- 3037 r vk gam_server 22087 26 /usr 6644059 drwxr-xr-x 512 r vk gam_server 22087 27 /usr 4287636 drwxr-xr-x 1536 r vk gam_server 22087 28 /usr 4287637 -r--r--r-- 6754 r vk gam_server 22087 29 /usr 4287716 -r--r--r-- 6609 r vk gam_server 22087 30 /usr 4287804 -r--r--r-- 2262 r vk gam_server 22087 31 /usr 4288234 -r--r--r-- 8607 r vk gam_server 22087 32 /usr 4288235 -r--r--r-- 3890 r vk gam_server 22087 33 /usr 4288236 -r--r--r-- 4875 r vk gam_server 22087 34 /usr 4288297 -r--r--r-- 3919 r vk gam_server 22087 35 /usr 4293796 -rw-r--r-- 233 r vk gam_server 22087 36 /usr 4288713 -r--r--r-- 7665 r vk gam_server 22087 37 /usr 4288714 -r--r--r-- 5925 r vk gam_server 22087 38 /usr 4288715 -r--r--r-- 6982 r vk gam_server 22087 39 /usr 4288775 -r--r--r-- 4668 r vk gam_server 22087 40 /usr 4293199 -r--r--r-- 7203 r vk gam_server 22087 41 /usr 4293200 -r--r--r-- 8124 r vk gam_server 22087 42 /usr 4293201 -r--r--r-- 10291 r vk gam_server 22087 43 /usr 4293202 -r--r--r-- 2824 r vk gam_server 22087 44 /usr 4293203 -r--r--r-- 3206 r vk gam_server 22087 45 /usr 4293204 -r--r--r-- 3554 r vk gam_server 22087 46 /usr 4293205 -r--r--r-- 3127 r vk gam_server 22087 47 /usr 4293206 -r--r--r-- 2815 r vk gam_server 22087 48 /usr 4293207 -r--r--r-- 4976 r vk gam_server 22087 49 /usr 4293208 -r--r--r-- 4406 r vk gam_server 22087 50 /usr 4293250 -r--r--r-- 4001 r vk gam_server 22087 51 /usr 4293252 -r--r--r-- 3815 r vk gam_server 22087 52 /usr 4293253 -r--r--r-- 3351 r vk gam_server 22087 53 /usr 4293254 -r--r--r-- 2654 r vk gam_server 22087 54 /usr 4293255 -r--r--r-- 2878 r vk gam_server 22087 55 /usr 4293256 -r--r--r-- 3176 r vk gam_server 22087 56 /usr 4293566 -r--r--r-- 10588 r vk gam_server 22087 57 /usr 4293257 -r--r--r-- 2670 r vk gam_server 22087 58 /usr 4293258 -r--r--r-- 2851 r vk gam_server 22087 59 /usr 4293266 -r--r--r-- 3929 r vk gam_server 22087 60 /usr 4293279 -r--r--r-- 4563 r vk gam_server 22087 61 /usr 4293280 -r--r--r-- 4690 r vk gam_server 22087 62 /usr 4293281 -r--r--r-- 4127 r vk gam_server 22087 63 /usr 4293283 -r--r--r-- 4836 r vk gam_server 22087 64 /usr 4293797 -r--r--r-- 6554 r vk gam_server 22087 65 /usr 4293284 -r--r--r-- 995 r vk gam_server 22087 66 /usr 4293798 -rw-r--r-- 201 r vk gam_server 22087 67 /usr 4293799 -r--r--r-- 561 r vk gam_server 22087 68 /usr 6644058 drwxr-xr-x 512 r vk gam_server 22087 69 /usr 6644067 -rw-r--r-- 417 r vk gam_server 22087 70 /usr 6644068 -rw-r--r-- 150 r vk gam_server 22087 71 /usr 6644069 -rw-r--r-- 142 r vk gam_server 22087 72 /usr 6644070 -rw-r--r-- 161 r vk gam_server 22087 73 /usr 6644071 -rw-r--r-- 148 r vk gam_server 22087 74 /usr 6644072 -rw-r--r-- 143 r vk gam_server 22087 75 /usr 6644073 -rw-r--r-- 162 r vk gam_server 22087 76 /usr 6644074 -rw-r--r-- 143 r vk gam_server 22087 77 /usr 6644075 -rw-r--r-- 139 r vk gam_server 22087 78 /usr 6644076 -rw-r--r-- 144 r vk Thunar 22085 root / 2 drwxr-xr-x 512 r vk Thunar 22085 wd /usr 5982209 drwxr-xr-x 15872 r vk Thunar 22085 text /usr 4175554 -r-xr-xr-x 486236 r vk Thunar 22085 0 /dev 64 crw------- ttyva rw vk Thunar 22085 1 /dev 64 crw------- ttyva rw vk Thunar 22085 2 /dev 64 crw------- ttyva rw vk Thunar 22085 3* local stream c4e98ac0 <-> c4e9835c vk Thunar 22085 4* pipe c4693000 <-> c46930b8 0 rw vk Thunar 22085 5* pipe c46930b8 <-> c4693000 0 rw vk Thunar 22085 6* local stream c3c0f35c <-> cfd310ac vk Thunar 22085 7* local stream c4e97968 <-> c4e97810 vk Thunar 22085 8* pipe c4654000 <-> c46540b8 0 rw vk Thunar 22085 9* pipe c46540b8 <-> c4654000 0 rw vk Thunar 22085 10* local stream c4e982b0 <-> c4e9860c vk Thunar 22085 11 / 25667 -rw-r--r-- 534 r vk Thunar 22085 12 / 25695 -rw-r--r-- 40960 r vk xfwm4 22084 root / 2 drwxr-xr-x 512 r vk xfwm4 22084 wd /usr 5982209 drwxr-xr-x 15872 r vk xfwm4 22084 text /usr 4175969 -r-xr-xr-x 288768 r vk xfwm4 22084 0 /dev 64 crw------- ttyva rw vk xfwm4 22084 1 /dev 64 crw------- ttyva rw vk xfwm4 22084 2 /dev 64 crw------- ttyva rw vk xfwm4 22084 3* local stream cfd31968 <-> c3c0fe1c vk xfwm4 22084 4* pipe c4514620 <-> c45146d8 0 rw vk xfwm4 22084 5* pipe c45146d8 <-> c4514620 0 rw vk xfwm4 22084 6* local stream cfd31a14 <-> c4e988bc vk xfwm4 22084 7* local stream c4e97e1c <-> c4e98968 vk xfwm4 22084 8* pipe c4654000 <-> c46540b8 0 rw vk xfwm4 22084 9* pipe c46540b8 <-> c4654000 0 rw vk xfsettingsd 22083 root / 2 drwxr-xr-x 512 r vk xfsettingsd 22083 wd /usr 5982209 drwxr-xr-x 15872 r vk xfsettingsd 22083 text /usr 4175681 -r-xr-xr-x 19524 r vk xfsettingsd 22083 0 /dev 14 crwxrwxrwx null r vk xfsettingsd 22083 1 /dev 64 crw------- ttyva rw vk xfsettingsd 22083 2 /dev 64 crw------- ttyva rw vk xfsettingsd 22083 3* local stream c45e96b8 <-> c4e97cc4 vk xfsettingsd 22083 4* pipe c4693310 <-> c46933c8 0 rw vk xfsettingsd 22083 5* pipe c46933c8 <-> c4693310 0 rw vk xfsettingsd 22083 6* local stream c4e98000 <-> c4e98ec8 vk xfconfd 22079 root / 2 drwxr-xr-x 512 r vk xfconfd 22079 wd / 2 drwxr-xr-x 512 r vk xfconfd 22079 text /usr 4175366 -r-xr-xr-x 52420 r vk xfconfd 22079 0 /dev 14 crwxrwxrwx null rw vk xfconfd 22079 1 /dev 14 crwxrwxrwx null rw vk xfconfd 22079 2 /dev 14 crwxrwxrwx null rw vk xfconfd 22079 3* pipe c4693930 <-> c46939e8 0 rw vk xfconfd 22079 4 /dev 14 crwxrwxrwx null rw vk xfconfd 22079 5* pipe c46939e8 <-> c4693930 0 rw vk xfconfd 22079 6 /usr 4239401 drwxr-xr-x 512 r vk xfconfd 22079 7 /usr 4239403 drwxr-xr-x 512 r vk xfconfd 22079 8* pipe c46937a8 <-> c4693860 0 rw vk xfconfd 22079 9* pipe c4693860 <-> c46937a8 0 rw vk xfconfd 22079 10* local stream c4556c18 <-> cfd31000 vk xfce4-session 22077 root / 2 drwxr-xr-x 512 r vk xfce4-session 22077 wd /usr 5982209 drwxr-xr-x 15872 r vk xfce4-session 22077 text /usr 4175409 -r-xr-xr-x 119516 r vk xfce4-session 22077 0 /dev 64 crw------- ttyva rw vk xfce4-session 22077 1 /dev 64 crw------- ttyva rw vk xfce4-session 22077 2 /dev 64 crw------- ttyva rw vk xfce4-session 22077 3* local stream c4e98a14 <-> cfd31158 vk xfce4-session 22077 4* pipe c4516310 <-> c45163c8 0 rw vk xfce4-session 22077 5* pipe c45163c8 <-> c4516310 0 rw vk xfce4-session 22077 6* local stream c4e97d70 <-> c4e97a14 vk xfce4-session 22077 7* local stream cfd318bc vk xfce4-session 22077 8* pipe c4654000 <-> c46540b8 0 rw vk xfce4-session 22077 9* pipe c46540b8 <-> c4654000 0 rw vk xfce4-session 22077 10* local stream c4e98968 <-> c4e97e1c vk xfce4-session 22077 11* local stream c4e97810 <-> c4e97968 vk xfce4-session 22077 12* local stream c4e98d70 <-> c4e980ac vk xfce4-session 22077 13* local stream c4e984b4 <-> c4e98e1c vk xfce4-session 22077 14* local stream cfd31b6c <-> cfd31e1c vk xfce4-session 22077 15* local stream c4e97764 <-> cfd31cc4 vk dbus-daemon 22075 root / 2 drwxr-xr-x 512 r vk dbus-daemon 22075 wd / 2 drwxr-xr-x 512 r vk dbus-daemon 22075 text /usr 4172782 -r-xr-xr-x 308828 r vk dbus-daemon 22075 0 /dev 14 crwxrwxrwx null rw vk dbus-daemon 22075 1 /dev 14 crwxrwxrwx null rw vk dbus-daemon 22075 2 /dev 14 crwxrwxrwx null rw vk dbus-daemon 22075 3* local stream c4e98560 vk dbus-daemon 22075 4 /dev 14 crwxrwxrwx null rw vk dbus-daemon 22075 6 /usr 4239401 drwxr-xr-x 512 r vk dbus-daemon 22075 7 /usr 4239403 drwxr-xr-x 512 r vk dbus-daemon 22075 8* local stream c4e98b6c <-> cfd31ec8 vk dbus-daemon 22075 9* local stream cfd31ec8 <-> c4e98b6c vk dbus-daemon 22075 10* local stream c4e97a14 <-> c4e97d70 vk dbus-daemon 22075 11* local stream c4e98ec8 <-> c4e98000 vk dbus-daemon 22075 12* local stream cfd31000 <-> c4556c18 vk dbus-daemon 22075 13* local stream c4e988bc <-> cfd31a14 vk dbus-daemon 22075 14* local stream c4e9860c <-> c4e982b0 vk dbus-daemon 22075 15* local stream c4e98204 <-> c4e98810 vk dbus-daemon 22075 16* local stream cfd31d70 <-> c4e98c18 vk dbus-daemon 22075 17* local stream cfd31204 <-> cfd3160c vk dbus-daemon 22075 18* local stream c3c0fec8 <-> c4e9760c vk dbus-daemon 22075 20* local stream c45e92b0 <-> c45e960c vk dbus-launch 22074 root / 2 drwxr-xr-x 512 r vk dbus-launch 22074 wd / 2 drwxr-xr-x 512 r vk dbus-launch 22074 text /usr 4172789 -r-xr-xr-x 21488 r vk dbus-launch 22074 0 /dev 64 crw------- ttyva rw vk dbus-launch 22074 1 /dev 14 crwxrwxrwx null rw vk dbus-launch 22074 2 /dev 14 crwxrwxrwx null rw vk dbus-launch 22074 3* local stream cfd31810 <-> c3c0f2b0 vk dbus-launch 22074 4 /dev 14 crwxrwxrwx null rw vk dbus-launch 22074 5* local stream c3c0f204 <-> cfd31560 vk dbus-launch 22074 8* pipe c4516498 <-> c4516550 0 rw vk ssh-agent 22069 root / 2 drwxr-xr-x 512 r vk ssh-agent 22069 wd / 2 drwxr-xr-x 512 r vk ssh-agent 22069 text /usr 1012778 -r-xr-xr-x 23332 r vk ssh-agent 22069 0 /dev 14 crwxrwxrwx null rw vk ssh-agent 22069 1 /dev 14 crwxrwxrwx null rw vk ssh-agent 22069 2 /dev 14 crwxrwxrwx null rw vk ssh-agent 22069 3* local stream c45e9560 vk sh 22059 root / 2 drwxr-xr-x 512 r vk sh 22059 wd /usr 5982209 drwxr-xr-x 15872 r vk sh 22059 text / 13723 -r-xr-xr-x 118288 r vk sh 22059 0 /dev 64 crw------- ttyva rw vk sh 22059 1 /dev 64 crw------- ttyva rw vk sh 22059 2 /dev 64 crw------- ttyva rw vk sh 22059 10 /usr 4266077 -r--r--r-- 7049 r root Xorg 22056 root / 2 drwxr-xr-x 512 r root Xorg 22056 wd /usr 5982209 drwxr-xr-x 15872 r root Xorg 22056 text /usr 4174449 -r-sr-xr-x 1647528 r root Xorg 22056 0 /var 3273736 -rw-r--r-- 144887 w root Xorg 22056 1* internet6 stream tcp c4526c58 root Xorg 22056 2 /dev 64 crw------- ttyva rw root Xorg 22056 3* internet stream tcp c51104f0 root Xorg 22056 4* local stream c3c0f000 root Xorg 22056 5 /usr 4243445 -r--r--r-- 31246 r root Xorg 22056 6 /dev 9 crw-r----- mem rw root Xorg 22056 7 /dev 65 crw------- ttyvb rw root Xorg 22056 8 /dev 16 crw-r--r-- pci rw root Xorg 22056 10 /dev 36 crw------- agpgart rw root Xorg 22056 11 /dev 106 crw-rw-rw- dri/card0 rw root Xorg 22056 13* local stream c7a95204 <-> cfd314b4 root Xorg 22056 14* local stream c3c0f2b0 <-> cfd31810 root Xorg 22056 15* local stream cfd31560 <-> c3c0f204 root Xorg 22056 16* local stream cfd31158 <-> c4e98a14 root Xorg 22056 17* local stream c4e97cc4 <-> c45e96b8 root Xorg 22056 18* local stream c3c0fe1c <-> cfd31968 root Xorg 22056 19* local stream c4e9835c <-> c4e98ac0 root Xorg 22056 20* local stream c4e974b4 <-> c4e97ac0 root Xorg 22056 21* local stream c4e98408 <-> c4e97560 root Xorg 22056 22* local stream c4e986b8 <-> c4e98764 root Xorg 22056 23* local stream cfd31ac0 <-> cfd316b8 root Xorg 22056 24* local stream c45e9a14 <-> c45e9408 root Xorg 22056 25* local stream c4e976b8 <-> c3c0f60c vk xinit 22055 root / 2 drwxr-xr-x 512 r vk xinit 22055 wd /usr 5982209 drwxr-xr-x 15872 r vk xinit 22055 text /usr 4174651 -r-xr-xr-x 11440 r vk xinit 22055 0 /dev 64 crw------- ttyva rw vk xinit 22055 1 /dev 64 crw------- ttyva rw vk xinit 22055 2 /dev 64 crw------- ttyva rw vk xinit 22055 3* local stream cfd314b4 <-> c7a95204 vk sh 22022 root / 2 drwxr-xr-x 512 r vk sh 22022 wd /usr 5982209 drwxr-xr-x 15872 r vk sh 22022 text / 13723 -r-xr-xr-x 118288 r vk sh 22022 0 /dev 64 crw------- ttyva rw vk sh 22022 1 /dev 64 crw------- ttyva rw vk sh 22022 2 /dev 64 crw------- ttyva rw vk sh 22022 10 /usr 4174637 -r-xr-xr-x 4680 r www httpd 18772 root /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 18772 wd /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 18772 jail /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 18772 text /mnt/.1 6032280 -rwxr-xr-x 660940 r www httpd 18772 0 /mnt/.1/jail/www/dev 14 crw-rw-rw- null r www httpd 18772 1 /mnt/.1/jail/www/dev 14 crw-rw-rw- null w www httpd 18772 2 /mnt/.1 5911590 -rw-r--r-- 9523211 w www httpd 18772 3 /mnt/.1 5817855 -rw------- 0 rw www httpd 18772 7* pipe cfa92550 <-> cfa92498 0 rw www httpd 18772 15 /mnt/.1 5911584 -rw-r----- 1125082 w www httpd 18772 16 /mnt/.1 5911581 -rw-r----- 0 w www httpd 18772 17 /mnt/.1 5911590 -rw-r--r-- 9523211 w www httpd 18772 18* internet stream tcp c45264f0 www httpd 18772 19* internet stream tcp c4526768 www httpd 18772 20 /mnt/.1 5911588 -rw-r--r-- 464698 w www httpd 18772 21 /mnt/.1 5817857 -rw------- 0 w www httpd 18772 22 /mnt/.1 5911594 -rw-r--r-- 44189129 w www httpd 18772 23 /mnt/.1 5911582 -rw-r--r-- 857610501 w www httpd 18772 24 /mnt/.1 5911591 -rw-r--r-- 132055196 w www httpd 18772 25 /mnt/.1 5911582 -rw-r--r-- 857610501 w www httpd 18772 26 /mnt/.1 5911596 -rw-r--r-- 34501 w www httpd 18772 27 /mnt/.1 5817859 -rw------- 0 w www httpd 18772 28 /mnt/.1 5817859 -rw------- 0 w www httpd 18772 29 /mnt/.1 5817857 -rw------- 0 w www httpd 18771 root /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 18771 wd /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 18771 jail /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 18771 text /mnt/.1 6032280 -rwxr-xr-x 660940 r www httpd 18771 0 /mnt/.1/jail/www/dev 14 crw-rw-rw- null r www httpd 18771 1 /mnt/.1/jail/www/dev 14 crw-rw-rw- null w www httpd 18771 2 /mnt/.1 5911590 -rw-r--r-- 9523211 w www httpd 18771 3 /mnt/.1 5817855 -rw------- 0 rw www httpd 18771 7* pipe cfa92550 <-> cfa92498 0 rw www httpd 18771 15 /mnt/.1 5911584 -rw-r----- 1125082 w www httpd 18771 16 /mnt/.1 5911581 -rw-r----- 0 w www httpd 18771 17 /mnt/.1 5911590 -rw-r--r-- 9523211 w www httpd 18771 18* internet stream tcp c45264f0 www httpd 18771 19* internet stream tcp c4526768 www httpd 18771 20 /mnt/.1 5911588 -rw-r--r-- 464698 w www httpd 18771 21 /mnt/.1 5817857 -rw------- 0 w www httpd 18771 22 /mnt/.1 5911594 -rw-r--r-- 44189129 w www httpd 18771 23 /mnt/.1 5911582 -rw-r--r-- 857610501 w www httpd 18771 24 /mnt/.1 5911591 -rw-r--r-- 132055196 w www httpd 18771 25 /mnt/.1 5911582 -rw-r--r-- 857610501 w www httpd 18771 26 /mnt/.1 5911596 -rw-r--r-- 34501 w www httpd 18771 27 /mnt/.1 5817859 -rw------- 0 w www httpd 18771 28 /mnt/.1 5817859 -rw------- 0 w www httpd 18771 29 /mnt/.1 5817857 -rw------- 0 w vk bash 6034 root / 2 drwxr-xr-x 512 r vk bash 6034 wd /usr 5982209 drwxr-xr-x 15872 r vk bash 6034 text /usr 4176031 -rwxr-xr-x 619912 r vk bash 6034 0 /dev 56 crw------- ttyv2 rw vk bash 6034 1 /dev 56 crw------- ttyv2 rw vk bash 6034 2 /dev 56 crw------- ttyv2 rw vk bash 6034 255 /dev 56 crw------- ttyv2 rw root login 5989 root / 2 drwxr-xr-x 512 r root login 5989 wd /usr 5982209 drwxr-xr-x 15872 r root login 5989 text /usr 1013201 -r-sr-xr-x 21700 r root login 5989 0 /dev 56 crw------- ttyv2 rw root login 5989 1 /dev 56 crw------- ttyv2 rw root login 5989 2 /dev 56 crw------- ttyv2 rw root login 5989 3* local dgram cfd312b0 <-> c4e9735c vk ssh 5911 root / 2 drwxr-xr-x 512 r vk ssh 5911 wd /usr 5982209 drwxr-xr-x 15872 r vk ssh 5911 text /usr 1012781 -r-xr-xr-x 139236 r vk ssh 5911 0 /dev 59 crw------- ttyv5 rw vk ssh 5911 1 /dev 59 crw------- ttyv5 rw vk ssh 5911 2 /dev 59 crw------- ttyv5 rw vk ssh 5911 3* internet stream tcp c45279e0 vk ssh 5911 4 /dev 59 crw------- ttyv5 rw vk ssh 5911 5 /dev 59 crw------- ttyv5 rw vk ssh 5911 6 /dev 59 crw------- ttyv5 rw vk ssh 53815 root / 2 drwxr-xr-x 512 r vk ssh 53815 wd /usr 5982209 drwxr-xr-x 15872 r vk ssh 53815 text /usr 1012781 -r-xr-xr-x 139236 r vk ssh 53815 0 /dev 120 crw--w---- pts/6 rw vk ssh 53815 1 /dev 120 crw--w---- pts/6 rw vk ssh 53815 2 /dev 120 crw--w---- pts/6 rw vk ssh 53815 3* internet stream tcp cfa93768 vk ssh 53815 4 /dev 120 crw--w---- pts/6 rw vk ssh 53815 5 /dev 120 crw--w---- pts/6 rw vk ssh 53815 6 /dev 120 crw--w---- pts/6 rw vk ssh 53815 7* pipe c3c190b8 <-> c3c19000 0 rw www httpd 53814 root /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 53814 wd /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 53814 jail /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 53814 text /mnt/.1 6032280 -rwxr-xr-x 660940 r www httpd 53814 0 /mnt/.1/jail/www/dev 14 crw-rw-rw- null r www httpd 53814 1 /mnt/.1/jail/www/dev 14 crw-rw-rw- null w www httpd 53814 2 /mnt/.1 5911590 -rw-r--r-- 9523211 w www httpd 53814 3 /mnt/.1 5817855 -rw------- 0 rw www httpd 53814 7* pipe cfa92550 <-> cfa92498 0 rw www httpd 53814 15 /mnt/.1 5911584 -rw-r----- 1125082 w www httpd 53814 16 /mnt/.1 5911581 -rw-r----- 0 w www httpd 53814 17 /mnt/.1 5911590 -rw-r--r-- 9523211 w www httpd 53814 18* internet stream tcp c45264f0 www httpd 53814 19* internet stream tcp c4526768 www httpd 53814 20 /mnt/.1 5911588 -rw-r--r-- 464698 w www httpd 53814 21 /mnt/.1 5817857 -rw------- 0 w www httpd 53814 22 /mnt/.1 5911594 -rw-r--r-- 44189129 w www httpd 53814 23 /mnt/.1 5911582 -rw-r--r-- 857610501 w www httpd 53814 24 /mnt/.1 5911591 -rw-r--r-- 132055196 w www httpd 53814 25 /mnt/.1 5911582 -rw-r--r-- 857610501 w www httpd 53814 26 /mnt/.1 5911596 -rw-r--r-- 34501 w www httpd 53814 27 /mnt/.1 5817859 -rw------- 0 w www httpd 53814 28 /mnt/.1 5817859 -rw------- 0 w www httpd 53814 29 /mnt/.1 5817857 -rw------- 0 w vk bash 30208 root / 2 drwxr-xr-x 512 r vk bash 30208 wd /usr 5982209 drwxr-xr-x 15872 r vk bash 30208 text /usr 4176031 -rwxr-xr-x 619912 r vk bash 30208 0 /dev 59 crw------- ttyv5 rw vk bash 30208 1 /dev 59 crw------- ttyv5 rw vk bash 30208 2 /dev 59 crw------- ttyv5 rw vk bash 30208 255 /dev 59 crw------- ttyv5 rw www httpd 30078 root /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 30078 wd /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 30078 jail /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 30078 text /mnt/.1 6032280 -rwxr-xr-x 660940 r www httpd 30078 0 /mnt/.1/jail/www/dev 14 crw-rw-rw- null r www httpd 30078 1 /mnt/.1/jail/www/dev 14 crw-rw-rw- null w www httpd 30078 2 /mnt/.1 5911590 -rw-r--r-- 9523211 w www httpd 30078 3 /mnt/.1 5817855 -rw------- 0 rw www httpd 30078 7* pipe cfa92550 <-> cfa92498 0 rw www httpd 30078 15 /mnt/.1 5911584 -rw-r----- 1125082 w www httpd 30078 16 /mnt/.1 5911581 -rw-r----- 0 w www httpd 30078 17 /mnt/.1 5911590 -rw-r--r-- 9523211 w www httpd 30078 18* internet stream tcp c45264f0 www httpd 30078 19* internet stream tcp c4526768 www httpd 30078 20 /mnt/.1 5911588 -rw-r--r-- 464698 w www httpd 30078 21 /mnt/.1 5817857 -rw------- 0 w www httpd 30078 22 /mnt/.1 5911594 -rw-r--r-- 44189129 w www httpd 30078 23 /mnt/.1 5911582 -rw-r--r-- 857610501 w www httpd 30078 24 /mnt/.1 5911591 -rw-r--r-- 132055196 w www httpd 30078 25 /mnt/.1 5911582 -rw-r--r-- 857610501 w www httpd 30078 26 /mnt/.1 5911596 -rw-r--r-- 34501 w www httpd 30078 27 /mnt/.1 5817859 -rw------- 0 w www httpd 30078 28 /mnt/.1 5817859 -rw------- 0 w www httpd 30078 29 /mnt/.1 5817857 -rw------- 0 w www httpd 29885 root /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 29885 wd /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 29885 jail /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 29885 text /mnt/.1 6032280 -rwxr-xr-x 660940 r www httpd 29885 0 /mnt/.1/jail/www/dev 14 crw-rw-rw- null r www httpd 29885 1 /mnt/.1/jail/www/dev 14 crw-rw-rw- null w www httpd 29885 2 /mnt/.1 5911590 -rw-r--r-- 9523211 w www httpd 29885 3 /mnt/.1 5817855 -rw------- 0 rw www httpd 29885 7* pipe cfa92550 <-> cfa92498 0 rw www httpd 29885 15 /mnt/.1 5911584 -rw-r----- 1125082 w www httpd 29885 16 /mnt/.1 5911581 -rw-r----- 0 w www httpd 29885 17 /mnt/.1 5911590 -rw-r--r-- 9523211 w www httpd 29885 18* internet stream tcp c45264f0 www httpd 29885 19* internet stream tcp c4526768 www httpd 29885 20 /mnt/.1 5911588 -rw-r--r-- 464698 w www httpd 29885 21 /mnt/.1 5817857 -rw------- 0 w www httpd 29885 22 /mnt/.1 5911594 -rw-r--r-- 44189129 w www httpd 29885 23 /mnt/.1 5911582 -rw-r--r-- 857610501 w www httpd 29885 24 /mnt/.1 5911591 -rw-r--r-- 132055196 w www httpd 29885 25 /mnt/.1 5911582 -rw-r--r-- 857610501 w www httpd 29885 26 /mnt/.1 5911596 -rw-r--r-- 34501 w www httpd 29885 27 /mnt/.1 5817859 -rw------- 0 w www httpd 29885 28 /mnt/.1 5817859 -rw------- 0 w www httpd 29885 29 /mnt/.1 5817857 -rw------- 0 w www httpd 29868 root /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 29868 wd /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 29868 jail /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 29868 text /mnt/.1 6032280 -rwxr-xr-x 660940 r www httpd 29868 0 /mnt/.1/jail/www/dev 14 crw-rw-rw- null r www httpd 29868 1 /mnt/.1/jail/www/dev 14 crw-rw-rw- null w www httpd 29868 2 /mnt/.1 5911590 -rw-r--r-- 9523211 w www httpd 29868 3 /mnt/.1 5817855 -rw------- 0 rw www httpd 29868 7* pipe cfa92550 <-> cfa92498 0 rw www httpd 29868 15 /mnt/.1 5911584 -rw-r----- 1125082 w www httpd 29868 16 /mnt/.1 5911581 -rw-r----- 0 w www httpd 29868 17 /mnt/.1 5911590 -rw-r--r-- 9523211 w www httpd 29868 18* internet stream tcp c45264f0 www httpd 29868 19* internet stream tcp c4526768 www httpd 29868 20 /mnt/.1 5911588 -rw-r--r-- 464698 w www httpd 29868 21 /mnt/.1 5817857 -rw------- 0 w www httpd 29868 22 /mnt/.1 5911594 -rw-r--r-- 44189129 w www httpd 29868 23 /mnt/.1 5911582 -rw-r--r-- 857610501 w www httpd 29868 24 /mnt/.1 5911591 -rw-r--r-- 132055196 w www httpd 29868 25 /mnt/.1 5911582 -rw-r--r-- 857610501 w www httpd 29868 26 /mnt/.1 5911596 -rw-r--r-- 34501 w www httpd 29868 27 /mnt/.1 5817859 -rw------- 0 w www httpd 29868 28 /mnt/.1 5817859 -rw------- 0 w www httpd 29868 29 /mnt/.1 5817857 -rw------- 0 w www httpd 29867 root /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 29867 wd /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 29867 jail /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 29867 text /mnt/.1 6032280 -rwxr-xr-x 660940 r www httpd 29867 0 /mnt/.1/jail/www/dev 14 crw-rw-rw- null r www httpd 29867 1 /mnt/.1/jail/www/dev 14 crw-rw-rw- null w www httpd 29867 2 /mnt/.1 5911590 -rw-r--r-- 9523211 w www httpd 29867 3 /mnt/.1 5817855 -rw------- 0 rw www httpd 29867 7* pipe cfa92550 <-> cfa92498 0 rw www httpd 29867 15 /mnt/.1 5911584 -rw-r----- 1125082 w www httpd 29867 16 /mnt/.1 5911581 -rw-r----- 0 w www httpd 29867 17 /mnt/.1 5911590 -rw-r--r-- 9523211 w www httpd 29867 18* internet stream tcp c45264f0 www httpd 29867 19* internet stream tcp c4526768 www httpd 29867 20 /mnt/.1 5911588 -rw-r--r-- 464698 w www httpd 29867 21 /mnt/.1 5817857 -rw------- 0 w www httpd 29867 22 /mnt/.1 5911594 -rw-r--r-- 44189129 w www httpd 29867 23 /mnt/.1 5911582 -rw-r--r-- 857610501 w www httpd 29867 24 /mnt/.1 5911591 -rw-r--r-- 132055196 w www httpd 29867 25 /mnt/.1 5911582 -rw-r--r-- 857610501 w www httpd 29867 26 /mnt/.1 5911596 -rw-r--r-- 34501 w www httpd 29867 27 /mnt/.1 5817859 -rw------- 0 w www httpd 29867 28 /mnt/.1 5817859 -rw------- 0 w www httpd 29867 29 /mnt/.1 5817857 -rw------- 0 w www httpd 29866 root /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 29866 wd /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 29866 jail /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 29866 text /mnt/.1 6032280 -rwxr-xr-x 660940 r www httpd 29866 0 /mnt/.1/jail/www/dev 14 crw-rw-rw- null r www httpd 29866 1 /mnt/.1/jail/www/dev 14 crw-rw-rw- null w www httpd 29866 2 /mnt/.1 5911590 -rw-r--r-- 9523211 w www httpd 29866 3 /mnt/.1 5817855 -rw------- 0 rw www httpd 29866 7* pipe cfa92550 <-> cfa92498 0 rw www httpd 29866 15 /mnt/.1 5911584 -rw-r----- 1125082 w www httpd 29866 16 /mnt/.1 5911581 -rw-r----- 0 w www httpd 29866 17 /mnt/.1 5911590 -rw-r--r-- 9523211 w www httpd 29866 18* internet stream tcp c45264f0 www httpd 29866 19* internet stream tcp c4526768 www httpd 29866 20 /mnt/.1 5911588 -rw-r--r-- 464698 w www httpd 29866 21 /mnt/.1 5817857 -rw------- 0 w www httpd 29866 22 /mnt/.1 5911594 -rw-r--r-- 44189129 w www httpd 29866 23 /mnt/.1 5911582 -rw-r--r-- 857610501 w www httpd 29866 24 /mnt/.1 5911591 -rw-r--r-- 132055196 w www httpd 29866 25 /mnt/.1 5911582 -rw-r--r-- 857610501 w www httpd 29866 26 /mnt/.1 5911596 -rw-r--r-- 34501 w www httpd 29866 27 /mnt/.1 5817859 -rw------- 0 w www httpd 29866 28 /mnt/.1 5817859 -rw------- 0 w www httpd 29866 29 /mnt/.1 5817857 -rw------- 0 w www httpd 29865 root /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 29865 wd /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 29865 jail /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 29865 text /mnt/.1 6032280 -rwxr-xr-x 660940 r www httpd 29865 0 /mnt/.1/jail/www/dev 14 crw-rw-rw- null r www httpd 29865 1 /mnt/.1/jail/www/dev 14 crw-rw-rw- null w www httpd 29865 2 /mnt/.1 5911590 -rw-r--r-- 9523211 w www httpd 29865 3 /mnt/.1 5817855 -rw------- 0 rw www httpd 29865 7* pipe cfa92550 <-> cfa92498 0 rw www httpd 29865 15 /mnt/.1 5911584 -rw-r----- 1125082 w www httpd 29865 16 /mnt/.1 5911581 -rw-r----- 0 w www httpd 29865 17 /mnt/.1 5911590 -rw-r--r-- 9523211 w www httpd 29865 18* internet stream tcp c45264f0 www httpd 29865 19* internet stream tcp c4526768 www httpd 29865 20 /mnt/.1 5911588 -rw-r--r-- 464698 w www httpd 29865 21 /mnt/.1 5817857 -rw------- 0 w www httpd 29865 22 /mnt/.1 5911594 -rw-r--r-- 44189129 w www httpd 29865 23 /mnt/.1 5911582 -rw-r--r-- 857610501 w www httpd 29865 24 /mnt/.1 5911591 -rw-r--r-- 132055196 w www httpd 29865 25 /mnt/.1 5911582 -rw-r--r-- 857610501 w www httpd 29865 26 /mnt/.1 5911596 -rw-r--r-- 34501 w www httpd 29865 27 /mnt/.1 5817859 -rw------- 0 w www httpd 29865 28 /mnt/.1 5817859 -rw------- 0 w www httpd 29865 29 /mnt/.1 5817857 -rw------- 0 w www httpd 29864 root /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 29864 wd /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 29864 jail /mnt/.1 5817345 drwxr-xr-x 512 r www httpd 29864 text /mnt/.1 6032280 -rwxr-xr-x 660940 r www httpd 29864 0 /mnt/.1/jail/www/dev 14 crw-rw-rw- null r www httpd 29864 1 /mnt/.1/jail/www/dev 14 crw-rw-rw- null w www httpd 29864 2 /mnt/.1 5911590 -rw-r--r-- 9523211 w www httpd 29864 3 /mnt/.1 5817855 -rw------- 0 rw www httpd 29864 7* pipe cfa92550 <-> cfa92498 0 rw www httpd 29864 15 /mnt/.1 5911584 -rw-r----- 1125082 w www httpd 29864 16 /mnt/.1 5911581 -rw-r----- 0 w www httpd 29864 17 /mnt/.1 5911590 -rw-r--r-- 9523211 w www httpd 29864 18* internet stream tcp c45264f0 www httpd 29864 19* internet stream tcp c4526768 www httpd 29864 20 /mnt/.1 5911588 -rw-r--r-- 464698 w www httpd 29864 21 /mnt/.1 5817857 -rw------- 0 w www httpd 29864 22 /mnt/.1 5911594 -rw-r--r-- 44189129 w www httpd 29864 23 /mnt/.1 5911582 -rw-r--r-- 857610501 w www httpd 29864 24 /mnt/.1 5911591 -rw-r--r-- 132055196 w www httpd 29864 25 /mnt/.1 5911582 -rw-r--r-- 857610501 w www httpd 29864 26 /mnt/.1 5911596 -rw-r--r-- 34501 w www httpd 29864 27 /mnt/.1 5817859 -rw------- 0 w www httpd 29864 28 /mnt/.1 5817859 -rw------- 0 w www httpd 29864 29 /mnt/.1 5817857 -rw------- 0 w root httpd 29861 root /mnt/.1 5817345 drwxr-xr-x 512 r root httpd 29861 wd /mnt/.1 5817345 drwxr-xr-x 512 r root httpd 29861 jail /mnt/.1 5817345 drwxr-xr-x 512 r root httpd 29861 text /mnt/.1 6032280 -rwxr-xr-x 660940 r root httpd 29861 0 /mnt/.1/jail/www/dev 14 crw-rw-rw- null r root httpd 29861 1 /mnt/.1/jail/www/dev 14 crw-rw-rw- null w root httpd 29861 2 /mnt/.1 5911590 -rw-r--r-- 9523211 w root httpd 29861 3 /mnt/.1 5817855 -rw------- 0 rw root httpd 29861 7* pipe cfa92550 <-> cfa92498 0 rw root httpd 29861 15 /mnt/.1 5911584 -rw-r----- 1125082 w root httpd 29861 16 /mnt/.1 5911581 -rw-r----- 0 w root httpd 29861 17 /mnt/.1 5911590 -rw-r--r-- 9523211 w root httpd 29861 18* internet stream tcp c45264f0 root httpd 29861 19* internet stream tcp c4526768 root httpd 29861 20 /mnt/.1 5911588 -rw-r--r-- 464698 w root httpd 29861 21 /mnt/.1 5817857 -rw------- 0 w root httpd 29861 22 /mnt/.1 5911594 -rw-r--r-- 44189129 w root httpd 29861 23 /mnt/.1 5911582 -rw-r--r-- 857610501 w root httpd 29861 24 /mnt/.1 5911591 -rw-r--r-- 132055196 w root httpd 29861 25 /mnt/.1 5911582 -rw-r--r-- 857610501 w root httpd 29861 26 /mnt/.1 5911596 -rw-r--r-- 34501 w root httpd 29861 27 /mnt/.1 5817859 -rw------- 0 w root cron 29850 root /mnt/.1 5817345 drwxr-xr-x 512 r root cron 29850 wd /mnt/.1 5817421 drwxr-x--- 512 r root cron 29850 jail /mnt/.1 5817345 drwxr-xr-x 512 r root cron 29850 text /mnt/.1 5959767 -r-xr-xr-x 31772 r root cron 29850 0 /mnt/.1/jail/www/dev 14 crw-rw-rw- null rw root cron 29850 1 /mnt/.1/jail/www/dev 14 crw-rw-rw- null rw root cron 29850 2 /mnt/.1/jail/www/dev 14 crw-rw-rw- null rw root cron 29850 3 /mnt/.1 5817854 -rw------- 5 w root cron 29850 7* pipe cfa92550 <-> cfa92498 0 rw smmsp sendmail 29844 root /mnt/.1 5817345 drwxr-xr-x 512 r smmsp sendmail 29844 wd /mnt/.1 5935109 drwxrwx--- 512 r smmsp sendmail 29844 jail /mnt/.1 5817345 drwxr-xr-x 512 r smmsp sendmail 29844 text /mnt/.1 6031281 -r-xr-sr-x 657576 r smmsp sendmail 29844 0 /mnt/.1/jail/www/dev 14 crw-rw-rw- null r smmsp sendmail 29844 1 /mnt/.1/jail/www/dev 14 crw-rw-rw- null w smmsp sendmail 29844 2 /mnt/.1/jail/www/dev 14 crw-rw-rw- null w smmsp sendmail 29844 3* local dgram c3c0f8bc <-> c7a95b6c smmsp sendmail 29844 4 /mnt/.1 5935116 -rw------- 51 w root sendmail 29838 root /mnt/.1 5817345 drwxr-xr-x 512 r root sendmail 29838 wd /mnt/.1 5935108 drwxr-xr-x 512 r root sendmail 29838 jail /mnt/.1 5817345 drwxr-xr-x 512 r root sendmail 29838 text /mnt/.1 6031281 -r-xr-sr-x 657576 r root sendmail 29838 0 /mnt/.1/jail/www/dev 14 crw-rw-rw- null r root sendmail 29838 1 /mnt/.1/jail/www/dev 14 crw-rw-rw- null w root sendmail 29838 2 /mnt/.1/jail/www/dev 14 crw-rw-rw- null w root sendmail 29838 3* local dgram c45e9158 <-> c7a95ac0 root sendmail 29838 4* internet stream tcp c4528768 root sendmail 29838 5* internet stream tcp c4526278 root sendmail 29838 6 /mnt/.1 5817853 -rw------- 45 w root sshd 29833 root /mnt/.1 5817345 drwxr-xr-x 512 r root sshd 29833 wd /mnt/.1 5817345 drwxr-xr-x 512 r root sshd 29833 jail /mnt/.1 5817345 drwxr-xr-x 512 r root sshd 29833 text /mnt/.1 5959822 -r-xr-xr-x 192740 r root sshd 29833 0 /mnt/.1/jail/www/dev 14 crw-rw-rw- null rw root sshd 29833 1 /mnt/.1/jail/www/dev 14 crw-rw-rw- null rw root sshd 29833 2 /mnt/.1/jail/www/dev 14 crw-rw-rw- null rw root sshd 29833 3* internet stream tcp c45d19e0 root syslogd 29779 root /mnt/.1 5817345 drwxr-xr-x 512 r root syslogd 29779 wd /mnt/.1 5817345 drwxr-xr-x 512 r root syslogd 29779 jail /mnt/.1 5817345 drwxr-xr-x 512 r root syslogd 29779 text /mnt/.1 5959823 -r-xr-xr-x 35640 r root syslogd 29779 0 /mnt/.1/jail/www/dev 14 crw-rw-rw- null rw root syslogd 29779 1 /mnt/.1/jail/www/dev 14 crw-rw-rw- null rw root syslogd 29779 2 /mnt/.1/jail/www/dev 14 crw-rw-rw- null rw root syslogd 29779 3 /mnt/.1 5817849 -rw------- 5 w root syslogd 29779 4* local dgram c7a95b6c root syslogd 29779 5* local dgram c7a95ac0 root syslogd 29779 6* internet dgram udp c4cd26e0 root syslogd 29779 7* pipe cfa92550 <-> cfa92498 0 rw root syslogd 29779 9 /mnt/.1 5817462 -rw-r--r-- 58 w root syslogd 29779 10 /mnt/.1 5817481 -rw------- 60 w root syslogd 29779 11 /mnt/.1 5817528 -rw------- 50427 w root syslogd 29779 12 /mnt/.1 5817461 -rw-r----- 117378 w root syslogd 29779 13 /mnt/.1 5817489 -rw-r--r-- 60 w root syslogd 29779 14 /mnt/.1 5817508 -rw------- 60 w root syslogd 29779 15 /mnt/.1 5817455 -rw------- 64942 w root syslogd 29779 16 /mnt/.1 5817445 -rw------- 49292 w root syslogd 29779 17 /mnt/.1 5817523 -rw-r--r-- 450 w root syslogd 29779 18 /mnt/.1 5817513 -rw-r----- 60 w root syslogd 29779 19 /mnt/.1 5817533 -rw-r----- 60 w smmsp sendmail 25429 root / 2 drwxr-xr-x 512 r smmsp sendmail 25429 wd /var 894982 drwxrwx--- 512 r smmsp sendmail 25429 text /usr 23585 -r-xr-sr-x 680116 r smmsp sendmail 25429 0 /dev 14 crwxrwxrwx null r smmsp sendmail 25429 1 /dev 14 crwxrwxrwx null w smmsp sendmail 25429 2 /dev 14 crwxrwxrwx null w smmsp sendmail 25429 3* local dgram c45560ac <-> c4e97408 smmsp sendmail 25429 4 /var 894985 -rw------- 51 w root sendmail 25426 root / 2 drwxr-xr-x 512 r root sendmail 25426 wd /var 894979 drwxr-xr-x 512 r root sendmail 25426 text /usr 23585 -r-xr-sr-x 680116 r root sendmail 25426 0 /dev 14 crwxrwxrwx null r root sendmail 25426 1 /dev 14 crwxrwxrwx null w root sendmail 25426 2 /dev 14 crwxrwxrwx null w root sendmail 25426 3* local dgram c3c0f810 <-> c4e9735c root sendmail 25426 4* internet stream tcp c45394f0 root sendmail 25426 5* internet6 stream tcp c5f8e4f0 root sendmail 25426 6* internet stream tcp c45d1768 root sendmail 25426 7 /var 2873376 -rw------- 45 w vk bash 25405 root / 2 drwxr-xr-x 512 r vk bash 25405 wd /usr 5982209 drwxr-xr-x 15872 r vk bash 25405 text /usr 4176031 -rwxr-xr-x 619912 r vk bash 25405 0 /dev 120 crw--w---- pts/6 rw vk bash 25405 1 /dev 120 crw--w---- pts/6 rw vk bash 25405 2 /dev 120 crw--w---- pts/6 rw vk bash 25405 7* pipe c3c190b8 <-> c3c19000 0 rw vk bash 25405 255 /dev 120 crw--w---- pts/6 rw vk mc 25404 root / 2 drwxr-xr-x 512 r vk mc 25404 wd /usr 5982209 drwxr-xr-x 15872 r vk mc 25404 text /usr 4170283 -r-xr-xr-x 846140 r vk mc 25404 0 /dev 55 crw------- ttyv1 rw vk mc 25404 1 /dev 55 crw------- ttyv1 rw vk mc 25404 2 /dev 55 crw------- ttyv1 rw vk mc 25404 3 /dev 55 crw------- ttyv1 rw vk mc 25404 4* pseudo-terminal master pts/6 rw vk mc 25404 5 /dev 120 crw--w---- pts/6 rw vk mc 25404 6* pipe c3c19000 <-> c3c190b8 0 rw vk mc 25404 7* pipe c3c190b8 <-> c3c19000 0 rw mailnull milter-greylist 91143 root / 2 drwxr-xr-x 512 r mailnull milter-greylist 91143 wd / 2 drwxr-xr-x 512 r mailnull milter-greylist 91143 text /usr 4177125 -r-xr-xr-x 157304 r mailnull milter-greylist 91143 0 /dev 14 crwxrwxrwx null r mailnull milter-greylist 91143 1 /dev 14 crwxrwxrwx null w mailnull milter-greylist 91143 2 /dev 14 crwxrwxrwx null w mailnull milter-greylist 91143 3* local dgram c3c0f764 <-> c4e9735c mailnull milter-greylist 91143 4* local stream cfd31408 mailnull milter-greylist 91143 5* local stream c45e9d70 <-> c45e9e1c mailnull milter-greylist 91143 7* pipe cfa92550 <-> cfa92498 0 rw mailnull dkim-filter 55568 root / 2 drwxr-xr-x 512 r mailnull dkim-filter 55568 wd /usr 4168706 drwxr-xr-x 1536 r mailnull dkim-filter 55568 text /usr 4176754 -r-xr-xr-x 196748 r mailnull dkim-filter 55568 0 /dev 14 crwxrwxrwx null rw mailnull dkim-filter 55568 1 /dev 14 crwxrwxrwx null rw mailnull dkim-filter 55568 2 /dev 14 crwxrwxrwx null rw mailnull dkim-filter 55568 3* local stream c3c0f968 mailnull dkim-filter 55568 4* local stream c3c0f6b8 <-> c455660c mailnull dkim-filter 55568 5* local stream c455660c <-> c3c0f6b8 mailnull dkim-filter 55568 6* internet dgram udp c4cd2b2c mailnull dkim-filter 55568 7* pipe cfa92550 <-> cfa92498 0 rw mailnull dkim-filter 55568 8* local dgram cfd3135c <-> c4e97408 mailnull dkim-filter 55568 9* local stream c45e98bc <-> c3c0fa14 mailnull dkim-filter 55567 root / 2 drwxr-xr-x 512 r mailnull dkim-filter 55567 wd /usr 4168706 drwxr-xr-x 1536 r mailnull dkim-filter 55567 text /usr 4176754 -r-xr-xr-x 196748 r mailnull dkim-filter 55567 0 /dev 14 crwxrwxrwx null rw mailnull dkim-filter 55567 1 /dev 14 crwxrwxrwx null rw mailnull dkim-filter 55567 2 /dev 14 crwxrwxrwx null rw mailnull dkim-filter 55567 7* pipe cfa92550 <-> cfa92498 0 rw root bash 11647 root / 2 drwxr-xr-x 512 r root bash 11647 wd /usr 5982209 drwxr-xr-x 15872 r root bash 11647 text /usr 4176031 -rwxr-xr-x 619912 r root bash 11647 0 /dev 111 crw--w---- pts/1 rw root bash 11647 1 /dev 111 crw--w---- pts/1 rw root bash 11647 2 /dev 111 crw--w---- pts/1 rw root bash 11647 255 /dev 111 crw--w---- pts/1 rw root su 11646 root / 2 drwxr-xr-x 512 r root su 11646 wd /usr 5982209 drwxr-xr-x 15872 r root su 11646 text /usr 1013249 -r-sr-xr-x 14548 r root su 11646 0 /dev 111 crw--w---- pts/1 rw root su 11646 1 /dev 111 crw--w---- pts/1 rw root su 11646 2 /dev 111 crw--w---- pts/1 rw root bash 10912 root / 2 drwxr-xr-x 512 r root bash 10912 wd /usr 6076488 drwxr-xr-x 1024 r root bash 10912 text /usr 4176031 -rwxr-xr-x 619912 r root bash 10912 0 /dev 114 crw--w---- pts/3 rw root bash 10912 1 /dev 114 crw--w---- pts/3 rw root bash 10912 2 /dev 114 crw--w---- pts/3 rw root bash 10912 7* pipe cfa92550 <-> cfa92498 0 rw root bash 10912 255 /dev 114 crw--w---- pts/3 rw root mc 10911 root / 2 drwxr-xr-x 512 r root mc 10911 wd /usr 6076488 drwxr-xr-x 1024 r root mc 10911 text /usr 4170283 -r-xr-xr-x 846140 r root mc 10911 0 /dev 54 crw------- ttyv0 rw root mc 10911 1 /dev 54 crw------- ttyv0 rw root mc 10911 2 /dev 54 crw------- ttyv0 rw root mc 10911 3 /dev 54 crw------- ttyv0 rw root mc 10911 4* pseudo-terminal master pts/3 rw root mc 10911 5 /dev 114 crw--w---- pts/3 rw root mc 10911 6* pipe cfa92498 <-> cfa92550 0 rw root mc 10911 7* pipe cfa92550 <-> cfa92498 0 rw root bash 10891 root / 2 drwxr-xr-x 512 r root bash 10891 wd /usr 5982237 drwxr-xr-x 512 r root bash 10891 text /usr 4176031 -rwxr-xr-x 619912 r root bash 10891 0 /dev 113 crw--w---- pts/2 rw root bash 10891 1 /dev 113 crw--w---- pts/2 rw root bash 10891 2 /dev 113 crw--w---- pts/2 rw root bash 10891 7* pipe c45169e8 <-> c4516930 0 rw root bash 10891 255 /dev 113 crw--w---- pts/2 rw root mc 10890 root / 2 drwxr-xr-x 512 r root mc 10890 wd /usr 5982237 drwxr-xr-x 512 r root mc 10890 text /usr 4170283 -r-xr-xr-x 846140 r root mc 10890 0 /dev 62 crw------- ttyv8 rw root mc 10890 1 /dev 62 crw------- ttyv8 rw root mc 10890 2 /dev 62 crw------- ttyv8 rw root mc 10890 3 /dev 62 crw------- ttyv8 rw root mc 10890 4* pseudo-terminal master pts/2 rw root mc 10890 5 /dev 113 crw--w---- pts/2 rw root mc 10890 6* pipe c4516930 <-> c45169e8 0 rw root mc 10890 7* pipe c45169e8 <-> c4516930 0 rw root mc 10890 10* internet stream tcp c4539000 root mc 10890 11* internet stream tcp c45274f0 root bash 10093 root / 2 drwxr-xr-x 512 r root bash 10093 wd /usr 5982210 drwxr-xr-x 2048 r root bash 10093 text /usr 4176031 -rwxr-xr-x 619912 r root bash 10093 0 /dev 62 crw------- ttyv8 rw root bash 10093 1 /dev 62 crw------- ttyv8 rw root bash 10093 2 /dev 62 crw------- ttyv8 rw root bash 10093 255 /dev 62 crw------- ttyv8 rw root bash 8345 root / 2 drwxr-xr-x 512 r root bash 8345 wd /usr 5982210 drwxr-xr-x 2048 r root bash 8345 text /usr 4176031 -rwxr-xr-x 619912 r root bash 8345 0 /dev 54 crw------- ttyv0 rw root bash 8345 1 /dev 54 crw------- ttyv0 rw root bash 8345 2 /dev 54 crw------- ttyv0 rw root bash 8345 255 /dev 54 crw------- ttyv0 rw vk bash 8337 root / 2 drwxr-xr-x 512 r vk bash 8337 wd /usr 5982209 drwxr-xr-x 15872 r vk bash 8337 text /usr 4176031 -rwxr-xr-x 619912 r vk bash 8337 0 /dev 111 crw--w---- pts/1 rw vk bash 8337 1 /dev 111 crw--w---- pts/1 rw vk bash 8337 2 /dev 111 crw--w---- pts/1 rw vk bash 8337 255 /dev 111 crw--w---- pts/1 rw root screen 8335 root / 2 drwxr-xr-x 512 r root screen 8335 wd /usr 5982209 drwxr-xr-x 15872 r root screen 8335 text /usr 4168914 -rwsr-xr-x 299016 r root screen 8335 0 /dev 14 crwxrwxrwx null r root screen 8335 1 /dev 14 crwxrwxrwx null w root screen 8335 2 /dev 14 crwxrwxrwx null w root screen 8335 3 /dev 57 crw------- ttyv3 rw root screen 8335 4 / 25836 prwx------ 0 r root screen 8335 5 /var 2873354 -rw-r--r-- 2758 r root screen 8335 6* pseudo-terminal master pts/1 rw root screen 8335 7* pseudo-terminal master pts/0 rw root screen 8335 10* pseudo-terminal master pts/7 rw vk screen 8334 root / 2 drwxr-xr-x 512 r vk screen 8334 wd /usr 5982209 drwxr-xr-x 15872 r vk screen 8334 text /usr 4168914 -rwsr-xr-x 299016 r vk screen 8334 0 /dev 57 crw------- ttyv3 rw vk screen 8334 1 /dev 57 crw------- ttyv3 rw vk screen 8334 2 /dev 57 crw------- ttyv3 rw vk bash 8326 root / 2 drwxr-xr-x 512 r vk bash 8326 wd /usr 5982209 drwxr-xr-x 15872 r vk bash 8326 text /usr 4176031 -rwxr-xr-x 619912 r vk bash 8326 0 /dev 57 crw------- ttyv3 rw vk bash 8326 1 /dev 57 crw------- ttyv3 rw vk bash 8326 2 /dev 57 crw------- ttyv3 rw vk bash 8326 255 /dev 57 crw------- ttyv3 rw vk bash 7646 root / 2 drwxr-xr-x 512 r vk bash 7646 wd /usr 5982209 drwxr-xr-x 15872 r vk bash 7646 text /usr 4176031 -rwxr-xr-x 619912 r vk bash 7646 0 /dev 64 crw------- ttyva rw vk bash 7646 1 /dev 64 crw------- ttyva rw vk bash 7646 2 /dev 64 crw------- ttyva rw vk bash 7646 255 /dev 64 crw------- ttyva rw vk bash 1954 root / 2 drwxr-xr-x 512 r vk bash 1954 wd /usr 5982209 drwxr-xr-x 15872 r vk bash 1954 text /usr 4176031 -rwxr-xr-x 619912 r vk bash 1954 0 /dev 55 crw------- ttyv1 rw vk bash 1954 1 /dev 55 crw------- ttyv1 rw vk bash 1954 2 /dev 55 crw------- ttyv1 rw vk bash 1954 255 /dev 55 crw------- ttyv1 rw vk bash 1904 root / 2 drwxr-xr-x 512 r vk bash 1904 wd /usr 5982209 drwxr-xr-x 15872 r vk bash 1904 text /usr 4176031 -rwxr-xr-x 619912 r vk bash 1904 0 /dev 58 crw------- ttyv4 rw vk bash 1904 1 /dev 58 crw------- ttyv4 rw vk bash 1904 2 /dev 58 crw------- ttyv4 rw vk bash 1904 255 /dev 58 crw------- ttyv4 rw root login 1903 root / 2 drwxr-xr-x 512 r root login 1903 wd /usr 5982209 drwxr-xr-x 15872 r root login 1903 text /usr 1013201 -r-sr-xr-x 21700 r root login 1903 0 /dev 64 crw------- ttyva rw root login 1903 1 /dev 64 crw------- ttyva rw root login 1903 2 /dev 64 crw------- ttyva rw root login 1903 3* local dgram c4e97ec8 <-> c4e9735c root getty 1902 root / 2 drwxr-xr-x 512 r root getty 1902 wd / 2 drwxr-xr-x 512 r root getty 1902 text /usr 23630 -r-xr-xr-x 21312 r root getty 1902 0 /dev 63 crw------- ttyv9 rw root getty 1902 1 /dev 63 crw------- ttyv9 rw root getty 1902 2 /dev 63 crw------- ttyv9 rw root login 1901 root / 2 drwxr-xr-x 512 r root login 1901 wd /usr 5982210 drwxr-xr-x 2048 r root login 1901 text /usr 1013201 -r-sr-xr-x 21700 r root login 1901 0 /dev 62 crw------- ttyv8 rw root login 1901 1 /dev 62 crw------- ttyv8 rw root login 1901 2 /dev 62 crw------- ttyv8 rw root login 1901 3* local dgram c4556cc4 <-> c4e9735c root getty 1900 root / 2 drwxr-xr-x 512 r root getty 1900 wd / 2 drwxr-xr-x 512 r root getty 1900 text /usr 23630 -r-xr-xr-x 21312 r root getty 1900 0 /dev 61 crw------- ttyv7 rw root getty 1900 1 /dev 61 crw------- ttyv7 rw root getty 1900 2 /dev 61 crw------- ttyv7 rw root login 1899 root / 2 drwxr-xr-x 512 r root login 1899 wd /usr 5982209 drwxr-xr-x 15872 r root login 1899 text /usr 1013201 -r-sr-xr-x 21700 r root login 1899 0 /dev 60 crw------- ttyv6 rw root login 1899 1 /dev 60 crw------- ttyv6 rw root login 1899 2 /dev 60 crw------- ttyv6 rw root login 1899 3* local dgram c45e935c <-> c4e9735c root login 1898 root / 2 drwxr-xr-x 512 r root login 1898 wd /usr 5982209 drwxr-xr-x 15872 r root login 1898 text /usr 1013201 -r-sr-xr-x 21700 r root login 1898 0 /dev 59 crw------- ttyv5 rw root login 1898 1 /dev 59 crw------- ttyv5 rw root login 1898 2 /dev 59 crw------- ttyv5 rw root login 1898 3* local dgram c45e9ec8 <-> c4e9735c root login 1897 root / 2 drwxr-xr-x 512 r root login 1897 wd /usr 5982209 drwxr-xr-x 15872 r root login 1897 text /usr 1013201 -r-sr-xr-x 21700 r root login 1897 0 /dev 58 crw------- ttyv4 rw root login 1897 1 /dev 58 crw------- ttyv4 rw root login 1897 2 /dev 58 crw------- ttyv4 rw root login 1897 3* local dgram c4e978bc <-> c4e9735c root login 1896 root / 2 drwxr-xr-x 512 r root login 1896 wd /usr 5982209 drwxr-xr-x 15872 r root login 1896 text /usr 1013201 -r-sr-xr-x 21700 r root login 1896 0 /dev 57 crw------- ttyv3 rw root login 1896 1 /dev 57 crw------- ttyv3 rw root login 1896 2 /dev 57 crw------- ttyv3 rw root login 1896 3* local dgram c4556ac0 <-> c4e9735c root login 1894 root / 2 drwxr-xr-x 512 r root login 1894 wd /usr 5982209 drwxr-xr-x 15872 r root login 1894 text /usr 1013201 -r-sr-xr-x 21700 r root login 1894 0 /dev 55 crw------- ttyv1 rw root login 1894 1 /dev 55 crw------- ttyv1 rw root login 1894 2 /dev 55 crw------- ttyv1 rw root login 1894 3* local dgram c4e97b6c <-> c4e9735c root login 1893 root / 2 drwxr-xr-x 512 r root login 1893 wd /usr 5982210 drwxr-xr-x 2048 r root login 1893 text /usr 1013201 -r-sr-xr-x 21700 r root login 1893 0 /dev 54 crw------- ttyv0 rw root login 1893 1 /dev 54 crw------- ttyv0 rw root login 1893 2 /dev 54 crw------- ttyv0 rw root login 1893 3* local dgram c45566b8 <-> c4e9735c root inetd 1859 root / 2 drwxr-xr-x 512 r root inetd 1859 wd / 2 drwxr-xr-x 512 r root inetd 1859 text /usr 4522348 -r-xr-xr-x 42032 r root inetd 1859 0 /dev 14 crwxrwxrwx null rw root inetd 1859 1 /dev 14 crwxrwxrwx null rw root inetd 1859 2 /dev 14 crwxrwxrwx null rw root inetd 1859 3 /var 2873373 -rw------- 4 w root inetd 1859 4* pipe c4692620 <-> c46926d8 0 rw root inetd 1859 5* internet stream tcp c5110278 root inetd 1859 6* internet stream tcp c5110768 root inetd 1859 7* pipe c46926d8 <-> c4692620 0 rw fido bforce 1835 root / 2 drwxr-xr-x 512 r fido bforce 1835 wd / 2 drwxr-xr-x 512 r fido bforce 1835 text /usr 4358192 -r-xr-xr-x 259576 r fido bforce 1835 0 - - bad - fido bforce 1835 1 - - bad - fido bforce 1835 2 - - bad - fido bforce 1835 3 /usr 4358228 -rw------- 12969358 w fido bforce 1835 4 /usr 4358212 drwxr-xr-x 512 r fido bforce 1835 5 /usr 4404228 drwxr-xr-x 512 r root cron 1737 root / 2 drwxr-xr-x 512 r root cron 1737 wd /var 2425856 drwxr-x--- 512 r root cron 1737 text /usr 4522310 -r-xr-xr-x 33536 r root cron 1737 0 /dev 14 crwxrwxrwx null rw root cron 1737 1 /dev 14 crwxrwxrwx null rw root cron 1737 2 /dev 14 crwxrwxrwx null rw root cron 1737 3 /var 2873372 -rw------- 4 w root sshd 1718 root / 2 drwxr-xr-x 512 r root sshd 1718 wd / 2 drwxr-xr-x 512 r root sshd 1718 text /usr 4521987 -r-xr-xr-x 228324 r root sshd 1718 0 /dev 14 crwxrwxrwx null rw root sshd 1718 1 /dev 14 crwxrwxrwx null rw root sshd 1718 2 /dev 14 crwxrwxrwx null rw root sshd 1718 3* internet6 stream tcp c5110c58 root sshd 1718 4* internet stream tcp c51109e0 root ntpd 1647 root / 2 drwxr-xr-x 512 r root ntpd 1647 wd / 2 drwxr-xr-x 512 r root ntpd 1647 text /usr 4522370 -r-xr-xr-x 341036 r root ntpd 1647 0 /dev 14 crwxrwxrwx null rw root ntpd 1647 1 /dev 14 crwxrwxrwx null rw root ntpd 1647 2 /dev 14 crwxrwxrwx null rw root ntpd 1647 3* local dgram c4e97158 <-> c4e9735c root ntpd 1647 20* internet dgram udp c4cd2000 root ntpd 1647 21* internet6 dgram udp c4cd1dc0 root ntpd 1647 22* internet dgram udp c4cd1c08 root ntpd 1647 23* internet6 dgram udp c4cd1a50 root ntpd 1647 24* internet dgram udp c4cd1898 root ntpd 1647 25* internet dgram udp c4cd17bc root ntpd 1647 26* internet6 dgram udp c4cd1294 root ntpd 1647 27* internet6 dgram udp c4cd1b2c root ntpd 1647 28* route raw 0 c560f80c root lpd 1615 root / 2 drwxr-xr-x 512 r root lpd 1615 wd / 2 drwxr-xr-x 512 r root lpd 1615 text /usr 4522369 -r-xr-xr-x 73152 r root lpd 1615 0 /dev 14 crwxrwxrwx null rw root lpd 1615 1 /dev 14 crwxrwxrwx null rw root lpd 1615 2 /dev 14 crwxrwxrwx null rw root lpd 1615 3* local dgram c4e970ac <-> c4e9735c root lpd 1615 4 /var 894984 -rw-rw-r-- 5 w root lpd 1615 5* local stream c4e97000 root lpd 1615 6* internet6 stream tcp c510f000 root lpd 1615 7* internet stream tcp c56094f0 root moused 1435 root / 2 drwxr-xr-x 512 r root moused 1435 wd / 2 drwxr-xr-x 512 r root moused 1435 text /usr 4522383 -r-xr-xr-x 36220 r root moused 1435 0 /dev 14 crwxrwxrwx null rw root moused 1435 1 /dev 14 crwxrwxrwx null rw root moused 1435 2 /dev 14 crwxrwxrwx null rw root moused 1435 3 /dev 40 crw-rw-rw- psm0 rw root moused 1435 4 /dev 70 crw------- consolectl rw root moused 1435 5 /var 2873365 -rw------- 4 w root nfsd 1402 root / 2 drwxr-xr-x 512 r root nfsd 1402 wd / 2 drwxr-xr-x 512 r root nfsd 1402 text /usr 4522396 -r-xr-xr-x 15664 r root nfsd 1402 0 /dev 14 crwxrwxrwx null rw root nfsd 1402 1 /dev 14 crwxrwxrwx null rw root nfsd 1402 2 /dev 14 crwxrwxrwx null rw root nfsd 1400 root / 2 drwxr-xr-x 512 r root nfsd 1400 wd / 2 drwxr-xr-x 512 r root nfsd 1400 text /usr 4522396 -r-xr-xr-x 15664 r root nfsd 1400 0 /dev 14 crwxrwxrwx null rw root nfsd 1400 1 /dev 14 crwxrwxrwx null rw root nfsd 1400 2 /dev 14 crwxrwxrwx null rw root nfsd 1400 3* internet stream tcp c510f4f0 root nfsd 1400 4* internet6 stream tcp c510f278 root mountd 1398 root / 2 drwxr-xr-x 512 r root mountd 1398 wd / 2 drwxr-xr-x 512 r root mountd 1398 text /usr 4522366 -r-xr-xr-x 36180 r root mountd 1398 0 /dev 14 crwxrwxrwx null rw root mountd 1398 1 /dev 14 crwxrwxrwx null rw root mountd 1398 2 /dev 14 crwxrwxrwx null rw root mountd 1398 3 /var 2873363 -rw------- 4 w root mountd 1398 5* local dgram c4e97204 <-> c4e9735c root mountd 1398 6* internet6 dgram udp c4cd1e9c root mountd 1398 7* internet6 stream tcp c510f9e0 root mountd 1398 8* internet dgram udp c4cd1ce4 root mountd 1398 9* internet stream tcp c510f768 root rpcbind 1377 root / 2 drwxr-xr-x 512 r root rpcbind 1377 wd / 2 drwxr-xr-x 512 r root rpcbind 1377 text /usr 4522447 -r-xr-xr-x 39588 r root rpcbind 1377 0 /dev 14 crwxrwxrwx null rw root rpcbind 1377 1 /dev 14 crwxrwxrwx null rw root rpcbind 1377 2 /dev 14 crwxrwxrwx null rw root rpcbind 1377 3 /var 2873361 -r--r--r-- 0 r root rpcbind 1377 4* internet6 dgram udp c4cd1974 root rpcbind 1377 5* local stream c4e972b0 root rpcbind 1377 6* internet6 dgram udp c4cd11b8 root rpcbind 1377 7* internet6 dgram udp c4cd1370 root rpcbind 1377 8* internet6 stream tcp c5110000 root rpcbind 1377 9* internet dgram udp c4cd1528 root rpcbind 1377 10* internet dgram udp c4cd16e0 root rpcbind 1377 11* internet stream tcp c510fc58 root syslogd 1234 root / 2 drwxr-xr-x 512 r root syslogd 1234 wd / 2 drwxr-xr-x 512 r root syslogd 1234 text /usr 4522459 -r-xr-xr-x 35984 r root syslogd 1234 0 /dev 14 crwxrwxrwx null rw root syslogd 1234 1 /dev 14 crwxrwxrwx null rw root syslogd 1234 2 /dev 14 crwxrwxrwx null rw root syslogd 1234 3 /var 2873355 -rw------- 4 w root syslogd 1234 4* local dgram c4e97408 root syslogd 1234 5* local dgram c4e9735c root syslogd 1234 6* internet6 dgram udp c4cd10dc root syslogd 1234 7* internet dgram udp c4cd1000 root syslogd 1234 8 /dev 11 crw------- klog r root syslogd 1234 10 /dev 4 crw------- console w root syslogd 1234 11 /var 3273756 -rw-r--r-- 106578 w root syslogd 1234 12 /var 3273762 -rw------- 63713 w root syslogd 1234 13 /var 3273732 -rw------- 7506 w root syslogd 1234 14 /var 3273739 -rw-r----- 200311 w root syslogd 1234 15 /var 3273735 -rw-r--r-- 436 w root syslogd 1234 16 /var 3273740 -rw------- 58 w root syslogd 1234 17 /var 3273752 -rw------- 75147 w root syslogd 1234 18 /var 3273734 -rw------- 47858 w root syslogd 1234 19 /var 3273738 -rw-r----- 58 w root devd 982 root / 2 drwxr-xr-x 512 r root devd 982 wd / 2 drwxr-xr-x 512 r root devd 982 text / 12838 -r-xr-xr-x 393020 r root devd 982 0 /dev 14 crwxrwxrwx null rw root devd 982 1 /dev 14 crwxrwxrwx null rw root devd 982 2 /dev 14 crwxrwxrwx null rw root devd 982 3 / 25629 drwxr-xr-x 512 r root devd 982 4 /dev 6 crw------- devctl r root devd 982 5* local stream c4e97c18 root devd 982 6 /var 2873348 -rw------- 3 w root adjkerntz 121 root / 2 drwxr-xr-x 512 r root adjkerntz 121 wd / 2 drwxr-xr-x 512 r root adjkerntz 121 text / 13617 -r-xr-xr-x 7396 r root adjkerntz 121 0 /dev 14 crwxrwxrwx null rw root adjkerntz 121 1 /dev 14 crwxrwxrwx null rw root adjkerntz 121 2 /dev 14 crwxrwxrwx null rw root init 1 root / 2 drwxr-xr-x 512 r root init 1 wd / 2 drwxr-xr-x 512 r root init 1 text / 13550 -r-xr-xr-x 658652 r root kernel 0 root / 2 drwxr-xr-x 512 r root kernel 0 wd / 2 drwxr-xr-x 512 r ------------------------------------------------------------------------ dmesg P 183.63.8.46:47552 192.168.120.104:22 in via fxp0 ipfw: 2196 Reset TCP 115.165.163.55:51224 192.168.120.104:22 in via fxp0 ipfw: 2196 Reset TCP 122.194.76.125:80 192.168.120.104:2197 in via fxp0 Jul 28 08:27:43 194.190.97.10 37552: 7w0d: %LINK-3-UPDOWN: Interface GigabitEthernet1/0/33, changed state to down Jul 28 08:28:15 194.190.97.10 37553: 7w0d: %LINK-3-UPDOWN: Interface GigabitEthernet1/0/33, changed state to up ipfw: 2196 Reset TCP 188.158.169.32:3526 192.168.120.104:23 in via fxp0 ipfw: 2196 Reset TCP 77.35.139.242:2481 192.168.120.104:23 in via fxp0 ipfw: 2196 Reset TCP 81.39.54.187:2721 192.168.120.104:23 in via fxp0 ipfw: 2196 Reset TCP 190.233.6.179:4337 192.168.120.104:23 in via fxp0 drm0: [ITHREAD] drm0: [ITHREAD] ipfw: 2196 Reset TCP 222.155.182.197:4804 192.168.120.104:23 in via fxp0 ipfw: 2196 Reset TCP 222.155.182.197:2371 192.168.120.104:22 in via fxp0 ipfw: 2196 Reset TCP 67.21.95.198:49149 192.168.120.104:25796 in via fxp0 Jul 28 08:41:20 192.168.121.9 1789: Jul 28 01:41:19: %PORT_SECURITY-2-PSECURE_VIOLATION: Security violation occurred, caused by MAC address 3435.3c2f.696e on port FastEthernet0/20. drm0: [ITHREAD] ipfw: 2196 Reset TCP 202.136.151.13:45276 192.168.120.104:23 in via fxp0 ipfw: 2196 Reset TCP 202.136.151.13:49205 192.168.120.104:22 in via fxp0 drm0: [ITHREAD] drm0: [ITHREAD] drm0: [ITHREAD] drm0: [ITHREAD] ipfw: 2196 Reset TCP 194.190.97.247:3306 192.168.120.104:27418 in via fxp0 Jul 28 09:10:33 192.168.121.9 1790: Jul 28 02:10:32: %PORT_SECURITY-2-PSECURE_VIOLATION: Security violation occurred, caused by MAC address 4c33.4e77.5957 on port FastEthernet0/20. drm0: [ITHREAD] drm0: [ITHREAD] Jul 28 09:22:00 192.168.121.9 1791: Jul 28 02:21:59: %PORT_SECURITY-2-PSECURE_VIOLATION: Security violation occurred, caused by MAC address 4432.3d44.313d on port FastEthernet0/20. drm0: [ITHREAD] Jul 28 09:33:22 192.168.121.9 1792: Jul 28 02:33:21: %PORT_SECURITY-2-PSECURE_VIOLATION: Security violation occurred, caused by MAC address 7021.0280.2101 on port FastEthernet0/20. ipfw: 2196 Reset TCP 75.149.201.125:27979 192.168.120.104:1433 in via fxp0 ipfw: 2196 Reset TCP 75.149.201.125:27979 192.168.120.104:1433 in via fxp0 ipfw: 2196 Reset TCP 75.149.201.125:27979 192.168.120.104:1433 in via fxp0 ipfw: 2196 Reset TCP 41.232.131.172:3519 192.168.120.104:23 in via fxp0 ipfw: 2196 Reset TCP 194.190.97.247:3306 192.168.120.104:11001 in via fxp0 drm0: [ITHREAD] drm0: [ITHREAD] drm0: [ITHREAD] ipfw: 2197 Unreach 3 UDP 67.152.1.231:12555 192.168.120.104:5060 in via fxp0 ipfw: 2197 Unreach 3 UDP 67.152.1.231:12555 192.168.120.104:5060 in via fxp0 drm0: [ITHREAD] drm0: [ITHREAD] ipfw: 2196 Reset TCP 78.101.190.211:4022 192.168.120.104:23 in via fxp0 ipfw: 2196 Reset TCP 78.101.190.211:4281 192.168.120.104:22 in via fxp0 drm0: [ITHREAD] drm0: [ITHREAD] drm0: [ITHREAD] pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full Jul 28 10:05:01 dss kernel: pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full ipfw: 2196 Reset TCP 89.203.66.111:4467 192.168.120.104:23 in via fxp0 pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full Jul 28 10:05:34 dss last message repeated 11 times pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full Jul 28 10:07:37 dss last message repeated 41 times pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 98544 (med), uid 1000 inumber 15327 on /: filesystem full Jul 28 10:10:40 dss last message repeated 61 times Jul 28 10:10:42 dss kernel: pid 98544 (med), uid 1000 inumber 15327 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full Jul 28 10:10:43 dss kernel: pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full Jul 28 10:11:14 dss last message repeated 10 times pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full pid 81603 (lynx), uid 1000 inumber 26002 on /: filesystem full drm0: [ITHREAD] Jul 28 10:11:47 dss last message repeated 11 times drm0: [ITHREAD] drm0: [ITHREAD] drm0: [ITHREAD] drm0: [ITHREAD] ipfw: 2196 Reset TCP 93.186.118.142:4303 192.168.120.104:55050 in via fxp0 ipfw: 2196 Reset TCP 93.186.118.142:4304 192.168.120.104:3333 in via fxp0 drm0: [ITHREAD] drm0: [ITHREAD] drm0: [ITHREAD] drm0: [ITHREAD] Jul 28 10:44:19 192.168.121.9 1794: Jul 28 03:44:18: %PORT_SECURITY-2-PSECURE_VIOLATION: Security violation occurred, caused by MAC address 0000.c0c0.c000 on port FastEthernet0/20. Jul 28 10:44:54 192.168.121.9 1795: Jul 28 03:44:53: %PORT_SECURITY-2-PSECURE_VIOLATION: Security violation occurred, caused by MAC address 5053.5365.7276 on port FastEthernet0/20. Jul 28 10:45:16 192.168.121.9 1796: Jul 28 03:45:15: %PORT_SECURITY-2-PSECURE_VIOLATION: Security violation occurred, caused by MAC address 5053.5365.7276 on port FastEthernet0/20. drm0: [ITHREAD] drm0: [ITHREAD] drm0: [ITHREAD] KDB: enter: manual escape to debugger calcru: runtime went backwards from 5571 usec to 2052 usec for pid 99614 (bforce) calcru: runtime went backwards from 6972 usec to 2568 usec for pid 99578 (atrun) calcru: runtime went backwards from 19921 usec to 7338 usec for pid 99577 (sh) calcru: runtime went backwards from 24500 usec to 9025 usec for pid 99577 (sh) calcru: runtime went backwards from 903 usec to 332 usec for pid 99576 (cron) calcru: runtime went backwards from 1068 usec to 393 usec for pid 99575 (cron) calcru: runtime went backwards from 4045 usec to 1490 usec for pid 99574 (ls) calcru: runtime went backwards from 15126 usec to 5572 usec for pid 99573 (xterm) calcru: runtime went backwards from 5408 usec to 1992 usec for pid 99570 (bforce) calcru: runtime went backwards from 7520 usec to 2770 usec for pid 99569 (sendmail) calcru: runtime went backwards from 7060 usec to 2601 usec for pid 99566 (atrun) calcru: runtime went backwards from 974 usec to 358 usec for pid 99565 (cron) calcru: runtime went backwards from 7749 usec to 2854 usec for pid 99122 (sendmail) calcru: runtime went backwards from 24357 usec to 8973 usec for pid 99060 (bash) calcru: runtime went backwards from 79748 usec to 29378 usec for pid 99060 (bash) calcru: runtime went backwards from 1193432 usec to 439648 usec for pid 92088 (ssh) calcru: runtime went backwards from 37925 usec to 13971 usec for pid 89311 (bash) calcru: runtime went backwards from 559864 usec to 206248 usec for pid 89311 (bash) calcru: runtime went backwards from 51012 usec to 18792 usec for pid 37731 (ssh) calcru: runtime went backwards from 31999 usec to 11788 usec for pid 35682 (bash) calcru: runtime went backwards from 23789 usec to 8763 usec for pid 35682 (bash) calcru: runtime went backwards from 68250 usec to 25142 usec for pid 22161 (gconfd-2) calcru: runtime went backwards from 530111146 usec to 195287530 usec for pid 22159 (firefox-bin) calcru: runtime went backwards from 315192 usec to 116113 usec for pid 22159 (firefox-bin) calcru: runtime went backwards from 9130 usec to 3363 usec for pid 22155 (sh) calcru: runtime went backwards from 9210 usec to 3393 usec for pid 22155 (sh) calcru: runtime went backwards from 21614 usec to 7962 usec for pid 22151 (sh) calcru: runtime went backwards from 9674 usec to 3563 usec for pid 22151 (sh) calcru: runtime went backwards from 226821180 usec to 83684760 usec for pid 22099 (gkrellm) calcru: runtime went backwards from 2138886 usec to 787943 usec for pid 22099 (gkrellm) calcru: runtime went backwards from 3428226 usec to 1262923 usec for pid 22092 (xfce4-settings-help) calcru: runtime went backwards from 65288086 usec to 24051464 usec for pid 22091 (pidgin) calcru: runtime went backwards from 307166 usec to 113157 usec for pid 22091 (pidgin) calcru: runtime went backwards from 1749017 usec to 644320 usec for pid 22089 (xfdesktop) calcru: runtime went backwards from 69982757 usec to 25780932 usec for pid 22088 (xfce4-panel) calcru: runtime went backwards from 2931122 usec to 1079795 usec for pid 22088 (xfce4-panel) calcru: runtime went backwards from 21832 usec to 8042 usec for pid 22087 (gam_server) calcru: runtime went backwards from 432575 usec to 159356 usec for pid 22085 (Thunar) calcru: runtime went backwards from 12585 usec to 4636 usec for pid 22085 (Thunar) calcru: runtime went backwards from 8236100 usec to 3034095 usec for pid 22084 (xfwm4) calcru: runtime went backwards from 38985 usec to 14361 usec for pid 22083 (xfsettingsd) calcru: runtime went backwards from 117190 usec to 43171 usec for pid 22079 (xfconfd) calcru: runtime went backwards from 4233438 usec to 1559555 usec for pid 22077 (xfce4-session) calcru: runtime went backwards from 134176 usec to 49429 usec for pid 22077 (xfce4-session) calcru: runtime went backwards from 1320175 usec to 486339 usec for pid 22075 (dbus-daemon) calcru: runtime went backwards from 3301 usec to 1216 usec for pid 22075 (dbus-daemon) calcru: runtime went backwards from 2011 usec to 740 usec for pid 22074 (dbus-launch) calcru: runtime went backwards from 814 usec to 300 usec for pid 22069 (ssh-agent) calcru: runtime went backwards from 25056 usec to 9230 usec for pid 22059 (sh) calcru: runtime went backwards from 107547 usec to 39619 usec for pid 22059 (sh) calcru: runtime went backwards from 448144381 usec to 165091928 usec for pid 22056 (Xorg) calcru: runtime went backwards from 135655 usec to 49974 usec for pid 22056 (Xorg) calcru: runtime went backwards from 7602 usec to 2800 usec for pid 22055 (xinit) calcru: runtime went backwards from 13198 usec to 4862 usec for pid 22022 (sh) calcru: runtime went backwards from 69452 usec to 25585 usec for pid 22022 (sh) calcru: runtime went backwards from 766797 usec to 282480 usec for pid 18772 (httpd) calcru: runtime went backwards from 24704690 usec to 9100955 usec for pid 18772 (httpd) calcru: runtime went backwards from 724666 usec to 266959 usec for pid 18771 (httpd) calcru: runtime went backwards from 20655789 usec to 7609381 usec for pid 18771 (httpd) calcru: runtime went backwards from 56535 usec to 20827 usec for pid 6034 (bash) calcru: runtime went backwards from 12683428 usec to 4672445 usec for pid 6034 (bash) calcru: runtime went backwards from 3089090 usec to 1137989 usec for pid 5911 (ssh) calcru: runtime went backwards from 368219 usec to 135648 usec for pid 53815 (ssh) calcru: runtime went backwards from 807599 usec to 297511 usec for pid 53814 (httpd) calcru: runtime went backwards from 23494950 usec to 8655299 usec for pid 53814 (httpd) calcru: runtime went backwards from 808587 usec to 297875 usec for pid 30078 (httpd) calcru: runtime went backwards from 24107199 usec to 8880846 usec for pid 30078 (httpd) calcru: runtime went backwards from 943770 usec to 347675 usec for pid 29885 (httpd) calcru: runtime went backwards from 26359767 usec to 9710669 usec for pid 29885 (httpd) calcru: runtime went backwards from 855894 usec to 315302 usec for pid 29868 (httpd) calcru: runtime went backwards from 23071606 usec to 8499344 usec for pid 29868 (httpd) calcru: runtime went backwards from 905189 usec to 333462 usec for pid 29867 (httpd) calcru: runtime went backwards from 24155483 usec to 8898633 usec for pid 29867 (httpd) calcru: runtime went backwards from 774578 usec to 285346 usec for pid 29866 (httpd) calcru: runtime went backwards from 22858740 usec to 8420926 usec for pid 29866 (httpd) calcru: runtime went backwards from 841348 usec to 309944 usec for pid 29865 (httpd) calcru: runtime went backwards from 23512119 usec to 8661624 usec for pid 29865 (httpd) calcru: runtime went backwards from 861953 usec to 317535 usec for pid 29864 (httpd) calcru: runtime went backwards from 24721213 usec to 9107042 usec for pid 29864 (httpd) calcru: runtime went backwards from 2785974 usec to 1026324 usec for pid 29861 (httpd) calcru: runtime went backwards from 104134 usec to 38362 usec for pid 29861 (httpd) calcru: runtime went backwards from 405629 usec to 149429 usec for pid 29850 (cron) calcru: runtime went backwards from 442546281 usec to 163029529 usec for pid 29850 (cron) calcru: runtime went backwards from 35514 usec to 13083 usec for pid 29844 (sendmail) calcru: runtime went backwards from 135422 usec to 49888 usec for pid 29844 (sendmail) calcru: runtime went backwards from 2004758 usec to 738532 usec for pid 29838 (sendmail) calcru: runtime went backwards from 4286218 usec to 1578999 usec for pid 29838 (sendmail) calcru: runtime went backwards from 4647 usec to 1712 usec for pid 29833 (sshd) calcru: runtime went backwards from 98742 usec to 36375 usec for pid 29833 (sshd) calcru: runtime went backwards from 1241590 usec to 457389 usec for pid 29779 (syslogd) calcru: runtime went backwards from 39647 usec to 14605 usec for pid 25429 (sendmail) calcru: runtime went backwards from 177456 usec to 65373 usec for pid 25429 (sendmail) calcru: runtime went backwards from 2457246 usec to 905224 usec for pid 25426 (sendmail) calcru: runtime went backwards from 8795507 usec to 3240174 usec for pid 25426 (sendmail) calcru: runtime went backwards from 1200802 usec to 442363 usec for pid 25404 (mc) calcru: runtime went backwards from 4561024 usec to 1680234 usec for pid 91143 (milter-greylist) calcru: runtime went backwards from 1214779 usec to 447512 usec for pid 55568 (dkim-filter) calcru: runtime went backwards from 89489 usec to 32966 usec for pid 11647 (bash) calcru: runtime went backwards from 37058004456 usec to 13651788855 usec for pid 11647 (bash) calcru: runtime went backwards from 494998 usec to 182352 usec for pid 10912 (bash) calcru: runtime went backwards from 314390542 usec to 115818263 usec for pid 10912 (bash) calcru: runtime went backwards from 172574222 usec to 63574580 usec for pid 10911 (mc) calcru: runtime went backwards from 3434006 usec to 1265052 usec for pid 10911 (mc) calcru: runtime went backwards from 141494 usec to 52125 usec for pid 10891 (bash) calcru: runtime went backwards from 2783287 usec to 1025334 usec for pid 10891 (bash) calcru: runtime went backwards from 2963469 usec to 1091712 usec for pid 10890 (mc) calcru: runtime went backwards from 615737 usec to 226831 usec for pid 10890 (mc) calcru: runtime went backwards from 16407763 usec to 6044452 usec for pid 8335 (screen) calcru: runtime went backwards from 1844345 usec to 679438 usec for pid 8335 (screen) calcru: runtime went backwards from 317390 usec to 116923 usec for pid 8334 (screen) calcru: runtime went backwards from 28817 usec to 10616 usec for pid 7646 (bash) calcru: runtime went backwards from 1970187364 usec to 725796897 usec for pid 7646 (bash) calcru: runtime went backwards from 9300107 usec to 3426064 usec for pid 1912 (ssh) calcru: runtime went backwards from 4292 usec to 1581 usec for pid 1902 (getty) calcru: runtime went backwards from 4465 usec to 1645 usec for pid 1900 (getty) calcru: runtime went backwards from 44587 usec to 16425 usec for pid 1899 (login) calcru: runtime went backwards from 80351 usec to 29600 usec for pid 1859 (inetd) calcru: runtime went backwards from 2696728 usec to 993447 usec for pid 1859 (inetd) calcru: runtime went backwards from 2677156 usec to 986237 usec for pid 1835 (bforce) calcru: runtime went backwards from 593901 usec to 218787 usec for pid 1737 (cron) calcru: runtime went backwards from 86430757 usec to 31840207 usec for pid 1737 (cron) calcru: runtime went backwards from 2256 usec to 831 usec for pid 1718 (sshd) calcru: runtime went backwards from 9791126 usec to 3606951 usec for pid 1647 (ntpd) calcru: runtime went backwards from 5920 usec to 2181 usec for pid 1615 (lpd) calcru: runtime went backwards from 36132181 usec to 13310726 usec for pid 1435 (moused) calcru: runtime went backwards from 10573221 usec to 3895066 usec for pid 1402 (nfsd) calcru: runtime went backwards from 46042 usec to 16960 usec for pid 1400 (nfsd) calcru: runtime went backwards from 30981 usec to 11413 usec for pid 1398 (mountd) calcru: runtime went backwards from 215594 usec to 79422 usec for pid 1377 (rpcbind) calcru: runtime went backwards from 3629646 usec to 1337339 usec for pid 1234 (syslogd) calcru: runtime went backwards from 34720 usec to 12790 usec for pid 982 (devd) calcru: runtime went backwards from 562960 usec to 207389 usec for pid 22 (flowcleaner) calcru: runtime went backwards from 119527685 usec to 44032778 usec for pid 21 (softdepflush) calcru: runtime went backwards from 173746775 usec to 64006537 usec for pid 20 (syncer) calcru: runtime went backwards from 3795563 usec to 1398246 usec for pid 19 (vnlru) calcru: runtime went backwards from 83844031 usec to 30887284 usec for pid 18 (bufdaemon) calcru: runtime went backwards from 3231 usec to 1190 usec for pid 17 (pagezero) calcru: runtime went backwards from 732766 usec to 269943 usec for pid 16 (vmdaemon) calcru: runtime went backwards from 61694041 usec to 22727456 usec for pid 15 (pagedaemon) calcru: runtime went backwards from 3120361 usec to 1149509 usec for pid 9 (g_mirror root) calcru: runtime went backwards from 588 usec to 216 usec for pid 8 (xpt_thrd) calcru: runtime went backwards from 1857742 usec to 684373 usec for pid 7 (pfpurge) calcru: runtime went backwards from 30 usec to 11 usec for pid 6 (sctp_iterator) calcru: runtime went backwards from 736077 usec to 271163 usec for pid 5 (fdc0) calcru: runtime went backwards from 3744827 usec to 1379556 usec for pid 14 (usb) calcru: runtime went backwards from 24795923 usec to 9134584 usec for pid 13 (yarrow) calcru: runtime went backwards from 226124708 usec to 83302065 usec for pid 4 (g_down) calcru: runtime went backwards from 248712163 usec to 91623037 usec for pid 3 (g_up) calcru: runtime went backwards from 9018962 usec to 3322501 usec for pid 2 (g_event) calcru: runtime went backwards from 2068440069 usec to 761993266 usec for pid 12 (intr) calcru: runtime went backwards from 101725656386 usec to 37474722636 usec for pid 11 (idle) calcru: runtime went backwards from 1288628 usec to 474717 usec for pid 1 (init) calcru: runtime went backwards from 3759613404 usec to 1385003169 usec for pid 1 (init) calcru: runtime went backwards from 788182182 usec to 290358621 usec for pid 0 (kernel) KDB: enter: manual escape to debugger KDB: enter: manual escape to debugger KDB: enter: manual escape to debugger KDB: enter: manual escape to debugger KDB: enter: manual escape to debugger calcru: runtime went backwards from 1998 usec to 393 usec for pid 99790 (bforce) calcru: runtime went backwards from 2048 usec to 403 usec for pid 99788 (bforce) calcru: runtime went backwards from 7635 usec to 1503 usec for pid 99657 (sh) calcru: runtime went backwards from 9487 usec to 1868 usec for pid 99657 (sh) calcru: runtime went backwards from 2585 usec to 509 usec for pid 99656 (atrun) calcru: runtime went backwards from 3157 usec to 621 usec for pid 99655 (newsyslog) calcru: runtime went backwards from 352 usec to 69 usec for pid 99654 (cron) calcru: runtime went backwards from 408 usec to 80 usec for pid 99653 (cron) calcru: runtime went backwards from 341 usec to 67 usec for pid 99652 (cron) calcru: runtime went backwards from 2052 usec to 404 usec for pid 99614 (bforce) calcru: runtime went backwards from 2568 usec to 505 usec for pid 99578 (atrun) calcru: runtime went backwards from 7338 usec to 1445 usec for pid 99577 (sh) calcru: runtime went backwards from 9025 usec to 1777 usec for pid 99577 (sh) calcru: runtime went backwards from 332 usec to 65 usec for pid 99576 (cron) calcru: runtime went backwards from 393 usec to 77 usec for pid 99575 (cron) calcru: runtime went backwards from 1490 usec to 293 usec for pid 99574 (ls) calcru: runtime went backwards from 5572 usec to 1097 usec for pid 99573 (xterm) calcru: runtime went backwards from 1992 usec to 392 usec for pid 99570 (bforce) calcru: runtime went backwards from 2770 usec to 545 usec for pid 99569 (sendmail) calcru: runtime went backwards from 2601 usec to 512 usec for pid 99566 (atrun) calcru: runtime went backwards from 358 usec to 70 usec for pid 99565 (cron) calcru: runtime went backwards from 2854 usec to 562 usec for pid 99122 (sendmail) calcru: runtime went backwards from 8973 usec to 1767 usec for pid 99060 (bash) calcru: runtime went backwards from 29378 usec to 5785 usec for pid 99060 (bash) calcru: runtime went backwards from 439648 usec to 86585 usec for pid 92088 (ssh) calcru: runtime went backwards from 13971 usec to 2751 usec for pid 89311 (bash) calcru: runtime went backwards from 206248 usec to 40619 usec for pid 89311 (bash) calcru: runtime went backwards from 18792 usec to 3701 usec for pid 37731 (ssh) calcru: runtime went backwards from 11788 usec to 2321 usec for pid 35682 (bash) calcru: runtime went backwards from 8763 usec to 1725 usec for pid 35682 (bash) calcru: runtime went backwards from 25469 usec to 5015 usec for pid 22161 (gconfd-2) calcru: runtime went backwards from 195292958 usec to 38461488 usec for pid 22159 (firefox-bin) calcru: runtime went backwards from 116113 usec to 22867 usec for pid 22159 (firefox-bin) calcru: runtime went backwards from 3363 usec to 662 usec for pid 22155 (sh) calcru: runtime went backwards from 3393 usec to 668 usec for pid 22155 (sh) calcru: runtime went backwards from 7962 usec to 1568 usec for pid 22151 (sh) calcru: runtime went backwards from 3563 usec to 701 usec for pid 22151 (sh) calcru: runtime went backwards from 86439654 usec to 17056916 usec for pid 22099 (gkrellm) calcru: runtime went backwards from 787943 usec to 155179 usec for pid 22099 (gkrellm) calcru: runtime went backwards from 1262923 usec to 248723 usec for pid 22092 (xfce4-settings-help) calcru: runtime went backwards from 24051464 usec to 4736756 usec for pid 22091 (pidgin) calcru: runtime went backwards from 113157 usec to 22285 usec for pid 22091 (pidgin) calcru: runtime went backwards from 647922 usec to 127603 usec for pid 22089 (xfdesktop) calcru: runtime went backwards from 25780932 usec to 5077361 usec for pid 22088 (xfce4-panel) calcru: runtime went backwards from 1079795 usec to 212657 usec for pid 22088 (xfce4-panel) calcru: runtime went backwards from 8042 usec to 1584 usec for pid 22087 (gam_server) calcru: runtime went backwards from 162760 usec to 32054 usec for pid 22085 (Thunar) calcru: runtime went backwards from 4636 usec to 913 usec for pid 22085 (Thunar) calcru: runtime went backwards from 3034095 usec to 597542 usec for pid 22084 (xfwm4) calcru: runtime went backwards from 14361 usec to 2828 usec for pid 22083 (xfsettingsd) calcru: runtime went backwards from 43171 usec to 8502 usec for pid 22079 (xfconfd) calcru: runtime went backwards from 1559555 usec to 307142 usec for pid 22077 (xfce4-session) calcru: runtime went backwards from 49429 usec to 9734 usec for pid 22077 (xfce4-session) calcru: runtime went backwards from 486339 usec to 95780 usec for pid 22075 (dbus-daemon) calcru: runtime went backwards from 1216 usec to 239 usec for pid 22075 (dbus-daemon) calcru: runtime went backwards from 740 usec to 145 usec for pid 22074 (dbus-launch) calcru: runtime went backwards from 300 usec to 59 usec for pid 22069 (ssh-agent) calcru: runtime went backwards from 9230 usec to 1817 usec for pid 22059 (sh) calcru: runtime went backwards from 39619 usec to 7802 usec for pid 22059 (sh) calcru: runtime went backwards from 165612114 usec to 32616109 usec for pid 22056 (Xorg) calcru: runtime went backwards from 49974 usec to 9842 usec for pid 22056 (Xorg) calcru: runtime went backwards from 2800 usec to 551 usec for pid 22055 (xinit) calcru: runtime went backwards from 4862 usec to 957 usec for pid 22022 (sh) calcru: runtime went backwards from 25585 usec to 5038 usec for pid 22022 (sh) calcru: runtime went backwards from 282480 usec to 55632 usec for pid 18772 (httpd) calcru: runtime went backwards from 9100955 usec to 1792365 usec for pid 18772 (httpd) calcru: runtime went backwards from 266959 usec to 52575 usec for pid 18771 (httpd) calcru: runtime went backwards from 7609381 usec to 1498610 usec for pid 18771 (httpd) calcru: runtime went backwards from 20827 usec to 4101 usec for pid 6034 (bash) calcru: runtime went backwards from 4672445 usec to 920203 usec for pid 6034 (bash) calcru: runtime went backwards from 1137989 usec to 224118 usec for pid 5911 (ssh) calcru: runtime went backwards from 135648 usec to 26714 usec for pid 53815 (ssh) calcru: runtime went backwards from 297511 usec to 58592 usec for pid 53814 (httpd) calcru: runtime went backwards from 8655299 usec to 1704596 usec for pid 53814 (httpd) calcru: runtime went backwards from 297875 usec to 58664 usec for pid 30078 (httpd) calcru: runtime went backwards from 8880846 usec to 1749016 usec for pid 30078 (httpd) calcru: runtime went backwards from 356932 usec to 70295 usec for pid 29885 (httpd) calcru: runtime went backwards from 9842263 usec to 1938360 usec for pid 29885 (httpd) calcru: runtime went backwards from 315302 usec to 62096 usec for pid 29868 (httpd) calcru: runtime went backwards from 8499344 usec to 1673882 usec for pid 29868 (httpd) calcru: runtime went backwards from 333462 usec to 65672 usec for pid 29867 (httpd) calcru: runtime went backwards from 8898633 usec to 1752519 usec for pid 29867 (httpd) calcru: runtime went backwards from 285356 usec to 56198 usec for pid 29866 (httpd) calcru: runtime went backwards from 8420926 usec to 1658438 usec for pid 29866 (httpd) calcru: runtime went backwards from 309944 usec to 61041 usec for pid 29865 (httpd) calcru: runtime went backwards from 8661624 usec to 1705842 usec for pid 29865 (httpd) calcru: runtime went backwards from 317535 usec to 62536 usec for pid 29864 (httpd) calcru: runtime went backwards from 9107042 usec to 1793563 usec for pid 29864 (httpd) calcru: runtime went backwards from 1030015 usec to 202853 usec for pid 29861 (httpd) calcru: runtime went backwards from 38362 usec to 7555 usec for pid 29861 (httpd) calcru: runtime went backwards from 150205 usec to 29581 usec for pid 29850 (cron) calcru: runtime went backwards from 165061477 usec to 32507623 usec for pid 29850 (cron) calcru: runtime went backwards from 13336 usec to 2626 usec for pid 29844 (sendmail) calcru: runtime went backwards from 51104 usec to 10064 usec for pid 29844 (sendmail) calcru: runtime went backwards from 741114 usec to 145956 usec for pid 29838 (sendmail) calcru: runtime went backwards from 1580200 usec to 311208 usec for pid 29838 (sendmail) calcru: runtime went backwards from 1712 usec to 337 usec for pid 29833 (sshd) calcru: runtime went backwards from 36375 usec to 7163 usec for pid 29833 (sshd) calcru: runtime went backwards from 457910 usec to 90182 usec for pid 29779 (syslogd) calcru: runtime went backwards from 14605 usec to 2876 usec for pid 25429 (sendmail) calcru: runtime went backwards from 65373 usec to 12874 usec for pid 25429 (sendmail) calcru: runtime went backwards from 909810 usec to 179180 usec for pid 25426 (sendmail) calcru: runtime went backwards from 3299613 usec to 649834 usec for pid 25426 (sendmail) calcru: runtime went backwards from 442363 usec to 87120 usec for pid 25404 (mc) calcru: runtime went backwards from 1686436 usec to 332131 usec for pid 91143 (milter-greylist) calcru: runtime went backwards from 453032 usec to 89221 usec for pid 55568 (dkim-filter) calcru: runtime went backwards from 32966 usec to 6492 usec for pid 11647 (bash) calcru: runtime went backwards from 13651788855 usec to 2688617721 usec for pid 11647 (bash) calcru: runtime went backwards from 182352 usec to 35912 usec for pid 10912 (bash) calcru: runtime went backwards from 115818263 usec to 22809541 usec for pid 10912 (bash) calcru: runtime went backwards from 63574580 usec to 12520538 usec for pid 10911 (mc) calcru: runtime went backwards from 1265052 usec to 249142 usec for pid 10911 (mc) calcru: runtime went backwards from 52125 usec to 10265 usec for pid 10891 (bash) calcru: runtime went backwards from 1025334 usec to 201931 usec for pid 10891 (bash) calcru: runtime went backwards from 1091712 usec to 215004 usec for pid 10890 (mc) calcru: runtime went backwards from 226831 usec to 44672 usec for pid 10890 (mc) calcru: runtime went backwards from 6044452 usec to 1190409 usec for pid 8335 (screen) calcru: runtime went backwards from 679438 usec to 133810 usec for pid 8335 (screen) calcru: runtime went backwards from 117252 usec to 23091 usec for pid 8334 (screen) calcru: runtime went backwards from 10616 usec to 2090 usec for pid 7646 (bash) calcru: runtime went backwards from 725796897 usec to 142940272 usec for pid 7646 (bash) calcru: runtime went backwards from 3453366 usec to 680114 usec for pid 1912 (ssh) calcru: runtime went backwards from 1581 usec to 311 usec for pid 1902 (getty) calcru: runtime went backwards from 1645 usec to 323 usec for pid 1900 (getty) calcru: runtime went backwards from 16425 usec to 3234 usec for pid 1899 (login) calcru: runtime went backwards from 29880 usec to 5884 usec for pid 1859 (inetd) calcru: runtime went backwards from 993447 usec to 195652 usec for pid 1859 (inetd) calcru: runtime went backwards from 986237 usec to 194232 usec for pid 1835 (bforce) calcru: runtime went backwards from 219244 usec to 43178 usec for pid 1737 (cron) calcru: runtime went backwards from 31840207 usec to 6270690 usec for pid 1737 (cron) calcru: runtime went backwards from 831 usec to 163 usec for pid 1718 (sshd) calcru: runtime went backwards from 3614191 usec to 711788 usec for pid 1647 (ntpd) calcru: runtime went backwards from 2181 usec to 429 usec for pid 1615 (lpd) calcru: runtime went backwards from 13467190 usec to 2652262 usec for pid 1435 (moused) calcru: runtime went backwards from 3895544 usec to 767198 usec for pid 1402 (nfsd) calcru: runtime went backwards from 16960 usec to 3340 usec for pid 1400 (nfsd) calcru: runtime went backwards from 11413 usec to 2247 usec for pid 1398 (mountd) calcru: runtime went backwards from 79553 usec to 15667 usec for pid 1377 (rpcbind) calcru: runtime went backwards from 1343585 usec to 264687 usec for pid 1234 (syslogd) calcru: runtime went backwards from 12790 usec to 2519 usec for pid 982 (devd) calcru: runtime went backwards from 207942 usec to 40952 usec for pid 22 (flowcleaner) calcru: runtime went backwards from 44032778 usec to 8671926 usec for pid 21 (softdepflush) calcru: runtime went backwards from 64032476 usec to 12610717 usec for pid 20 (syncer) calcru: runtime went backwards from 1398934 usec to 275509 usec for pid 19 (vnlru) calcru: runtime went backwards from 30887899 usec to 6083140 usec for pid 18 (bufdaemon) calcru: runtime went backwards from 1192 usec to 234 usec for pid 17 (pagezero) calcru: runtime went backwards from 269943 usec to 53163 usec for pid 16 (vmdaemon) calcru: runtime went backwards from 22727578 usec to 4476026 usec for pid 15 (pagedaemon) calcru: runtime went backwards from 1149823 usec to 226449 usec for pid 9 (g_mirror root) calcru: runtime went backwards from 216 usec to 42 usec for pid 8 (xpt_thrd) calcru: runtime went backwards from 686233 usec to 135148 usec for pid 7 (pfpurge) calcru: runtime went backwards from 11 usec to 2 usec for pid 6 (sctp_iterator) calcru: runtime went backwards from 271708 usec to 53510 usec for pid 5 (fdc0) calcru: runtime went backwards from 1382124 usec to 272199 usec for pid 14 (usb) calcru: runtime went backwards from 9154534 usec to 1802934 usec for pid 13 (yarrow) calcru: runtime went backwards from 83329174 usec to 16411067 usec for pid 4 (g_down) calcru: runtime went backwards from 91652507 usec to 18050286 usec for pid 3 (g_up) calcru: runtime went backwards from 3329491 usec to 655719 usec for pid 2 (g_event) calcru: runtime went backwards from 859479275 usec to 169268662 usec for pid 12 (intr) calcru: runtime went backwards from 37568986971 usec to 7398937736 usec for pid 11 (idle) calcru: runtime went backwards from 474761 usec to 93500 usec for pid 1 (init) calcru: runtime went backwards from 1385007925 usec to 272766955 usec for pid 1 (init) calcru: runtime went backwards from 290751527 usec to 57261414 usec for pid 0 (kernel) calcru: runtime went backwards from 25963 usec to 1888 usec for pid 1904 (bash) calcru: runtime went backwards from 703190 usec to 681962 usec for pid 1904 (bash) KDB: enter: manual escape to debugger panic: from debugger cpuid = 0 Uptime: 1d18h4m47s Physical memory: 738 MB Dumping 240 MB: 225 209 193 177 161 145 129 113 97 81 65 49 33 17 1 ------------------------------------------------------------------------ kernel config options CONFIG_AUTOGENERATED ident DSS machine i386 cpu I686_CPU makeoptions DEBUG=-g options VGA_WIDTH90 options SC_PIXEL_MODE options VESA options TEKEN_CONS25 options AUTO_EOI_1 options MSGBUF_SIZE=40960 options ZERO_COPY_SOCKETS options LIBALIAS options DUMMYNET options IPDIVERT options IPFIREWALL_NAT options IPFIREWALL_FORWARD options IPFIREWALL_VERBOSE options IPFIREWALL options USB_DEBUG options ATA_STATIC_ID options SMP options DEADLKRES options GDB options DDB options KDB options INCLUDE_CONFIG_FILE options FLOWTABLE options MAC options AUDIT options HWPMC_HOOKS options KBD_INSTALL_CDEV options PRINTF_BUFR_SIZE=128 options _KPOSIX_PRIORITY_SCHEDULING options P1003_1B_SEMAPHORES options SYSVSEM options SYSVMSG options SYSVSHM options STACK options KTRACE options SCSI_DELAY=5000 options COMPAT_FREEBSD7 options COMPAT_FREEBSD6 options COMPAT_FREEBSD5 options COMPAT_FREEBSD4 options GEOM_LABEL options GEOM_PART_GPT options PSEUDOFS options PROCFS options CD9660 options MSDOSFS options NFS_ROOT options NFSLOCKD options NFSSERVER options NFSCLIENT options MD_ROOT options UFS_GJOURNAL options UFS_DIRHASH options UFS_ACL options SOFTUPDATES options FFS options SCTP options INET6 options INET options PREEMPTION options SCHED_ULE options NATIVE options GEOM_PART_MBR options GEOM_PART_EBR_COMPAT options GEOM_PART_EBR options GEOM_PART_BSD options ISAPNP device isa device npx device mem device io device uart_ns8250 device atpic device apic device cpufreq device acpi device eisa device pci device fdc device ata device atadisk device ataraid device atapicd device atapifd device atapist device scbus device ch device da device sa device cd device pass device ses device atkbdc device atkbd device psm device kbdmux device vga device splash device sc device agp device pmtimer device uart device miibus device fxp device loop device random device ether device vlan device tun device pty device md device gif device firmware device bpf device uhci device ohci device ehci device usb device uhid device ukbd device ulpt device umass device ums device speaker device atapicam device pf device pflog ------------------------------------------------------------------------ ddb capture buffer >How-To-Repeat: Not easy repeatable, needs about a week of work to hang again. Hang always on heavy fs load, like ports compilation. >Fix: Unknown >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jul 28 05:52:29 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4EA0A1065670; Wed, 28 Jul 2010 05:52:29 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 25EF08FC1A; Wed, 28 Jul 2010 05:52:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6S5qThK040288; Wed, 28 Jul 2010 05:52:29 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6S5qTCA040284; Wed, 28 Jul 2010 05:52:29 GMT (envelope-from linimon) Date: Wed, 28 Jul 2010 05:52:29 GMT Message-Id: <201007280552.o6S5qTCA040284@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-fs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/149022: [hang] File system operations hangs with suspfs state X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jul 2010 05:52:29 -0000 Old Synopsis: File system operations hangs with suspfs state New Synopsis: [hang] File system operations hangs with suspfs state Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: linimon Responsible-Changed-When: Wed Jul 28 05:52:08 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=149022 From owner-freebsd-bugs@FreeBSD.ORG Wed Jul 28 12:00:11 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 715951065670 for ; Wed, 28 Jul 2010 12:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4E92C8FC0A for ; Wed, 28 Jul 2010 12:00:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6SC0Br5025905 for ; Wed, 28 Jul 2010 12:00:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6SC0BEB025904; Wed, 28 Jul 2010 12:00:11 GMT (envelope-from gnats) Resent-Date: Wed, 28 Jul 2010 12:00:11 GMT Resent-Message-Id: <201007281200.o6SC0BEB025904@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Till Klampaeckel Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 08F121065672 for ; Wed, 28 Jul 2010 11:51:14 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id ECA648FC08 for ; Wed, 28 Jul 2010 11:51:13 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6SBpDrM017181 for ; Wed, 28 Jul 2010 11:51:13 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6SBpDwH017180; Wed, 28 Jul 2010 11:51:13 GMT (envelope-from nobody) Message-Id: <201007281151.o6SBpDwH017180@www.freebsd.org> Date: Wed, 28 Jul 2010 11:51:13 GMT From: Till Klampaeckel To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/149028: Bugfix in files/couchdb.in X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jul 2010 12:00:11 -0000 >Number: 149028 >Category: misc >Synopsis: Bugfix in files/couchdb.in >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jul 28 12:00:10 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Till Klampaeckel >Release: n/a >Organization: n/a >Environment: >Description: There's a small bug in the script. This was reported to me by Nerijus (nerijus-/at/-expo-/dot/-lt) - all credit to him. I created a patch - see attachment. >How-To-Repeat: >Fix: Patch attached with submission follows: --- files/couchdb.in.orig 2010-07-28 13:46:03.000000000 +0200 +++ files/couchdb.in 2010-07-28 13:47:14.000000000 +0200 @@ -35,7 +35,7 @@ pidfile="/var/run/${name}/${name}.pid" etcdir="%%PREFIX%%/etc/${name}" respawn="" -if [ "$couchdb_respawn" > 0 ] +if [ "$couchdb_respawn" -gt 0 ] then respawn="-r ${couchdb_respawn} " fi >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jul 28 12:56:37 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 996F81065670; Wed, 28 Jul 2010 12:56:37 +0000 (UTC) (envelope-from wxs@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 70DCB8FC15; Wed, 28 Jul 2010 12:56:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6SCub5M084476; Wed, 28 Jul 2010 12:56:37 GMT (envelope-from wxs@freefall.freebsd.org) Received: (from wxs@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6SCubeJ084472; Wed, 28 Jul 2010 12:56:37 GMT (envelope-from wxs) Date: Wed, 28 Jul 2010 12:56:37 GMT Message-Id: <201007281256.o6SCubeJ084472@freefall.freebsd.org> To: wxs@FreeBSD.org, freebsd-bugs@FreeBSD.org, wxs@FreeBSD.org From: wxs@FreeBSD.org Cc: Subject: Re: misc/149028: Bugfix in databases/couchdb/files/couchdb.in X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jul 2010 12:56:37 -0000 Old Synopsis: Bugfix in files/couchdb.in New Synopsis: Bugfix in databases/couchdb/files/couchdb.in Responsible-Changed-From-To: freebsd-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Wed Jul 28 12:55:57 UTC 2010 Responsible-Changed-Why: I'll take it and fix synopsis line too. This is from the maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=149028 From owner-freebsd-bugs@FreeBSD.ORG Wed Jul 28 15:00:08 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C1E77106564A for ; Wed, 28 Jul 2010 15:00:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 859A18FC2F for ; Wed, 28 Jul 2010 15:00:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6SF08oV004970 for ; Wed, 28 Jul 2010 15:00:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6SF08jn004969; Wed, 28 Jul 2010 15:00:08 GMT (envelope-from gnats) Resent-Date: Wed, 28 Jul 2010 15:00:08 GMT Resent-Message-Id: <201007281500.o6SF08jn004969@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, pluknet Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D622E1065673 for ; Wed, 28 Jul 2010 14:51:45 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id C5B218FC23 for ; Wed, 28 Jul 2010 14:51:45 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6SEpjkT055399 for ; Wed, 28 Jul 2010 14:51:45 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6SEpjIr055398; Wed, 28 Jul 2010 14:51:45 GMT (envelope-from nobody) Message-Id: <201007281451.o6SEpjIr055398@www.freebsd.org> Date: Wed, 28 Jul 2010 14:51:45 GMT From: pluknet To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: conf/149036: [rc.d] [patch] Mixed/misuse of AND-OR list operators in rc.d/ipmon X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jul 2010 15:00:08 -0000 >Number: 149036 >Category: conf >Synopsis: [rc.d] [patch] Mixed/misuse of AND-OR list operators in rc.d/ipmon >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 Jul 28 15:00:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: pluknet >Release: 6.4-RELEASE-p9 >Organization: >Environment: >Description: src/etc/rc.d/ipmon#rev1.5 added the next check: o In ipmon and ipnat show a warning if neither ipfilter nor ipnat is enabled [..], and exit 1) this check mixes /bin/test and /bin/sh syntax of AND-OR list operators. 2) it checks for AND, while it should check for OR (also see comment for cvs rev1.5 above). >How-To-Repeat: Place to /etc/rc.conf: ipnat_enable="YES" ipmon_enable="YES" Try to launch ipmon: # /etc/rc.d/ipmon start /etc/rc.d/ipmon: ERROR: ipmon requires either ipfilter or ipnat enabled >Fix: 1) Correct the combined check as done in attached patch. 2) profit # /etc/rc.d/ipmon start Starting ipmon. Patch attached with submission follows: Index: etc/rc.d/ipmon =================================================================== --- etc/rc.d/ipmon (revision 207204) +++ etc/rc.d/ipmon (working copy) @@ -20,7 +20,7 @@ # Continue only if ipfilter or ipnat is enabled and the # ipfilter module is loaded. # - if ! checkyesno ipfilter_enable -o ! checkyesno ipnat_enable ; then + if ! checkyesno ipfilter_enable && ! checkyesno ipnat_enable ; then err 1 "${name} requires either ipfilter or ipnat enabled" fi if ! sysctl net.inet.ipf.fr_pass >/dev/null 2>&1; then >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jul 28 16:00:12 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1264C1065676 for ; Wed, 28 Jul 2010 16:00:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 38AAB8FC1B for ; Wed, 28 Jul 2010 16:00:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6SG08DQ063027 for ; Wed, 28 Jul 2010 16:00:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6SG08NC063026; Wed, 28 Jul 2010 16:00:08 GMT (envelope-from gnats) Resent-Date: Wed, 28 Jul 2010 16:00:08 GMT Resent-Message-Id: <201007281600.o6SG08NC063026@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Andreas Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D772F106566C for ; Wed, 28 Jul 2010 15:50:38 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id C7D8F8FC17 for ; Wed, 28 Jul 2010 15:50:38 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6SFocVh003674 for ; Wed, 28 Jul 2010 15:50:38 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6SFoco5003673; Wed, 28 Jul 2010 15:50:38 GMT (envelope-from nobody) Message-Id: <201007281550.o6SFoco5003673@www.freebsd.org> Date: Wed, 28 Jul 2010 15:50:38 GMT From: Andreas To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/149039: Binding problem with uhso X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jul 2010 16:00:12 -0000 >Number: 149039 >Category: misc >Synopsis: Binding problem with uhso >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 Jul 28 16:00:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Andreas >Release: 8.1 >Organization: >Environment: FreeBSD gw.messe.ibtnet.de 8.1-RELEASE FreeBSD 8.1-RELEASE #2: Tue Jul 27 19:55:37 CEST 2010 root@gw.messe.ibtnet.de:/usr/obj/usr/src/sys/IPSEC i386 >Description: Hello, I am able to establish an internet connection with the help of the uhso driver (great stuff btw). The interface uhso0 is up and has an ip address. Shouldn't it be possible to bind sshd or racoon to that ip address? Neither sshd nor racoon are able to do that (seems as if this is impossible for any application). -- Andreas >How-To-Repeat: # uhsoctl -a xxx.yyyy.zz uhso0 Registered to "Vodafone.de" (UMTS) Connected to "Vodafone.de" (web.vodafone.de), UMTS IP address: 109.44.aaa.bbb, Nameservers: ... Restart sshd with 'ListenAddress 109.44.aaa.bbb': Jul 28 14:08:10 gw kernel: Jul 28 14:08:10 gw sshd[1421]: fatal: Cannot bind any address. racoon: Jul 27 19:30:29 gw racoon: ERROR: failed to bind to address 109.44.aaa.bbb[500] (Can't assign requested address). >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jul 28 16:10:03 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E33D51065686 for ; Wed, 28 Jul 2010 16:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BF5678FC18 for ; Wed, 28 Jul 2010 16:10:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6SGA2vo072350 for ; Wed, 28 Jul 2010 16:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6SGA2XM072341; Wed, 28 Jul 2010 16:10:02 GMT (envelope-from gnats) Resent-Date: Wed, 28 Jul 2010 16:10:02 GMT Resent-Message-Id: <201007281610.o6SGA2XM072341@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Oliver Fromme Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 980561065673 for ; Wed, 28 Jul 2010 16:03:31 +0000 (UTC) (envelope-from olli@fromme.com) Received: from box.thiemo.net (box.thiemo.net [88.198.12.75]) by mx1.freebsd.org (Postfix) with ESMTP id 10A9B8FC20 for ; Wed, 28 Jul 2010 16:03:30 +0000 (UTC) Received: from box.thiemo.net (localhost [127.0.0.1]) by box.thiemo.net (8.14.2/8.14.2) with ESMTP id o6SFRt5d092438 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 28 Jul 2010 17:27:56 +0200 (CEST) (envelope-from olli@fromme.com) Received: (from olli@localhost) by box.thiemo.net (8.14.2/8.14.2/Submit) id o6SFRtuE092437; Wed, 28 Jul 2010 17:27:55 +0200 (CEST) (envelope-from olli) Message-Id: <201007281527.o6SFRtuE092437@box.thiemo.net> Date: Wed, 28 Jul 2010 17:27:55 +0200 (CEST) From: Oliver Fromme To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Oliver Fromme Subject: kern/149041: [Patch] DRM support for Radeon HD 4250 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Oliver Fromme List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jul 2010 16:10:03 -0000 >Number: 149041 >Category: kern >Synopsis: [Patch] DRM support for Radeon HD 4250 >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 Jul 28 16:10:02 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Oliver Fromme >Release: FreeBSD 8.1-RELEASE >Organization: secnetix GmbH & Co. KG http://www.secnetix.de/bsd >Environment: The patch applies and works on 8.1, 8-stable and HEAD. The patch applies cleanly on 7-stable, too, but I haven't tested whether it actually works. >Description: I've recently bought a new mainboard "M4A88TD-V EVO/USB3" from ASUS. This mainboard is gaining high popularity because it features USB 3.0, SATA-3 and other things, while still providing legacy stuff (serial RS232, PS/2 connector for mouse/keyboard) and being rather inexpensive. This board has a newer version of the RS880 chip; the graphics is identified as "Radeon HD 4250". The one-line patch below makes it work. By the way, I noticed that Linux 2.6.33 has the same patch. With that patch, DRM attaches and Xv acceleration works, so I can watch video fullscreen at nearly 0% CPU load. vgapci0: port 0xb000-0xb0ff mem 0xd0000000-0xdfffffff,0xfe8f0000-0xfe8fffff,0xfe700000-0xfe7fffff irq 18 at device 5.0 on pci1 drm0: on vgapci0 info: [drm] MSI enabled 1 message(s) vgapci0: child drm0 requested pci_enable_busmaster info: [drm] Initialized radeon 1.31.0 20080613 $ xvinfo X-Video Extension version 2.2 screen #0 Adaptor #0: "Radeon Textured Video" ... While Xv works now, 3D acceleration does not, unfortunately. But I think this is a different issue; I guess the chip is not yet supported by the GL code (but I'm not an expert in this area). >How-To-Repeat: >Fix: --- sys/dev/drm/drm_pciids.h.orig 2010-04-04 17:46:46.000000000 +0200 +++ sys/dev/drm/drm_pciids.h 2010-07-21 22:53:45.000000000 +0200 @@ -335,6 +335,7 @@ {0x1002, 0x9712, CHIP_RS880|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP|RADEON_IS_IGP, "ATI Mobility Radeon HD 4200"}, \ {0x1002, 0x9713, CHIP_RS880|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP|RADEON_IS_IGP, "ATI Mobility Radeon 4100"}, \ {0x1002, 0x9714, CHIP_RS880|RADEON_NEW_MEMMAP|RADEON_IS_IGP, "ATI RS880"}, \ + {0x1002, 0x9715, CHIP_RS880|RADEON_NEW_MEMMAP|RADEON_IS_IGP, "ATI Radeon HD 4250"}, \ {0x1002, 0x9440, CHIP_RV770|RADEON_NEW_MEMMAP, "ATI Radeon 4800 Series"}, \ {0x1002, 0x9441, CHIP_RV770|RADEON_NEW_MEMMAP, "ATI Radeon 4870 X2"}, \ {0x1002, 0x9442, CHIP_RV770|RADEON_NEW_MEMMAP, "ATI Radeon 4800 Series"}, \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jul 28 16:40:03 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD8931065672 for ; Wed, 28 Jul 2010 16:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B32D38FC18 for ; Wed, 28 Jul 2010 16:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6SGe3fU002998 for ; Wed, 28 Jul 2010 16:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6SGe3x2002995; Wed, 28 Jul 2010 16:40:03 GMT (envelope-from gnats) Date: Wed, 28 Jul 2010 16:40:03 GMT Message-Id: <201007281640.o6SGe3x2002995@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Tuco Cc: Subject: Re: kern/149012: [headers] [request] stdint.diff X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Tuco List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jul 2010 16:40:03 -0000 The following reply was made to PR kern/149012; it has been noted by GNATS. From: Tuco To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/149012: [headers] [request] stdint.diff Date: Wed, 28 Jul 2010 18:30:30 +0200 --0016e64c1dc2d98804048c7522bb Content-Type: text/plain; charset=ISO-8859-1 Here's a patch against HEAD. Thanks in advance --0016e64c1dc2d98804048c7522bb Content-Type: text/x-diff; charset=US-ASCII; name="stdint.diff" Content-Disposition: attachment; filename="stdint.diff" Content-Transfer-Encoding: base64 X-Attachment-Id: file0 SW5kZXg6IGluY2x1ZGUvaW50dHlwZXMuaAo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBpbmNsdWRlL2ludHR5cGVz LmgJKHJldmlzaW9uIDIxMDU2MCkKKysrIGluY2x1ZGUvaW50dHlwZXMuaAkod29ya2luZyBjb3B5 KQpAQCAtMzAsNyArMzAsNyBAQAogI2RlZmluZQlfSU5UVFlQRVNfSF8KIAogI2luY2x1ZGUgPG1h Y2hpbmUvX2ludHR5cGVzLmg+Ci0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0 ZGludC5oPgogCiAjaWZuZGVmCV9fY3BsdXNwbHVzCiAjaWZuZGVmIF9XQ0hBUl9UX0RFQ0xBUkVE CkluZGV4OiBzYmluL2ZzY2tfZmZzL2lub2RlLmMKPT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gc2Jpbi9mc2NrX2Zm cy9pbm9kZS5jCShyZXZpc2lvbiAyMTA1NjApCisrKyBzYmluL2ZzY2tfZmZzL2lub2RlLmMJKHdv cmtpbmcgY29weSkKQEAgLTM2LDcgKzM2LDcgQEAKIF9fRkJTRElEKCIkRnJlZUJTRCQiKTsKIAog I2luY2x1ZGUgPHN5cy9wYXJhbS5oPgotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRl IDxzdGRpbnQuaD4KICNpbmNsdWRlIDxzeXMvdGltZS5oPgogI2luY2x1ZGUgPHN5cy9zeXNjdGwu aD4KIApJbmRleDogc2Jpbi9mc2NrX2Zmcy9lYS5jCj09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIHNiaW4vZnNja19m ZnMvZWEuYwkocmV2aXNpb24gMjEwNTYwKQorKysgc2Jpbi9mc2NrX2Zmcy9lYS5jCSh3b3JraW5n IGNvcHkpCkBAIC0zOCw3ICszOCw3IEBACiAKICNpbmNsdWRlIDxzeXMvcGFyYW0uaD4KICNpbmNs dWRlIDxzeXMvdGltZS5oPgotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRp bnQuaD4KIAogI2luY2x1ZGUgPHVmcy91ZnMvZGlub2RlLmg+CiAjaW5jbHVkZSA8dWZzL3Vmcy9k aXIuaD4KSW5kZXg6IHNiaW4vY2FtY29udHJvbC9jYW1jb250cm9sLmMKPT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0g c2Jpbi9jYW1jb250cm9sL2NhbWNvbnRyb2wuYwkocmV2aXNpb24gMjEwNTYwKQorKysgc2Jpbi9j YW1jb250cm9sL2NhbWNvbnRyb2wuYwkod29ya2luZyBjb3B5KQpAQCAtMzAsNyArMzAsNyBAQAog X19GQlNESUQoIiRGcmVlQlNEJCIpOwogCiAjaW5jbHVkZSA8c3lzL2lvY3RsLmg+Ci0jaW5jbHVk ZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0ZGludC5oPgogI2luY2x1ZGUgPHN5cy90eXBl cy5oPgogI2luY2x1ZGUgPHN5cy9lbmRpYW4uaD4KIApJbmRleDogc2Jpbi9jYW1jb250cm9sL3V0 aWwuYwo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09Ci0tLSBzYmluL2NhbWNvbnRyb2wvdXRpbC5jCShyZXZpc2lvbiAyMTA1 NjApCisrKyBzYmluL2NhbWNvbnRyb2wvdXRpbC5jCSh3b3JraW5nIGNvcHkpCkBAIC00Niw3ICs0 Niw3IEBACiAjaW5jbHVkZSA8c3lzL2NkZWZzLmg+CiBfX0ZCU0RJRCgiJEZyZWVCU0QkIik7CiAK LSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjaW5jbHVkZSA8 c3lzL3R5cGVzLmg+CiAKICNpbmNsdWRlIDxzdGRsaWIuaD4KSW5kZXg6IHRvb2xzL3JlZ3Jlc3Np b24vdG1wZnMvaF90b29scy5jCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIHRvb2xzL3JlZ3Jlc3Npb24vdG1wZnMv aF90b29scy5jCShyZXZpc2lvbiAyMTA1NjApCisrKyB0b29scy9yZWdyZXNzaW9uL3RtcGZzL2hf dG9vbHMuYwkod29ya2luZyBjb3B5KQpAQCAtNDMsNyArNDMsNyBAQAogI2luY2x1ZGUgPHN5cy9l dmVudC5oPgogI2luY2x1ZGUgPHN5cy9tb3VudC5oPgogI2luY2x1ZGUgPHN5cy9zdGF0dmZzLmg+ Ci0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0ZGludC5oPgogI2luY2x1ZGUg PHN5cy9zb2NrZXQuaD4KICNpbmNsdWRlIDxzeXMvdGltZS5oPgogI2luY2x1ZGUgPHN5cy91bi5o PgpJbmRleDogdXNyLnNiaW4vcXVvdC9xdW90LmMKPT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gdXNyLnNiaW4vcXVv dC9xdW90LmMJKHJldmlzaW9uIDIxMDU2MCkKKysrIHVzci5zYmluL3F1b3QvcXVvdC5jCSh3b3Jr aW5nIGNvcHkpCkBAIC0zMyw3ICszMyw3IEBACiBfX0ZCU0RJRCgiJEZyZWVCU0QkIik7CiAKICNp bmNsdWRlIDxzeXMvcGFyYW0uaD4KLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8 c3RkaW50Lmg+CiAjaW5jbHVkZSA8c3lzL21vdW50Lmg+CiAjaW5jbHVkZSA8c3lzL2Rpc2tsYWJl bC5oPgogI2luY2x1ZGUgPHN5cy90aW1lLmg+CkluZGV4OiB1c3Iuc2Jpbi9wc3RhdC9wc3RhdC5j Cj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT0KLS0tIHVzci5zYmluL3BzdGF0L3BzdGF0LmMJKHJldmlzaW9uIDIxMDU2MCkK KysrIHVzci5zYmluL3BzdGF0L3BzdGF0LmMJKHdvcmtpbmcgY29weSkKQEAgLTUyLDcgKzUyLDcg QEAKICNpbmNsdWRlIDxzeXMvdGltZS5oPgogI2luY2x1ZGUgPHN5cy9maWxlLmg+CiAjaW5jbHVk ZSA8c3lzL3N0YXQuaD4KLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50 Lmg+CiAjaW5jbHVkZSA8c3lzL2lvY3RsLmg+CiAjaW5jbHVkZSA8c3lzL3R0eS5oPgogI2luY2x1 ZGUgPHN5cy9ibGlzdC5oPgpJbmRleDogdXNyLnNiaW4vZmlmb2xvZy9saWIvbGliZmlmb2xvZy5o Cj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT0KLS0tIHVzci5zYmluL2ZpZm9sb2cvbGliL2xpYmZpZm9sb2cuaAkocmV2aXNp b24gMjEwNTYwKQorKysgdXNyLnNiaW4vZmlmb2xvZy9saWIvbGliZmlmb2xvZy5oCSh3b3JraW5n IGNvcHkpCkBAIC0yNiw3ICsyNiw3IEBACiAgKiAkRnJlZUJTRCQKICAqLwogCi0jaW5jbHVkZSA8 c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0ZGludC5oPgogCiAvKiBDUkVBVE9SUyAqLwogY29u c3QgY2hhciAqZmlmb2xvZ19jcmVhdGUoY29uc3QgY2hhciAqZm4sIG9mZl90IHNpemUsIHVuc2ln bmVkIHJlY3NpemUpOwpJbmRleDogdXNyLnNiaW4vYWNwaS9hY3BpZGIvYWNwaWRiLmMKPT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PQotLS0gdXNyLnNiaW4vYWNwaS9hY3BpZGIvYWNwaWRiLmMJKHJldmlzaW9uIDIxMDU2MCkK KysrIHVzci5zYmluL2FjcGkvYWNwaWRiL2FjcGlkYi5jCSh3b3JraW5nIGNvcHkpCkBAIC0zMCw3 ICszMCw3IEBACiAjaW5jbHVkZSA8c3lzL3F1ZXVlLmg+CiAjaW5jbHVkZSA8c3lzL21tYW4uaD4K ICNpbmNsdWRlIDxzeXMvc3RhdC5oPgotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRl IDxzdGRpbnQuaD4KICNpbmNsdWRlIDxzeXMvdHlwZXMuaD4KIAogI2luY2x1ZGUgPGFzc2VydC5o PgpJbmRleDogbGliL2xpYmRpc2svY2h1bmsuYwo9PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBsaWIvbGliZGlzay9j aHVuay5jCShyZXZpc2lvbiAyMTA1NjApCisrKyBsaWIvbGliZGlzay9jaHVuay5jCSh3b3JraW5n IGNvcHkpCkBAIC0xMSw3ICsxMSw3IEBACiBfX0ZCU0RJRCgiJEZyZWVCU0QkIik7CiAKICNpbmNs dWRlIDxzeXMvdHlwZXMuaD4KLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3Rk aW50Lmg+CiAjaW5jbHVkZSA8c3RkaW8uaD4KICNpbmNsdWRlIDxzdGRsaWIuaD4KICNpbmNsdWRl IDx1bmlzdGQuaD4KSW5kZXg6IGxpYi9saWJkaXNrL29wZW5fZGlzay5jCj09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0t IGxpYi9saWJkaXNrL29wZW5fZGlzay5jCShyZXZpc2lvbiAyMTA1NjApCisrKyBsaWIvbGliZGlz ay9vcGVuX2Rpc2suYwkod29ya2luZyBjb3B5KQpAQCAtMTgsNyArMTgsNyBAQAogI2luY2x1ZGUg PGludHR5cGVzLmg+CiAjaW5jbHVkZSA8ZXJyLmg+CiAjaW5jbHVkZSA8c3lzL3N5c2N0bC5oPgot I2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNsdWRlIDxz eXMvdHlwZXMuaD4KICNpbmNsdWRlIDxzeXMvc3RhdC5oPgogI2luY2x1ZGUgPHN5cy9pb2N0bC5o PgpJbmRleDogbGliL2xpYmRpc2svcnVsZXMuYwo9PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBsaWIvbGliZGlzay9y dWxlcy5jCShyZXZpc2lvbiAyMTA1NjApCisrKyBsaWIvbGliZGlzay9ydWxlcy5jCSh3b3JraW5n IGNvcHkpCkBAIC0xMSw3ICsxMSw3IEBACiBfX0ZCU0RJRCgiJEZyZWVCU0QkIik7CiAKICNpbmNs dWRlIDxzeXMvdHlwZXMuaD4KLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3Rk aW50Lmg+CiAjaW5jbHVkZSA8c3lzL2Rpc2tsYWJlbC5oPgogI2lmZGVmIFBDOTgKICNpbmNsdWRl IDxzeXMvZGlza3BjOTguaD4KSW5kZXg6IGxpYi9saWJkaXNrL2Rpc2suYwo9PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0t LSBsaWIvbGliZGlzay9kaXNrLmMJKHJldmlzaW9uIDIxMDU2MCkKKysrIGxpYi9saWJkaXNrL2Rp c2suYwkod29ya2luZyBjb3B5KQpAQCAtMTgsNyArMTgsNyBAQAogI2luY2x1ZGUgPGludHR5cGVz Lmg+CiAjaW5jbHVkZSA8ZXJyLmg+CiAjaW5jbHVkZSA8c3lzL3N5c2N0bC5oPgotI2luY2x1ZGUg PHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNsdWRlIDxzeXMvdHlwZXMu aD4KICNpbmNsdWRlIDxzeXMvc3RhdC5oPgogI2luY2x1ZGUgPHN5cy9pb2N0bC5oPgpJbmRleDog bGliL2xpYnN0YW5kL3ByaW50Zi5jCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIGxpYi9saWJzdGFuZC9wcmludGYu YwkocmV2aXNpb24gMjEwNTYwKQorKysgbGliL2xpYnN0YW5kL3ByaW50Zi5jCSh3b3JraW5nIGNv cHkpCkBAIC00Myw3ICs0Myw3IEBACiAKICNpbmNsdWRlIDxzeXMvdHlwZXMuaD4KICNpbmNsdWRl IDxzeXMvc3RkZGVmLmg+Ci0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0ZGlu dC5oPgogI2luY2x1ZGUgPGxpbWl0cy5oPgogI2luY2x1ZGUgPHN0cmluZy5oPgogI2luY2x1ZGUg InN0YW5kLmgiCkluZGV4OiBsaWJleGVjL2x1a2VtZnRwZC9uYnNkX3BpZGZpbGUuaAo9PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09Ci0tLSBsaWJleGVjL2x1a2VtZnRwZC9uYnNkX3BpZGZpbGUuaAkocmV2aXNpb24gMjEwNTYw KQorKysgbGliZXhlYy9sdWtlbWZ0cGQvbmJzZF9waWRmaWxlLmgJKHdvcmtpbmcgY29weSkKQEAg LTEsNiArMSw2IEBACiAvKiAkRnJlZUJTRCQgKi8KIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4K KyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNsdWRlIDxzeXNleGl0cy5oPgogCiBzdGF0aWMgaW50 CkluZGV4OiBzeXMvYXJtL2luY2x1ZGUvc3lzYXJjaC5oCj09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIHN5cy9hcm0v aW5jbHVkZS9zeXNhcmNoLmgJKHJldmlzaW9uIDIxMDU2MCkKKysrIHN5cy9hcm0vaW5jbHVkZS9z eXNhcmNoLmgJKHdvcmtpbmcgY29weSkKQEAgLTU3LDcgKzU3LDcgQEAKIC8qCiAgKiBQaWNrdXAg ZGVmaW5pdGlvbiBvZiB1aW50cHRyX3QKICAqLwotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNp bmNsdWRlIDxzdGRpbnQuaD4KIAogLyoKICAqIEFyY2hpdGVjdHVyZSBzcGVjaWZpYyBzeXNjYWxs cyAoYXJtKQpJbmRleDogc3lzL2FybS9lY29uYS9laGNpX2VidXMuYwo9PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBz eXMvYXJtL2Vjb25hL2VoY2lfZWJ1cy5jCShyZXZpc2lvbiAyMTA1NjApCisrKyBzeXMvYXJtL2Vj b25hL2VoY2lfZWJ1cy5jCSh3b3JraW5nIGNvcHkpCkBAIC0zOCw3ICszOCw3IEBACiAKICNpbmNs dWRlIDxtYWNoaW5lL3Jlc291cmNlLmg+CiAKLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5j bHVkZSA8c3RkaW50Lmg+CiAjaW5jbHVkZSA8c3lzL3N0ZGRlZi5oPgogI2luY2x1ZGUgPHN5cy9w YXJhbS5oPgogI2luY2x1ZGUgPHN5cy9xdWV1ZS5oPgpJbmRleDogc3lzL2FybS9lY29uYS9vaGNp X2VjLmMKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PQotLS0gc3lzL2FybS9lY29uYS9vaGNpX2VjLmMJKHJldmlzaW9uIDIx MDU2MCkKKysrIHN5cy9hcm0vZWNvbmEvb2hjaV9lYy5jCSh3b3JraW5nIGNvcHkpCkBAIC0yNiw3 ICsyNiw3IEBACiAjaW5jbHVkZSA8c3lzL2NkZWZzLmg+CiBfX0ZCU0RJRCgiJEZyZWVCU0QkIik7 CiAKLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjaW5jbHVk ZSA8c3lzL3N0ZGRlZi5oPgogI2luY2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUgPHN5cy9x dWV1ZS5oPgpJbmRleDogc3lzL2Jvb3QvY29tbW9uL2xvYWRfZWxmLmMKPT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0g c3lzL2Jvb3QvY29tbW9uL2xvYWRfZWxmLmMJKHJldmlzaW9uIDIxMDU2MCkKKysrIHN5cy9ib290 L2NvbW1vbi9sb2FkX2VsZi5jCSh3b3JraW5nIGNvcHkpCkBAIC0zMiw3ICszMiw3IEBACiAjaW5j bHVkZSA8c3lzL2V4ZWMuaD4KICNpbmNsdWRlIDxzeXMvbGlua2VyLmg+CiAjaW5jbHVkZSA8c3lz L21vZHVsZS5oPgotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4K ICNpbmNsdWRlIDxzdHJpbmcuaD4KICNpbmNsdWRlIDxtYWNoaW5lL2VsZi5oPgogI2luY2x1ZGUg PHN0YW5kLmg+CkluZGV4OiBzeXMvYm9vdC9jb21tb24vYmNhY2hlLmMKPT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0g c3lzL2Jvb3QvY29tbW9uL2JjYWNoZS5jCShyZXZpc2lvbiAyMTA1NjApCisrKyBzeXMvYm9vdC9j b21tb24vYmNhY2hlLmMJKHdvcmtpbmcgY29weSkKQEAgLTMxLDcgKzMxLDcgQEAKICAqIFNpbXBs ZSBMUlUgYmxvY2sgY2FjaGUKICAqLwogCi0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1 ZGUgPHN0ZGludC5oPgogCiAjaW5jbHVkZSA8c3RhbmQuaD4KICNpbmNsdWRlIDxzdHJpbmcuaD4K SW5kZXg6IHN5cy9ib290L2VmaS9pbmNsdWRlL2kzODYvZWZpYmluZC5oCj09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0t IHN5cy9ib290L2VmaS9pbmNsdWRlL2kzODYvZWZpYmluZC5oCShyZXZpc2lvbiAyMTA1NjApCisr KyBzeXMvYm9vdC9lZmkvaW5jbHVkZS9pMzg2L2VmaWJpbmQuaAkod29ya2luZyBjb3B5KQpAQCAt MjksNyArMjksNyBAQAogCiAKICNpZmRlZiBfX0ZyZWVCU0RfXwotI2luY2x1ZGUgPHN5cy9zdGRp bnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNlbHNlCiAvLwogLy8gQmFzaWMgaW50IHR5cGVz IG9mIHZhcmlvdXMgd2lkdGhzCkluZGV4OiBzeXMvYm9vdC9lZmkvaW5jbHVkZS9pYTY0L2VmaWJp bmQuaAo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09Ci0tLSBzeXMvYm9vdC9lZmkvaW5jbHVkZS9pYTY0L2VmaWJpbmQuaAko cmV2aXNpb24gMjEwNTYwKQorKysgc3lzL2Jvb3QvZWZpL2luY2x1ZGUvaWE2NC9lZmliaW5kLmgJ KHdvcmtpbmcgY29weSkKQEAgLTI5LDcgKzI5LDcgQEAKIAogCiAjaWZkZWYgX19GcmVlQlNEX18K LSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjZWxzZQogLy8K IC8vIEJhc2ljIGludCB0eXBlcyBvZiB2YXJpb3VzIHdpZHRocwpJbmRleDogc3lzL21pcHMvY2F2 aXVtL3VzYi9vY3R1c2IuYwo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBzeXMvbWlwcy9jYXZpdW0vdXNiL29jdHVz Yi5jCShyZXZpc2lvbiAyMTA1NjApCisrKyBzeXMvbWlwcy9jYXZpdW0vdXNiL29jdHVzYi5jCSh3 b3JraW5nIGNvcHkpCkBAIC0zMyw3ICszMyw3IEBACiAKIC8qIFRPRE86IFRoZSByb290IEhVQiBw b3J0IGNhbGxiYWNrIGlzIG5vdCB5ZXQgaW1wbGVtZW50ZWQuICovCiAKLSNpbmNsdWRlIDxzeXMv c3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjaW5jbHVkZSA8c3lzL3N0ZGRlZi5oPgog I2luY2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUgPHN5cy9xdWV1ZS5oPgpJbmRleDogc3lz L21pcHMvY2F2aXVtL3VzYi9vY3R1c2Jfb2N0ZW9uLmMKPT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lzL21pcHMv Y2F2aXVtL3VzYi9vY3R1c2Jfb2N0ZW9uLmMJKHJldmlzaW9uIDIxMDU2MCkKKysrIHN5cy9taXBz L2Nhdml1bS91c2Ivb2N0dXNiX29jdGVvbi5jCSh3b3JraW5nIGNvcHkpCkBAIC0yNiw3ICsyNiw3 IEBACiAgKiBTVUNIIERBTUFHRS4KICAqLwogCi0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2lu Y2x1ZGUgPHN0ZGludC5oPgogI2luY2x1ZGUgPHN5cy9zdGRkZWYuaD4KICNpbmNsdWRlIDxzeXMv cGFyYW0uaD4KICNpbmNsdWRlIDxzeXMvcXVldWUuaD4KSW5kZXg6IHN5cy9taXBzL3JtaS94bHNf ZWhjaS5jCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT0KLS0tIHN5cy9taXBzL3JtaS94bHNfZWhjaS5jCShyZXZpc2lvbiAy MTA1NjApCisrKyBzeXMvbWlwcy9ybWkveGxzX2VoY2kuYwkod29ya2luZyBjb3B5KQpAQCAtMzMs NyArMzMsNyBAQAogCiAjaW5jbHVkZSAib3B0X2J1cy5oIgogCi0jaW5jbHVkZSA8c3lzL3N0ZGlu dC5oPgorI2luY2x1ZGUgPHN0ZGludC5oPgogI2luY2x1ZGUgPHN5cy9zdGRkZWYuaD4KICNpbmNs dWRlIDxzeXMvcGFyYW0uaD4KICNpbmNsdWRlIDxzeXMvcXVldWUuaD4KSW5kZXg6IHN5cy9taXBz L3JtaS9jbG9jay5jCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIHN5cy9taXBzL3JtaS9jbG9jay5jCShyZXZpc2lv biAyMTA1NjApCisrKyBzeXMvbWlwcy9ybWkvY2xvY2suYwkod29ya2luZyBjb3B5KQpAQCAtNDMs NyArNDMsNyBAQAogI2luY2x1ZGUgPHN5cy90aW1ldGMuaD4KIAogI2luY2x1ZGUgPHN5cy9tb2R1 bGUuaD4KLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAKICNp bmNsdWRlIDxzeXMvYnVzLmg+CiAjaW5jbHVkZSA8c3lzL3JtYW4uaD4KSW5kZXg6IHN5cy9taXBz L21pcHMvY3B1LmMKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lzL21pcHMvbWlwcy9jcHUuYwkocmV2aXNpb24g MjEwNTYwKQorKysgc3lzL21pcHMvbWlwcy9jcHUuYwkod29ya2luZyBjb3B5KQpAQCAtMzIsNyAr MzIsNyBAQAogI2luY2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUgPHN5cy9rZXJuZWwuaD4K ICNpbmNsdWRlIDxzeXMvbW9kdWxlLmg+Ci0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1 ZGUgPHN0ZGludC5oPgogCiAjaW5jbHVkZSA8c3lzL2J1cy5oPgogI2luY2x1ZGUgPHN5cy9ybWFu Lmg+CkluZGV4OiBzeXMvbmV0Z3JhcGgvYXRtL3NzY29wL25nX3NzY29wLmMKPT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQot LS0gc3lzL25ldGdyYXBoL2F0bS9zc2NvcC9uZ19zc2NvcC5jCShyZXZpc2lvbiAyMTA1NjApCisr KyBzeXMvbmV0Z3JhcGgvYXRtL3NzY29wL25nX3NzY29wLmMJKHdvcmtpbmcgY29weSkKQEAgLTQ0 LDcgKzQ0LDcgQEAKICNpbmNsdWRlIDxzeXMvc29ja2V0dmFyLmg+CiAjaW5jbHVkZSA8c3lzL2Nh bGxvdXQuaD4KICNpbmNsdWRlIDxzeXMvc2J1Zi5oPgotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4K KyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNsdWRlIDxtYWNoaW5lL3N0ZGFyZy5oPgogCiAjaW5j bHVkZSA8bmV0Z3JhcGgvbmdfbWVzc2FnZS5oPgpJbmRleDogc3lzL25ldGdyYXBoL2JsdWV0b290 aC9kcml2ZXJzL3VidGJjbWZ3L3VidGJjbWZ3LmMKPT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lzL25ldGdyYXBo L2JsdWV0b290aC9kcml2ZXJzL3VidGJjbWZ3L3VidGJjbWZ3LmMJKHJldmlzaW9uIDIxMDU2MCkK KysrIHN5cy9uZXRncmFwaC9ibHVldG9vdGgvZHJpdmVycy91YnRiY21mdy91YnRiY21mdy5jCSh3 b3JraW5nIGNvcHkpCkBAIC0zMSw3ICszMSw3IEBACiAgKiAkRnJlZUJTRCQKICAqLwogCi0jaW5j bHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0ZGludC5oPgogI2luY2x1ZGUgPHN5cy9z dGRkZWYuaD4KICNpbmNsdWRlIDxzeXMvcGFyYW0uaD4KICNpbmNsdWRlIDxzeXMvcXVldWUuaD4K SW5kZXg6IHN5cy9uZXRncmFwaC9ibHVldG9vdGgvZHJpdmVycy91YnQvbmdfdWJ0LmMKPT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PQotLS0gc3lzL25ldGdyYXBoL2JsdWV0b290aC9kcml2ZXJzL3VidC9uZ191YnQuYwkocmV2 aXNpb24gMjEwNTYwKQorKysgc3lzL25ldGdyYXBoL2JsdWV0b290aC9kcml2ZXJzL3VidC9uZ191 YnQuYwkod29ya2luZyBjb3B5KQpAQCAtOTIsNyArOTIsNyBAQAogICogdGhhdCB0aGlzIHBvaW50 ZXIgaXMgdmFsaWQuCiAgKi8KIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxz dGRpbnQuaD4KICNpbmNsdWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+ CiAjaW5jbHVkZSA8c3lzL3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3NvdW5kL3VzYi91YXVkaW8u Ywo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09Ci0tLSBzeXMvZGV2L3NvdW5kL3VzYi91YXVkaW8uYwkocmV2aXNpb24gMjEw NTYwKQorKysgc3lzL2Rldi9zb3VuZC91c2IvdWF1ZGlvLmMJKHdvcmtpbmcgY29weSkKQEAgLTQ1 LDcgKzQ1LDcgQEAKICAqICAkTmV0QlNEOiB1YXVkaW8uYyx2IDEuOTcgMjAwNS8wMi8yNCAwODox OTozOCBtYXJ0aW4gRXhwICQKICAqLwogCi0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1 ZGUgPHN0ZGludC5oPgogI2luY2x1ZGUgPHN5cy9zdGRkZWYuaD4KICNpbmNsdWRlIDxzeXMvcGFy YW0uaD4KICNpbmNsdWRlIDxzeXMvcXVldWUuaD4KSW5kZXg6IHN5cy9kZXYvcmFuZG9tL3Byb2Jl LmMKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PQotLS0gc3lzL2Rldi9yYW5kb20vcHJvYmUuYwkocmV2aXNpb24gMjEwNTYw KQorKysgc3lzL2Rldi9yYW5kb20vcHJvYmUuYwkod29ya2luZyBjb3B5KQpAQCAtMzMsNyArMzMs NyBAQAogI2luY2x1ZGUgPHN5cy9tYWxsb2MuaD4KICNpbmNsdWRlIDxzeXMvcmFuZG9tLmg+CiAj aW5jbHVkZSA8c3lzL3NlbGluZm8uaD4KLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVk ZSA8c3RkaW50Lmg+CiAjaW5jbHVkZSA8c3lzL3N5c2N0bC5oPgogCiAjaWYgZGVmaW5lZChfX2kz ODZfXykgJiYgIWRlZmluZWQoUEM5OCkKSW5kZXg6IHN5cy9kZXYvZW4vbWlkd2F5LmMKPT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PQotLS0gc3lzL2Rldi9lbi9taWR3YXkuYwkocmV2aXNpb24gMjEwNTYwKQorKysgc3lzL2Rl di9lbi9taWR3YXkuYwkod29ya2luZyBjb3B5KQpAQCAtMTMxLDcgKzEzMSw3IEBACiAjaW5jbHVk ZSA8c3lzL3NvY2tldC5oPgogI2luY2x1ZGUgPHN5cy9tYnVmLmg+CiAjaW5jbHVkZSA8c3lzL2Vu ZGlhbi5oPgotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNp bmNsdWRlIDxzeXMvbG9jay5oPgogI2luY2x1ZGUgPHN5cy9tdXRleC5oPgogI2luY2x1ZGUgPHN5 cy9jb25kdmFyLmg+CkluZGV4OiBzeXMvZGV2L2NmZS9jZmVfYXBpLmgKPT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0g c3lzL2Rldi9jZmUvY2ZlX2FwaS5oCShyZXZpc2lvbiAyMTA1NjApCisrKyBzeXMvZGV2L2NmZS9j ZmVfYXBpLmgJKHdvcmtpbmcgY29weSkKQEAgLTYyLDcgKzYyLDcgQEAKICAqIENGRV9BUElfKiBj YW4gYmUgZGVmaW5lZCBoZXJlIGFzIGRlc2lyZWQuCiAgKi8KIC8qIEJlZ2luIGN1c3RvbWl6YXRp b24uICovCi0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgkJLyogQWxsIG9mIHRoZSB0eXBlZGVmcy4g ICovCisjaW5jbHVkZSA8c3RkaW50Lmg+CQkvKiBBbGwgb2YgdGhlIHR5cGVkZWZzLiAgKi8KICNp bmNsdWRlIDxzeXMvc3lzdG0uaD4JCS8qIHN0cmxlbigpIHByb3RvdHlwZS4gICovCiAKICNkZWZp bmUJQ0ZFX0FQSV9BTEwKSW5kZXg6IHN5cy9kZXYvdXNiL3NlcmlhbC91M2cuYwo9PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 Ci0tLSBzeXMvZGV2L3VzYi9zZXJpYWwvdTNnLmMJKHJldmlzaW9uIDIxMDU2MCkKKysrIHN5cy9k ZXYvdXNiL3NlcmlhbC91M2cuYwkod29ya2luZyBjb3B5KQpAQCAtMzEsNyArMzEsNyBAQAogICov CiAKIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNs dWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8c3lz L3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3VzYi9zZXJpYWwvdWN5Y29tLmMKPT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQot LS0gc3lzL2Rldi91c2Ivc2VyaWFsL3VjeWNvbS5jCShyZXZpc2lvbiAyMTA1NjApCisrKyBzeXMv ZGV2L3VzYi9zZXJpYWwvdWN5Y29tLmMJKHdvcmtpbmcgY29weSkKQEAgLTM0LDcgKzM0LDcgQEAK ICAqIFJTMjMyIGJyaWRnZXMuCiAgKi8KIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNs dWRlIDxzdGRpbnQuaD4KICNpbmNsdWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3Bh cmFtLmg+CiAjaW5jbHVkZSA8c3lzL3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3VzYi9zZXJpYWwv dXBsY29tLmMKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PQotLS0gc3lzL2Rldi91c2Ivc2VyaWFsL3VwbGNvbS5jCShyZXZp c2lvbiAyMTA1NjApCisrKyBzeXMvZGV2L3VzYi9zZXJpYWwvdXBsY29tLmMJKHdvcmtpbmcgY29w eSkKQEAgLTg0LDcgKzg0LDcgQEAKICAqIGRvY3VtZW50ZWQgaW4gdGhlIGRhdGFzaGVldC4KICAq LwogCi0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0ZGludC5oPgogI2luY2x1 ZGUgPHN5cy9zdGRkZWYuaD4KICNpbmNsdWRlIDxzeXMvcGFyYW0uaD4KICNpbmNsdWRlIDxzeXMv cXVldWUuaD4KSW5kZXg6IHN5cy9kZXYvdXNiL3NlcmlhbC91c2xjb20uYwo9PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0t LSBzeXMvZGV2L3VzYi9zZXJpYWwvdXNsY29tLmMJKHJldmlzaW9uIDIxMDU2MCkKKysrIHN5cy9k ZXYvdXNiL3NlcmlhbC91c2xjb20uYwkod29ya2luZyBjb3B5KQpAQCAtMTksNyArMTksNyBAQAog ICogT1IgSU4gQ09OTkVDVElPTiBXSVRIIFRIRSBVU0UgT1IgUEVSRk9STUFOQ0UgT0YgVEhJUyBT T0ZUV0FSRS4KICAqLwogCi0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0ZGlu dC5oPgogI2luY2x1ZGUgPHN5cy9zdGRkZWYuaD4KICNpbmNsdWRlIDxzeXMvcGFyYW0uaD4KICNp bmNsdWRlIDxzeXMvcXVldWUuaD4KSW5kZXg6IHN5cy9kZXYvdXNiL3NlcmlhbC91YXJrLmMKPT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PQotLS0gc3lzL2Rldi91c2Ivc2VyaWFsL3VhcmsuYwkocmV2aXNpb24gMjEwNTYwKQor Kysgc3lzL2Rldi91c2Ivc2VyaWFsL3VhcmsuYwkod29ya2luZyBjb3B5KQpAQCAtMjQsNyArMjQs NyBAQAogICovCiAKIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQu aD4KICNpbmNsdWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5j bHVkZSA8c3lzL3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3VzYi9zZXJpYWwvdWZvbWEuYwo9PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09Ci0tLSBzeXMvZGV2L3VzYi9zZXJpYWwvdWZvbWEuYwkocmV2aXNpb24gMjEwNTYwKQor Kysgc3lzL2Rldi91c2Ivc2VyaWFsL3Vmb21hLmMJKHdvcmtpbmcgY29weSkKQEAgLTgyLDcgKzgy LDcgQEAKICAqIGJlIGNhbGxlZCBmcm9tIHdpdGhpbiB0aGUgY29uZmlnIHRocmVhZCBmdW5jdGlv biAhCiAgKi8KIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4K ICNpbmNsdWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVk ZSA8c3lzL3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3VzYi9zZXJpYWwvdW1jdC5jCj09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT0KLS0tIHN5cy9kZXYvdXNiL3NlcmlhbC91bWN0LmMJKHJldmlzaW9uIDIxMDU2MCkKKysrIHN5 cy9kZXYvdXNiL3NlcmlhbC91bWN0LmMJKHdvcmtpbmcgY29weSkKQEAgLTQ0LDcgKzQ0LDcgQEAK ICAqIGJlIGNhbGxlZCBmcm9tIHdpdGhpbiB0aGUgY29uZmlnIHRocmVhZCBmdW5jdGlvbiAhCiAg Ki8KIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNs dWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8c3lz L3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3VzYi9zZXJpYWwvdWZ0ZGkuYwo9PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0t LSBzeXMvZGV2L3VzYi9zZXJpYWwvdWZ0ZGkuYwkocmV2aXNpb24gMjEwNTYwKQorKysgc3lzL2Rl di91c2Ivc2VyaWFsL3VmdGRpLmMJKHdvcmtpbmcgY29weSkKQEAgLTQxLDcgKzQxLDcgQEAKICAq IEZUREkgRlQ4VTEwMEFYIHNlcmlhbCBhZGFwdGVyIGRyaXZlcgogICovCiAKLSNpbmNsdWRlIDxz eXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjaW5jbHVkZSA8c3lzL3N0ZGRlZi5o PgogI2luY2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUgPHN5cy9xdWV1ZS5oPgpJbmRleDog c3lzL2Rldi91c2Ivc2VyaWFsL3V2c2NvbS5jCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIHN5cy9kZXYvdXNiL3Nl cmlhbC91dnNjb20uYwkocmV2aXNpb24gMjEwNTYwKQorKysgc3lzL2Rldi91c2Ivc2VyaWFsL3V2 c2NvbS5jCSh3b3JraW5nIGNvcHkpCkBAIC0zNyw3ICszNyw3IEBACiAgKiBQLWluIG1AYXRlciBh bmQgdmFyaW91cyBkYXRhIGNvbW11bmljYXRpb24gY2FyZCBhZGFwdGVycy4KICAqLwogCi0jaW5j bHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0ZGludC5oPgogI2luY2x1ZGUgPHN5cy9z dGRkZWYuaD4KICNpbmNsdWRlIDxzeXMvcGFyYW0uaD4KICNpbmNsdWRlIDxzeXMvcXVldWUuaD4K SW5kZXg6IHN5cy9kZXYvdXNiL3NlcmlhbC91Y2hjb20uYwo9PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBzeXMvZGV2 L3VzYi9zZXJpYWwvdWNoY29tLmMJKHJldmlzaW9uIDIxMDU2MCkKKysrIHN5cy9kZXYvdXNiL3Nl cmlhbC91Y2hjb20uYwkod29ya2luZyBjb3B5KQpAQCAtNzAsNyArNzAsNyBAQAogICogd29ybGQu CiAgKi8KIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNp bmNsdWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8 c3lzL3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3VzYi9zZXJpYWwvdWlwYXEuYwo9PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 Ci0tLSBzeXMvZGV2L3VzYi9zZXJpYWwvdWlwYXEuYwkocmV2aXNpb24gMjEwNTYwKQorKysgc3lz L2Rldi91c2Ivc2VyaWFsL3VpcGFxLmMJKHdvcmtpbmcgY29weSkKQEAgLTQ0LDcgKzQ0LDcgQEAK ICNpbmNsdWRlIDxzeXMvY2RlZnMuaD4KIF9fRkJTRElEKCIkRnJlZUJTRCQiKTsKIAotI2luY2x1 ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNsdWRlIDxzeXMvc3Rk ZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8c3lzL3F1ZXVlLmg+Cklu ZGV4OiBzeXMvZGV2L3VzYi9zZXJpYWwvdWJzZXIuYwo9PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBzeXMvZGV2L3Vz Yi9zZXJpYWwvdWJzZXIuYwkocmV2aXNpb24gMjEwNTYwKQorKysgc3lzL2Rldi91c2Ivc2VyaWFs L3Vic2VyLmMJKHdvcmtpbmcgY29weSkKQEAgLTc2LDcgKzc2LDcgQEAKICAqIEJXQ1Qgc2VyaWFs IGFkYXB0ZXIgZHJpdmVyCiAgKi8KIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRl IDxzdGRpbnQuaD4KICNpbmNsdWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFt Lmg+CiAjaW5jbHVkZSA8c3lzL3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3VzYi9zZXJpYWwvdWdl bnNhLmMKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PQotLS0gc3lzL2Rldi91c2Ivc2VyaWFsL3VnZW5zYS5jCShyZXZpc2lv biAyMTA1NjApCisrKyBzeXMvZGV2L3VzYi9zZXJpYWwvdWdlbnNhLmMJKHdvcmtpbmcgY29weSkK QEAgLTM1LDcgKzM1LDcgQEAKICAqIGJlIGNhbGxlZCBmcm9tIHdpdGhpbiB0aGUgY29uZmlnIHRo cmVhZCBmdW5jdGlvbiAhCiAgKi8KIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRl IDxzdGRpbnQuaD4KICNpbmNsdWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFt Lmg+CiAjaW5jbHVkZSA8c3lzL3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3VzYi9zZXJpYWwvdW1v c2NvbS5jCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT0KLS0tIHN5cy9kZXYvdXNiL3NlcmlhbC91bW9zY29tLmMJKHJldmlz aW9uIDIxMDU2MCkKKysrIHN5cy9kZXYvdXNiL3NlcmlhbC91bW9zY29tLmMJKHdvcmtpbmcgY29w eSkKQEAgLTE3LDcgKzE3LDcgQEAKICAqIE9SIElOIENPTk5FQ1RJT04gV0lUSCBUSEUgVVNFIE9S IFBFUkZPUk1BTkNFIE9GIFRISVMgU09GVFdBUkUuCiAgKi8KIAotI2luY2x1ZGUgPHN5cy9zdGRp bnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNsdWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5j bHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8c3lzL3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2 L3VzYi9zZXJpYWwvdWxwdC5jCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIHN5cy9kZXYvdXNiL3NlcmlhbC91bHB0 LmMJKHJldmlzaW9uIDIxMDU2MCkKKysrIHN5cy9kZXYvdXNiL3NlcmlhbC91bHB0LmMJKHdvcmtp bmcgY29weSkKQEAgLTM4LDcgKzM4LDcgQEAKICAqIFByaW50ZXIgQ2xhc3Mgc3BlYzogaHR0cDov L3d3dy51c2Iub3JnL2RldmVsb3BlcnMvZGV2Y2xhc3NfZG9jcy91c2JwcmludDExLnBkZgogICov CiAKLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjaW5jbHVk ZSA8c3lzL3N0ZGRlZi5oPgogI2luY2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUgPHN5cy9x dWV1ZS5oPgpJbmRleDogc3lzL2Rldi91c2Ivc2VyaWFsL3Vtb2RlbS5jCj09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0t IHN5cy9kZXYvdXNiL3NlcmlhbC91bW9kZW0uYwkocmV2aXNpb24gMjEwNTYwKQorKysgc3lzL2Rl di91c2Ivc2VyaWFsL3Vtb2RlbS5jCSh3b3JraW5nIGNvcHkpCkBAIC04MCw3ICs4MCw3IEBACiAg KgogICovCiAKLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAj aW5jbHVkZSA8c3lzL3N0ZGRlZi5oPgogI2luY2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUg PHN5cy9xdWV1ZS5oPgpJbmRleDogc3lzL2Rldi91c2Ivc2VyaWFsL3V2aXNvci5jCj09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT0KLS0tIHN5cy9kZXYvdXNiL3NlcmlhbC91dmlzb3IuYwkocmV2aXNpb24gMjEwNTYwKQorKysg c3lzL2Rldi91c2Ivc2VyaWFsL3V2aXNvci5jCSh3b3JraW5nIGNvcHkpCkBAIC00Nyw3ICs0Nyw3 IEBACiAgKiBIYW5kc3ByaW5nIFZpc29yIChQYWxtcGlsb3QgY29tcGF0aWJsZSBQREEpIGRyaXZl cgogICovCiAKLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAj aW5jbHVkZSA8c3lzL3N0ZGRlZi5oPgogI2luY2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUg PHN5cy9xdWV1ZS5oPgpJbmRleDogc3lzL2Rldi91c2Ivc2VyaWFsL3VzYl9zZXJpYWwuYwo9PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09Ci0tLSBzeXMvZGV2L3VzYi9zZXJpYWwvdXNiX3NlcmlhbC5jCShyZXZpc2lvbiAyMTA1 NjApCisrKyBzeXMvZGV2L3VzYi9zZXJpYWwvdXNiX3NlcmlhbC5jCSh3b3JraW5nIGNvcHkpCkBA IC02Nyw3ICs2Nyw3IEBACiAgKiBQT1NTSUJJTElUWSBPRiBTVUNIIERBTUFHRS4KICAqLwogCi0j aW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0ZGludC5oPgogI2luY2x1ZGUgPHN5 cy9zdGRkZWYuaD4KICNpbmNsdWRlIDxzeXMvcGFyYW0uaD4KICNpbmNsdWRlIDxzeXMvcXVldWUu aD4KSW5kZXg6IHN5cy9kZXYvdXNiL3NlcmlhbC91YnNhLmMKPT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lzL2Rl di91c2Ivc2VyaWFsL3Vic2EuYwkocmV2aXNpb24gMjEwNTYwKQorKysgc3lzL2Rldi91c2Ivc2Vy aWFsL3Vic2EuYwkod29ya2luZyBjb3B5KQpAQCAtNjIsNyArNjIsNyBAQAogICogUE9TU0lCSUxJ VFkgT0YgU1VDSCBEQU1BR0UuCiAgKi8KIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNs dWRlIDxzdGRpbnQuaD4KICNpbmNsdWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3Bh cmFtLmg+CiAjaW5jbHVkZSA8c3lzL3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3VzYi91c2JfZGVi dWcuYwo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09Ci0tLSBzeXMvZGV2L3VzYi91c2JfZGVidWcuYwkocmV2aXNpb24gMjEw NTYwKQorKysgc3lzL2Rldi91c2IvdXNiX2RlYnVnLmMJKHdvcmtpbmcgY29weSkKQEAgLTI0LDcg KzI0LDcgQEAKICAqIFNVQ0ggREFNQUdFLgogICovCiAKLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+ CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjaW5jbHVkZSA8c3lzL3N0ZGRlZi5oPgogI2luY2x1ZGUg PHN5cy9wYXJhbS5oPgogI2luY2x1ZGUgPHN5cy9xdWV1ZS5oPgpJbmRleDogc3lzL2Rldi91c2Iv Y29udHJvbGxlci9hdDkxZGNpLmMKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lzL2Rldi91c2IvY29udHJvbGxl ci9hdDkxZGNpLmMJKHJldmlzaW9uIDIxMDU2MCkKKysrIHN5cy9kZXYvdXNiL2NvbnRyb2xsZXIv YXQ5MWRjaS5jCSh3b3JraW5nIGNvcHkpCkBAIC00NCw3ICs0NCw3IEBACiAgKiBlbmRwb2ludHMs IEZ1bmN0aW9uLWFkZHJlc3MgYW5kIG1vcmUuCiAgKi8KIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQu aD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNsdWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVk ZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8c3lzL3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3Vz Yi9jb250cm9sbGVyL211c2Jfb3RnX2F0bWVsYXJtLmMKPT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lzL2Rldi91 c2IvY29udHJvbGxlci9tdXNiX290Z19hdG1lbGFybS5jCShyZXZpc2lvbiAyMTA1NjApCisrKyBz eXMvZGV2L3VzYi9jb250cm9sbGVyL211c2Jfb3RnX2F0bWVsYXJtLmMJKHdvcmtpbmcgY29weSkK QEAgLTI0LDcgKzI0LDcgQEAKICAqIFNVQ0ggREFNQUdFLgogICovCiAKLSNpbmNsdWRlIDxzeXMv c3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjaW5jbHVkZSA8c3lzL3N0ZGRlZi5oPgog I2luY2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUgPHN5cy9xdWV1ZS5oPgpJbmRleDogc3lz L2Rldi91c2IvY29udHJvbGxlci9laGNpX3BjaS5jCj09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIHN5cy9kZXYvdXNi L2NvbnRyb2xsZXIvZWhjaV9wY2kuYwkocmV2aXNpb24gMjEwNTYwKQorKysgc3lzL2Rldi91c2Iv Y29udHJvbGxlci9laGNpX3BjaS5jCSh3b3JraW5nIGNvcHkpCkBAIC00NSw3ICs0NSw3IEBACiAg KiBzaGFyaW5nIG9mIGNvZGUgYmV0d2VlbiAqQlNEJ3MKICAqLwogCi0jaW5jbHVkZSA8c3lzL3N0 ZGludC5oPgorI2luY2x1ZGUgPHN0ZGludC5oPgogI2luY2x1ZGUgPHN5cy9zdGRkZWYuaD4KICNp bmNsdWRlIDxzeXMvcGFyYW0uaD4KICNpbmNsdWRlIDxzeXMvcXVldWUuaD4KSW5kZXg6IHN5cy9k ZXYvdXNiL2NvbnRyb2xsZXIvb2hjaV9hdG1lbGFybS5jCj09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIHN5cy9kZXYv dXNiL2NvbnRyb2xsZXIvb2hjaV9hdG1lbGFybS5jCShyZXZpc2lvbiAyMTA1NjApCisrKyBzeXMv ZGV2L3VzYi9jb250cm9sbGVyL29oY2lfYXRtZWxhcm0uYwkod29ya2luZyBjb3B5KQpAQCAtMjUs NyArMjUsNyBAQAogI2luY2x1ZGUgPHN5cy9jZGVmcy5oPgogX19GQlNESUQoIiRGcmVlQlNEJCIp OwogCi0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0ZGludC5oPgogI2luY2x1 ZGUgPHN5cy9zdGRkZWYuaD4KICNpbmNsdWRlIDxzeXMvcGFyYW0uaD4KICNpbmNsdWRlIDxzeXMv cXVldWUuaD4KSW5kZXg6IHN5cy9kZXYvdXNiL2NvbnRyb2xsZXIvdXNzODIwZGNpX2F0bWVsYXJt LmMKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PQotLS0gc3lzL2Rldi91c2IvY29udHJvbGxlci91c3M4MjBkY2lfYXRtZWxh cm0uYwkocmV2aXNpb24gMjEwNTYwKQorKysgc3lzL2Rldi91c2IvY29udHJvbGxlci91c3M4MjBk Y2lfYXRtZWxhcm0uYwkod29ya2luZyBjb3B5KQpAQCAtMjcsNyArMjcsNyBAQAogICogU1VDSCBE QU1BR0UuCiAgKi8KIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQu aD4KICNpbmNsdWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5j bHVkZSA8c3lzL3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3VzYi9jb250cm9sbGVyL29oY2lfcGNp LmMKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PQotLS0gc3lzL2Rldi91c2IvY29udHJvbGxlci9vaGNpX3BjaS5jCShyZXZp c2lvbiAyMTA1NjApCisrKyBzeXMvZGV2L3VzYi9jb250cm9sbGVyL29oY2lfcGNpLmMJKHdvcmtp bmcgY29weSkKQEAgLTQyLDcgKzQyLDcgQEAKICAqIHNoYXJpbmcgb2YgY29kZSBiZXR3ZWVuICpC U0QncwogICovCiAKLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+ CiAjaW5jbHVkZSA8c3lzL3N0ZGRlZi5oPgogI2luY2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1 ZGUgPHN5cy9xdWV1ZS5oPgpJbmRleDogc3lzL2Rldi91c2IvY29udHJvbGxlci9hdG1lZ2FkY2ku Ywo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09Ci0tLSBzeXMvZGV2L3VzYi9jb250cm9sbGVyL2F0bWVnYWRjaS5jCShyZXZp c2lvbiAyMTA1NjApCisrKyBzeXMvZGV2L3VzYi9jb250cm9sbGVyL2F0bWVnYWRjaS5jCSh3b3Jr aW5nIGNvcHkpCkBAIC0zNiw3ICszNiw3IEBACiAgKiBlbmRwb2ludHMsIEZ1bmN0aW9uLWFkZHJl c3MgYW5kIG1vcmUuCiAgKi8KIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxz dGRpbnQuaD4KICNpbmNsdWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+ CiAjaW5jbHVkZSA8c3lzL3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3VzYi9jb250cm9sbGVyL211 c2Jfb3RnLmMKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PQotLS0gc3lzL2Rldi91c2IvY29udHJvbGxlci9tdXNiX290Zy5j CShyZXZpc2lvbiAyMTA1NjApCisrKyBzeXMvZGV2L3VzYi9jb250cm9sbGVyL211c2Jfb3RnLmMJ KHdvcmtpbmcgY29weSkKQEAgLTM2LDcgKzM2LDcgQEAKICAqIE5PVEU6IFRoZSBjdXJyZW50IGlt cGxlbWVudGF0aW9uIG9ubHkgc3VwcG9ydHMgRGV2aWNlIFNpZGUgTW9kZSEKICAqLwogCi0jaW5j bHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0ZGludC5oPgogI2luY2x1ZGUgPHN5cy9z dGRkZWYuaD4KICNpbmNsdWRlIDxzeXMvcGFyYW0uaD4KICNpbmNsdWRlIDxzeXMvcXVldWUuaD4K SW5kZXg6IHN5cy9kZXYvdXNiL2NvbnRyb2xsZXIvYXQ5MWRjaV9hdG1lbGFybS5jCj09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT0KLS0tIHN5cy9kZXYvdXNiL2NvbnRyb2xsZXIvYXQ5MWRjaV9hdG1lbGFybS5jCShyZXZpc2lv biAyMTA1NjApCisrKyBzeXMvZGV2L3VzYi9jb250cm9sbGVyL2F0OTFkY2lfYXRtZWxhcm0uYwko d29ya2luZyBjb3B5KQpAQCAtMjYsNyArMjYsNyBAQAogICogU1VDSCBEQU1BR0UuCiAgKi8KIAot I2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNsdWRlIDxz eXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8c3lzL3F1ZXVl Lmg+CkluZGV4OiBzeXMvZGV2L3VzYi9jb250cm9sbGVyL3VoY2lfcGNpLmMKPT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQot LS0gc3lzL2Rldi91c2IvY29udHJvbGxlci91aGNpX3BjaS5jCShyZXZpc2lvbiAyMTA1NjApCisr KyBzeXMvZGV2L3VzYi9jb250cm9sbGVyL3VoY2lfcGNpLmMJKHdvcmtpbmcgY29weSkKQEAgLTQx LDcgKzQxLDcgQEAKICAqIHNoYXJpbmcgb2YgY29kZSBiZXR3ZWVuICpCU0QncwogICovCiAKLSNp bmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjaW5jbHVkZSA8c3lz L3N0ZGRlZi5oPgogI2luY2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUgPHN5cy9xdWV1ZS5o PgpJbmRleDogc3lzL2Rldi91c2IvY29udHJvbGxlci91c2JfY29udHJvbGxlci5jCj09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT0KLS0tIHN5cy9kZXYvdXNiL2NvbnRyb2xsZXIvdXNiX2NvbnRyb2xsZXIuYwkocmV2aXNpb24g MjEwNTYwKQorKysgc3lzL2Rldi91c2IvY29udHJvbGxlci91c2JfY29udHJvbGxlci5jCSh3b3Jr aW5nIGNvcHkpCkBAIC0yNiw3ICsyNiw3IEBACiAKICNpbmNsdWRlICJvcHRfZGRiLmgiCiAKLSNp bmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjaW5jbHVkZSA8c3lz L3N0ZGRlZi5oPgogI2luY2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUgPHN5cy9xdWV1ZS5o PgpJbmRleDogc3lzL2Rldi91c2IvY29udHJvbGxlci9hdG1lZ2FkY2lfYXRtZWxhcm0uYwo9PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09Ci0tLSBzeXMvZGV2L3VzYi9jb250cm9sbGVyL2F0bWVnYWRjaV9hdG1lbGFybS5jCShy ZXZpc2lvbiAyMTA1NjApCisrKyBzeXMvZGV2L3VzYi9jb250cm9sbGVyL2F0bWVnYWRjaV9hdG1l bGFybS5jCSh3b3JraW5nIGNvcHkpCkBAIC0yNiw3ICsyNiw3IEBACiAgKiBTVUNIIERBTUFHRS4K ICAqLwogCi0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0ZGludC5oPgogI2lu Y2x1ZGUgPHN5cy9zdGRkZWYuaD4KICNpbmNsdWRlIDxzeXMvcGFyYW0uaD4KICNpbmNsdWRlIDxz eXMvcXVldWUuaD4KSW5kZXg6IHN5cy9kZXYvdXNiL2NvbnRyb2xsZXIvZWhjaS5jCj09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT0KLS0tIHN5cy9kZXYvdXNiL2NvbnRyb2xsZXIvZWhjaS5jCShyZXZpc2lvbiAyMTA1NjApCisr KyBzeXMvZGV2L3VzYi9jb250cm9sbGVyL2VoY2kuYwkod29ya2luZyBjb3B5KQpAQCAtNDYsNyAr NDYsNyBAQAogI2luY2x1ZGUgPHN5cy9jZGVmcy5oPgogX19GQlNESUQoIiRGcmVlQlNEJCIpOwog Ci0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0ZGludC5oPgogI2luY2x1ZGUg PHN5cy9zdGRkZWYuaD4KICNpbmNsdWRlIDxzeXMvcGFyYW0uaD4KICNpbmNsdWRlIDxzeXMvcXVl dWUuaD4KSW5kZXg6IHN5cy9kZXYvdXNiL2NvbnRyb2xsZXIvb2hjaV9zM2MyNHgwLmMKPT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PQotLS0gc3lzL2Rldi91c2IvY29udHJvbGxlci9vaGNpX3MzYzI0eDAuYwkocmV2aXNpb24g MjEwNTYwKQorKysgc3lzL2Rldi91c2IvY29udHJvbGxlci9vaGNpX3MzYzI0eDAuYwkod29ya2lu ZyBjb3B5KQpAQCAtMjYsNyArMjYsNyBAQAogI2luY2x1ZGUgPHN5cy9jZGVmcy5oPgogX19GQlNE SUQoIiRGcmVlQlNEJCIpOwogCi0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0 ZGludC5oPgogI2luY2x1ZGUgPHN5cy9zdGRkZWYuaD4KICNpbmNsdWRlIDxzeXMvcGFyYW0uaD4K ICNpbmNsdWRlIDxzeXMvcXVldWUuaD4KSW5kZXg6IHN5cy9kZXYvdXNiL2NvbnRyb2xsZXIvZWhj aV9tdi5jCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT0KLS0tIHN5cy9kZXYvdXNiL2NvbnRyb2xsZXIvZWhjaV9tdi5jCShy ZXZpc2lvbiAyMTA1NjApCisrKyBzeXMvZGV2L3VzYi9jb250cm9sbGVyL2VoY2lfbXYuYwkod29y a2luZyBjb3B5KQpAQCAtMzgsNyArMzgsNyBAQAogCiAjaW5jbHVkZSAib3B0X2J1cy5oIgogCi0j aW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0ZGludC5oPgogI2luY2x1ZGUgPHN5 cy9zdGRkZWYuaD4KICNpbmNsdWRlIDxzeXMvcGFyYW0uaD4KICNpbmNsdWRlIDxzeXMvcXVldWUu aD4KSW5kZXg6IHN5cy9kZXYvdXNiL2NvbnRyb2xsZXIvYXZyMzJkY2kuYwo9PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0t LSBzeXMvZGV2L3VzYi9jb250cm9sbGVyL2F2cjMyZGNpLmMJKHJldmlzaW9uIDIxMDU2MCkKKysr IHN5cy9kZXYvdXNiL2NvbnRyb2xsZXIvYXZyMzJkY2kuYwkod29ya2luZyBjb3B5KQpAQCAtMzYs NyArMzYsNyBAQAogICogZW5kcG9pbnRzLCBGdW5jdGlvbi1hZGRyZXNzIGFuZCBtb3JlLgogICov CiAKLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjaW5jbHVk ZSA8c3lzL3N0ZGRlZi5oPgogI2luY2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUgPHN5cy9x dWV1ZS5oPgpJbmRleDogc3lzL2Rldi91c2IvY29udHJvbGxlci9vaGNpLmMKPT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQot LS0gc3lzL2Rldi91c2IvY29udHJvbGxlci9vaGNpLmMJKHJldmlzaW9uIDIxMDU2MCkKKysrIHN5 cy9kZXYvdXNiL2NvbnRyb2xsZXIvb2hjaS5jCSh3b3JraW5nIGNvcHkpCkBAIC0zNSw3ICszNSw3 IEBACiAgKiBVU0Igc3BlYzogIGh0dHA6Ly93d3cudXNiLm9yZy9kZXZlbG9wZXJzL2RvY3MvdXNi c3BlYy56aXAKICAqLwogCi0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0ZGlu dC5oPgogI2luY2x1ZGUgPHN5cy9zdGRkZWYuaD4KICNpbmNsdWRlIDxzeXMvcGFyYW0uaD4KICNp bmNsdWRlIDxzeXMvcXVldWUuaD4KSW5kZXg6IHN5cy9kZXYvdXNiL2NvbnRyb2xsZXIvdXNzODIw ZGNpLmMKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PQotLS0gc3lzL2Rldi91c2IvY29udHJvbGxlci91c3M4MjBkY2kuYwko cmV2aXNpb24gMjEwNTYwKQorKysgc3lzL2Rldi91c2IvY29udHJvbGxlci91c3M4MjBkY2kuYwko d29ya2luZyBjb3B5KQpAQCAtMzIsNyArMzIsNyBAQAogICogTk9URTogVGhlIGRhdGFzaGVldCBk b2VzIG5vdCBkb2N1bWVudCBldmVyeXRoaW5nLgogICovCiAKLSNpbmNsdWRlIDxzeXMvc3RkaW50 Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjaW5jbHVkZSA8c3lzL3N0ZGRlZi5oPgogI2luY2x1 ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUgPHN5cy9xdWV1ZS5oPgpJbmRleDogc3lzL2Rldi91 c2IvY29udHJvbGxlci91aGNpLmMKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lzL2Rldi91c2IvY29udHJvbGxl ci91aGNpLmMJKHJldmlzaW9uIDIxMDU2MCkKKysrIHN5cy9kZXYvdXNiL2NvbnRyb2xsZXIvdWhj aS5jCSh3b3JraW5nIGNvcHkpCkBAIC0zOCw3ICszOCw3IEBACiAgKiAgICAgICAgICAgICBmdHA6 Ly9kb3dubG9hZC5pbnRlbC5jb20vZGVzaWduL2ludGFyY2gvZGF0YXNodHMvMjkwNTYyMDEucGRm CiAgKi8KIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNp bmNsdWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8 c3lzL3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3VzYi9jb250cm9sbGVyL2VoY2lfaXhwNHh4LmMK PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PQotLS0gc3lzL2Rldi91c2IvY29udHJvbGxlci9laGNpX2l4cDR4eC5jCShyZXZp c2lvbiAyMTA1NjApCisrKyBzeXMvZGV2L3VzYi9jb250cm9sbGVyL2VoY2lfaXhwNHh4LmMJKHdv cmtpbmcgY29weSkKQEAgLTMxLDcgKzMxLDcgQEAKIAogI2luY2x1ZGUgIm9wdF9idXMuaCIKIAot I2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNsdWRlIDxz eXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8c3lzL3F1ZXVl Lmg+CkluZGV4OiBzeXMvZGV2L3VzYi91c2JfZXJyb3IuYwo9PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBzeXMvZGV2 L3VzYi91c2JfZXJyb3IuYwkocmV2aXNpb24gMjEwNTYwKQorKysgc3lzL2Rldi91c2IvdXNiX2Vy cm9yLmMJKHdvcmtpbmcgY29weSkKQEAgLTI0LDcgKzI0LDcgQEAKICAqIFNVQ0ggREFNQUdFLgog ICovCiAKLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjaW5j bHVkZSA8c3lzL3N0ZGRlZi5oPgogI2luY2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUgPHN5 cy9xdWV1ZS5oPgpJbmRleDogc3lzL2Rldi91c2IvdXNiX21idWYuYwo9PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBz eXMvZGV2L3VzYi91c2JfbWJ1Zi5jCShyZXZpc2lvbiAyMTA1NjApCisrKyBzeXMvZGV2L3VzYi91 c2JfbWJ1Zi5jCSh3b3JraW5nIGNvcHkpCkBAIC0yNCw3ICsyNCw3IEBACiAgKiBTVUNIIERBTUFH RS4KICAqLwogCi0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0ZGludC5oPgog I2luY2x1ZGUgPHN5cy9zdGRkZWYuaD4KICNpbmNsdWRlIDxzeXMvcGFyYW0uaD4KICNpbmNsdWRl IDxzeXMvcXVldWUuaD4KSW5kZXg6IHN5cy9kZXYvdXNiL3F1aXJrL3VzYl9xdWlyay5jCj09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT0KLS0tIHN5cy9kZXYvdXNiL3F1aXJrL3VzYl9xdWlyay5jCShyZXZpc2lvbiAyMTA1NjAp CisrKyBzeXMvZGV2L3VzYi9xdWlyay91c2JfcXVpcmsuYwkod29ya2luZyBjb3B5KQpAQCAtMjYs NyArMjYsNyBAQAogICogU1VDSCBEQU1BR0UuCiAgKi8KIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQu aD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNsdWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVk ZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8c3lzL3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3Vz Yi91c2JfZW5kaWFuLmgKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lzL2Rldi91c2IvdXNiX2VuZGlhbi5oCShy ZXZpc2lvbiAyMTA1NjApCisrKyBzeXMvZGV2L3VzYi91c2JfZW5kaWFuLmgJKHdvcmtpbmcgY29w eSkKQEAgLTI3LDcgKzI3LDcgQEAKICNpZm5kZWYgX1VTQl9FTkRJQU5fSF8KICNkZWZpbmUJX1VT Ql9FTkRJQU5fSF8KIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQu aD4KICNpbmNsdWRlIDxzeXMvZW5kaWFuLmg+CiAKIC8qCkluZGV4OiBzeXMvZGV2L3VzYi91c2Jf aGlkLmMKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PQotLS0gc3lzL2Rldi91c2IvdXNiX2hpZC5jCShyZXZpc2lvbiAyMTA1 NjApCisrKyBzeXMvZGV2L3VzYi91c2JfaGlkLmMJKHdvcmtpbmcgY29weSkKQEAgLTMzLDcgKzMz LDcgQEAKICAqIFBPU1NJQklMSVRZIE9GIFNVQ0ggREFNQUdFLgogICovCiAKLSNpbmNsdWRlIDxz eXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjaW5jbHVkZSA8c3lzL3N0ZGRlZi5o PgogI2luY2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUgPHN5cy9xdWV1ZS5oPgpJbmRleDog c3lzL2Rldi91c2IvaW5wdXQvdW1zLmMKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lzL2Rldi91c2IvaW5wdXQv dW1zLmMJKHJldmlzaW9uIDIxMDU2MCkKKysrIHN5cy9kZXYvdXNiL2lucHV0L3Vtcy5jCSh3b3Jr aW5nIGNvcHkpCkBAIC0zNSw3ICszNSw3IEBACiAgKiBISUQgc3BlYzogaHR0cDovL3d3dy51c2Iu b3JnL2RldmVsb3BlcnMvZGV2Y2xhc3NfZG9jcy9ISUQxXzExLnBkZgogICovCiAKLSNpbmNsdWRl IDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjaW5jbHVkZSA8c3lzL3N0ZGRl Zi5oPgogI2luY2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUgPHN5cy9xdWV1ZS5oPgpJbmRl eDogc3lzL2Rldi91c2IvaW5wdXQvdWtiZC5jCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIHN5cy9kZXYvdXNiL2lu cHV0L3VrYmQuYwkocmV2aXNpb24gMjEwNTYwKQorKysgc3lzL2Rldi91c2IvaW5wdXQvdWtiZC5j CSh3b3JraW5nIGNvcHkpCkBAIC00MSw3ICs0MSw3IEBACiAjaW5jbHVkZSAib3B0X2tiZC5oIgog I2luY2x1ZGUgIm9wdF91a2JkLmgiCiAKLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVk ZSA8c3RkaW50Lmg+CiAjaW5jbHVkZSA8c3lzL3N0ZGRlZi5oPgogI2luY2x1ZGUgPHN5cy9wYXJh bS5oPgogI2luY2x1ZGUgPHN5cy9xdWV1ZS5oPgpJbmRleDogc3lzL2Rldi91c2IvaW5wdXQvdWhp ZC5jCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT0KLS0tIHN5cy9kZXYvdXNiL2lucHV0L3VoaWQuYwkocmV2aXNpb24gMjEw NTYwKQorKysgc3lzL2Rldi91c2IvaW5wdXQvdWhpZC5jCSh3b3JraW5nIGNvcHkpCkBAIC00MSw3 ICs0MSw3IEBACiAgKiBISUQgc3BlYzogaHR0cDovL3d3dy51c2Iub3JnL2RldmVsb3BlcnMvZGV2 Y2xhc3NfZG9jcy9ISUQxXzExLnBkZgogICovCiAKLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+Cisj aW5jbHVkZSA8c3RkaW50Lmg+CiAjaW5jbHVkZSA8c3lzL3N0ZGRlZi5oPgogI2luY2x1ZGUgPHN5 cy9wYXJhbS5oPgogI2luY2x1ZGUgPHN5cy9xdWV1ZS5oPgpJbmRleDogc3lzL2Rldi91c2Ivc3Rv cmFnZS91cmlvLmMKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lzL2Rldi91c2Ivc3RvcmFnZS91cmlvLmMJKHJl dmlzaW9uIDIxMDU2MCkKKysrIHN5cy9kZXYvdXNiL3N0b3JhZ2UvdXJpby5jCSh3b3JraW5nIGNv cHkpCkBAIC00NCw3ICs0NCw3IEBACiAgKiAyMDAwLzIvMjQgIGZpcnN0IHZlcnNpb24uCiAgKi8K IAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNsdWRl IDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8c3lzL3F1 ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3VzYi9zdG9yYWdlL3VzdG9yYWdlX2ZzLmMKPT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PQotLS0gc3lzL2Rldi91c2Ivc3RvcmFnZS91c3RvcmFnZV9mcy5jCShyZXZpc2lvbiAyMTA1NjAp CisrKyBzeXMvZGV2L3VzYi9zdG9yYWdlL3VzdG9yYWdlX2ZzLmMJKHdvcmtpbmcgY29weSkKQEAg LTM2LDcgKzM2LDcgQEAKICAqIExpbnV4IFVTQiBnYWRnZXQgc3RhY2suCiAgKi8KIAotI2luY2x1 ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNsdWRlIDxzeXMvc3Rk ZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8c3lzL3F1ZXVlLmg+Cklu ZGV4OiBzeXMvZGV2L3VzYi9zdG9yYWdlL3VtYXNzLmMKPT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lzL2Rldi91 c2Ivc3RvcmFnZS91bWFzcy5jCShyZXZpc2lvbiAyMTA1NjApCisrKyBzeXMvZGV2L3VzYi9zdG9y YWdlL3VtYXNzLmMJKHdvcmtpbmcgY29weSkKQEAgLTEwMiw3ICsxMDIsNyBAQAogICogdW1hc3Nf Y2FtX2NiIGFnYWluIHRvIGNvbXBsZXRlIHRoZSBDQU0gY29tbWFuZC4KICAqLwogCi0jaW5jbHVk ZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0ZGludC5oPgogI2luY2x1ZGUgPHN5cy9zdGRk ZWYuaD4KICNpbmNsdWRlIDxzeXMvcGFyYW0uaD4KICNpbmNsdWRlIDxzeXMvcXVldWUuaD4KSW5k ZXg6IHN5cy9kZXYvdXNiL3VzYl9wYXJzZS5jCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIHN5cy9kZXYvdXNiL3Vz Yl9wYXJzZS5jCShyZXZpc2lvbiAyMTA1NjApCisrKyBzeXMvZGV2L3VzYi91c2JfcGFyc2UuYwko d29ya2luZyBjb3B5KQpAQCAtMjQsNyArMjQsNyBAQAogICogU1VDSCBEQU1BR0UuCiAgKi8KIAot I2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNsdWRlIDxz eXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8c3lzL3F1ZXVl Lmg+CkluZGV4OiBzeXMvZGV2L3VzYi91c2JfYnVzZG1hLmMKPT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lzL2Rl di91c2IvdXNiX2J1c2RtYS5jCShyZXZpc2lvbiAyMTA1NjApCisrKyBzeXMvZGV2L3VzYi91c2Jf YnVzZG1hLmMJKHdvcmtpbmcgY29weSkKQEAgLTI0LDcgKzI0LDcgQEAKICAqIFNVQ0ggREFNQUdF LgogICovCiAKLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAj aW5jbHVkZSA8c3lzL3N0ZGRlZi5oPgogI2luY2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUg PHN5cy9xdWV1ZS5oPgpJbmRleDogc3lzL2Rldi91c2IvdXNiX3V0aWwuYwo9PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0t LSBzeXMvZGV2L3VzYi91c2JfdXRpbC5jCShyZXZpc2lvbiAyMTA1NjApCisrKyBzeXMvZGV2L3Vz Yi91c2JfdXRpbC5jCSh3b3JraW5nIGNvcHkpCkBAIC0yNCw3ICsyNCw3IEBACiAgKiBTVUNIIERB TUFHRS4KICAqLwogCi0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0ZGludC5o PgogI2luY2x1ZGUgPHN5cy9zdGRkZWYuaD4KICNpbmNsdWRlIDxzeXMvcGFyYW0uaD4KICNpbmNs dWRlIDxzeXMvcXVldWUuaD4KSW5kZXg6IHN5cy9kZXYvdXNiL3VzYl9odWIuYwo9PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 Ci0tLSBzeXMvZGV2L3VzYi91c2JfaHViLmMJKHJldmlzaW9uIDIxMDU2MCkKKysrIHN5cy9kZXYv dXNiL3VzYl9odWIuYwkod29ya2luZyBjb3B5KQpAQCAtMzAsNyArMzAsNyBAQAogICogVVNCIHNw ZWM6IGh0dHA6Ly93d3cudXNiLm9yZy9kZXZlbG9wZXJzL2RvY3MvdXNic3BlYy56aXAgCiAgKi8K IAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNsdWRl IDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8c3lzL3F1 ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3VzYi91c2JfZGV2LmMKPT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lzL2Rl di91c2IvdXNiX2Rldi5jCShyZXZpc2lvbiAyMTA1NjApCisrKyBzeXMvZGV2L3VzYi91c2JfZGV2 LmMJKHdvcmtpbmcgY29weSkKQEAgLTI3LDcgKzI3LDcgQEAKICAqIHVzYl9kZXYuYyAtIEFuIGFi c3RyYWN0aW9uIGxheWVyIGZvciBjcmVhdGluZyBkZXZpY2VzIHVuZGVyIC9kZXYvLi4uCiAgKi8K IAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNsdWRl IDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8c3lzL3F1 ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3VzYi91c2JfdHJhbnNmZXIuYwo9PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBz eXMvZGV2L3VzYi91c2JfdHJhbnNmZXIuYwkocmV2aXNpb24gMjEwNTYwKQorKysgc3lzL2Rldi91 c2IvdXNiX3RyYW5zZmVyLmMJKHdvcmtpbmcgY29weSkKQEAgLTI0LDcgKzI0LDcgQEAKICAqIFNV Q0ggREFNQUdFLgogICovIAogCi0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0 ZGludC5oPgogI2luY2x1ZGUgPHN5cy9zdGRkZWYuaD4KICNpbmNsdWRlIDxzeXMvcGFyYW0uaD4K ICNpbmNsdWRlIDxzeXMvcXVldWUuaD4KSW5kZXg6IHN5cy9kZXYvdXNiL3VzYl9jb3JlLmMKPT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PQotLS0gc3lzL2Rldi91c2IvdXNiX2NvcmUuYwkocmV2aXNpb24gMjEwNTYwKQorKysg c3lzL2Rldi91c2IvdXNiX2NvcmUuYwkod29ya2luZyBjb3B5KQpAQCAtMzAsNyArMzAsNyBAQAog ICogaHR0cDovL3d3dy51c2Iub3JnL2RldmVsb3BlcnMvZGV2Y2xhc3NfZG9jcy8KICAqLwogCi0j aW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0ZGludC5oPgogI2luY2x1ZGUgPHN5 cy9zdGRkZWYuaD4KICNpbmNsdWRlIDxzeXMvcGFyYW0uaD4KICNpbmNsdWRlIDxzeXMvcXVldWUu aD4KSW5kZXg6IHN5cy9kZXYvdXNiL3VzYl9yZXF1ZXN0LmMKPT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lzL2Rl di91c2IvdXNiX3JlcXVlc3QuYwkocmV2aXNpb24gMjEwNTYwKQorKysgc3lzL2Rldi91c2IvdXNi X3JlcXVlc3QuYwkod29ya2luZyBjb3B5KQpAQCAtMjYsNyArMjYsNyBAQAogICogU1VDSCBEQU1B R0UuCiAgKi8gCiAKLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+ CiAjaW5jbHVkZSA8c3lzL3N0ZGRlZi5oPgogI2luY2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1 ZGUgPHN5cy9xdWV1ZS5oPgpJbmRleDogc3lzL2Rldi91c2IvbmV0L2lmX2t1ZS5jCj09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT0KLS0tIHN5cy9kZXYvdXNiL25ldC9pZl9rdWUuYwkocmV2aXNpb24gMjEwNTYwKQorKysgc3lz L2Rldi91c2IvbmV0L2lmX2t1ZS5jCSh3b3JraW5nIGNvcHkpCkBAIC02NSw3ICs2NSw3IEBACiAg KiB0aGUgZGV2ZWxvcG1lbnQgb2YgdGhpcyBkcml2ZXIuCiAgKi8KIAotI2luY2x1ZGUgPHN5cy9z dGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNsdWRlIDxzeXMvc3RkZGVmLmg+CiAj aW5jbHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8c3lzL3F1ZXVlLmg+CkluZGV4OiBzeXMv ZGV2L3VzYi9uZXQvaWZfcnVlLmMKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lzL2Rldi91c2IvbmV0L2lmX3J1 ZS5jCShyZXZpc2lvbiAyMTA1NjApCisrKyBzeXMvZGV2L3VzYi9uZXQvaWZfcnVlLmMJKHdvcmtp bmcgY29weSkKQEAgLTY1LDcgKzY1LDcgQEAKICAqIGZ0cDovL2Z0cC5yZWFsdGVrLmNvbS50dy9s YW5jYXJkL2RhdGFfc2hlZXQvODE1MC8uCiAgKi8KIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4K KyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNsdWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8 c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8c3lzL3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3VzYi9u ZXQvaWZfY2RjZS5jCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIHN5cy9kZXYvdXNiL25ldC9pZl9jZGNlLmMJKHJl dmlzaW9uIDIxMDU2MCkKKysrIHN5cy9kZXYvdXNiL25ldC9pZl9jZGNlLmMJKHdvcmtpbmcgY29w eSkKQEAgLTQ4LDcgKzQ4LDcgQEAKICNpbmNsdWRlIDxzeXMvY2RlZnMuaD4KIF9fRkJTRElEKCIk RnJlZUJTRCQiKTsKIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQu aD4KICNpbmNsdWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5j bHVkZSA8c3lzL3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3VzYi9uZXQvaWZfdWRhdi5jCj09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT0KLS0tIHN5cy9kZXYvdXNiL25ldC9pZl91ZGF2LmMJKHJldmlzaW9uIDIxMDU2MCkKKysr IHN5cy9kZXYvdXNiL25ldC9pZl91ZGF2LmMJKHdvcmtpbmcgY29weSkKQEAgLTQ2LDcgKzQ2LDcg QEAKICNpbmNsdWRlIDxzeXMvY2RlZnMuaD4KIF9fRkJTRElEKCIkRnJlZUJTRCQiKTsKIAotI2lu Y2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNsdWRlIDxzeXMv c3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8c3lzL3F1ZXVlLmg+ CkluZGV4OiBzeXMvZGV2L3VzYi9uZXQvdXNiX2V0aGVybmV0LmMKPT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lz L2Rldi91c2IvbmV0L3VzYl9ldGhlcm5ldC5jCShyZXZpc2lvbiAyMTA1NjApCisrKyBzeXMvZGV2 L3VzYi9uZXQvdXNiX2V0aGVybmV0LmMJKHdvcmtpbmcgY29weSkKQEAgLTI0LDcgKzI0LDcgQEAK ICAqIFNVQ0ggREFNQUdFLgogICovCiAKLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVk ZSA8c3RkaW50Lmg+CiAjaW5jbHVkZSA8c3lzL3N0ZGRlZi5oPgogI2luY2x1ZGUgPHN5cy9wYXJh bS5oPgogI2luY2x1ZGUgPHN5cy9xdWV1ZS5oPgpJbmRleDogc3lzL2Rldi91c2IvbmV0L2lmX2F1 ZS5jCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT0KLS0tIHN5cy9kZXYvdXNiL25ldC9pZl9hdWUuYwkocmV2aXNpb24gMjEw NTYwKQorKysgc3lzL2Rldi91c2IvbmV0L2lmX2F1ZS5jCSh3b3JraW5nIGNvcHkpCkBAIC02OCw3 ICs2OCw3IEBACiAgKiB0cmFuc2ZlcnMgYXJlIGRvbmUgdXNpbmcgdXNiZF90cmFuc2ZlcigpIGFu ZCBmcmllbmRzLgogICovCiAKLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3Rk aW50Lmg+CiAjaW5jbHVkZSA8c3lzL3N0ZGRlZi5oPgogI2luY2x1ZGUgPHN5cy9wYXJhbS5oPgog I2luY2x1ZGUgPHN5cy9xdWV1ZS5oPgpJbmRleDogc3lzL2Rldi91c2IvbmV0L2lmX2N1ZS5jCj09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT0KLS0tIHN5cy9kZXYvdXNiL25ldC9pZl9jdWUuYwkocmV2aXNpb24gMjEwNTYwKQor Kysgc3lzL2Rldi91c2IvbmV0L2lmX2N1ZS5jCSh3b3JraW5nIGNvcHkpCkBAIC01MSw3ICs1MSw3 IEBACiAgKiB0cmFuc2FjdGlvbiwgd2hpY2ggaGVscHMgcGVyZm9ybWFuY2UgYSBncmVhdCBkZWFs LgogICovCiAKLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAj aW5jbHVkZSA8c3lzL3N0ZGRlZi5oPgogI2luY2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUg PHN5cy9xdWV1ZS5oPgpJbmRleDogc3lzL2Rldi91c2IvbmV0L2lmX2F4ZS5jCj09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0K LS0tIHN5cy9kZXYvdXNiL25ldC9pZl9heGUuYwkocmV2aXNpb24gMjEwNTYwKQorKysgc3lzL2Rl di91c2IvbmV0L2lmX2F4ZS5jCSh3b3JraW5nIGNvcHkpCkBAIC03Niw3ICs3Niw3IEBACiAgKiBo dHRwOi8vd3d3LmFzaXguY29tLnR3L0Zyb290QXR0YWNoL2RhdGFzaGVldC9BWDg4NzcyX2RhdGFz aGVldF9SZXYxMC5wZGYKICAqLwogCi0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUg PHN0ZGludC5oPgogI2luY2x1ZGUgPHN5cy9zdGRkZWYuaD4KICNpbmNsdWRlIDxzeXMvcGFyYW0u aD4KICNpbmNsdWRlIDxzeXMvcXVldWUuaD4KSW5kZXg6IHN5cy9kZXYvdXNiL3VzYl9kZXZpY2Uu Ywo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09Ci0tLSBzeXMvZGV2L3VzYi91c2JfZGV2aWNlLmMJKHJldmlzaW9uIDIxMDU2 MCkKKysrIHN5cy9kZXYvdXNiL3VzYl9kZXZpY2UuYwkod29ya2luZyBjb3B5KQpAQCAtMjQsNyAr MjQsNyBAQAogICogU1VDSCBEQU1BR0UuCiAgKi8KIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4K KyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNsdWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8 c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8c3lzL3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3VzYi9t aXNjL3VmbS5jCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT0KLS0tIHN5cy9kZXYvdXNiL21pc2MvdWZtLmMJKHJldmlzaW9u IDIxMDU2MCkKKysrIHN5cy9kZXYvdXNiL21pc2MvdWZtLmMJKHdvcmtpbmcgY29weSkKQEAgLTMy LDcgKzMyLDcgQEAKIF9fRkJTRElEKCIkRnJlZUJTRCQiKTsKIAogCi0jaW5jbHVkZSA8c3lzL3N0 ZGludC5oPgorI2luY2x1ZGUgPHN0ZGludC5oPgogI2luY2x1ZGUgPHN5cy9zdGRkZWYuaD4KICNp bmNsdWRlIDxzeXMvcGFyYW0uaD4KICNpbmNsdWRlIDxzeXMvcXVldWUuaD4KSW5kZXg6IHN5cy9k ZXYvdXNiL21pc2MvdWRicC5jCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIHN5cy9kZXYvdXNiL21pc2MvdWRicC5j CShyZXZpc2lvbiAyMTA1NjApCisrKyBzeXMvZGV2L3VzYi9taXNjL3VkYnAuYwkod29ya2luZyBj b3B5KQpAQCAtNTcsNyArNTcsNyBAQAogICoKICAqLwogCi0jaW5jbHVkZSA8c3lzL3N0ZGludC5o PgorI2luY2x1ZGUgPHN0ZGludC5oPgogI2luY2x1ZGUgPHN5cy9zdGRkZWYuaD4KICNpbmNsdWRl IDxzeXMvcGFyYW0uaD4KICNpbmNsdWRlIDxzeXMvcXVldWUuaD4KSW5kZXg6IHN5cy9kZXYvdXNi L3VzYl9jb21wYXRfbGludXguYwo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBzeXMvZGV2L3VzYi91c2JfY29tcGF0 X2xpbnV4LmMJKHJldmlzaW9uIDIxMDU2MCkKKysrIHN5cy9kZXYvdXNiL3VzYl9jb21wYXRfbGlu dXguYwkod29ya2luZyBjb3B5KQpAQCAtMjUsNyArMjUsNyBAQAogICogU1VDSCBEQU1BR0UuCiAg Ki8KIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNs dWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8c3lz L3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3VzYi91c2JfaGFuZGxlX3JlcXVlc3QuYwo9PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09Ci0tLSBzeXMvZGV2L3VzYi91c2JfaGFuZGxlX3JlcXVlc3QuYwkocmV2aXNpb24gMjEwNTYw KQorKysgc3lzL2Rldi91c2IvdXNiX2hhbmRsZV9yZXF1ZXN0LmMJKHdvcmtpbmcgY29weSkKQEAg LTI0LDcgKzI0LDcgQEAKICAqIFNVQ0ggREFNQUdFLgogICovCiAKLSNpbmNsdWRlIDxzeXMvc3Rk aW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjaW5jbHVkZSA8c3lzL3N0ZGRlZi5oPgogI2lu Y2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUgPHN5cy9xdWV1ZS5oPgpJbmRleDogc3lzL2Rl di91c2IvdXNiX2xvb2t1cC5jCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIHN5cy9kZXYvdXNiL3VzYl9sb29rdXAu YwkocmV2aXNpb24gMjEwNTYwKQorKysgc3lzL2Rldi91c2IvdXNiX2xvb2t1cC5jCSh3b3JraW5n IGNvcHkpCkBAIC0yNCw3ICsyNCw3IEBACiAgKiBTVUNIIERBTUFHRS4KICAqLwogCi0jaW5jbHVk ZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0ZGludC5oPgogI2luY2x1ZGUgPHN5cy9zdGRk ZWYuaD4KICNpbmNsdWRlIDxzeXMvcGFyYW0uaD4KICNpbmNsdWRlIDxzeXMvcXVldWUuaD4KSW5k ZXg6IHN5cy9kZXYvdXNiL3VzYl9nZW5lcmljLmMKPT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lzL2Rldi91c2Iv dXNiX2dlbmVyaWMuYwkocmV2aXNpb24gMjEwNTYwKQorKysgc3lzL2Rldi91c2IvdXNiX2dlbmVy aWMuYwkod29ya2luZyBjb3B5KQpAQCAtMjQsNyArMjQsNyBAQAogICogU1VDSCBEQU1BR0UuCiAg Ki8KIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNs dWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8c3lz L3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3VzYi91c2JfcHJvY2Vzcy5jCj09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0t IHN5cy9kZXYvdXNiL3VzYl9wcm9jZXNzLmMJKHJldmlzaW9uIDIxMDU2MCkKKysrIHN5cy9kZXYv dXNiL3VzYl9wcm9jZXNzLmMJKHdvcmtpbmcgY29weSkKQEAgLTI2LDcgKzI2LDcgQEAKIAogI2Rl ZmluZQlVU0JfREVCVUdfVkFSIHVzYl9wcm9jX2RlYnVnCiAKLSNpbmNsdWRlIDxzeXMvc3RkaW50 Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjaW5jbHVkZSA8c3lzL3N0ZGRlZi5oPgogI2luY2x1 ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUgPHN5cy9xdWV1ZS5oPgpJbmRleDogc3lzL2Rldi91 c2IvdGVtcGxhdGUvdXNiX3RlbXBsYXRlX2NkY2UuYwo9PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBzeXMvZGV2L3Vz Yi90ZW1wbGF0ZS91c2JfdGVtcGxhdGVfY2RjZS5jCShyZXZpc2lvbiAyMTA1NjApCisrKyBzeXMv ZGV2L3VzYi90ZW1wbGF0ZS91c2JfdGVtcGxhdGVfY2RjZS5jCSh3b3JraW5nIGNvcHkpCkBAIC0z MSw3ICszMSw3IEBACiAgKiBUaGlzIGZpbGUgY29udGFpbnMgdGhlIFVTQiB0ZW1wbGF0ZXMgZm9y IGEgQ0RDIFVTQiBldGhlcm5ldCBkZXZpY2UuCiAgKi8KIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQu aD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNsdWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVk ZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8c3lzL3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3Vz Yi90ZW1wbGF0ZS91c2JfdGVtcGxhdGUuYwo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBzeXMvZGV2L3VzYi90ZW1w bGF0ZS91c2JfdGVtcGxhdGUuYwkocmV2aXNpb24gMjEwNTYwKQorKysgc3lzL2Rldi91c2IvdGVt cGxhdGUvdXNiX3RlbXBsYXRlLmMJKHdvcmtpbmcgY29weSkKQEAgLTI5LDcgKzI5LDcgQEAKICAq IFVTQiB0ZW1wbGF0ZXMuCiAgKi8KIAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRl IDxzdGRpbnQuaD4KICNpbmNsdWRlIDxzeXMvc3RkZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFt Lmg+CiAjaW5jbHVkZSA8c3lzL3F1ZXVlLmg+CkluZGV4OiBzeXMvZGV2L3VzYi90ZW1wbGF0ZS91 c2JfdGVtcGxhdGVfbXRwLmMKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lzL2Rldi91c2IvdGVtcGxhdGUvdXNi X3RlbXBsYXRlX210cC5jCShyZXZpc2lvbiAyMTA1NjApCisrKyBzeXMvZGV2L3VzYi90ZW1wbGF0 ZS91c2JfdGVtcGxhdGVfbXRwLmMJKHdvcmtpbmcgY29weSkKQEAgLTM4LDcgKzM4LDcgQEAKICAq IG9wZXJhdGluZyBzeXN0ZW0gdGhlIFZJRCBhbmQgUElEIG9mIHlvdXIgZGV2aWNlLgogICovCiAK LSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjaW5jbHVkZSA8 c3lzL3N0ZGRlZi5oPgogI2luY2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUgPHN5cy9xdWV1 ZS5oPgpJbmRleDogc3lzL2Rldi91c2IvdGVtcGxhdGUvdXNiX3RlbXBsYXRlX21zYy5jCj09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT0KLS0tIHN5cy9kZXYvdXNiL3RlbXBsYXRlL3VzYl90ZW1wbGF0ZV9tc2MuYwkocmV2aXNp b24gMjEwNTYwKQorKysgc3lzL2Rldi91c2IvdGVtcGxhdGUvdXNiX3RlbXBsYXRlX21zYy5jCSh3 b3JraW5nIGNvcHkpCkBAIC0zMSw3ICszMSw3IEBACiAgKiBUaGlzIGZpbGUgY29udGFpbnMgdGhl IFVTQiB0ZW1wbGF0ZXMgZm9yIGFuIFVTQiBNYXNzIFN0b3JhZ2UgRGV2aWNlLgogICovCiAKLSNp bmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjaW5jbHVkZSA8c3lz L3N0ZGRlZi5oPgogI2luY2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUgPHN5cy9xdWV1ZS5o PgpJbmRleDogc3lzL2Rldi91c2IvdXNiX21zY3Rlc3QuYwo9PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBzeXMvZGV2 L3VzYi91c2JfbXNjdGVzdC5jCShyZXZpc2lvbiAyMTA1NjApCisrKyBzeXMvZGV2L3VzYi91c2Jf bXNjdGVzdC5jCSh3b3JraW5nIGNvcHkpCkBAIC0zMiw3ICszMiw3IEBACiAgKiBtYXNzIHN0b3Jh Z2UgcXVpcmtzIGZvciBub3Qgc3VwcG9ydGVkIFNDU0kgY29tbWFuZHMhCiAgKi8KIAotI2luY2x1 ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNpbmNsdWRlIDxzeXMvc3Rk ZGVmLmg+CiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8c3lzL3F1ZXVlLmg+Cklu ZGV4OiBzeXMvZGV2L3VzYi91c2JfZHluYW1pYy5jCj09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIHN5cy9kZXYvdXNi L3VzYl9keW5hbWljLmMJKHJldmlzaW9uIDIxMDU2MCkKKysrIHN5cy9kZXYvdXNiL3VzYl9keW5h bWljLmMJKHdvcmtpbmcgY29weSkKQEAgLTI0LDcgKzI0LDcgQEAKICAqIFNVQ0ggREFNQUdFLgog ICovCiAKLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjaW5j bHVkZSA8c3lzL3N0ZGRlZi5oPgogI2luY2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUgPHN5 cy9xdWV1ZS5oPgpJbmRleDogc3lzL2Rldi9pc3AvaXNwX3BjaS5jCj09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIHN5 cy9kZXYvaXNwL2lzcF9wY2kuYwkocmV2aXNpb24gMjEwNTYwKQorKysgc3lzL2Rldi9pc3AvaXNw X3BjaS5jCSh3b3JraW5nIGNvcHkpCkBAIC0zNyw3ICszNyw3IEBACiAjaW5jbHVkZSA8c3lzL2xp bmtlci5oPgogI2luY2x1ZGUgPHN5cy9maXJtd2FyZS5oPgogI2luY2x1ZGUgPHN5cy9idXMuaD4K LSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjaW5jbHVkZSA8 ZGV2L3BjaS9wY2lyZWcuaD4KICNpbmNsdWRlIDxkZXYvcGNpL3BjaXZhci5oPgogI2luY2x1ZGUg PG1hY2hpbmUvYnVzLmg+CkluZGV4OiBzeXMvY29tcGF0L2xpbnV4L2xpbnV4X3RpbWUuYwo9PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09Ci0tLSBzeXMvY29tcGF0L2xpbnV4L2xpbnV4X3RpbWUuYwkocmV2aXNpb24gMjEwNTYw KQorKysgc3lzL2NvbXBhdC9saW51eC9saW51eF90aW1lLmMJKHdvcmtpbmcgY29weSkKQEAgLTQx LDcgKzQxLDcgQEAKICNpbmNsdWRlIDxzeXMvdWNyZWQuaD4KICNpbmNsdWRlIDxzeXMvbW91bnQu aD4KICNpbmNsdWRlIDxzeXMvc2lnbmFsLmg+Ci0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2lu Y2x1ZGUgPHN0ZGludC5oPgogI2luY2x1ZGUgPHN5cy9zeXNjYWxsc3Vici5oPgogI2luY2x1ZGUg PHN5cy9zeXNwcm90by5oPgogI2luY2x1ZGUgPHN5cy90aW1lLmg+CkluZGV4OiBzeXMvY29tcGF0 L2xpbnV4L2xpbnV4X2lvY3RsLmMKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lzL2NvbXBhdC9saW51eC9saW51 eF9pb2N0bC5jCShyZXZpc2lvbiAyMTA1NjApCisrKyBzeXMvY29tcGF0L2xpbnV4L2xpbnV4X2lv Y3RsLmMJKHdvcmtpbmcgY29weSkKQEAgLTU1LDcgKzU1LDcgQEAKICNpbmNsdWRlIDxzeXMvc29j a2V0Lmg+CiAjaW5jbHVkZSA8c3lzL3NvY2tpby5oPgogI2luY2x1ZGUgPHN5cy9zb3VuZGNhcmQu aD4KLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjaW5jbHVk ZSA8c3lzL3N4Lmg+CiAjaW5jbHVkZSA8c3lzL3R0eS5oPgogI2luY2x1ZGUgPHN5cy91aW8uaD4K SW5kZXg6IHN5cy9jb250cmliL2xpYmZkdC9saWJmZHRfZW52LmgKPT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lz L2NvbnRyaWIvbGliZmR0L2xpYmZkdF9lbnYuaAkocmV2aXNpb24gMjEwNTYwKQorKysgc3lzL2Nv bnRyaWIvbGliZmR0L2xpYmZkdF9lbnYuaAkod29ya2luZyBjb3B5KQpAQCAtNiw3ICs2LDcgQEAK ICNpbmNsdWRlIDxzeXMvcGFyYW0uaD4KICNpbmNsdWRlIDxzeXMvdHlwZXMuaD4KICNpbmNsdWRl IDxzeXMvc3lzdG0uaD4KLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50 Lmg+CiAjZWxzZQogI2luY2x1ZGUgPHN0ZGRlZi5oPgogI2luY2x1ZGUgPHN0ZGludC5oPgpJbmRl eDogc3lzL2NvbnRyaWIvbmdhdG0vbmV0bmF0bS9zYWFsL3NzY29wZGVmLmgKPT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQot LS0gc3lzL2NvbnRyaWIvbmdhdG0vbmV0bmF0bS9zYWFsL3NzY29wZGVmLmgJKHJldmlzaW9uIDIx MDU2MCkKKysrIHN5cy9jb250cmliL25nYXRtL25ldG5hdG0vc2FhbC9zc2NvcGRlZi5oCSh3b3Jr aW5nIGNvcHkpCkBAIC0zNiw3ICszNiw3IEBACiAKICNpbmNsdWRlIDxzeXMvdHlwZXMuaD4KICNp ZmRlZiBfS0VSTkVMCi0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUgPHN0ZGludC5o PgogI2Vsc2UKICNpbmNsdWRlIDxzdGRpbnQuaD4KICNlbmRpZgpJbmRleDogc3lzL2NvbnRyaWIv bmdhdG0vbmV0bmF0bS9zaWcvdW5pZGVmLmgKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lzL2NvbnRyaWIvbmdh dG0vbmV0bmF0bS9zaWcvdW5pZGVmLmgJKHJldmlzaW9uIDIxMDU2MCkKKysrIHN5cy9jb250cmli L25nYXRtL25ldG5hdG0vc2lnL3VuaWRlZi5oCSh3b3JraW5nIGNvcHkpCkBAIC0zNCw3ICszNCw3 IEBACiAjZGVmaW5lIF9BVE1fU0lHX1VOSURFRl9IXwogCiAjaWZkZWYgX0tFUk5FTAotI2luY2x1 ZGUgPHN5cy9zdGRpbnQuaD4KKyNpbmNsdWRlIDxzdGRpbnQuaD4KICNlbHNlCiAjaW5jbHVkZSA8 c3RkaW50Lmg+CiAjZW5kaWYKSW5kZXg6IHN5cy9jb250cmliL25nYXRtL25ldG5hdG0vbXNnL3Vu aV9oZHIuaAo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09Ci0tLSBzeXMvY29udHJpYi9uZ2F0bS9uZXRuYXRtL21zZy91bmlf aGRyLmgJKHJldmlzaW9uIDIxMDU2MCkKKysrIHN5cy9jb250cmliL25nYXRtL25ldG5hdG0vbXNn L3VuaV9oZHIuaAkod29ya2luZyBjb3B5KQpAQCAtMzMsNyArMzMsNyBAQAogCiAjaW5jbHVkZSA8 c3lzL3R5cGVzLmg+CiAjaWZkZWYgX0tFUk5FTAotI2luY2x1ZGUgPHN5cy9zdGRpbnQuaD4KKyNp bmNsdWRlIDxzdGRpbnQuaD4KICNlbHNlCiAjaW5jbHVkZSA8c3RkaW50Lmg+CiAjZW5kaWYKSW5k ZXg6IHN5cy9jb250cmliL25nYXRtL25ldG5hdG0vdW5pbXNnLmgKPT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lz L2NvbnRyaWIvbmdhdG0vbmV0bmF0bS91bmltc2cuaAkocmV2aXNpb24gMjEwNTYwKQorKysgc3lz L2NvbnRyaWIvbmdhdG0vbmV0bmF0bS91bmltc2cuaAkod29ya2luZyBjb3B5KQpAQCAtMzgsNyAr MzgsNyBAQAogI2lmZGVmIF9fRnJlZUJTRF9fCiAjaW5jbHVkZSA8c3lzL3N5c3RtLmg+CiAjZW5k aWYKLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+CiAjZWxzZQog I2luY2x1ZGUgPHN0cmluZy5oPgogI2luY2x1ZGUgPHN0ZGludC5oPgpJbmRleDogc3lzL2NkZGwv Y29udHJpYi9vcGVuc29sYXJpcy9jb21tb24vYXZsL2F2bC5jCj09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIHN5cy9j ZGRsL2NvbnRyaWIvb3BlbnNvbGFyaXMvY29tbW9uL2F2bC9hdmwuYwkocmV2aXNpb24gMjEwNTYw KQorKysgc3lzL2NkZGwvY29udHJpYi9vcGVuc29sYXJpcy9jb21tb24vYXZsL2F2bC5jCSh3b3Jr aW5nIGNvcHkpCkBAIC05Miw3ICs5Miw3IEBACiAKICNpbmNsdWRlIDxzeXMvdHlwZXMuaD4KICNp bmNsdWRlIDxzeXMvcGFyYW0uaD4KLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8 c3RkaW50Lmg+CiAjaW5jbHVkZSA8c3lzL2RlYnVnLmg+CiAjaW5jbHVkZSA8c3lzL2F2bC5oPgog CkluZGV4OiBzeXMvY2RkbC9jb250cmliL29wZW5zb2xhcmlzL3V0cy9jb21tb24vZnMvemZzL3N5 cy96ZnNfY29udGV4dC5oCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIHN5cy9jZGRsL2NvbnRyaWIvb3BlbnNvbGFy aXMvdXRzL2NvbW1vbi9mcy96ZnMvc3lzL3pmc19jb250ZXh0LmgJKHJldmlzaW9uIDIxMDU2MCkK KysrIHN5cy9jZGRsL2NvbnRyaWIvb3BlbnNvbGFyaXMvdXRzL2NvbW1vbi9mcy96ZnMvc3lzL3pm c19jb250ZXh0LmgJKHdvcmtpbmcgY29weSkKQEAgLTMzLDcgKzMzLDcgQEAKICNlbmRpZgogCiAj aW5jbHVkZSA8c3lzL3BhcmFtLmg+Ci0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgorI2luY2x1ZGUg PHN0ZGludC5oPgogI2luY2x1ZGUgPHN5cy9ub3RlLmg+CiAjaW5jbHVkZSA8c3lzL2tlcm5lbC5o PgogI2luY2x1ZGUgPHN5cy9kZWJ1Zy5oPgpJbmRleDogc3lzL2NkZGwvY29udHJpYi9vcGVuc29s YXJpcy91dHMvY29tbW9uL3N5cy9kdHJhY2UuaAo9PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBzeXMvY2RkbC9jb250 cmliL29wZW5zb2xhcmlzL3V0cy9jb21tb24vc3lzL2R0cmFjZS5oCShyZXZpc2lvbiAyMTA1NjAp CisrKyBzeXMvY2RkbC9jb250cmliL29wZW5zb2xhcmlzL3V0cy9jb21tb24vc3lzL2R0cmFjZS5o CSh3b3JraW5nIGNvcHkpCkBAIC02Myw3ICs2Myw3IEBACiAjaWYgZGVmaW5lZChzdW4pCiAjaW5j bHVkZSA8c3lzL2ludF9saW1pdHMuaD4KICNlbHNlCi0jaW5jbHVkZSA8c3lzL3N0ZGludC5oPgor I2luY2x1ZGUgPHN0ZGludC5oPgogI2VuZGlmCiAKIC8qCkluZGV4OiBzeXMvY2RkbC9jb21wYXQv b3BlbnNvbGFyaXMvc3lzL3R5cGVzLmgKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gc3lzL2NkZGwvY29tcGF0L29w ZW5zb2xhcmlzL3N5cy90eXBlcy5oCShyZXZpc2lvbiAyMTA1NjApCisrKyBzeXMvY2RkbC9jb21w YXQvb3BlbnNvbGFyaXMvc3lzL3R5cGVzLmgJKHdvcmtpbmcgY29weSkKQEAgLTMzLDcgKzMzLDcg QEAKICAqIFRoaXMgaXMgYSBiYWcgb2YgZGlydHkgaGFja3MgdG8ga2VlcCB0aGluZ3MgY29tcGls aW5nLgogICovCiAKLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CisjaW5jbHVkZSA8c3RkaW50Lmg+ CiAjaW5jbHVkZV9uZXh0IDxzeXMvdHlwZXMuaD4KIAogI2RlZmluZQlNQVhOQU1FTEVOCTI1NgpJ bmRleDogc3lzL2NkZGwvY29tcGF0L29wZW5zb2xhcmlzL3N5cy9wcm9jLmgKPT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQot LS0gc3lzL2NkZGwvY29tcGF0L29wZW5zb2xhcmlzL3N5cy9wcm9jLmgJKHJldmlzaW9uIDIxMDU2 MCkKKysrIHN5cy9jZGRsL2NvbXBhdC9vcGVuc29sYXJpcy9zeXMvcHJvYy5oCSh3b3JraW5nIGNv cHkpCkBAIC0zMiw3ICszMiw3IEBACiAjaW5jbHVkZSA8c3lzL3BhcmFtLmg+CiAjaW5jbHVkZSA8 c3lzL2t0aHJlYWQuaD4KICNpbmNsdWRlX25leHQgPHN5cy9wcm9jLmg+Ci0jaW5jbHVkZSA8c3lz L3N0ZGludC5oPgorI2luY2x1ZGUgPHN0ZGludC5oPgogI2luY2x1ZGUgPHN5cy9zbXAuaD4KICNp bmNsdWRlIDxzeXMvc2NoZWQuaD4KICNpbmNsdWRlIDxzeXMvbG9jay5oPgpJbmRleDogc3lzL3N5 cy9zeXN0bS5oCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT0KLS0tIHN5cy9zeXMvc3lzdG0uaAkocmV2aXNpb24gMjEwNTYw KQorKysgc3lzL3N5cy9zeXN0bS5oCSh3b3JraW5nIGNvcHkpCkBAIC00Myw3ICs0Myw3IEBACiAj aW5jbHVkZSA8c3lzL2NhbGxvdXQuaD4KICNpbmNsdWRlIDxzeXMvY2RlZnMuaD4KICNpbmNsdWRl IDxzeXMvcXVldWUuaD4KLSNpbmNsdWRlIDxzeXMvc3RkaW50Lmg+CQkvKiBmb3IgcGVvcGxlIHVz aW5nIHByaW50ZiBtYWlubHkgKi8KKyNpbmNsdWRlIDxzdGRpbnQuaD4JCS8qIGZvciBwZW9wbGUg dXNpbmcgcHJpbnRmIG1haW5seSAqLwogCiBleHRlcm4gaW50IGNvbGQ7CQkvKiBub256ZXJvIGlm IHdlIGFyZSBkb2luZyBhIGNvbGQgYm9vdCAqLwogZXh0ZXJuIGludCByZWJvb3Rpbmc7CQkvKiBi b290KCkgaGFzIGJlZW4gY2FsbGVkLiAqLwo= --0016e64c1dc2d98804048c7522bb-- From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 01:38:00 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 93A77106566B; Thu, 29 Jul 2010 01:38:00 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6A4F58FC15; Thu, 29 Jul 2010 01:38:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6T1c0sZ032685; Thu, 29 Jul 2010 01:38:00 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6T1c0wD032681; Thu, 29 Jul 2010 01:38:00 GMT (envelope-from linimon) Date: Thu, 29 Jul 2010 01:38:00 GMT Message-Id: <201007290138.o6T1c0wD032681@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-usb@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: usb/149039: [uhso] Binding problem with uhso X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 01:38:00 -0000 Old Synopsis: Binding problem with uhso New Synopsis: [uhso] Binding problem with uhso Responsible-Changed-From-To: freebsd-bugs->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jul 29 01:37:02 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=149039 From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 01:39:12 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A9729106566C; Thu, 29 Jul 2010 01:39:12 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7FF3C8FC16; Thu, 29 Jul 2010 01:39:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6T1dCRI032748; Thu, 29 Jul 2010 01:39:12 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6T1dCNV032744; Thu, 29 Jul 2010 01:39:12 GMT (envelope-from linimon) Date: Thu, 29 Jul 2010 01:39:12 GMT Message-Id: <201007290139.o6T1dCNV032744@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-rc@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: conf/149036: [rc.d] [patch] Mixed/misuse of AND-OR list operators in rc.d/ipmon X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 01:39:12 -0000 Synopsis: [rc.d] [patch] Mixed/misuse of AND-OR list operators in rc.d/ipmon Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jul 29 01:39:02 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=149036 From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 01:41:05 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B4EA01065672; Thu, 29 Jul 2010 01:41:05 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8B2018FC1A; Thu, 29 Jul 2010 01:41:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6T1f5Uq041961; Thu, 29 Jul 2010 01:41:05 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6T1f5oJ041955; Thu, 29 Jul 2010 01:41:05 GMT (envelope-from linimon) Date: Thu, 29 Jul 2010 01:41:05 GMT Message-Id: <201007290141.o6T1f5oJ041955@freefall.freebsd.org> To: tuco.xyz@gmail.com, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/149012: [headers] [patch] please replace '#include ' with '#include ' X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 01:41:05 -0000 Old Synopsis: [headers] [request] please replace '#include ' with '#include ' New Synopsis: [headers] [patch] please replace '#include ' with '#include ' State-Changed-From-To: suspended->open State-Changed-By: linimon State-Changed-When: Thu Jul 29 01:40:45 UTC 2010 State-Changed-Why: patch received. http://www.freebsd.org/cgi/query-pr.cgi?pr=149012 From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 02:50:08 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 75FAF106567A for ; Thu, 29 Jul 2010 02:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 497DB8FC27 for ; Thu, 29 Jul 2010 02:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6T2o8el000508 for ; Thu, 29 Jul 2010 02:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6T2o83B000507; Thu, 29 Jul 2010 02:50:08 GMT (envelope-from gnats) Date: Thu, 29 Jul 2010 02:50:08 GMT Message-Id: <201007290250.o6T2o83B000507@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Joe Landers Cc: Subject: Re: kern/148698: [panic] Panic at boot due to integer overflow computing top->cg_mask in smp_topo_none() when mp_ncpus == 32 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Joe Landers List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 02:50:08 -0000 The following reply was made to PR kern/148698; it has been noted by GNATS. From: Joe Landers To: "bug-followup@FreeBSD.org" , Joe Landers Cc: Subject: Re: kern/148698: [panic] Panic at boot due to integer overflow computing top->cg_mask in smp_topo_none() when mp_ncpus == 32 Date: Wed, 28 Jul 2010 19:26:19 -0700 We understand that > 32 CPUs isn't possible with the current code structure= . However, it is trivial to make the case of mp_ncpus =3D=3D 32 work. Assuming no error checking, simply change the computation of top->cg_mask f= rom: top->cg_mask =3D (1 << mp_ncpus) - 1; to: top->cg_mask =3D ~0U >> (32 - mp_ncpus); in subr_smp.c:smp_topo_none(). FreeBSD will then boot fine with 32 or fewer CPUs: ... FreeBSD/SMP: Multiprocessor System Detected: 32 CPUs FreeBSD/SMP: 32 package(s) x 1 core(s) cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 cpu2 (AP): APIC ID: 2 cpu3 (AP): APIC ID: 3 cpu4 (AP): APIC ID: 4 cpu5 (AP): APIC ID: 5 cpu6 (AP): APIC ID: 6 cpu7 (AP): APIC ID: 7 cpu8 (AP): APIC ID: 8 cpu9 (AP): APIC ID: 9 cpu10 (AP): APIC ID: 10 cpu11 (AP): APIC ID: 11 cpu12 (AP): APIC ID: 12 cpu13 (AP): APIC ID: 13 cpu14 (AP): APIC ID: 14 cpu15 (AP): APIC ID: 15 cpu16 (AP): APIC ID: 16 cpu17 (AP): APIC ID: 17 cpu18 (AP): APIC ID: 18 cpu19 (AP): APIC ID: 19 cpu20 (AP): APIC ID: 20 cpu21 (AP): APIC ID: 21 cpu22 (AP): APIC ID: 22 cpu23 (AP): APIC ID: 23 cpu24 (AP): APIC ID: 24 cpu25 (AP): APIC ID: 25 cpu26 (AP): APIC ID: 26 cpu27 (AP): APIC ID: 27 cpu28 (AP): APIC ID: 28 cpu29 (AP): APIC ID: 29 cpu30 (AP): APIC ID: 30 cpu31 (AP): APIC ID: 31 ioapic0: Changing APIC ID to 32 ... SMP: AP CPU #28 Launched! SMP: AP CPU #27 Launched! SMP: AP CPU #1 Launched! SMP: AP CPU #2 Launched! SMP: AP CPU #31 Launched! SMP: AP CPU #3 Launched! SMP: AP CPU #13 Launched! SMP: AP CPU #23 Launched! SMP: AP CPU #4 Launched! SMP: AP CPU #9 Launched! SMP: AP CPU #20 Launched! SMP: AP CPU #21 Launched! SMP: AP CPU #5 Launched! SMP: AP CPU #12 Launched! SMP: AP CPU #15 Launched! SMP: AP CPU #16 Launched! SMP: AP CPU #7 Launched! SMP: AP CPU #26 Launched! SMP: AP CPU #29 Launched! SMP: AP CPU #17 Launched! SMP: AP CPU #25 Launched! SMP: AP CPU #6 Launched! SMP: AP CPU #11 Launched! SMP: AP CPU #19 Launched! SMP: AP CPU #14 Launched! SMP: AP CPU #18 Launched! SMP: AP CPU #22 Launched! SMP: AP CPU #10 Launched! SMP: AP CPU #24 Launched! SMP: AP CPU #8 Launched! SMP: AP CPU #30 Launched! ... We verified this fix on both physical and virtual hardware. Thanks, Joe Landers jlanders@vmware.com From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 03:00:15 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B79DD106564A for ; Thu, 29 Jul 2010 03:00:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6D6D48FC19 for ; Thu, 29 Jul 2010 03:00:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6T30FjG009809 for ; Thu, 29 Jul 2010 03:00:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6T30FHp009808; Thu, 29 Jul 2010 03:00:15 GMT (envelope-from gnats) Resent-Date: Thu, 29 Jul 2010 03:00:15 GMT Resent-Message-Id: <201007290300.o6T30FHp009808@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Matthew N. Dodd" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B2BA1065675 for ; Thu, 29 Jul 2010 02:52:09 +0000 (UTC) (envelope-from mdodd@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6A0738FC15 for ; Thu, 29 Jul 2010 02:52:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6T2q9QC009623 for ; Thu, 29 Jul 2010 02:52:09 GMT (envelope-from mdodd@freefall.freebsd.org) Received: (from mdodd@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6T2q9lU009622; Thu, 29 Jul 2010 02:52:09 GMT (envelope-from mdodd) Message-Id: <201007290252.o6T2q9lU009622@freefall.freebsd.org> Date: Thu, 29 Jul 2010 02:52:09 GMT From: "Matthew N. Dodd" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: conf/149050: rcorder ``nojail'' too coarse for Jail+VNET X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Matthew N. Dodd" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 03:00:15 -0000 >Number: 149050 >Category: conf >Synopsis: rcorder ``nojail'' too coarse for Jail+VNET >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 Jul 29 03:00:15 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Matthew N. Dodd >Release: >Organization: >Environment: >Description: When using jail & vnet the init script KEYWORD ``nojail'' is not fine grained enough to control selection of startup scripts. >How-To-Repeat: >Fix: Patch exposes PR_VNET flag via sysctl 'security.jail.vnet' in the same manner as 'security.jail.jailed.' rc & rc.shutdown updated to emit 'nojailvnet' for jails without vnets. Select init scripts altered nojail->nojailvnet. >Release-Note: >Audit-Trail: >Unformatted: Release: FreeBSD 8.1-STABLE i386 >System: FreeBSD neo-sasami.jurai.net 8.1-STABLE FreeBSD 8.1-STABLE #7: Wed Jul 28 21:31:22 EDT 2010 root@neo-sasami.jurai.net:/usr/src/sys/i386/compile/DL380G3 i386 From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 03:03:14 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50535106564A; Thu, 29 Jul 2010 03:03:14 +0000 (UTC) (envelope-from mdodd@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 25E4B8FC0C; Thu, 29 Jul 2010 03:03:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6T33EDX019180; Thu, 29 Jul 2010 03:03:14 GMT (envelope-from mdodd@freefall.freebsd.org) Received: (from mdodd@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6T33ESw019176; Thu, 29 Jul 2010 03:03:14 GMT (envelope-from mdodd) Date: Thu, 29 Jul 2010 03:03:14 GMT Message-Id: <201007290303.o6T33ESw019176@freefall.freebsd.org> To: mdodd@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-jail@FreeBSD.org From: mdodd@FreeBSD.org Cc: Subject: Re: conf/149050: rcorder ``nojail'' too coarse for Jail+VNET X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 03:03:14 -0000 Synopsis: rcorder ``nojail'' too coarse for Jail+VNET Responsible-Changed-From-To: freebsd-bugs->freebsd-jail Responsible-Changed-By: mdodd Responsible-Changed-When: Thu Jul 29 03:01:17 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=149050 From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 03:20:02 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DF94E1065674 for ; Thu, 29 Jul 2010 03:20:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9FCA58FC12 for ; Thu, 29 Jul 2010 03:20:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6T3K2OK029998 for ; Thu, 29 Jul 2010 03:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6T3K2b8029997; Thu, 29 Jul 2010 03:20:02 GMT (envelope-from gnats) Resent-Date: Thu, 29 Jul 2010 03:20:02 GMT Resent-Message-Id: <201007290320.o6T3K2b8029997@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Steve Kargl Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 91FCB1065670 for ; Thu, 29 Jul 2010 03:15:14 +0000 (UTC) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by mx1.freebsd.org (Postfix) with ESMTP id 7591C8FC1A for ; Thu, 29 Jul 2010 03:15:14 +0000 (UTC) Received: from troutmask.apl.washington.edu (localhost.apl.washington.edu [127.0.0.1]) by troutmask.apl.washington.edu (8.14.4/8.14.4) with ESMTP id o6T3FEXx020267 for ; Wed, 28 Jul 2010 20:15:14 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.14.4/8.14.4/Submit) id o6T3FE78020263; Wed, 28 Jul 2010 20:15:14 -0700 (PDT) (envelope-from sgk) Message-Id: <201007290315.o6T3FE78020263@troutmask.apl.washington.edu> Date: Wed, 28 Jul 2010 20:15:14 -0700 (PDT) From: Steve Kargl To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: bin/149051: No doucment for clang or clang++ X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Steve Kargl List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 03:20:03 -0000 >Number: 149051 >Category: bin >Synopsis: No doucment for clang or clang++ >Confidential: yes >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jul 29 03:20:02 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Steve Kargl >Release: FreeBSD 9.0-CURRENT amd64 >Organization: apl-uw >Environment: System: FreeBSD troutmask.apl.washington.edu 9.0-CURRENT FreeBSD 9.0-CURRENT #1 r210126M: Thu Jul 15 12:13:53 PDT 2010 kargl@troutmask.apl.washington.edu:/usr/obj/usr/src/sys/SPEW amd64 >Description: laptop:kargl[218] locate clang.1 laptop:kargl[219] locate clang.info laptop:kargl[220] locate clang.html laptop:kargl[221] locate clang.doc There is no documentation for clang or clang++ installed during an installworld. Documentation is required to use these tools, and if the ultimate aim is to replace gcc, then documentation is a fundamental requirement. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 03:27:48 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7BEA9106566C; Thu, 29 Jul 2010 03:27:48 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 526628FC13; Thu, 29 Jul 2010 03:27:48 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6T3Rm4h039247; Thu, 29 Jul 2010 03:27:48 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6T3Rmmi039243; Thu, 29 Jul 2010 03:27:48 GMT (envelope-from linimon) Date: Thu, 29 Jul 2010 03:27:48 GMT Message-Id: <201007290327.o6T3Rmmi039243@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-doc@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: docs/149051: [request] No document for clang or clang++ X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 03:27:48 -0000 Old Synopsis: No doucment for clang or clang++ New Synopsis: [request] No document for clang or clang++ Responsible-Changed-From-To: freebsd-bugs->freebsd-doc Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jul 29 03:27:22 UTC 2010 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=149051 From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 06:06:15 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0BA6F1065676; Thu, 29 Jul 2010 06:06:15 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D64EC8FC12; Thu, 29 Jul 2010 06:06:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6T66E8O098858; Thu, 29 Jul 2010 06:06:14 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6T66EB8098854; Thu, 29 Jul 2010 06:06:14 GMT (envelope-from linimon) Date: Thu, 29 Jul 2010 06:06:14 GMT Message-Id: <201007290606.o6T66EB8098854@freefall.freebsd.org> To: drsweetlips@gmail.com, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/149052: Re: kern/148112, follow up X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 06:06:15 -0000 Old Synopsis: pr:kern/148112, follow up New Synopsis: Re: kern/148112, follow up State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Thu Jul 29 06:05:10 UTC 2010 State-Changed-Why: Misfiled followup to kern/148112; content migrated. Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jul 29 06:05:10 UTC 2010 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=149052 From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 08:20:10 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1C3A61065675 for ; Thu, 29 Jul 2010 08:20:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D0F198FC25 for ; Thu, 29 Jul 2010 08:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6T8K9bC055020 for ; Thu, 29 Jul 2010 08:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6T8K9qm055019; Thu, 29 Jul 2010 08:20:09 GMT (envelope-from gnats) Resent-Date: Thu, 29 Jul 2010 08:20:09 GMT Resent-Message-Id: <201007290820.o6T8K9qm055019@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alexey A Bukreev Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 412611065686 for ; Thu, 29 Jul 2010 08:19:53 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 2486F8FC19 for ; Thu, 29 Jul 2010 08:19:53 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6T8JqJ5028208 for ; Thu, 29 Jul 2010 08:19:52 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6T8Jq4V028207; Thu, 29 Jul 2010 08:19:52 GMT (envelope-from nobody) Message-Id: <201007290819.o6T8Jq4V028207@www.freebsd.org> Date: Thu, 29 Jul 2010 08:19:52 GMT From: Alexey A Bukreev To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/149058: ASUS WL-167g doesn't work in 8.1 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 08:20:10 -0000 >Number: 149058 >Category: misc >Synopsis: ASUS WL-167g doesn't work in 8.1 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jul 29 08:20:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Alexey A Bukreev >Release: FreeBSD 8.1-RELEASE >Organization: at Home :) >Environment: FreeBSD 8.1-RELEASE #0: Wed Jul 28 20:58:59 UTC 2010 (Now I can't do uname -a) >Description: Hello! This Wi-Fi card works correctly in 6.4 & 7.3 on the same computer. Steps: 1. I installed FreeBSD 8.1-RELEASE. 2. Wrote in rc.conf: ifconfig_ural0="inet 172.30.0.11 netmask 255.255.0.0 ssid lepishome wepmode off channel 2 media OFDM/54Mbps mediaopt hostap up 3. Reboot. At this moment in 7.3 Wi-Fi card starts work correctly - as a Wi-Fi access point. In 8.1 nothing happens. 'ural0' hasn't IP-address or any settings. I wrote in console 'ifconfig ural0 172.30.0.11 netmask 255.255.0.0 up' - address and netmask successfully assigned to ural0. But LED on it doesn't blink. I wrote in console 'ifconfig ural0 ssid lepishome' and get message "ifconfig: SIOCS80211: Invalid argument" in this console and message "ural0: discard raw packet" in 1st console. "http://fixunix.com/freebsd/541408-ifconfig-siocs80211-invalid-argument.html" didn't help me. I tried to update kernel source code and recompile kernel — the same result. There is no info about "discard raw packet" in Internet, except source codes of "head/sys/net80211/ieee80211.c". My dmesg: Jul 28 23:05:42 lepis syslogd: kernel boot file is /boot/kernel/kernel Jul 28 23:05:42 lepis kernel: Copyright (c) 1992-2010 The FreeBSD Project. Jul 28 23:05:42 lepis kernel: Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 Jul 28 23:05:42 lepis kernel: The Regents of the University of California. All rights reserved. Jul 28 23:05:42 lepis kernel: FreeBSD is a registered trademark of The FreeBSD Foundation. Jul 28 23:05:42 lepis kernel: FreeBSD 8.1-RELEASE #0: Wed Jul 28 20:58:59 UTC 2010 Jul 28 23:05:42 lepis kernel: lepis@:/usr/obj/usr/src/sys/lepis i386 Jul 28 23:05:42 lepis kernel: module_register: module if_bridge already exists! Jul 28 23:05:42 lepis kernel: Module if_bridge failed to register: 17 Jul 28 23:05:42 lepis kernel: Timecounter "i8254" frequency 1193182 Hz quality 0 Jul 28 23:05:42 lepis kernel: CPU: Pentium(R) Dual-Core CPU E5300 @ 2.60GHz (2621.49-MHz 686-class CPU) Jul 28 23:05:42 lepis kernel: Origin = "GenuineIntel" Id = 0x1067a Family = 6 Model = 17 Stepping = 10 Jul 28 23:05:42 lepis kernel: Features=0xbfebfbff Jul 28 23:05:42 lepis kernel: Features2=0x400e3bd Jul 28 23:05:42 lepis kernel: AMD Features=0x20100000 Jul 28 23:05:42 lepis kernel: AMD Features2=0x1 Jul 28 23:05:42 lepis kernel: TSC: P-state invariant Jul 28 23:05:42 lepis kernel: real memory = 2147483648 (2048 MB) Jul 28 23:05:42 lepis kernel: avail memory = 2055565312 (1960 MB) Jul 28 23:05:42 lepis kernel: ACPI APIC Table: Jul 28 23:05:42 lepis kernel: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs Jul 28 23:05:42 lepis kernel: FreeBSD/SMP: 1 package(s) x 2 core(s) Jul 28 23:05:42 lepis kernel: cpu0 (BSP): APIC ID: 0 Jul 28 23:05:42 lepis kernel: cpu1 (AP): APIC ID: 1 Jul 28 23:05:42 lepis kernel: ioapic0 irqs 0-23 on motherboard Jul 28 23:05:42 lepis kernel: kbd1 at kbdmux0 Jul 28 23:05:42 lepis kernel: acpi0: on motherboard Jul 28 23:05:42 lepis kernel: acpi0: [ITHREAD] Jul 28 23:05:42 lepis kernel: acpi0: Power Button (fixed) Jul 28 23:05:42 lepis kernel: acpi0: reservation of fed1c000, 4000 (3) failed Jul 28 23:05:42 lepis kernel: acpi0: reservation of fed20000, 70000 (3) failed Jul 28 23:05:42 lepis kernel: acpi0: reservation of ffc00000, 300000 (3) failed Jul 28 23:05:42 lepis kernel: acpi0: reservation of fec00000, 1000 (3) failed Jul 28 23:05:42 lepis kernel: acpi0: reservation of fee00000, 1000 (3) failed Jul 28 23:05:42 lepis kernel: acpi0: reservation of f0000000, 4000000 (3) failed Jul 28 23:05:42 lepis kernel: acpi0: reservation of 0, a0000 (3) failed Jul 28 23:05:42 lepis kernel: acpi0: reservation of 100000, 7dd00000 (3) failed Jul 28 23:05:42 lepis kernel: Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 Jul 28 23:05:42 lepis kernel: acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0 Jul 28 23:05:42 lepis kernel: cpu0: on acpi0 Jul 28 23:05:42 lepis kernel: ACPI Warning: Incorrect checksum in table [OEMB] - 0x27, should be 0x22 (20100331/tbutils-354) Jul 28 23:05:42 lepis kernel: cpu1: on acpi0 Jul 28 23:05:42 lepis kernel: acpi_hpet0: iomem 0xfed00000-0xfed003ff on acpi0 Jul 28 23:05:42 lepis kernel: Timecounter "HPET" frequency 14318180 Hz quality 900 Jul 28 23:05:42 lepis kernel: pcib0: port 0xcf8-0xcff on acpi0 Jul 28 23:05:42 lepis kernel: pci0: on pcib0 Jul 28 23:05:42 lepis kernel: vgapci0: port 0xcc00-0xcc07 mem 0xfe400000-0xfe7fffff,0xe0000000-0xefffffff irq 16 at device 2.0 on pci0 Jul 28 23:05:42 lepis kernel: agp0: on vgapci0 Jul 28 23:05:42 lepis kernel: agp0: detected 32764k stolen memory Jul 28 23:05:42 lepis kernel: agp0: aperture size is 256M Jul 28 23:05:42 lepis kernel: pci0: at device 27.0 (no driver attached) Jul 28 23:05:42 lepis kernel: pcib1: irq 16 at device 28.0 on pci0 Jul 28 23:05:42 lepis kernel: pci2: on pcib1 Jul 28 23:05:42 lepis kernel: pcib2: irq 17 at device 28.1 on pci0 Jul 28 23:05:42 lepis kernel: pci1: on pcib2 Jul 28 23:05:42 lepis kernel: ale0: port 0xdc00-0xdc7f mem 0xfeac0000-0xfeafffff irq 17 at device 0.0 on pci1 Jul 28 23:05:42 lepis kernel: ale0: 960 Tx FIFO, 1024 Rx FIFO Jul 28 23:05:42 lepis kernel: ale0: Using 1 MSI messages. Jul 28 23:05:42 lepis kernel: miibus0: on ale0 Jul 28 23:05:42 lepis kernel: atphy0: PHY 0 on miibus0 Jul 28 23:05:42 lepis kernel: atphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT-FDX, auto Jul 28 23:05:42 lepis kernel: ale0: Ethernet address: 90:e6:ba:cb:2c:7b Jul 28 23:05:42 lepis kernel: ale0: [FILTER] Jul 28 23:05:42 lepis kernel: uhci0: port 0xc400-0xc41f irq 23 at device 29.0 on pci0 Jul 28 23:05:42 lepis kernel: uhci0: [ITHREAD] Jul 28 23:05:42 lepis kernel: uhci0: LegSup = 0x2f00 Jul 28 23:05:42 lepis kernel: usbus0: on uhci0 Jul 28 23:05:42 lepis kernel: uhci1: port 0xc480-0xc49f irq 19 at device 29.1 on pci0 Jul 28 23:05:42 lepis kernel: uhci1: [ITHREAD] Jul 28 23:05:42 lepis kernel: uhci1: LegSup = 0x2f00 Jul 28 23:05:42 lepis kernel: usbus1: on uhci1 Jul 28 23:05:42 lepis kernel: uhci2: port 0xc800-0xc81f irq 18 at device 29.2 on pci0 Jul 28 23:05:42 lepis kernel: uhci2: [ITHREAD] Jul 28 23:05:42 lepis kernel: uhci2: LegSup = 0x2f00 Jul 28 23:05:42 lepis kernel: usbus2: on uhci2 Jul 28 23:05:42 lepis kernel: uhci3: port 0xc880-0xc89f irq 16 at device 29.3 on pci0 Jul 28 23:05:42 lepis kernel: uhci3: [ITHREAD] Jul 28 23:05:42 lepis kernel: uhci3: LegSup = 0x2f00 Jul 28 23:05:42 lepis kernel: usbus3: on uhci3 Jul 28 23:05:42 lepis kernel: ehci0: mem 0xfe9f7c00-0xfe9f7fff irq 23 at device 29.7 on pci0 Jul 28 23:05:42 lepis kernel: ehci0: [ITHREAD] Jul 28 23:05:42 lepis kernel: usbus4: EHCI version 1.0 Jul 28 23:05:42 lepis kernel: usbus4: on ehci0 Jul 28 23:05:42 lepis kernel: pcib3: at device 30.0 on pci0 Jul 28 23:05:42 lepis kernel: pci3: on pcib3 Jul 28 23:05:42 lepis kernel: rl0: port 0xe800-0xe8ff mem 0xfebffc00-0xfebffcff irq 19 at device 0.0 on pci3 Jul 28 23:05:42 lepis kernel: miibus1: on rl0 Jul 28 23:05:42 lepis kernel: rlphy0: PHY 0 on miibus1 Jul 28 23:05:42 lepis kernel: rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto Jul 28 23:05:42 lepis kernel: rl0: Ethernet address: 00:50:ba:5c:b0:b6 Jul 28 23:05:42 lepis kernel: rl0: [ITHREAD] Jul 28 23:05:42 lepis kernel: isab0: at device 31.0 on pci0 Jul 28 23:05:42 lepis kernel: isa0: on isab0 Jul 28 23:05:42 lepis kernel: atapci0: port 0xb480-0xb487,0xb400-0xb403,0x8f0-0x8f7,0x8f8-0x8fb,0xac00-0xac0f irq 18 at device 31.1 on pci0 Jul 28 23:05:42 lepis kernel: atapci0: [ITHREAD] Jul 28 23:05:42 lepis kernel: ata2: on atapci0 Jul 28 23:05:42 lepis kernel: ata2: [ITHREAD] Jul 28 23:05:42 lepis kernel: atapci1: port 0xc080-0xc087,0xc000-0xc003,0xbc00-0xbc07,0xb880-0xb883,0xb800-0xb80f irq 22 at device 31.2 on pci0 Jul 28 23:05:42 lepis kernel: atapci1: [ITHREAD] Jul 28 23:05:42 lepis kernel: ata3: on atapci1 Jul 28 23:05:42 lepis kernel: ata3: [ITHREAD] Jul 28 23:05:42 lepis kernel: ata4: on atapci1 Jul 28 23:05:42 lepis kernel: ata4: [ITHREAD] Jul 28 23:05:42 lepis kernel: acpi_button0: on acpi0 Jul 28 23:05:42 lepis kernel: atrtc0: port 0x70-0x71 irq 8 on acpi0 Jul 28 23:05:42 lepis kernel: ppc0: port 0x378-0x37f,0x778-0x77f irq 7 drq 3 on acpi0 Jul 28 23:05:42 lepis kernel: ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode Jul 28 23:05:42 lepis kernel: ppc0: FIFO with 16/16/9 bytes threshold Jul 28 23:05:42 lepis kernel: ppc0: [ITHREAD] Jul 28 23:05:42 lepis kernel: ppbus0: on ppc0 Jul 28 23:05:42 lepis kernel: plip0: on ppbus0 Jul 28 23:05:42 lepis kernel: plip0: [ITHREAD] Jul 28 23:05:42 lepis kernel: lpt0: on ppbus0 Jul 28 23:05:42 lepis kernel: lpt0: [ITHREAD] Jul 28 23:05:42 lepis kernel: lpt0: Interrupt-driven port Jul 28 23:05:42 lepis kernel: ppi0: on ppbus0 Jul 28 23:05:42 lepis kernel: uart0: <16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 Jul 28 23:05:42 lepis kernel: uart0: [FILTER] Jul 28 23:05:42 lepis kernel: atkbdc0: port 0x60,0x64 irq 1 on acpi0 Jul 28 23:05:42 lepis kernel: atkbd0: irq 1 on atkbdc0 Jul 28 23:05:42 lepis kernel: kbd0 at atkbd0 Jul 28 23:05:42 lepis kernel: atkbd0: [GIANT-LOCKED] Jul 28 23:05:42 lepis kernel: atkbd0: [ITHREAD] Jul 28 23:05:42 lepis kernel: pmtimer0 on isa0 Jul 28 23:05:42 lepis kernel: sc0: at flags 0x100 on isa0 Jul 28 23:05:42 lepis kernel: sc0: VGA <16 virtual consoles, flags=0x300> Jul 28 23:05:42 lepis kernel: vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Jul 28 23:05:42 lepis kernel: ata0 at port 0x1f0-0x1f7,0x3f6 irq 14 on isa0 Jul 28 23:05:42 lepis kernel: ata0: [ITHREAD] Jul 28 23:05:42 lepis kernel: ata1 at port 0x170-0x177,0x376 irq 15 on isa0 Jul 28 23:05:42 lepis kernel: ata1: [ITHREAD] Jul 28 23:05:42 lepis kernel: est0: on cpu0 Jul 28 23:05:42 lepis kernel: p4tcc0: on cpu0 Jul 28 23:05:42 lepis kernel: est1: on cpu1 Jul 28 23:05:42 lepis kernel: p4tcc1: on cpu1 Jul 28 23:05:42 lepis kernel: Timecounters tick every 1.000 msec Jul 28 23:05:42 lepis kernel: ipfw2 (+ipv6) initialized, divert enabled, nat loadable, rule-based forwarding enabled, default to accept, logging disabled Jul 28 23:05:42 lepis kernel: load_dn_sched dn_sched FIFO loaded Jul 28 23:05:42 lepis kernel: load_dn_sched dn_sched PRIO loaded Jul 28 23:05:42 lepis kernel: load_dn_sched dn_sched QFQ loaded Jul 28 23:05:42 lepis kernel: load_dn_sched dn_sched RR loaded Jul 28 23:05:42 lepis kernel: load_dn_sched dn_sched WF2Q+ loaded Jul 28 23:05:42 lepis kernel: usbus0: 12Mbps Full Speed USB v1.0 Jul 28 23:05:42 lepis kernel: usbus1: 12Mbps Full Speed USB v1.0 Jul 28 23:05:42 lepis kernel: usbus2: 12Mbps Full Speed USB v1.0 Jul 28 23:05:42 lepis kernel: usbus3: 12Mbps Full Speed USB v1.0 Jul 28 23:05:42 lepis kernel: usbus4: 480Mbps High Speed USB v2.0 Jul 28 23:05:42 lepis kernel: ad4: 38166MB at ata2-master UDMA100 Jul 28 23:05:42 lepis kernel: ugen0.1: at usbus0 Jul 28 23:05:42 lepis kernel: uhub0: on usbus0 Jul 28 23:05:42 lepis kernel: ugen1.1: at usbus1 Jul 28 23:05:42 lepis kernel: uhub1: on usbus1 Jul 28 23:05:42 lepis kernel: ugen2.1: at usbus2 Jul 28 23:05:42 lepis kernel: uhub2: on usbus2 Jul 28 23:05:42 lepis kernel: ugen3.1: at usbus3 Jul 28 23:05:42 lepis kernel: uhub3: on usbus3 Jul 28 23:05:42 lepis kernel: ugen4.1: at usbus4 Jul 28 23:05:42 lepis kernel: uhub4: on usbus4 Jul 28 23:05:42 lepis kernel: ad9: 76318MB at ata4-slave UDMA100 SATA Jul 28 23:05:42 lepis kernel: SMP: AP CPU #1 Launched! Jul 28 23:05:42 lepis kernel: GEOM: ad4s1: geometry does not match label (255h,63s != 16h,63s). Jul 28 23:05:42 lepis kernel: Root mount waiting for: usbus4 usbus3 usbus2 usbus1 usbus0 Jul 28 23:05:42 lepis kernel: uhub0: 2 ports with 2 removable, self powered Jul 28 23:05:42 lepis kernel: uhub1: 2 ports with 2 removable, self powered Jul 28 23:05:42 lepis kernel: uhub2: 2 ports with 2 removable, self powered Jul 28 23:05:42 lepis kernel: uhub3: 2 ports with 2 removable, self powered Jul 28 23:05:42 lepis kernel: Root mount waiting for: usbus4 Jul 28 23:05:42 lepis last message repeated 2 times Jul 28 23:05:42 lepis kernel: uhub4: 8 ports with 8 removable, self powered Jul 28 23:05:42 lepis kernel: Root mount waiting for: usbus4 Jul 28 23:05:42 lepis kernel: ugen4.2: at usbus4 Jul 28 23:05:42 lepis kernel: ural0: on usbus4 Jul 28 23:05:42 lepis kernel: ural0: MAC/BBP RT2570 (rev 0x05), RF RT2526 Jul 28 23:05:42 lepis kernel: Trying to mount root from ufs:/dev/ad9s1a Jul 28 23:05:43 lepis kernel: rl0: link state changed to UP Jul 28 23:05:57 lepis login: ROOT LOGIN (root) ON ttyv7 Jul 28 23:06:56 lepis login: ROOT LOGIN (root) ON ttyv6 Jul 28 23:15:11 lepis login: ROOT LOGIN (root) ON ttyv6 Jul 28 23:48:17 lepis kernel: ural0: discard raw packet Jul 28 23:55:36 lepis reboot: rebooted by root Jul 28 23:55:36 lepis syslogd: exiting on signal 15 Thanks, Alexey >How-To-Repeat: 1. Install FreeBSD 8.1 2. Attach ASUS WL-167g 3. ifconfig ural0 172.30.0.11 netmask 255.255.0.0 up ssid lepishome >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 09:30:08 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B3641065676 for ; Thu, 29 Jul 2010 09:30:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3EBCA8FC13 for ; Thu, 29 Jul 2010 09:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6T9U8dV024595 for ; Thu, 29 Jul 2010 09:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6T9U8MB024594; Thu, 29 Jul 2010 09:30:08 GMT (envelope-from gnats) Resent-Date: Thu, 29 Jul 2010 09:30:08 GMT Resent-Message-Id: <201007290930.o6T9U8MB024594@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Petr Lampa` Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 48CE8106566B for ; Thu, 29 Jul 2010 09:27:52 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 385AC8FC25 for ; Thu, 29 Jul 2010 09:27:52 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6T9RpFB000245 for ; Thu, 29 Jul 2010 09:27:51 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6T9Rp89000244; Thu, 29 Jul 2010 09:27:51 GMT (envelope-from nobody) Message-Id: <201007290927.o6T9Rp89000244@www.freebsd.org> Date: Thu, 29 Jul 2010 09:27:51 GMT From: Petr Lampa` To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/149059: regression in /etc/rc.subr X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 09:30:08 -0000 >Number: 149059 >Category: misc >Synopsis: regression in /etc/rc.subr >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 Jul 29 09:30:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Petr Lampa` >Release: STABLE-8.1 >Organization: BUT FIT >Environment: FreeBSD XXX 8.1-STABLE FreeBSD 8.1-STABLE #2: Wed Jul 28 15:00:35 CEST 2010 root@XXX:/usr/src/sys/i386/compile/XXX i386 >Description: The last change in /etc/rc.subr broke sendmail startup with sendmail_enable="NONE". We start sendmail in our local script, after this change, MTA daemon from /etc/rc.d/sendmail is started, too. We don't want two sendmail daemons in one system :-( See http://www.freebsd.org/cgi/cvsweb.cgi/src/etc/rc.subr.diff?r1=1.88.2.10;r2=1.88.2.11;f=h In our case $rc_pid contains pid of locally started sendmail, so this case in run_rc_command is now false: if [ -n "${rcvar}" -a "$rc_arg" != "rcvar" -a -z "${rc_pid}" ]; if ! checkyesno ${rcvar}; then if [ -n "${rc_quiet}" ]; then return 0 fi fi fi The checkyesno is not executed and the script doesn't return through return 0 as it was returning before this change. I really don't understand why the test for rc_pid was added here and the CVS comment doesn't help too much: SVN rev 207797 on 2010-05-08 21:18:22Z by dougb MFC r206686: Make 'stop' work even if ${name}_enable is not set. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 12:16:41 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CFC0F1065689; Thu, 29 Jul 2010 12:16:41 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A71A98FC0A; Thu, 29 Jul 2010 12:16:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6TCGfjk094761; Thu, 29 Jul 2010 12:16:41 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6TCGfmE094757; Thu, 29 Jul 2010 12:16:41 GMT (envelope-from linimon) Date: Thu, 29 Jul 2010 12:16:41 GMT Message-Id: <201007291216.o6TCGfmE094757@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, dougb@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: conf/149059: regression in /etc/rc.subr X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 12:16:41 -0000 Synopsis: regression in /etc/rc.subr Responsible-Changed-From-To: freebsd-bugs->dougb Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jul 29 12:15:50 UTC 2010 Responsible-Changed-Why: Over to committer of the change in question, for evaluation. http://www.freebsd.org/cgi/query-pr.cgi?pr=149059 From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 12:17:59 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 06CB81065676; Thu, 29 Jul 2010 12:17:59 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D1AC68FC08; Thu, 29 Jul 2010 12:17:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6TCHwT7094839; Thu, 29 Jul 2010 12:17:58 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6TCHwWo094835; Thu, 29 Jul 2010 12:17:58 GMT (envelope-from linimon) Date: Thu, 29 Jul 2010 12:17:58 GMT Message-Id: <201007291217.o6TCHwWo094835@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-usb@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: usb/149058: [ural] ASUS WL-167g doesn't work in 8.1 [regression] X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 12:17:59 -0000 Old Synopsis: ASUS WL-167g doesn't work in 8.1 New Synopsis: [ural] ASUS WL-167g doesn't work in 8.1 [regression] Responsible-Changed-From-To: freebsd-bugs->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jul 29 12:17:06 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=149058 From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 16:02:55 2010 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 237621065670; Thu, 29 Jul 2010 16:02:55 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe13.tele2.se [212.247.155.129]) by mx1.freebsd.org (Postfix) with ESMTP id 7C3688FC08; Thu, 29 Jul 2010 16:02:54 +0000 (UTC) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.0 c=1 a=mbS0-hne2jcA:10 a=Q9fys5e9bTEA:10 a=M8b_wTzEtboA:10 a=MnI1ikcADjEx7bvsp0jZvQ==:17 a=6I5d2MoRAAAA:8 a=mYgIsNiLZl6YfKClCKEA:9 a=Stz13BMxya0AW0XA1rwA:7 a=h_DP2OyRW7m_AYeU-hgLXARkYkMA:4 a=PUjeQqilurYA:10 a=SV7veod9ZcQA:10 Received: from [188.126.201.140] (account mc467741@c2i.net HELO laptop002.hselasky.homeunix.org) by mailfe13.swip.net (CommuniGate Pro SMTP 5.2.19) with ESMTPA id 1029193499; Thu, 29 Jul 2010 17:57:51 +0200 From: Hans Petter Selasky To: freebsd-usb@freebsd.org Date: Thu, 29 Jul 2010 17:54:43 +0200 User-Agent: KMail/1.13.5 (FreeBSD/8.1-PRERELEASE; KDE/4.4.5; amd64; ; ) References: <201007291217.o6TCHwWo094835@freefall.freebsd.org> In-Reply-To: <201007291217.o6TCHwWo094835@freefall.freebsd.org> X-Face: +~\`s("[*|O,="7?X@L.elg*F"OA\I/3%^p8g?ab%RN'(; _IjlA: hGE..Ew, XAQ*o#\/M~SC=S1-f9{EzRfT'|Hhll5Q]ha5Bt-s|oTlKMusi:1e[wJl}kd}GR Z0adGx-x_0zGbZj'e(Y[(UNle~)8CQWXW@:DX+9)_YlB[tIccCPN$7/L' MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <201007291754.43234.hselasky@c2i.net> Cc: freebsd-bugs@freebsd.org, linimon@freebsd.org Subject: Re: usb/149058: [ural] ASUS WL-167g doesn't work in 8.1 [regression] X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 16:02:55 -0000 On Thursday 29 July 2010 14:17:58 linimon@freebsd.org wrote: > Old Synopsis: ASUS WL-167g doesn't work in 8.1 > New Synopsis: [ural] ASUS WL-167g doesn't work in 8.1 [regression] > > Responsible-Changed-From-To: freebsd-bugs->freebsd-usb > Responsible-Changed-By: linimon > Responsible-Changed-When: Thu Jul 29 12:17:06 UTC 2010 > Responsible-Changed-Why: > Over to maintainer(s). > > http://www.freebsd.org/cgi/query-pr.cgi?pr=149058 Hi, This is not an USB problem! ifconfig wlan0 create wlandev ural0 ifconfig wlan0 inet 192.168.0.1 netmask 0xffffff00 up --HPS From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 16:10:38 2010 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2AEED106564A; Thu, 29 Jul 2010 16:10:38 +0000 (UTC) (envelope-from lwindschuh@googlemail.com) Received: from mail-ew0-f54.google.com (mail-ew0-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id 6238E8FC0A; Thu, 29 Jul 2010 16:10:37 +0000 (UTC) Received: by ewy26 with SMTP id 26so294529ewy.13 for ; Thu, 29 Jul 2010 09:10:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type; bh=Yjhc7+wA8hiUQN7AOOorAxi/GMyZsL8w3brIIMVsGVM=; b=VwIOGdwbizYz8T7OFLXtM3qKXvvy4fh/yRM+LFoyQYCD5e0a+0AbC3vu8jDi03zJeL T6gzJ7zVa4MiVKOgMtnitZGmqK3Tg10uWjKGKyTjXbLQF5Pk1G3kF82aEagiobaR4jD2 PFOB5pVYbeKBFv0qQDa4dmbmKRCQqoc/WgjCk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=PaI0EQiHq1QRmVtGFJggdSSCu7w3pOKLjCX/VD/z7u0UUF3vxKi1qfu0Ew+cGd6Qy8 vsiJ5LeWySmcBvja7WRsZk17xGBBv9B9sFVfGoI3eQnarJUnSD8KWOIbNSEYzcSQWwTl +6s0tCl9DVvgihYrcGtdOweeBPLKp241oKp/w= MIME-Version: 1.0 Received: by 10.216.187.16 with SMTP id x16mr269400wem.104.1280419836224; Thu, 29 Jul 2010 09:10:36 -0700 (PDT) Received: by 10.216.165.1 with HTTP; Thu, 29 Jul 2010 09:10:35 -0700 (PDT) In-Reply-To: <201007291754.43234.hselasky@c2i.net> References: <201007291217.o6TCHwWo094835@freefall.freebsd.org> <201007291754.43234.hselasky@c2i.net> Date: Thu, 29 Jul 2010 18:10:35 +0200 Message-ID: From: Lucius Windschuh To: Hans Petter Selasky Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-bugs@freebsd.org, linimon@freebsd.org, freebsd-usb@freebsd.org Subject: Re: usb/149058: [ural] ASUS WL-167g doesn't work in 8.1 [regression] X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 16:10:38 -0000 2010/7/29 Hans Petter Selasky : > This is not an USB problem! In fact, this is a *documentation* problem: At least the part on configuring an access point is outdated, and was written before VAPs were introduced (http://www.freebsd.org/doc/handbook/network-wireless.html). It should mention create_args_IF. Regards Lucius From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 16:50:02 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C352F1065675 for ; Thu, 29 Jul 2010 16:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B20BC8FC16 for ; Thu, 29 Jul 2010 16:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6TGo2Pw058131 for ; Thu, 29 Jul 2010 16:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6TGo2hm058126; Thu, 29 Jul 2010 16:50:02 GMT (envelope-from gnats) Date: Thu, 29 Jul 2010 16:50:02 GMT Message-Id: <201007291650.o6TGo2hm058126@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: bin/40282: commit references a PR X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 16:50:02 -0000 The following reply was made to PR bin/40282; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: bin/40282: commit references a PR Date: Thu, 29 Jul 2010 16:40:55 +0000 (UTC) Author: jilles Date: Thu Jul 29 16:40:45 2010 New Revision: 210613 URL: http://svn.freebsd.org/changeset/base/210613 Log: kill: Stop processing if a syntactically invalid pid is encountered. So a command like kill _HUP 1 now fails without sending SIGTERM to init. The behaviour when kill(2) fails remains unchanged: processing continues. This matches other implementations and POSIX and is useful for killing multiple processes at once when some of them may already be gone. PR: bin/40282 Modified: head/bin/kill/kill.c Modified: head/bin/kill/kill.c ============================================================================== --- head/bin/kill/kill.c Thu Jul 29 16:30:27 2010 (r210612) +++ head/bin/kill/kill.c Thu Jul 29 16:40:45 2010 (r210613) @@ -123,10 +123,9 @@ main(int argc, char *argv[]) for (errors = 0; argc; argc--, argv++) { pid = strtol(*argv, &ep, 10); - if (!**argv || *ep) { - warnx("illegal process id: %s", *argv); - errors = 1; - } else if (kill(pid, numsig) == -1) { + if (!**argv || *ep) + errx(1, "illegal process id: %s", *argv); + else if (kill(pid, numsig) == -1) { warn("%s", *argv); errors = 1; } _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 18:39:00 2010 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20F14106567B; Thu, 29 Jul 2010 18:39:00 +0000 (UTC) (envelope-from tuco.xyz@gmail.com) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id 8681C8FC1B; Thu, 29 Jul 2010 18:38:59 +0000 (UTC) Received: by wwc33 with SMTP id 33so441621wwc.31 for ; Thu, 29 Jul 2010 11:38:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type; bh=7xG5cNC9olk68LMFFOUcI4wbES6er2PumWxxDSI/wys=; b=lNwJ9BeaYQyayL1tezkhdGQVwSObw8lrU3+ULZZ/nnbPbbyWmrmx3n2eC5LGWv1FjS 0E7fQtyHbXIBLD3jqGeTTCgaQ5mRy69BSQebdsSlC/9U6sQMzSSGS9eM1H3l8FwL7H6t 27GYaw2qRHU3F7nxPGQnWzZ8HMSSSvOgHtCS0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=iQGQrboXlZh8ljX6sI+KdpDrv8WWASYjfq9amN6dBtnzezaaIBg4qyiXiIYk4kzfRh LF94VhjYjZS4iknQi0lDy4fY8ZxA2K4tKkgy0XuKRIxFOK1lmrnOjxkZ9KHHQBtpHjQX syyDV2K43QZCi+djMHIbGBPhCng6xIZJq16oQ= MIME-Version: 1.0 Received: by 10.216.62.206 with SMTP id y56mr486630wec.59.1280427043906; Thu, 29 Jul 2010 11:10:43 -0700 (PDT) Received: by 10.216.202.206 with HTTP; Thu, 29 Jul 2010 11:10:43 -0700 (PDT) In-Reply-To: <201007290141.o6T1f5oJ041955@freefall.freebsd.org> References: <201007290141.o6T1f5oJ041955@freefall.freebsd.org> Date: Thu, 29 Jul 2010 14:10:43 -0400 Message-ID: From: Tuco To: linimon@freebsd.org Content-Type: text/plain; charset=UTF-8 Cc: freebsd-bugs@freebsd.org Subject: Re: kern/149012: [headers] [patch] please replace '#include ' with '#include ' X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 18:39:00 -0000 Hi, I realize I made a mistake, kernel headers can't use so my change needs to be reverted in sys/ directory. I tested with make buildkernel now (in my FreeBSD chroot), and it works. Sorry! On 7/28/10, linimon@freebsd.org wrote: > Old Synopsis: [headers] [request] please replace '#include ' > with '#include ' > New Synopsis: [headers] [patch] please replace '#include ' > with '#include ' > > State-Changed-From-To: suspended->open > State-Changed-By: linimon > State-Changed-When: Thu Jul 29 01:40:45 UTC 2010 > State-Changed-Why: > patch received. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=149012 > From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 20:08:33 2010 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A9151065673; Thu, 29 Jul 2010 20:08:33 +0000 (UTC) (envelope-from marc@blackend.org) Received: from abigail.blackend.org (ns0.blackend.org [82.227.222.164]) by mx1.freebsd.org (Postfix) with ESMTP id 120D78FC08; Thu, 29 Jul 2010 20:08:32 +0000 (UTC) Received: from gothic.blackend.org (gothic.blackend.org [192.168.1.203]) by abigail.blackend.org (8.13.4/8.13.3) with ESMTP id o6TK8Uc9056540; Thu, 29 Jul 2010 22:08:30 +0200 (CEST) (envelope-from marc@abigail.blackend.org) Received: from gothic.blackend.org (localhost [127.0.0.1]) by gothic.blackend.org (8.14.4/8.14.3) with ESMTP id o6TK8TLE001633; Thu, 29 Jul 2010 22:08:29 +0200 (CEST) (envelope-from marc@gothic.blackend.org) Received: (from marc@localhost) by gothic.blackend.org (8.14.4/8.14.3/Submit) id o6TK8TnG001632; Thu, 29 Jul 2010 22:08:29 +0200 (CEST) (envelope-from marc) Date: Thu, 29 Jul 2010 22:08:29 +0200 From: Marc Fonvieille To: Lucius Windschuh Message-ID: <20100729200829.GB1542@gothic.blackend.org> References: <201007291217.o6TCHwWo094835@freefall.freebsd.org> <201007291754.43234.hselasky@c2i.net> <20100729195725.GA1542@gothic.blackend.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20100729195725.GA1542@gothic.blackend.org> X-Useless-Header: blackend.org X-Operating-System: FreeBSD 8.0-STABLE User-Agent: Mutt/1.5.20 (2009-06-14) Cc: freebsd-bugs@freebsd.org, freebsd-usb@freebsd.org, linimon@freebsd.org, Hans Petter Selasky Subject: Re: usb/149058: [ural] ASUS WL-167g doesn't work in 8.1 [regression] X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 20:08:33 -0000 On Thu, Jul 29, 2010 at 09:57:25PM +0200, Marc Fonvieille wrote: > On Thu, Jul 29, 2010 at 06:10:35PM +0200, Lucius Windschuh wrote: > > 2010/7/29 Hans Petter Selasky : > > > This is not an USB problem! > > > > In fact, this is a *documentation* problem: > > At least the part on configuring an access point is outdated, and was > > written before VAPs were introduced > > (http://www.freebsd.org/doc/handbook/network-wireless.html). > > It should mention create_args_IF. > > > > Yes the AP part is outdated but the client part is up to date and this > is the subject of the PR. So please don't blame docs when they are not > guilty :) > Well, I'm a bit wrong a part of the PR is related to APs as well. But the client part is enough explicit, I mean one can't miss the wlanX use. Anyway, I have the update of the part AP on my TODO list, it should be online soon. Let's close this PR. -- Marc From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 20:10:15 2010 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 52C25106566C; Thu, 29 Jul 2010 20:10:15 +0000 (UTC) (envelope-from marc@blackend.org) Received: from abigail.blackend.org (ns0.blackend.org [82.227.222.164]) by mx1.freebsd.org (Postfix) with ESMTP id C97E88FC25; Thu, 29 Jul 2010 20:10:14 +0000 (UTC) Received: from gothic.blackend.org (gothic.blackend.org [192.168.1.203]) by abigail.blackend.org (8.13.4/8.13.3) with ESMTP id o6TJvVLQ056366; Thu, 29 Jul 2010 21:57:31 +0200 (CEST) (envelope-from marc@abigail.blackend.org) Received: from gothic.blackend.org (localhost [127.0.0.1]) by gothic.blackend.org (8.14.4/8.14.3) with ESMTP id o6TJvVdQ001601; Thu, 29 Jul 2010 21:57:31 +0200 (CEST) (envelope-from marc@gothic.blackend.org) Received: (from marc@localhost) by gothic.blackend.org (8.14.4/8.14.3/Submit) id o6TJvP0f001600; Thu, 29 Jul 2010 21:57:25 +0200 (CEST) (envelope-from marc) Date: Thu, 29 Jul 2010 21:57:25 +0200 From: Marc Fonvieille To: Lucius Windschuh Message-ID: <20100729195725.GA1542@gothic.blackend.org> References: <201007291217.o6TCHwWo094835@freefall.freebsd.org> <201007291754.43234.hselasky@c2i.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Useless-Header: blackend.org X-Operating-System: FreeBSD 8.0-STABLE User-Agent: Mutt/1.5.20 (2009-06-14) Cc: freebsd-bugs@freebsd.org, freebsd-usb@freebsd.org, linimon@freebsd.org, Hans Petter Selasky Subject: Re: usb/149058: [ural] ASUS WL-167g doesn't work in 8.1 [regression] X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 20:10:15 -0000 On Thu, Jul 29, 2010 at 06:10:35PM +0200, Lucius Windschuh wrote: > 2010/7/29 Hans Petter Selasky : > > This is not an USB problem! > > In fact, this is a *documentation* problem: > At least the part on configuring an access point is outdated, and was > written before VAPs were introduced > (http://www.freebsd.org/doc/handbook/network-wireless.html). > It should mention create_args_IF. > Yes the AP part is outdated but the client part is up to date and this is the subject of the PR. So please don't blame docs when they are not guilty :) -- Marc From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 21:07:30 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ECAF51065673; Thu, 29 Jul 2010 21:07:30 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C2F2A8FC16; Thu, 29 Jul 2010 21:07:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6TL7Uim010165; Thu, 29 Jul 2010 21:07:30 GMT (envelope-from jilles@freefall.freebsd.org) Received: (from jilles@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6TL7Up0010161; Thu, 29 Jul 2010 21:07:30 GMT (envelope-from jilles) Date: Thu, 29 Jul 2010 21:07:30 GMT Message-Id: <201007292107.o6TL7Up0010161@freefall.freebsd.org> To: oleg@reis.zp.ua, jilles@FreeBSD.org, freebsd-bugs@FreeBSD.org, jilles@FreeBSD.org From: jilles@FreeBSD.org Cc: Subject: Re: bin/40282: [patch] kill(1) has bad error checking for command line parameters X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 21:07:31 -0000 Synopsis: [patch] kill(1) has bad error checking for command line parameters State-Changed-From-To: analyzed->closed State-Changed-By: jilles State-Changed-When: Thu Jul 29 21:06:59 UTC 2010 State-Changed-Why: Fixed in 9-current, no MFC planned. Responsible-Changed-From-To: freebsd-bugs->jilles Responsible-Changed-By: jilles Responsible-Changed-When: Thu Jul 29 21:06:59 UTC 2010 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=40282 From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 21:40:03 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9EBF11065677 for ; Thu, 29 Jul 2010 21:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 73F688FC19 for ; Thu, 29 Jul 2010 21:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6TLe3Lj040262 for ; Thu, 29 Jul 2010 21:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6TLe3ci040261; Thu, 29 Jul 2010 21:40:03 GMT (envelope-from gnats) Date: Thu, 29 Jul 2010 21:40:03 GMT Message-Id: <201007292140.o6TLe3ci040261@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Jilles Tjoelker Cc: Subject: Re: bin/148733: a potential buffer overflow in sh(1) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jilles Tjoelker List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 21:40:03 -0000 The following reply was made to PR bin/148733; it has been noted by GNATS. From: Jilles Tjoelker To: bug-followup@FreeBSD.org, snnn119@gmail.com Cc: Subject: Re: bin/148733: a potential buffer overflow in sh(1) Date: Thu, 29 Jul 2010 23:38:55 +0200 > [buffer overflow in sh(1) pathname generation] You are right, there is a possible heap buffer overflow here. It is rather unlikely in normal usage because the kernel does not accept pathnames longer than 1023 bytes, but still possible. -- Jilles Tjoelker From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 22:40:03 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D4021065679 for ; Thu, 29 Jul 2010 22:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E5D5E8FC17 for ; Thu, 29 Jul 2010 22:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6TMe21D098271 for ; Thu, 29 Jul 2010 22:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6TMe2u9098270; Thu, 29 Jul 2010 22:40:02 GMT (envelope-from gnats) Date: Thu, 29 Jul 2010 22:40:02 GMT Message-Id: <201007292240.o6TMe2u9098270@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Jilles Tjoelker Cc: Subject: Re: bin/35717: which(1) returns wrong exit status for multiple arguments X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jilles Tjoelker List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 22:40:03 -0000 The following reply was made to PR bin/35717; it has been noted by GNATS. From: Jilles Tjoelker To: bug-followup@FreeBSD.org, wosch@FreeBSD.org Cc: Subject: Re: bin/35717: which(1) returns wrong exit status for multiple arguments Date: Fri, 30 Jul 2010 00:30:20 +0200 > [5.x's /usr/bin/which returns 1 if any argument is not found, instead > of only when all arguments are not found like 4.x's] The new behaviour seems consistent with what most other utilities do (if an error occurs processing an argument, processing continues with the next argument but the exit status will be non-zero). POSIX mentions this in "Consequences of Errors" in XCU 1.4 Utility Description Defaults. Following this for non-standard utilities is not a requirement but makes things more consistent. There is no standard for which(1). The closest is probably the tcsh(1) builtin which behaves like the new /usr/bin/which. There seems little reason to change. -- Jilles Tjoelker From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 22:43:28 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4FA2C1065674; Thu, 29 Jul 2010 22:43:28 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 251588FC15; Thu, 29 Jul 2010 22:43:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6TMhSCC007551; Thu, 29 Jul 2010 22:43:28 GMT (envelope-from jilles@freefall.freebsd.org) Received: (from jilles@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6TMhSnW007547; Thu, 29 Jul 2010 22:43:28 GMT (envelope-from jilles) Date: Thu, 29 Jul 2010 22:43:28 GMT Message-Id: <201007292243.o6TMhSnW007547@freefall.freebsd.org> To: jilles@FreeBSD.org, freebsd-standards@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jilles@FreeBSD.org Cc: Subject: Re: bin/145082: Patch against w(1) & uptime(1) to use 24H time by default. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 22:43:28 -0000 Synopsis: Patch against w(1) & uptime(1) to use 24H time by default. Responsible-Changed-From-To: freebsd-standards->freebsd-bugs Responsible-Changed-By: jilles Responsible-Changed-When: Thu Jul 29 22:41:10 UTC 2010 Responsible-Changed-Why: This is not a standards compliance issue as w and uptime are not in POSIX. Regarding the patch, how does a user select 12h output? I tried LANG=en_US.ISO8859-1 w and it still gave 24h. http://www.freebsd.org/cgi/query-pr.cgi?pr=145082 From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 22:53:54 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9CD461065672; Thu, 29 Jul 2010 22:53:54 +0000 (UTC) (envelope-from arundel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 72AA48FC14; Thu, 29 Jul 2010 22:53:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6TMrsLp016848; Thu, 29 Jul 2010 22:53:54 GMT (envelope-from arundel@freefall.freebsd.org) Received: (from arundel@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6TMrsJg016844; Thu, 29 Jul 2010 22:53:54 GMT (envelope-from arundel) Date: Thu, 29 Jul 2010 22:53:54 GMT Message-Id: <201007292253.o6TMrsJg016844@freefall.freebsd.org> To: arundel@FreeBSD.org, freebsd-bugs@FreeBSD.org, luigi@FreeBSD.org From: arundel@FreeBSD.org Cc: Subject: Re: bin/135918: [boot0] [patch] Make BootEasy compatible with NT Drive Serial Number by default X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 22:53:54 -0000 Synopsis: [boot0] [patch] Make BootEasy compatible with NT Drive Serial Number by default Responsible-Changed-From-To: freebsd-bugs->luigi Responsible-Changed-By: arundel Responsible-Changed-When: Thu Jul 29 22:50:22 UTC 2010 Responsible-Changed-Why: Over to luigi as MFC reminder. http://www.freebsd.org/cgi/query-pr.cgi?pr=135918 From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 23:10:03 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 91BA81065678 for ; Thu, 29 Jul 2010 23:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5DDFB8FC18 for ; Thu, 29 Jul 2010 23:10:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6TNA39P026288 for ; Thu, 29 Jul 2010 23:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6TNA3ID026287; Thu, 29 Jul 2010 23:10:03 GMT (envelope-from gnats) Date: Thu, 29 Jul 2010 23:10:03 GMT Message-Id: <201007292310.o6TNA3ID026287@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Alexander Best Cc: Subject: Re: kern/140752: [ata] [patch] HDD power-off procedure is not clean X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alexander Best List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 23:10:03 -0000 The following reply was made to PR kern/140752; it has been noted by GNATS. From: Alexander Best To: bug-followup@freebsd.org Cc: Subject: Re: kern/140752: [ata] [patch] HDD power-off procedure is not clean Date: Thu, 29 Jul 2010 23:03:14 +0000 i'm forwarding this message i got from warren which might be helpful to anybody working on this pr in the future. cheers. alex ---------- Forwarded message ---------- From: Warren Block Date: 2010/3/6 Subject: Summary: Re: Spin down HDD after disk sync or before power off To: Oliver Fromme Cc: freebsd-hackers@freebsd.org, alexbestms@wwu.de, jkim@freebsd.org Just wanted to followup with a summary before all vestiges of what I learned evaporate from my memory. My apologies for the lateness. 1. Existing FreeBSD ata-disk code does not explicitly park the hard drive heads on shutdown. So the power loss causes an emergency park, which sounds bad and is bad for the heads. 2. There are a limited number of powerup/powerdown or maybe spinup/spindown cycles for a drive. Not sure what causes the wear. 3. FreeBSD doesn't park heads at reboot, either, but that's good because of #2. 4. FreeBSD's suspend code does call STANDBY_IMMEDIATE to park heads. 5. I couldn't tell if the STANDBY_IMMEDIATE in a reboot actually spun the drive down. It may be that the hardware reset happens so quickly after the standby that it doesn't matter. Or maybe it brakes very quietly. Possibly different brands do different things. I can think of ways to check, like measuring motor current, but don't have the equipment to try that. 6. Ond?ej Majerech suggested checking NetBSD's method of spinning the drive down. I did, and they have a direct way of telling the difference between reboot and shutdown, somewhat differently from FreeBSD. 7. I actually waded hip-deep through magic C code and made a powerdown event handler for ata-disk.c. It compiled and even seemed to work, although I don't trust it. 8. Alexander Motin has an updated CAM version of the ATA system which will eventually replace the existing one. In -CURRENT, anyway. He was kind enough to look at my event handler. My understanding is that he is looking at implementing the head parking/standby mechanism in that new code. Conclusions: If you rarely power down a system with FreeBSD, it may not matter, and reboots with the existing code should not be a problem. If you power down a system from FreeBSD often, the patch in http://docs.freebsd.org/cgi/getmsg.cgi?fetch=233916+0+archive/2010/freebsd-hackers/20100131.freebsd-hackers is still the lowest-impact version, although it calls STANDBY_IMMEDIATE for both reboot and shutdown. I don't have evidence either way as to whether the standby followed by a reboot causes as much wear as a cold spinup/spindown cycle, or whether that is more of a problem than emergency head parks. -Warren Block * Rapid City, South Dakota USA From owner-freebsd-bugs@FreeBSD.ORG Thu Jul 29 23:27:17 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D7769106566C; Thu, 29 Jul 2010 23:27:17 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ADD628FC08; Thu, 29 Jul 2010 23:27:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6TNRHsS045977; Thu, 29 Jul 2010 23:27:17 GMT (envelope-from jilles@freefall.freebsd.org) Received: (from jilles@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6TNRHAi045973; Thu, 29 Jul 2010 23:27:17 GMT (envelope-from jilles) Date: Thu, 29 Jul 2010 23:27:17 GMT Message-Id: <201007292327.o6TNRHAi045973@freefall.freebsd.org> To: andyf@speednet.com.au, jilles@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jilles@FreeBSD.org Cc: Subject: Re: bin/54784: find(1) -ls wastes space X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 23:27:17 -0000 Synopsis: find(1) -ls wastes space State-Changed-From-To: open->closed State-Changed-By: jilles State-Changed-When: Thu Jul 29 23:24:55 UTC 2010 State-Changed-Why: I don't think there is a good way to fix this. Iterating over all users with getpwent() may be very slow or may not work at all in some environments. I don't see another way to find the column widths. Buffering all output would be rather annoying as well. http://www.freebsd.org/cgi/query-pr.cgi?pr=54784 From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 00:00:09 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B04271065676 for ; Fri, 30 Jul 2010 00:00:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 76B6B8FC15 for ; Fri, 30 Jul 2010 00:00:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6U009QP074992 for ; Fri, 30 Jul 2010 00:00:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6U0098W074991; Fri, 30 Jul 2010 00:00:09 GMT (envelope-from gnats) Date: Fri, 30 Jul 2010 00:00:09 GMT Message-Id: <201007300000.o6U0098W074991@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Jilles Tjoelker Cc: Subject: Re: bin/30424: Generalization of vipw(8) to lock pwdb while being edited by a script X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jilles Tjoelker List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 00:00:09 -0000 The following reply was made to PR bin/30424; it has been noted by GNATS. From: Jilles Tjoelker To: bug-followup@FreeBSD.org, alan@batie.org Cc: Subject: Re: bin/30424: Generalization of vipw(8) to lock pwdb while being edited by a script Date: Fri, 30 Jul 2010 01:50:55 +0200 Is there any reason you need a special option in vipw(8) to run (in effect) a different editor, when temporarily changing the EDITOR environment variable would do the same? Also, the pw(8) utility may be useful, allowing various modifications to the passwd database more easily. -- Jilles Tjoelker From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 00:00:10 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 471A61065674 for ; Fri, 30 Jul 2010 00:00:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0273C8FC17 for ; Fri, 30 Jul 2010 00:00:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6U00993075004 for ; Fri, 30 Jul 2010 00:00:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6U009VG075003; Fri, 30 Jul 2010 00:00:09 GMT (envelope-from gnats) Resent-Date: Fri, 30 Jul 2010 00:00:09 GMT Resent-Message-Id: <201007300000.o6U009VG075003@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Hans-Werner Braun Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D930106566B for ; Thu, 29 Jul 2010 23:56:44 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 4C42F8FC0A for ; Thu, 29 Jul 2010 23:56:44 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6TNui02081627 for ; Thu, 29 Jul 2010 23:56:44 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6TNuhKe081626; Thu, 29 Jul 2010 23:56:43 GMT (envelope-from nobody) Message-Id: <201007292356.o6TNuhKe081626@www.freebsd.org> Date: Thu, 29 Jul 2010 23:56:43 GMT From: Hans-Werner Braun To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/149086: Generic multicast join failure in 8.1 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 00:00:10 -0000 >Number: 149086 >Category: misc >Synopsis: Generic multicast join failure in 8.1 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jul 30 00:00:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Hans-Werner Braun >Release: 8.1-RELEASE >Organization: UC San Diego >Environment: FreeBSD mcr.hpwren.ucsd.edu 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Thu Jul 29 09:50:21 PDT 2010 hwb@mcr.hpwren.ucsd.edu:/usr/src/sys/amd64/compile/MCR amd64 >Description: A perl program that I used in previous FreeBSD releases does not work any more. Specifically from tcpdump outputs it does not send the join request to the router. The program: #!/usr/local/bin/perl use Socket; $PORT=$ARGV[0]; $PATTERN=$ARGV[1]; $SERVER=$ARGV[2]; if($PORT eq ""){ printf"Syntax: mcaststream.pl port {pattern} {multicastaddress}\n"; exit; } if($SERVER eq ""){$SERVER="233.7.117.79";} $|=1; $IP_ADD_MEMBERSHIP=12; ($name, $aliases, $type, $len, $SERVERIP) = gethostbyname($SERVER); $sockaddr = 'S n a4 x8'; socket(S, PF_INET,SOCK_DGRAM,UDP_PROTO)||die("$!"); setsockopt(S, SOL_SOCKET, SO_REUSEPORT, 1)||die("$!"); $us = pack($sockaddr, 2, $PORT, pack("C4", 0,0,0,0)); bind(S, $us)||die("$!"); setsockopt(S, 0, $IP_ADD_MEMBERSHIP, $SERVERIP."\0\0\0\0")||die("$!"); while($theiraddr=recv(S,$BUF,1024,0)){ ($junk, $junk, $sourceaddr, $junk) = unpack($sockaddr, $theiraddr); $theirip=join('.',unpack('C4', $sourceaddr)); if($BUF =~ $PATTERN){ printf"$theirip\t$BUF"; } } >How-To-Repeat: The above program sends no traffic out of the Ethernet interface (specifically the join request). >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 00:10:02 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3AAE0106567A for ; Fri, 30 Jul 2010 00:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EE3EA8FC1A for ; Fri, 30 Jul 2010 00:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6U0A1Ob084225 for ; Fri, 30 Jul 2010 00:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6U0A1MC084224; Fri, 30 Jul 2010 00:10:01 GMT (envelope-from gnats) Resent-Date: Fri, 30 Jul 2010 00:10:01 GMT Resent-Message-Id: <201007300010.o6U0A1MC084224@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Hans-Werner Braun Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 416E1106564A for ; Fri, 30 Jul 2010 00:03:32 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id ED8C18FC12 for ; Fri, 30 Jul 2010 00:03:31 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6U03VnF082316 for ; Fri, 30 Jul 2010 00:03:31 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6U03VfK082314; Fri, 30 Jul 2010 00:03:31 GMT (envelope-from nobody) Message-Id: <201007300003.o6U03VfK082314@www.freebsd.org> Date: Fri, 30 Jul 2010 00:03:31 GMT From: Hans-Werner Braun To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/149087: openoffice.org-3 does not compile X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 00:10:02 -0000 >Number: 149087 >Category: misc >Synopsis: openoffice.org-3 does not compile >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 Jul 30 00:10:01 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Hans-Werner Braun >Release: 8.1-RELEASE >Organization: UC San Diego >Environment: FreeBSD mcr.hpwren.ucsd.edu 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Thu Jul 29 09:50:21 PDT 2010 hwb@mcr.hpwren.ucsd.edu:/usr/src/sys/amd64/compile/MCR amd64 >Description: openoffice.org-3 does not compile. The problem is with the diablo-jdk-1.6.0.07.02_9 part: ===> diablo-jdk-1.6.0.07.02_9 depends on shared library: z.4 - not found ===> Verifying install for z.4 in /usr/ports/misc/compat7x ===> Returning to build of diablo-jdk-1.6.0.07.02_9 Error: shared library "z.4" does not exist *** Error code 1 The only libz files I found are: /lib/libz.so.5 /usr/lib/libz.a /usr/lib/libz.so >How-To-Repeat: "make" repeats the problem >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 00:50:18 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 86B72106567C; Fri, 30 Jul 2010 00:50:18 +0000 (UTC) (envelope-from arundel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5CE628FC08; Fri, 30 Jul 2010 00:50:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6U0oIce025822; Fri, 30 Jul 2010 00:50:18 GMT (envelope-from arundel@freefall.freebsd.org) Received: (from arundel@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6U0oIHY025811; Fri, 30 Jul 2010 00:50:18 GMT (envelope-from arundel) Date: Fri, 30 Jul 2010 00:50:18 GMT Message-Id: <201007300050.o6U0oIHY025811@freefall.freebsd.org> To: arundel@FreeBSD.org, freebsd-bugs@FreeBSD.org, remko@FreeBSD.org From: arundel@FreeBSD.org Cc: Subject: Re: bin/138131: [patch] pstat(8): pstat -t coredumps when reading from kernel crashdump X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 00:50:18 -0000 Synopsis: [patch] pstat(8): pstat -t coredumps when reading from kernel crashdump Responsible-Changed-From-To: freebsd-bugs->remko Responsible-Changed-By: arundel Responsible-Changed-When: Fri Jul 30 00:44:22 UTC 2010 Responsible-Changed-Why: Assign to remko as MFC reminder. http://www.freebsd.org/cgi/query-pr.cgi?pr=138131 From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 01:00:11 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4D6F71065674 for ; Fri, 30 Jul 2010 01:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1A8638FC0A for ; Fri, 30 Jul 2010 01:00:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6U10Arb033496 for ; Fri, 30 Jul 2010 01:00:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6U10AmX033495; Fri, 30 Jul 2010 01:00:10 GMT (envelope-from gnats) Date: Fri, 30 Jul 2010 01:00:10 GMT Message-Id: <201007300100.o6U10AmX033495@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Alan Batie Cc: Subject: Re: bin/30424: Generalization of vipw(8) to lock pwdb while being edited by a script X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alan Batie List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 01:00:11 -0000 The following reply was made to PR bin/30424; it has been noted by GNATS. From: Alan Batie To: Jilles Tjoelker Cc: bug-followup@FreeBSD.org Subject: Re: bin/30424: Generalization of vipw(8) to lock pwdb while being edited by a script Date: Thu, 29 Jul 2010 17:39:30 -0700 This is a cryptographically signed message in MIME format. --------------ms070907040206060705020901 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 7/29/10 4:50 PM, Jilles Tjoelker wrote: > Is there any reason you need a special option in vipw(8) to run (in > effect) a different editor, when temporarily changing the EDITOR > environment variable would do the same? >=20 > Also, the pw(8) utility may be useful, allowing various modifications t= o > the passwd database more easily. Those would have been (and, yes, were available) useful alternatives 9 years ago ;-) The EDITOR hack makes me nervous for gettings args and stdin to the script, though I'm pretty sure they would work; pw is probably the "right" solution to the problem I was solving, though it's inefficient: I was (actually, still am --- that script is still in use) reading in the password file, making several updates to it in memory, then writing it back out. We're talking numbers you can count on fingers and toes though, so efficiency really isn't a factor in this case, though it's conceivable. Well, I'm not sure an application where it would be a factor *is* conceivable, and any setup that large would probably be using a db backend of some sort, but still, that's the sort of operation where pw_lock is useful, and it's trivial to support. --------------ms070907040206060705020901 Content-Type: application/pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIPWjCC BMwwggQ1oAMCAQICEByunWua9OYvIoqj2nRhbB4wDQYJKoZIhvcNAQEFBQAwXzELMAkGA1UE BhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFzcyAxIFB1Ymxp YyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA1MTAyODAwMDAwMFoXDTE1 MTAyNzIzNTk1OVowgd0xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjEf MB0GA1UECxMWVmVyaVNpZ24gVHJ1c3QgTmV0d29yazE7MDkGA1UECxMyVGVybXMgb2YgdXNl IGF0IGh0dHBzOi8vd3d3LnZlcmlzaWduLmNvbS9ycGEgKGMpMDUxHjAcBgNVBAsTFVBlcnNv bmEgTm90IFZhbGlkYXRlZDE3MDUGA1UEAxMuVmVyaVNpZ24gQ2xhc3MgMSBJbmRpdmlkdWFs IFN1YnNjcmliZXIgQ0EgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMnf rOfq+PgDFMQAktXBfjbCPO98chXLwKuMPRyVzm8eECw/AO2XJua2x+atQx0/pIdHR0w+VPhs +Mf8sZ69MHC8l7EDBeqV8a1AxUR6SwWi8mD81zplYu//EHuiVrvFTnAt1qIfPO2wQuhejVch rKaZ2RHp0hoHwHRHQgv8xTTq/ea6JNEdCBU3otdzzwFBL2OyOj++pRpu9MlKWz2VphW7NQIZ +dTvvI8OcXZZu0u2Ptb8Whb01g6J8kn+bAztFenZiHWcec5gJ925rXXOL3OVekA6hXVJsLjf aLyrzROChRFQo+A8C67AClPN1zBvhTJGG+RJEMJs4q8fef/btLUCAwEAAaOCAYQwggGAMBIG A1UdEwEB/wQIMAYBAf8CAQAwRAYDVR0gBD0wOzA5BgtghkgBhvhFAQcXATAqMCgGCCsGAQUF BwIBFhxodHRwczovL3d3dy52ZXJpc2lnbi5jb20vcnBhMAsGA1UdDwQEAwIBBjARBglghkgB hvhCAQEEBAMCAQYwLgYDVR0RBCcwJaQjMCExHzAdBgNVBAMTFlByaXZhdGVMYWJlbDMtMjA0 OC0xNTUwHQYDVR0OBBYEFBF9Xhl9PATfamzWoooaPzHYO5RSMDEGA1UdHwQqMCgwJqAkoCKG IGh0dHA6Ly9jcmwudmVyaXNpZ24uY29tL3BjYTEuY3JsMIGBBgNVHSMEejB4oWOkYTBfMQsw CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xNzA1BgNVBAsTLkNsYXNzIDEg UHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHmCEQDNun9W8N/kvFT+Iqyz cqpVMA0GCSqGSIb3DQEBBQUAA4GBALEv2ZbhkqLugWDlyCog++FnLNYAmFOjAhvpkEv4GESf D0b3+qD+0x0Yo9K/HOzWGZ9KTUP4yru+E4BJBd0hczNXwkJavvoAk7LmBDGRTl088HMFN2Pr v4NZmP1m3umGMpqSKTw6rlTaphJRsY/IytNHeObbpR6HBuPRFMDCIfa6MIIFQTCCBCmgAwIB AgIPZR7Dm053Hoy1FoqJb2XkMA0GCSqGSIb3DQEBBQUAMIHdMQswCQYDVQQGEwJVUzEXMBUG A1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsx OzA5BgNVBAsTMlRlcm1zIG9mIHVzZSBhdCBodHRwczovL3d3dy52ZXJpc2lnbi5jb20vcnBh IChjKTA1MR4wHAYDVQQLExVQZXJzb25hIE5vdCBWYWxpZGF0ZWQxNzA1BgNVBAMTLlZlcmlT aWduIENsYXNzIDEgSW5kaXZpZHVhbCBTdWJzY3JpYmVyIENBIC0gRzIwHhcNMDkxMDE0MDAw MDAwWhcNMTAxMDE0MjM1OTU5WjCCAQsxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYD VQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMUYwRAYDVQQLEz13d3cudmVyaXNpZ24uY29t L3JlcG9zaXRvcnkvUlBBIEluY29ycC4gYnkgUmVmLixMSUFCLkxURChjKTk4MR4wHAYDVQQL ExVQZXJzb25hIE5vdCBWYWxpZGF0ZWQxMzAxBgNVBAsTKkRpZ2l0YWwgSUQgQ2xhc3MgMSAt IE5ldHNjYXBlIEZ1bGwgU2VydmljZTETMBEGA1UEAxQKQWxhbiBCYXRpZTEdMBsGCSqGSIb3 DQEJARYOYWxhbkBiYXRpZS5vcmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7 8gzcDFCbvznGCu/DLzUtIZrR0YsZbAIqzyh6EjE6FvH05JK/SRJ5zM32p/brZF99KINpKyoq ctYELJuqMRCdJrdCZai9uO0VGCWnZcYH338o5bh/QE6LZ16tj4R9UjdByK/SHeCUxNHxXmHX A+O9k3hZZXq61WG91a8XKkPgAMuYyQ02AgUIXDc28PjEPGOi2ialvgl9prpNUd3VOGbH601v 98wFhY5Lk+N747WPHwvj/vv+5AZ/qwbNNRRRmLnUtMFKq7htmCAlsV5fFeNJk6t4/q0c9+nu srd2mO1VkT9XB3TXsOVxzDRDR2axP8+hrYIZ3OMykEazWAwjU2NfAgMBAAGjgcwwgckwCQYD VR0TBAIwADBEBgNVHSAEPTA7MDkGC2CGSAGG+EUBBxcBMCowKAYIKwYBBQUHAgEWHGh0dHBz Oi8vd3d3LnZlcmlzaWduLmNvbS9ycGEwCwYDVR0PBAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUF BwMEBggrBgEFBQcDAjBKBgNVHR8EQzBBMD+gPaA7hjlodHRwOi8vSW5kQzFEaWdpdGFsSUQt Y3JsLnZlcmlzaWduLmNvbS9JbmRDMURpZ2l0YWxJRC5jcmwwDQYJKoZIhvcNAQEFBQADggEB AGNxVsSDfo6klgTtjFhhQ9LNrT9YT+28h5YRalw+zAZ7cdtxu5Si9d0Bfr4djafFXdXcZ01j OhkhiJkGOlN7rUb3acDrVeP86N82jAHoNCm1n1rtWRbowt5l6MGmjCidWqljxkt72zAZE4eQ WbH0xbjUWZHsd8R9lQ93sb8Vv6XzBJMkDXkjEW8lpcLmoxRtJxeq6jU93Qqi6g6ZKkoGlHH2 tOYqqH61H9lBko/ZyM3WlGX0gSYZwhVRQi1GHf8ge6m6bxum7DnG1c9+dNw5aXr/I4DLTI5W iCLU+1Vh3pNFa3qIGZyrxS/kFTp/Duhc8cqE0na//B7eTHOSyA0MxkwwggVBMIIEKaADAgEC Ag9lHsObTncejLUWiolvZeQwDQYJKoZIhvcNAQEFBQAwgd0xCzAJBgNVBAYTAlVTMRcwFQYD VQQKEw5WZXJpU2lnbiwgSW5jLjEfMB0GA1UECxMWVmVyaVNpZ24gVHJ1c3QgTmV0d29yazE7 MDkGA1UECxMyVGVybXMgb2YgdXNlIGF0IGh0dHBzOi8vd3d3LnZlcmlzaWduLmNvbS9ycGEg KGMpMDUxHjAcBgNVBAsTFVBlcnNvbmEgTm90IFZhbGlkYXRlZDE3MDUGA1UEAxMuVmVyaVNp Z24gQ2xhc3MgMSBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0EgLSBHMjAeFw0wOTEwMTQwMDAw MDBaFw0xMDEwMTQyMzU5NTlaMIIBCzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNV BAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxRjBEBgNVBAsTPXd3dy52ZXJpc2lnbi5jb20v cmVwb3NpdG9yeS9SUEEgSW5jb3JwLiBieSBSZWYuLExJQUIuTFREKGMpOTgxHjAcBgNVBAsT FVBlcnNvbmEgTm90IFZhbGlkYXRlZDEzMDEGA1UECxMqRGlnaXRhbCBJRCBDbGFzcyAxIC0g TmV0c2NhcGUgRnVsbCBTZXJ2aWNlMRMwEQYDVQQDFApBbGFuIEJhdGllMR0wGwYJKoZIhvcN AQkBFg5hbGFuQGJhdGllLm9yZzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALvy DNwMUJu/OcYK78MvNS0hmtHRixlsAirPKHoSMToW8fTkkr9JEnnMzfan9utkX30og2krKipy 1gQsm6oxEJ0mt0JlqL247RUYJadlxgfffyjluH9ATotnXq2PhH1SN0HIr9Id4JTE0fFeYdcD 472TeFllerrVYb3VrxcqQ+AAy5jJDTYCBQhcNzbw+MQ8Y6LaJqW+CX2muk1R3dU4ZsfrTW/3 zAWFjkuT43vjtY8fC+P++/7kBn+rBs01FFGYudS0wUqruG2YICWxXl8V40mTq3j+rRz36e6y t3aY7VWRP1cHdNew5XHMNENHZrE/z6Gtghnc4zKQRrNYDCNTY18CAwEAAaOBzDCByTAJBgNV HRMEAjAAMEQGA1UdIAQ9MDswOQYLYIZIAYb4RQEHFwEwKjAoBggrBgEFBQcCARYcaHR0cHM6 Ly93d3cudmVyaXNpZ24uY29tL3JwYTALBgNVHQ8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUH AwQGCCsGAQUFBwMCMEoGA1UdHwRDMEEwP6A9oDuGOWh0dHA6Ly9JbmRDMURpZ2l0YWxJRC1j cmwudmVyaXNpZ24uY29tL0luZEMxRGlnaXRhbElELmNybDANBgkqhkiG9w0BAQUFAAOCAQEA Y3FWxIN+jqSWBO2MWGFD0s2tP1hP7byHlhFqXD7MBntx23G7lKL13QF+vh2Np8Vd1dxnTWM6 GSGImQY6U3utRvdpwOtV4/zo3zaMAeg0KbWfWu1ZFujC3mXowaaMKJ1aqWPGS3vbMBkTh5BZ sfTFuNRZkex3xH2VD3exvxW/pfMEkyQNeSMRbyWlwuajFG0nF6rqNT3dCqLqDpkqSgaUcfa0 5iqofrUf2UGSj9nIzdaUZfSBJhnCFVFCLUYd/yB7qbpvG6bsOcbVz3503Dlpev8jgMtMjlaI ItT7VWHek0VreogZnKvFL+QVOn8O6FzxyoTSdr/8Ht5Mc5LIDQzGTDGCBOkwggTlAgEBMIHx MIHdMQswCQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZl cmlTaWduIFRydXN0IE5ldHdvcmsxOzA5BgNVBAsTMlRlcm1zIG9mIHVzZSBhdCBodHRwczov L3d3dy52ZXJpc2lnbi5jb20vcnBhIChjKTA1MR4wHAYDVQQLExVQZXJzb25hIE5vdCBWYWxp ZGF0ZWQxNzA1BgNVBAMTLlZlcmlTaWduIENsYXNzIDEgSW5kaXZpZHVhbCBTdWJzY3JpYmVy IENBIC0gRzICD2Uew5tOdx6MtRaKiW9l5DAJBgUrDgMCGgUAoIICzDAYBgkqhkiG9w0BCQMx CwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0xMDA3MzAwMDM5MzBaMCMGCSqGSIb3DQEJ BDEWBBThnbx0ioVml+dvMCr4A/Fqe3mzlTBfBgkqhkiG9w0BCQ8xUjBQMAsGCWCGSAFlAwQB AjAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwDQYIKoZIhvcNAwICAUAwBwYFKw4DAgcw DQYIKoZIhvcNAwICASgwggECBgkrBgEEAYI3EAQxgfQwgfEwgd0xCzAJBgNVBAYTAlVTMRcw FQYDVQQKEw5WZXJpU2lnbiwgSW5jLjEfMB0GA1UECxMWVmVyaVNpZ24gVHJ1c3QgTmV0d29y azE7MDkGA1UECxMyVGVybXMgb2YgdXNlIGF0IGh0dHBzOi8vd3d3LnZlcmlzaWduLmNvbS9y cGEgKGMpMDUxHjAcBgNVBAsTFVBlcnNvbmEgTm90IFZhbGlkYXRlZDE3MDUGA1UEAxMuVmVy aVNpZ24gQ2xhc3MgMSBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0EgLSBHMgIPZR7Dm053Hoy1 FoqJb2XkMIIBBAYLKoZIhvcNAQkQAgsxgfSggfEwgd0xCzAJBgNVBAYTAlVTMRcwFQYDVQQK Ew5WZXJpU2lnbiwgSW5jLjEfMB0GA1UECxMWVmVyaVNpZ24gVHJ1c3QgTmV0d29yazE7MDkG A1UECxMyVGVybXMgb2YgdXNlIGF0IGh0dHBzOi8vd3d3LnZlcmlzaWduLmNvbS9ycGEgKGMp MDUxHjAcBgNVBAsTFVBlcnNvbmEgTm90IFZhbGlkYXRlZDE3MDUGA1UEAxMuVmVyaVNpZ24g Q2xhc3MgMSBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0EgLSBHMgIPZR7Dm053Hoy1FoqJb2Xk MA0GCSqGSIb3DQEBAQUABIIBABDZyfX0GXmCvjQzm8iPO1isgvxStjWQjtAG2Dr1Bfx4CGNC HMDl8l4nkrY9myeGad0DPrtGro/MXt6Ebmo9pDMCAXp5RzM90vgKz69XRNcHjB3psKNMxLR8 YbaCPnDzpKXJ3/3VNuLzEh+hSu00Yy0fN6zOWqFokG/5cgeWhKGnN6Ug6xGuwCuIBHs1fb/2 jVHrjnjIds5oP7wt1ybHuo7VFtlCKOWqWkjh9Q2A7sIx6TXNcIXvPg2V23rQ+0USlV1emY3e B4wstpgTLtyvdvr+R2Q8xPv0qhuBBp5KooTLj+vlG3zv9VrCuGZEWbXWlIu1I4NLpzZ0MHQb Tgky4TIAAAAAAAA= --------------ms070907040206060705020901-- From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 01:30:04 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AD77A106566B for ; Fri, 30 Jul 2010 01:30:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 81F2B8FC08 for ; Fri, 30 Jul 2010 01:30:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6U1U4ZA062493 for ; Fri, 30 Jul 2010 01:30:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6U1U4rg062488; Fri, 30 Jul 2010 01:30:04 GMT (envelope-from gnats) Date: Fri, 30 Jul 2010 01:30:04 GMT Message-Id: <201007300130.o6U1U4rg062488@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: jhell Cc: Subject: Re: bin/145082: Patch against w(1) & uptime(1) to use 24H time by default. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: jhell List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 01:30:04 -0000 The following reply was made to PR bin/145082; it has been noted by GNATS. From: jhell To: bug-followup@FreeBSD.org, jhell@DataIX.net Cc: Subject: Re: bin/145082: Patch against w(1) & uptime(1) to use 24H time by default. Date: Thu, 29 Jul 2010 20:57:23 -0400 That is part of the problem, I tried to select 24h output and was unsuccessful at doing so. Then I patched up everything I could find to just use 24h time to match the rest of the system since at the time I was looking into it, it was not or did not seem possible to just change a environment variable or other things. --=20 =A0jhell From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 01:30:05 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5ABF2106566C; Fri, 30 Jul 2010 01:30:05 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 312498FC16; Fri, 30 Jul 2010 01:30:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6U1U5Ks062573; Fri, 30 Jul 2010 01:30:05 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6U1U5Fh062565; Fri, 30 Jul 2010 01:30:05 GMT (envelope-from linimon) Date: Fri, 30 Jul 2010 01:30:05 GMT Message-Id: <201007300130.o6U1U5Fh062565@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, openoffice@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/149087: editors/openoffice.org-3 does not compile X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 01:30:05 -0000 Old Synopsis: openoffice.org-3 does not compile New Synopsis: editors/openoffice.org-3 does not compile Responsible-Changed-From-To: freebsd-bugs->openoffice Responsible-Changed-By: linimon Responsible-Changed-When: Fri Jul 30 01:29:38 UTC 2010 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=149087 From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 01:36:30 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD542106566C; Fri, 30 Jul 2010 01:36:30 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B37C68FC19; Fri, 30 Jul 2010 01:36:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6U1aU5e073072; Fri, 30 Jul 2010 01:36:30 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6U1aUts073068; Fri, 30 Jul 2010 01:36:30 GMT (envelope-from linimon) Date: Fri, 30 Jul 2010 01:36:30 GMT Message-Id: <201007300136.o6U1aUts073068@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-net@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/149086: [multicast] Generic multicast join failure in 8.1 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 01:36:31 -0000 Old Synopsis: Generic multicast join failure in 8.1 New Synopsis: [multicast] Generic multicast join failure in 8.1 Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Fri Jul 30 01:35:20 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=149086 From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 06:25:05 2010 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 97EE91065678 for ; Fri, 30 Jul 2010 06:25:05 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from mail08.syd.optusnet.com.au (mail08.syd.optusnet.com.au [211.29.132.189]) by mx1.freebsd.org (Postfix) with ESMTP id 3229B8FC15 for ; Fri, 30 Jul 2010 06:25:04 +0000 (UTC) Received: from c122-106-147-41.carlnfd1.nsw.optusnet.com.au (c122-106-147-41.carlnfd1.nsw.optusnet.com.au [122.106.147.41]) by mail08.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id o6U6OxrF021611 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 30 Jul 2010 16:25:01 +1000 Date: Fri, 30 Jul 2010 16:24:59 +1000 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: jilles@FreeBSD.org In-Reply-To: <201007292327.o6TNRHAi045973@freefall.freebsd.org> Message-ID: <20100730144702.M2522@delplex.bde.org> References: <201007292327.o6TNRHAi045973@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-bugs@FreeBSD.org, andyf@speednet.com.au Subject: Re: bin/54784: find(1) -ls wastes space X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 06:25:05 -0000 On Thu, 29 Jul 2010 jilles@FreeBSD.org wrote: > Synopsis: find(1) -ls wastes space > > State-Changed-From-To: open->closed > State-Changed-By: jilles > State-Changed-When: Thu Jul 29 23:24:55 UTC 2010 > State-Changed-Why: > I don't think there is a good way to fix this. > Iterating over all users with getpwent() may be very slow or may not work > at all in some environments. > I don't see another way to find the column widths. Buffering all output > would be rather annoying as well. It certainly gives unreadable output. And didn't someone want to bloat UT_NAMESIZE to 256 or so, so that only users with 400-column terminals could read the output? Related bugs: - find(1) claims that the format is identical to that produced by ls -dgils. Actually, the formats differ greatly in whitespace -- the latter produces readable output. ls -Rdigls has the same problem as find -ls. ls has variable column widths for many of the fields including ids. I think it doesn't calculate the maximum in advance, but keeps using the previous maximum. - UT_LINESIZE and no longer exist, but: - the not-unused header says that MAXLOGNAME should be UT_LINESIZE+1 refers to for this. - the not-unused header says that L_cuserid is UT_LINESIZE + 1 and refers to for this. - there are some style bugs in these dead comments. - ut_user[] in struct utmpx has size 32 bytes (max name length 31?), but MAXLOGNAME is still 17. - find -ls still uses MAXLOGNAME, so its format hasn't been properly bloated. - there are related formatting problems for printing the inode number. find -ls uses the fixed format %6lu and a bogus cast to u_long to ensure breakage if ino_t is larger than u_long. ls uses the variable format %*lu. %6lu was more than enough when inodes were 16-bit and/or file systems were small, but hasn't been enough for many years. It messes up the alignment of the columns if there is a mixture of large and small inode numbers, and you almost might as well print ids using %s and accept the misalignment from this too. - find -ls has many other printf format errors and format-printf errors: % void % printlong(char *name, char *accpath, struct stat *sb) % { % char modep[15]; % % (void)printf("%6lu %8"PRId64" ", (u_long) sb->st_ino, sb->st_blocks); - format-printf errors: - PRI* shouldn't exist, but is used - space after cast - printf format errors: - PRI* cannot be used here (without bogusly casting st_blocks to match it). st_blocks has type blkcnt_t, which might differ from int64_t. blkcnt_t is actually still int64_t, and it would not be unreasonable to depend on this implementation to avoid using the PRI* mistake, but not to use it. % (void)strmode(sb->st_mode, modep); % (void)printf("%s %3u %-*s %-*s ", modep, sb->st_nlink, MAXLOGNAME - 1, % user_from_uid(sb->st_uid, 0), MAXLOGNAME - 1, % group_from_gid(sb->st_gid, 0)); Minor problems with fixed-width format for st_nlink (st_nlink can be as much as 32767, and when it is >= 1000 it is misformatted). Honest chumminess with the implementation for st_nlink. nlink_t happens to be uint16_t so it promotes to u_int. This still uses MAXLOGNAME. Since MAXLOGNAME is not even the maximum, misaligned comumns result if ut_user[] is actually used. Here instead of using %s format to get misalignment often or the current format to get misalignment sometimes, we should probably use a debloated non-maximum like 8 to get misalignment sometimes. % % if (S_ISCHR(sb->st_mode) || S_ISBLK(sb->st_mode)) % (void)printf("%3d, %3d ", major(sb->st_rdev), % minor(sb->st_rdev)); The fixed width of 3 for device numbers will mostly work now, but it used to cause lots of misalignment in ls output due to sparse encodings in 32-bit minor numbers. % else % (void)printf("%8"PRId64" ", sb->st_size); This use of PRI* is not even not wrong, as above. % printtime(sb->st_mtime); I fear finding too many format errors to look at the sub-functions. % (void)printf("%s", name); % if (S_ISLNK(sb->st_mode)) % printlink(accpath); % (void)putchar('\n'); % } ls doesn't use the PRI* mistake, but it uses the humanize_number() mistake and associated bogus casts and printf format errors. E.g., in printsize(), for the scientificized case it blindly casts the size (which is an off_t) to int64_t to match humanize_number()'s broken API, and in the decimal case it uses %*jd format with 2 errors (first it bogusly casts the field width (which has the bogus type size_t) to the bogus type u_int (the '*' takes an int), and then it doesn't cast the size to intmax_t to match %jd. ls uses a sub-function for printing device numbers to reduce the problems with large and negative device numbers. The find -ls output is much futher from having the same format as ls -digls in this cases. Perhaps similarly in cases involving extensions like likeACLs. Certainly similarly when ls -digls is forced to be colorized by an environment variable :-). I didn't know that find -ls existed, and would use xargs :-). Bruce From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 07:20:08 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E2B101065679 for ; Fri, 30 Jul 2010 07:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6EA1C8FC1D for ; Fri, 30 Jul 2010 07:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6U7K8tu012542 for ; Fri, 30 Jul 2010 07:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6U7K8eB012541; Fri, 30 Jul 2010 07:20:08 GMT (envelope-from gnats) Resent-Date: Fri, 30 Jul 2010 07:20:08 GMT Resent-Message-Id: <201007300720.o6U7K8eB012541@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Axel Gonzalez Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 405981065670 for ; Fri, 30 Jul 2010 07:19:19 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 155778FC17 for ; Fri, 30 Jul 2010 07:19:19 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6U7JImr095542 for ; Fri, 30 Jul 2010 07:19:18 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6U7JIv3095541; Fri, 30 Jul 2010 07:19:18 GMT (envelope-from nobody) Message-Id: <201007300719.o6U7JIv3095541@www.freebsd.org> Date: Fri, 30 Jul 2010 07:19:18 GMT From: Axel Gonzalez To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/149094: ports irc/kvirc-* vulnerability X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 07:20:09 -0000 >Number: 149094 >Category: misc >Synopsis: ports irc/kvirc-* vulnerability >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Jul 30 07:20:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Axel Gonzalez >Release: 8.1-RELEASE >Organization: >Environment: FreeBSD moonlight 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Tue Jul 27 23:15:07 CDT 2010 toor@moonlight:/tmp/obj/usr/src/sys/LXCORE2e i386 >Description: remote command execution. https://svn.kvirc.de/kvirc/ticket/858 >How-To-Repeat: Install kvirc, connect to server, be exploited >Fix: Apply the patch from: https://svn.kvirc.de/kvirc/changeset/4693 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 07:37:01 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CC51B106567A; Fri, 30 Jul 2010 07:37:01 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A37E68FC08; Fri, 30 Jul 2010 07:37:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6U7b1VY052709; Fri, 30 Jul 2010 07:37:01 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6U7b1BT052704; Fri, 30 Jul 2010 07:37:01 GMT (envelope-from linimon) Date: Fri, 30 Jul 2010 07:37:01 GMT Message-Id: <201007300737.o6U7b1BT052704@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, makc@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/149094: ports irc/kvirc-* vulnerability X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 07:37:01 -0000 Synopsis: ports irc/kvirc-* vulnerability Responsible-Changed-From-To: freebsd-bugs->makc Responsible-Changed-By: linimon Responsible-Changed-When: Fri Jul 30 07:35:19 UTC 2010 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=149094 From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 07:50:04 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1EC0B1065670 for ; Fri, 30 Jul 2010 07:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E90228FC21 for ; Fri, 30 Jul 2010 07:50:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6U7o39n062832 for ; Fri, 30 Jul 2010 07:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6U7o3R0062831; Fri, 30 Jul 2010 07:50:03 GMT (envelope-from gnats) Resent-Date: Fri, 30 Jul 2010 07:50:03 GMT Resent-Message-Id: <201007300750.o6U7o3R0062831@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Vsevolod Volkov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EEFFD106567C for ; Fri, 30 Jul 2010 07:47:45 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id C46A68FC18 for ; Fri, 30 Jul 2010 07:47:45 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6U7lj9I019614 for ; Fri, 30 Jul 2010 07:47:45 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6U7ljg1019613; Fri, 30 Jul 2010 07:47:45 GMT (envelope-from nobody) Message-Id: <201007300747.o6U7ljg1019613@www.freebsd.org> Date: Fri, 30 Jul 2010 07:47:45 GMT From: Vsevolod Volkov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/149097: [panic] [cdpd] cdpd causes kernel panic X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 07:50:04 -0000 >Number: 149097 >Category: kern >Synopsis: [panic] [cdpd] cdpd causes kernel panic >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 Jul 30 07:50:03 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Vsevolod Volkov >Release: 8.1-RELEASE >Organization: >Environment: FreeBSD hostname.carrier.kiev.ua 8.1-RELEASE FreeBSD 8.1-RELEASE #8: Thu Jul 29 14:52:21 EEST 2010 root@hostname.carrier.kiev.ua:/usr/obj/usr/src/sys/hostname i386 >Description: Starting cdpd daemon causes immediate kernel panic. >How-To-Repeat: 1. Install cdpd from the port. 2. Start cdpd using /usr/local/etc/rc.d/cdpd. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 08:40:23 2010 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 91C2D1065672; Fri, 30 Jul 2010 08:40:23 +0000 (UTC) (envelope-from olli@lurza.secnetix.de) Received: from lurza.secnetix.de (lurza.secnetix.de [IPv6:2a01:170:102f::2]) by mx1.freebsd.org (Postfix) with ESMTP id D19FD8FC14; Fri, 30 Jul 2010 08:40:22 +0000 (UTC) Received: from lurza.secnetix.de (localhost [127.0.0.1]) by lurza.secnetix.de (8.14.3/8.14.3) with ESMTP id o6U8e4s8008231; Fri, 30 Jul 2010 10:40:20 +0200 (CEST) (envelope-from oliver.fromme@secnetix.de) Received: (from olli@localhost) by lurza.secnetix.de (8.14.3/8.14.3/Submit) id o6U8e4AD008230; Fri, 30 Jul 2010 10:40:04 +0200 (CEST) (envelope-from olli) Date: Fri, 30 Jul 2010 10:40:04 +0200 (CEST) Message-Id: <201007300840.o6U8e4AD008230@lurza.secnetix.de> From: Oliver Fromme To: freebsd-bugs@FreeBSD.ORG, brde@optusnet.com.au, jilles@FreeBSD.ORG, andyf@speednet.com.au In-Reply-To: <20100730144702.M2522@delplex.bde.org> X-Newsgroups: list.freebsd-bugs User-Agent: tin/1.8.3-20070201 ("Scotasay") (UNIX) (FreeBSD/6.4-PRERELEASE-20080904 (i386)) MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.3.4 (lurza.secnetix.de [127.0.0.1]); Fri, 30 Jul 2010 10:40:20 +0200 (CEST) Cc: Subject: Re: bin/54784: find(1) -ls wastes space X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 08:40:23 -0000 Bruce Evans wrote: > On Thu, 29 Jul 2010 jilles@FreeBSD.org wrote: > > > Synopsis: find(1) -ls wastes space > > > > State-Changed-From-To: open->closed > > State-Changed-By: jilles > > State-Changed-When: Thu Jul 29 23:24:55 UTC 2010 > > State-Changed-Why: > > I don't think there is a good way to fix this. > > Iterating over all users with getpwent() may be very slow or may not work > > at all in some environments. > > I don't see another way to find the column widths. Buffering all output > > would be rather annoying as well. > > It certainly gives unreadable output. And didn't someone want to bloat > UT_NAMESIZE to 256 or so, so that only users with 400-column terminals > could read the output? I'm afraid I have to agree with Jilles here. I don't think many people actually read the output from find -ls. Personally I only use find -ls in scripts, although recently I'm tempted to use "find ... | xargs stat" instead because stat(1) provides much more flexibility regarding the output format, so the script doesn't have to do as much parsing itself. On the other hand, find -ls exists for MUCH longer and is more portable. If I actually want to read ls-like output on the screen, I use "find | xargs ls -...". I also *strongly* agree with Jilles that find(1) should not buffer all output. This could possibly break some scripts or at least make them run slower and less efficient. > I didn't know that find -ls existed, and would use xargs :-). I did know that it exists, and I do use xargs. :-) (Well, at least for output that's supposed to be read by humans. Scripts are a different story.) Best regards Oliver -- Oliver Fromme, secnetix GmbH & Co. KG, Marktplatz 29, 85567 Grafing b. M. Handelsregister: Registergericht Muenchen, HRA 74606, Geschäftsfuehrung: secnetix Verwaltungsgesellsch. mbH, Handelsregister: Registergericht Mün- chen, HRB 125758, Geschäftsführer: Maik Bachmann, Olaf Erb, Ralf Gebhart FreeBSD-Dienstleistungen, -Produkte und mehr: http://www.secnetix.de/bsd "I have stopped reading Stephen King novels. Now I just read C code instead." -- Richard A. O'Keefe From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 10:40:07 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 843D31065674 for ; Fri, 30 Jul 2010 10:40:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5FEE18FC1B for ; Fri, 30 Jul 2010 10:40:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6UAe7GV005353 for ; Fri, 30 Jul 2010 10:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6UAe7KO005352; Fri, 30 Jul 2010 10:40:07 GMT (envelope-from gnats) Resent-Date: Fri, 30 Jul 2010 10:40:07 GMT Resent-Message-Id: <201007301040.o6UAe7KO005352@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ildar Hizbulin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E7FAF1065676 for ; Fri, 30 Jul 2010 10:31:22 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id D504F8FC1B for ; Fri, 30 Jul 2010 10:31:22 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6UAVMSN073558 for ; Fri, 30 Jul 2010 10:31:22 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6UAVM9A073557; Fri, 30 Jul 2010 10:31:22 GMT (envelope-from nobody) Message-Id: <201007301031.o6UAVM9A073557@www.freebsd.org> Date: Fri, 30 Jul 2010 10:31:22 GMT From: Ildar Hizbulin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/149103: databases/py-sqlalchemy update to 0.6.3 or create new version of port? X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 10:40:07 -0000 >Number: 149103 >Category: misc >Synopsis: databases/py-sqlalchemy update to 0.6.3 or create new version of port? >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 Jul 30 10:40:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Ildar Hizbulin >Release: 8.1-RELEASE >Organization: Ariadna-Link, ISP >Environment: FreeBSD trup 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Fri Jul 30 13:16:24 MSD 2010 se@trup:/usr/obj/usr/src/sys/DTRACE i386 >Description: http://www.sqlalchemy.org/ two release branches 0.6.3 and 0.5.8 i create patch port from 0.5.7 -> 0.6.3 but I do not know whether to update the port, as well as in the new version, some things have changed, may create another port for the 0.6.x branch? >How-To-Repeat: >Fix: diff -ruN ../databases/py-sqlalchemy/Makefile ../hizel/py-sqlalchemy/Makefile --- ../databases/py-sqlalchemy/Makefile 2010-01-11 09:04:50.000000000 +0300 +++ ../hizel/py-sqlalchemy/Makefile 2010-07-30 13:12:17.000000000 +0400 @@ -6,7 +6,7 @@ # PORTNAME= sqlalchemy -PORTVERSION= 0.5.7 +PORTVERSION= 0.6.3 CATEGORIES= databases python MASTER_SITES= SF \ CHEESESHOP diff -ruN ../databases/py-sqlalchemy/distinfo ../hizel/py-sqlalchemy/distinfo --- ../databases/py-sqlalchemy/distinfo 2010-01-11 09:04:50.000000000 +0300 +++ ../hizel/py-sqlalchemy/distinfo 2010-07-30 13:12:37.000000000 +0400 @@ -1,3 +1,3 @@ -MD5 (SQLAlchemy-0.5.7.tar.gz) = b6a7615ec6761f660b23359f3a9d902b -SHA256 (SQLAlchemy-0.5.7.tar.gz) = 97eff3b0068cd0f76a029a64defa908ca686de2d7904fa61f099927e5f438dab -SIZE (SQLAlchemy-0.5.7.tar.gz) = 1542756 +MD5 (SQLAlchemy-0.6.3.tar.gz) = 103bdc156a95291a302acc42c136bf7d +SHA256 (SQLAlchemy-0.6.3.tar.gz) = 33e5b7c691f3b07b860799166190944ea9908cd09c7aa7b66c0e871b63407c9b +SIZE (SQLAlchemy-0.6.3.tar.gz) = 1891372 diff -ruN ../databases/py-sqlalchemy/pkg-plist ../hizel/py-sqlalchemy/pkg-plist --- ../databases/py-sqlalchemy/pkg-plist 2010-01-11 09:04:50.000000000 +0300 +++ ../hizel/py-sqlalchemy/pkg-plist 2010-07-30 14:00:26.000000000 +0400 @@ -1,4 +1,3 @@ -@comment $FreeBSD: ports/databases/py-sqlalchemy/pkg-plist,v 1.13 2010/01/02 14:39:35 nivit Exp $ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/SOURCES.txt %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/dependency_links.txt @@ -8,57 +7,174 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/__init__.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/__init__.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/connectors/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/connectors/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/connectors/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/connectors/mxodbc.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/connectors/mxodbc.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/connectors/mxodbc.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/connectors/pyodbc.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/connectors/pyodbc.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/connectors/pyodbc.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/connectors/zxJDBC.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/connectors/zxJDBC.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/connectors/zxJDBC.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/__init__.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/__init__.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/access.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/access.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/access.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/firebird.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/firebird.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/firebird.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/information_schema.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/information_schema.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/information_schema.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/informix.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/informix.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/informix.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/maxdb.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/maxdb.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/maxdb.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/mssql.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/mssql.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/mssql.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/mxODBC.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/mxODBC.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/mxODBC.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/mysql.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/mysql.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/mysql.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/oracle.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/oracle.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/oracle.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/postgres.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/postgres.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/postgres.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/postgresql.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/postgresql.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/postgresql.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/sqlite.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/sqlite.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/sqlite.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/sybase.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/sybase.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases/sybase.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/access/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/access/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/access/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/access/base.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/access/base.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/access/base.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/firebird/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/firebird/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/firebird/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/firebird/base.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/firebird/base.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/firebird/base.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/firebird/kinterbasdb.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/firebird/kinterbasdb.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/firebird/kinterbasdb.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/informix/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/informix/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/informix/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/informix/base.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/informix/base.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/informix/base.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/informix/informixdb.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/informix/informixdb.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/informix/informixdb.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/maxdb/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/maxdb/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/maxdb/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/maxdb/base.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/maxdb/base.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/maxdb/base.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/maxdb/sapdb.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/maxdb/sapdb.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/maxdb/sapdb.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/adodbapi.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/adodbapi.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/adodbapi.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/base.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/base.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/base.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/information_schema.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/information_schema.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/information_schema.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/mxodbc.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/mxodbc.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/mxodbc.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/pymssql.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/pymssql.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/pymssql.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/pyodbc.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/pyodbc.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/pyodbc.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/zxjdbc.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/zxjdbc.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql/zxjdbc.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mysql/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mysql/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mysql/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mysql/base.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mysql/base.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mysql/base.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mysql/mysqlconnector.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mysql/mysqlconnector.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mysql/mysqlconnector.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mysql/mysqldb.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mysql/mysqldb.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mysql/mysqldb.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mysql/oursql.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mysql/oursql.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mysql/oursql.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mysql/pyodbc.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mysql/pyodbc.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mysql/pyodbc.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mysql/zxjdbc.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mysql/zxjdbc.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mysql/zxjdbc.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/oracle/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/oracle/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/oracle/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/oracle/base.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/oracle/base.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/oracle/base.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/oracle/cx_oracle.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/oracle/cx_oracle.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/oracle/cx_oracle.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/oracle/zxjdbc.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/oracle/zxjdbc.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/oracle/zxjdbc.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/postgres.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/postgres.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/postgres.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/postgresql/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/postgresql/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/postgresql/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/postgresql/base.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/postgresql/base.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/postgresql/base.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/postgresql/pg8000.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/postgresql/pg8000.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/postgresql/pg8000.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/postgresql/psycopg2.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/postgresql/psycopg2.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/postgresql/psycopg2.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/postgresql/pypostgresql.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/postgresql/pypostgresql.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/postgresql/pypostgresql.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/postgresql/zxjdbc.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/postgresql/zxjdbc.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/postgresql/zxjdbc.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sqlite/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sqlite/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sqlite/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sqlite/base.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sqlite/base.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sqlite/base.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sqlite/pysqlite.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sqlite/pysqlite.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sqlite/pysqlite.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sybase/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sybase/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sybase/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sybase/base.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sybase/base.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sybase/base.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sybase/mxodbc.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sybase/mxodbc.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sybase/mxodbc.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sybase/pyodbc.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sybase/pyodbc.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sybase/pyodbc.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sybase/pysybase.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sybase/pysybase.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sybase/pysybase.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/engine/__init__.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/engine/__init__.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/engine/__init__.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/engine/base.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/engine/base.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/engine/base.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/engine/ddl.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/engine/ddl.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/engine/ddl.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/engine/default.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/engine/default.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/engine/default.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/engine/reflection.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/engine/reflection.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/engine/reflection.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/engine/strategies.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/engine/strategies.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/engine/strategies.pyo @@ -83,6 +199,9 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/ext/declarative.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/ext/declarative.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/ext/declarative.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/ext/horizontal_shard.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/ext/horizontal_shard.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/ext/horizontal_shard.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/ext/orderinglist.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/ext/orderinglist.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/ext/orderinglist.pyo @@ -155,15 +274,15 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/orm/unitofwork.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/orm/unitofwork.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/orm/unitofwork.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/orm/uowdumper.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/orm/uowdumper.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/orm/uowdumper.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/orm/util.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/orm/util.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/orm/util.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/pool.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/pool.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/pool.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/processors.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/processors.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/processors.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/queue.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/queue.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/queue.pyo @@ -203,6 +322,9 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/engines.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/engines.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/engines.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/entities.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/entities.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/entities.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/noseplugin.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/noseplugin.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/noseplugin.pyo @@ -224,6 +346,9 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/testing.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/testing.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/testing.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/util.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/util.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/util.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/topological.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/topological.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/topological.pyo @@ -233,8 +358,8 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/util.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/util.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/util.pyo -%%PORTDOCS%%%%DOCSDIR%%/copyright.html %%PORTDOCS%%%%DOCSDIR%%/dbengine.html +%%PORTDOCS%%%%DOCSDIR%%/examples.html %%PORTDOCS%%%%DOCSDIR%%/genindex.html %%PORTDOCS%%%%DOCSDIR%%/index.html %%PORTDOCS%%%%DOCSDIR%%/intro.html @@ -249,12 +374,13 @@ %%PORTDOCS%%%%DOCSDIR%%/reference/dialects/mssql.html %%PORTDOCS%%%%DOCSDIR%%/reference/dialects/mysql.html %%PORTDOCS%%%%DOCSDIR%%/reference/dialects/oracle.html -%%PORTDOCS%%%%DOCSDIR%%/reference/dialects/postgres.html +%%PORTDOCS%%%%DOCSDIR%%/reference/dialects/postgresql.html %%PORTDOCS%%%%DOCSDIR%%/reference/dialects/sqlite.html %%PORTDOCS%%%%DOCSDIR%%/reference/dialects/sybase.html %%PORTDOCS%%%%DOCSDIR%%/reference/ext/associationproxy.html %%PORTDOCS%%%%DOCSDIR%%/reference/ext/compiler.html %%PORTDOCS%%%%DOCSDIR%%/reference/ext/declarative.html +%%PORTDOCS%%%%DOCSDIR%%/reference/ext/horizontal_shard.html %%PORTDOCS%%%%DOCSDIR%%/reference/ext/index.html %%PORTDOCS%%%%DOCSDIR%%/reference/ext/orderinglist.html %%PORTDOCS%%%%DOCSDIR%%/reference/ext/serializer.html @@ -270,23 +396,31 @@ %%PORTDOCS%%%%DOCSDIR%%/reference/sqlalchemy/connections.html %%PORTDOCS%%%%DOCSDIR%%/reference/sqlalchemy/expressions.html %%PORTDOCS%%%%DOCSDIR%%/reference/sqlalchemy/index.html +%%PORTDOCS%%%%DOCSDIR%%/reference/sqlalchemy/inspector.html %%PORTDOCS%%%%DOCSDIR%%/reference/sqlalchemy/interfaces.html %%PORTDOCS%%%%DOCSDIR%%/reference/sqlalchemy/pooling.html %%PORTDOCS%%%%DOCSDIR%%/reference/sqlalchemy/schema.html %%PORTDOCS%%%%DOCSDIR%%/reference/sqlalchemy/types.html +%%PORTDOCS%%%%DOCSDIR%%/reference/sqlalchemy/util.html %%PORTDOCS%%%%DOCSDIR%%/search.html %%PORTDOCS%%%%DOCSDIR%%/searchindex.js %%PORTDOCS%%%%DOCSDIR%%/session.html %%PORTDOCS%%%%DOCSDIR%%/sqlexpression.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/README %%PORTEXAMPLES%%%%EXAMPLESDIR%%/__init__.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/adjacencytree/__init__.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/adjacencytree/basic_tree.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/adjacency_list/__init__.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/adjacency_list/adjacency_list.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/association/__init__.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/association/basic_association.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/association/proxied_association.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/collections/__init__.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/collections/large_collection.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/beaker_caching/__init__.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/beaker_caching/advanced.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/beaker_caching/environment.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/beaker_caching/fixture_data.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/beaker_caching/helloworld.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/beaker_caching/local_session_caching.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/beaker_caching/meta.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/beaker_caching/model.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/beaker_caching/relation_caching.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/custom_attributes/__init__.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/custom_attributes/custom_management.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/custom_attributes/listen_for_events.py @@ -302,47 +436,45 @@ %%PORTEXAMPLES%%%%EXAMPLESDIR%%/elementtree/test2.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/elementtree/test3.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphs/__init__.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphs/graph1.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphs/directed_graph.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inheritance/__init__.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inheritance/concrete.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inheritance/polymorph.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inheritance/single.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/large_collection/__init__.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/large_collection/large_collection.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/nested_sets/__init__.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/nested_sets/nested_sets.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pickle/__init__.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pickle/custom_pickler.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/poly_assoc/__init__.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/poly_assoc/poly_assoc.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/poly_assoc/poly_assoc_fk.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/poly_assoc/poly_assoc_generic.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/polymorph/__init__.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/polymorph/concrete.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/polymorph/polymorph.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/polymorph/single.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/postgis/__init__.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/postgis/postgis.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/query_caching/__init__.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/query_caching/implicit.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/query_caching/per_session.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/query_caching/query_caching.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sharding/__init__.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sharding/attribute_shard.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/versioning/__init__.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/versioning/history_meta.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/versioning/test_versioning.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vertical/__init__.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vertical/dictlike-polymorphic.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vertical/dictlike.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/vertical/vertical.py %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/vertical +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/versioning %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/sharding -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/query_caching %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/postgis -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/polymorph %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/poly_assoc -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pickle %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/nested_sets +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/large_collection +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/inheritance %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/graphs %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/elementtree %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/dynamic_dict %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/derived_attributes %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/custom_attributes -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/collections +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/beaker_caching %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/association -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/adjacencytree +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/adjacency_list %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%%/reference/sqlalchemy %%PORTDOCS%%@dirrm %%DOCSDIR%%/reference/orm @@ -355,7 +487,19 @@ @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/orm @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/ext @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/engine +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sybase +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/sqlite +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/postgresql +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/oracle +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mysql +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/mssql +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/maxdb +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/informix +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/firebird +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects/access +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/dialects @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/databases +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/connectors @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 10:56:35 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6A9921065678; Fri, 30 Jul 2010 10:56:35 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 416E68FC15; Fri, 30 Jul 2010 10:56:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6UAuZ0r025272; Fri, 30 Jul 2010 10:56:35 GMT (envelope-from jilles@freefall.freebsd.org) Received: (from jilles@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6UAuY9A025268; Fri, 30 Jul 2010 10:56:34 GMT (envelope-from jilles) Date: Fri, 30 Jul 2010 10:56:34 GMT Message-Id: <201007301056.o6UAuY9A025268@freefall.freebsd.org> To: mi@aldan.algebra.com, jilles@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jilles@FreeBSD.org Cc: Subject: Re: bin/11085: syslog.conf(5) Per-host configuration for syslog.conf X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 10:56:35 -0000 Synopsis: syslog.conf(5) Per-host configuration for syslog.conf State-Changed-From-To: open->closed State-Changed-By: jilles State-Changed-When: Fri Jul 30 10:56:02 UTC 2010 State-Changed-Why: This was implemented (in -CURRENT) in 2000, but differently. http://www.freebsd.org/cgi/query-pr.cgi?pr=11085 From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 11:30:11 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CF22F106567B for ; Fri, 30 Jul 2010 11:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A3B248FC14 for ; Fri, 30 Jul 2010 11:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6UBUB7s054431 for ; Fri, 30 Jul 2010 11:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6UBUBnZ054417; Fri, 30 Jul 2010 11:30:11 GMT (envelope-from gnats) Date: Fri, 30 Jul 2010 11:30:11 GMT Message-Id: <201007301130.o6UBUBnZ054417@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Ildar Hizbulin Cc: Subject: Re: misc/149103: databases/py-sqlalchemy update to 0.6.3 or create new version of port? X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ildar Hizbulin List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 11:30:11 -0000 The following reply was made to PR misc/149103; it has been noted by GNATS. From: Ildar Hizbulin To: bug-followup@FreeBSD.org Cc: Subject: Re: misc/149103: databases/py-sqlalchemy update to 0.6.3 or create new version of port? Date: Fri, 30 Jul 2010 15:28:44 +0400 oops invalid Category, sorry --- e-mail: hizel@vyborg.ru jid: hizel@vyborg.ru, hizel@jabber.ru From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 11:34:08 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 150AA106566B; Fri, 30 Jul 2010 11:34:08 +0000 (UTC) (envelope-from wosch@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E03018FC16; Fri, 30 Jul 2010 11:34:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6UBY7o7064594; Fri, 30 Jul 2010 11:34:07 GMT (envelope-from wosch@freefall.freebsd.org) Received: (from wosch@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6UBY7u4064590; Fri, 30 Jul 2010 11:34:07 GMT (envelope-from wosch) Date: Fri, 30 Jul 2010 11:34:07 GMT Message-Id: <201007301134.o6UBY7u4064590@freefall.freebsd.org> To: wosch@FreeBSD.org, wosch@FreeBSD.org, freebsd-bugs@FreeBSD.org From: wosch@FreeBSD.org Cc: Subject: Re: bin/35717: which(1) returns wrong exit status for multiple arguments X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 11:34:08 -0000 Synopsis: which(1) returns wrong exit status for multiple arguments State-Changed-From-To: open->closed State-Changed-By: wosch State-Changed-When: Fri Jul 30 11:33:44 UTC 2010 State-Changed-Why: The new behaviour seems consistent with what most other utilities do http://www.freebsd.org/cgi/query-pr.cgi?pr=35717 From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 13:37:32 2010 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 748F21065673 for ; Fri, 30 Jul 2010 13:37:32 +0000 (UTC) (envelope-from bj@0x20.net) Received: from mail.0x20.net (mail.0x20.net [217.69.67.217]) by mx1.freebsd.org (Postfix) with ESMTP id 378F88FC1F for ; Fri, 30 Jul 2010 13:37:31 +0000 (UTC) Received: by mail.0x20.net (Postfix, from userid 1001) id 35AB03A642; Fri, 30 Jul 2010 15:19:22 +0200 (CEST) Date: Fri, 30 Jul 2010 15:19:22 +0200 From: Bjoern Engels To: jh@FreeBSD.org Message-ID: <20100730131921.GA93931@e.0x20.net> References: <201007151027.o6FARtYP048348@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <201007151027.o6FARtYP048348@freefall.freebsd.org> X-PGP-KeyID: FB601479 User-Agent: Mutt/1.5.20 (2009-06-14) Cc: bj@0x20.net, freebsd-bugs@FreeBSD.org Subject: Re: kern/62468: panic: system crashes when serial getty enabled and serial port disabled in BIOS X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 13:37:32 -0000 Hi jh, On Thu, Jul 15, 2010 at 10:27:55AM +0000, jh@FreeBSD.org wrote: > Synopsis: panic: system crashes when serial getty enabled and serial port disabled in BIOS > > State-Changed-From-To: open->feedback > State-Changed-By: jh > State-Changed-When: Thu Jul 15 10:27:25 UTC 2010 > State-Changed-Why: > Can you still reproduce this on recent FreeBSD versions? > > > Responsible-Changed-From-To: freebsd-bugs->jh > Responsible-Changed-By: jh > Responsible-Changed-When: Thu Jul 15 10:27:25 UTC 2010 > Responsible-Changed-Why: > Track. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=62468 Tested with a VMware virtual machine running 8.1-RC: no crash anymore. Don't know if testing on a VM is reasonable, but I don't have an alternative at the moment. -- Viele Gruesse // Best regards Bjoern Engels :wq! From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 16:40:07 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 643741065672 for ; Fri, 30 Jul 2010 16:40:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 297298FC13 for ; Fri, 30 Jul 2010 16:40:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6UGe7fs059673 for ; Fri, 30 Jul 2010 16:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6UGe7uh059672; Fri, 30 Jul 2010 16:40:07 GMT (envelope-from gnats) Resent-Date: Fri, 30 Jul 2010 16:40:07 GMT Resent-Message-Id: <201007301640.o6UGe7uh059672@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Thomas Quinot Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 54495106566B for ; Fri, 30 Jul 2010 16:31:47 +0000 (UTC) (envelope-from thomas@cuivre.fr.eu.org) Received: from melamine.cuivre.fr.eu.org (unknown [IPv6:2001:470:1f15:1531:224:e8ff:fe3d:60a5]) by mx1.freebsd.org (Postfix) with ESMTP id 17DE48FC08 for ; Fri, 30 Jul 2010 16:31:47 +0000 (UTC) Received: by melamine.cuivre.fr.eu.org (Postfix, from userid 1000) id 6F323261C; Fri, 30 Jul 2010 18:31:46 +0200 (CEST) Message-Id: <20100730163146.6F323261C@melamine.cuivre.fr.eu.org> Date: Fri, 30 Jul 2010 18:31:46 +0200 (CEST) From: Thomas Quinot To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/149117: in_pcbbind: redundant test X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Thomas Quinot List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 16:40:07 -0000 >Number: 149117 >Category: kern >Synopsis: in_pcbbind: redundant test >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 Jul 30 16:40:06 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Thomas Quinot >Release: FreeBSD 8.0-STABLE amd64 >Organization: >Environment: System: FreeBSD melamine.cuivre.fr.eu.org 8.0-STABLE FreeBSD 8.0-STABLE #0: Sun Mar 28 14:46:11 CEST 2010 thomas@melamine.cuivre.fr.eu.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: in_pcbbind has a redundant test for inp->inp_lport == 0: if this is not true, the if statement just above will have caused an early return with EINVAL. >How-To-Repeat: Found by code reading. No observable effect. >Fix: Index: in_pcb.c =================================================================== --- in_pcb.c (révision 210660) +++ in_pcb.c (copie de travail) @@ -296,8 +296,7 @@ if (inp->inp_lport != 0 || inp->inp_laddr.s_addr != INADDR_ANY) return (EINVAL); - anonport = inp->inp_lport == 0 && (nam == NULL || - ((struct sockaddr_in *)nam)->sin_port == 0); + anonport = nam == NULL || ((struct sockaddr_in *)nam)->sin_port == 0; error = in_pcbbind_setup(inp, nam, &inp->inp_laddr.s_addr, &inp->inp_lport, cred); if (error) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 17:10:06 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6F8061065679 for ; Fri, 30 Jul 2010 17:10:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 31F978FC1A for ; Fri, 30 Jul 2010 17:10:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6UHA6X0087503 for ; Fri, 30 Jul 2010 17:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6UHA6lt087502; Fri, 30 Jul 2010 17:10:06 GMT (envelope-from gnats) Resent-Date: Fri, 30 Jul 2010 17:10:06 GMT Resent-Message-Id: <201007301710.o6UHA6lt087502@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, pluknet Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 308581065673 for ; Fri, 30 Jul 2010 17:00:24 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 1ED798FC1B for ; Fri, 30 Jul 2010 17:00:24 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6UH0Nhv070252 for ; Fri, 30 Jul 2010 17:00:23 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6UH0NhB070251; Fri, 30 Jul 2010 17:00:23 GMT (envelope-from nobody) Message-Id: <201007301700.o6UH0NhB070251@www.freebsd.org> Date: Fri, 30 Jul 2010 17:00:23 GMT From: pluknet To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/149118: [misc] [patch] update bsd-family-tree X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 17:10:06 -0000 >Number: 149118 >Category: misc >Synopsis: [misc] [patch] update bsd-family-tree >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: Fri Jul 30 17:10:05 UTC 2010 >Closed-Date: >Last-Modified: >Originator: pluknet >Release: >Organization: >Environment: >Description: This update brings in 8.1-RELEASE. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: bsd-family-tree =================================================================== --- bsd-family-tree (revision 210657) +++ bsd-family-tree (working copy) @@ -235,9 +235,10 @@ *--FreeBSD | | | | | | 8.0 | | | | | | | FreeBSD | | | | - | V 7.3 | | | DragonFly 2.6.0 - | | | OpenBSD 4.7 | - | | | | | + | | 7.3 | | | DragonFly 2.6.0 + | FreeBSD | | OpenBSD 4.7 | + | 8.1 | | | | + | | | | | | FreeBSD 9 -current | NetBSD -current OpenBSD -current | | | | | | v v v v v @@ -515,6 +516,7 @@ FreeBSD 7.3 2010-03-23 [FBD] DragonFly 2.6.0 2010-03-28 [DFB] OpenBSD 4.7 2010-05-19 [OBD] +FreeBSD 8.1 2010-07-24 [FBD] Bibliography ------------------------ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 17:30:26 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3619E1065673; Fri, 30 Jul 2010 17:30:26 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0B8518FC16; Fri, 30 Jul 2010 17:30:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6UHUPXB010352; Fri, 30 Jul 2010 17:30:25 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6UHUPHw010343; Fri, 30 Jul 2010 17:30:25 GMT (envelope-from linimon) Date: Fri, 30 Jul 2010 17:30:25 GMT Message-Id: <201007301730.o6UHUPHw010343@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, nivit@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/149103: databases/py-sqlalchemy update to 0.6.3 or create new version of port? X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 17:30:26 -0000 Synopsis: databases/py-sqlalchemy update to 0.6.3 or create new version of port? Responsible-Changed-From-To: freebsd-bugs->nivit Responsible-Changed-By: linimon Responsible-Changed-When: Fri Jul 30 17:30:00 UTC 2010 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=149103 From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 17:41:59 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2AB591065722; Fri, 30 Jul 2010 17:41:59 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 007FE8FC1E; Fri, 30 Jul 2010 17:41:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6UHfwG9027325; Fri, 30 Jul 2010 17:41:58 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6UHfwLE027321; Fri, 30 Jul 2010 17:41:58 GMT (envelope-from linimon) Date: Fri, 30 Jul 2010 17:41:58 GMT Message-Id: <201007301741.o6UHfwLE027321@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-net@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/149117: [inet] [patch] in_pcbbind: redundant test X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 17:41:59 -0000 Old Synopsis: in_pcbbind: redundant test New Synopsis: [inet] [patch] in_pcbbind: redundant test Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Fri Jul 30 17:41:19 UTC 2010 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=149117 From owner-freebsd-bugs@FreeBSD.ORG Fri Jul 30 18:20:08 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7523A1065692 for ; Fri, 30 Jul 2010 18:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6398E8FC0C for ; Fri, 30 Jul 2010 18:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6UIK8ps056352 for ; Fri, 30 Jul 2010 18:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6UIK845056351; Fri, 30 Jul 2010 18:20:08 GMT (envelope-from gnats) Date: Fri, 30 Jul 2010 18:20:08 GMT Message-Id: <201007301820.o6UIK845056351@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Garrett Cooper Cc: Subject: Re: kern/146647: [uart] Some PCIe serial/parallel boards with ID 9901 9710 don't work X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Garrett Cooper List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2010 18:20:08 -0000 The following reply was made to PR kern/146647; it has been noted by GNATS. From: Garrett Cooper To: bug-followup@FreeBSD.org, tjohnson@bobdbob.com Cc: Subject: Re: kern/146647: [uart] Some PCIe serial/parallel boards with ID 9901 9710 don't work Date: Fri, 30 Jul 2010 11:18:14 -0700 Just to follow up, here's what's going on with this PR. I got the card some time back (thanks!) but I got swamped with other work and didn't start poking at the card until recently. I got 2 of the uarts to probe and attach, and got a third uart to attach, but I don't think that's correct as it has a total of 4 different user visible uarts. I booted up Windows 7 on the box and it was reporting two different pairs of uarts -- one pair was high speed PCI-e and one pair was not. I'll poke around further on it this weekend and see what I can come up with. I apologize for taking so long to reply... Thanks, -Garrett From owner-freebsd-bugs@FreeBSD.ORG Sat Jul 31 05:30:04 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8FEF5106567E for ; Sat, 31 Jul 2010 05:30:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 530818FC18 for ; Sat, 31 Jul 2010 05:30:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6V5U4cO002328 for ; Sat, 31 Jul 2010 05:30:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6V5U40B002325; Sat, 31 Jul 2010 05:30:04 GMT (envelope-from gnats) Resent-Date: Sat, 31 Jul 2010 05:30:04 GMT Resent-Message-Id: <201007310530.o6V5U40B002325@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Andy Farkas Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6E81D106566C for ; Sat, 31 Jul 2010 02:57:23 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 5D6C68FC14 for ; Sat, 31 Jul 2010 02:57:23 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6V2vNAT039889 for ; Sat, 31 Jul 2010 02:57:23 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6V2vNkY039888; Sat, 31 Jul 2010 02:57:23 GMT (envelope-from nobody) Message-Id: <201007310257.o6V2vNkY039888@www.freebsd.org> Date: Sat, 31 Jul 2010 02:57:23 GMT From: Andy Farkas To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/149130: grdc(6) stops after n/2 seconds X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Jul 2010 05:30:04 -0000 >Number: 149130 >Category: bin >Synopsis: grdc(6) stops after n/2 seconds >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 Jul 31 05:30:03 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Andy Farkas >Release: 8.1-STABLE >Organization: >Environment: FreeBSD 8.1-STABLE #0: Tue Jul 27 21:37:41 EST 2010 >Description: man 6 grdc states "With an optional numeric argument n it stops after n seconds (default never)." Currently, if n is provided, grdc stops before n/2 seconds. This patch fixes the problem and also makes sure it stops *after* n seconds like the man page says. >How-To-Repeat: > time grdc 10 .. 4.16 real 0.05 user 0.00 sys > >Fix: --- /usr/src/games/grdc/grdc.c 2010-03-12 10:51:13.000000000 +1000 +++ ./grdc.c 2010-07-31 12:43:57.000000000 +1000 @@ -204,9 +204,9 @@ ts.tv_nsec = 0; } nanosleep(&ts, NULL); - now = ts.tv_sec + 1; + ++now; } else - now = ts.tv_sec; + now = ts.tv_sec + 1; if (sigtermed) { standend(); clear(); @@ -214,7 +214,7 @@ endwin(); errx(1, "terminated by signal %d", (int)sigtermed); } - } while(--n); + } while(n--); standend(); clear(); refresh(); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Jul 31 11:07:07 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70D101065677; Sat, 31 Jul 2010 11:07:07 +0000 (UTC) (envelope-from uqs@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 489678FC15; Sat, 31 Jul 2010 11:07:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6VB77ZQ064384; Sat, 31 Jul 2010 11:07:07 GMT (envelope-from uqs@freefall.freebsd.org) Received: (from uqs@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6VB77oX064380; Sat, 31 Jul 2010 11:07:07 GMT (envelope-from uqs) Date: Sat, 31 Jul 2010 11:07:07 GMT Message-Id: <201007311107.o6VB77oX064380@freefall.freebsd.org> To: uqs@FreeBSD.org, freebsd-bugs@FreeBSD.org, uqs@FreeBSD.org From: uqs@FreeBSD.org Cc: Subject: Re: bin/149130: grdc(6) stops after n/2 seconds X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Jul 2010 11:07:07 -0000 Synopsis: grdc(6) stops after n/2 seconds Responsible-Changed-From-To: freebsd-bugs->uqs Responsible-Changed-By: uqs Responsible-Changed-When: Sat Jul 31 11:07:06 UTC 2010 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=149130 From owner-freebsd-bugs@FreeBSD.ORG Sat Jul 31 14:40:04 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 85C321065672 for ; Sat, 31 Jul 2010 14:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5C5D18FC1B for ; Sat, 31 Jul 2010 14:40:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6VEe46P070844 for ; Sat, 31 Jul 2010 14:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6VEe4AJ070843; Sat, 31 Jul 2010 14:40:04 GMT (envelope-from gnats) Date: Sat, 31 Jul 2010 14:40:04 GMT Message-Id: <201007311440.o6VEe4AJ070843@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: bin/139345: commit references a PR X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Jul 2010 14:40:04 -0000 The following reply was made to PR bin/139345; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: bin/139345: commit references a PR Date: Sat, 31 Jul 2010 14:30:22 +0000 (UTC) Author: kib Date: Sat Jul 31 14:30:11 2010 New Revision: 210679 URL: http://svn.freebsd.org/changeset/base/210679 Log: Report the time left for the sleep on SIGINFO. Be stricter in the checking of interval specification. PR: bin/139345 MFC after: 3 weeks Modified: head/bin/sleep/sleep.c Modified: head/bin/sleep/sleep.c ============================================================================== --- head/bin/sleep/sleep.c Sat Jul 31 14:26:10 2010 (r210678) +++ head/bin/sleep/sleep.c Sat Jul 31 14:30:11 2010 (r210679) @@ -42,26 +42,34 @@ static char sccsid[] = "@(#)sleep.c 8.3 __FBSDID("$FreeBSD$"); #include +#include #include +#include #include #include #include #include -void usage(void); +static void usage(void); + +static volatile sig_atomic_t report_requested; +static void +report_request(int signo __unused) +{ + + report_requested = 1; +} int main(int argc, char *argv[]) { struct timespec time_to_sleep; - long l; + long l, original; int neg; char *p; - if (argc != 2) { + if (argc != 2) usage(); - return(1); - } p = argv[1]; @@ -74,10 +82,8 @@ main(int argc, char *argv[]) if (*p == '-') { neg = 1; ++p; - if (!isdigit((unsigned char)*p) && *p != '.') { + if (!isdigit((unsigned char)*p) && *p != '.') usage(); - return(1); - } } else if (*p == '+') ++p; @@ -85,13 +91,13 @@ main(int argc, char *argv[]) /* Calculate seconds. */ if (isdigit((unsigned char)*p)) { l = strtol(p, &p, 10); - if (l > INT_MAX) { - /* - * Avoid overflow when `seconds' is huge. This assumes - * that the maximum value for a time_t is <= INT_MAX. - */ + + /* + * Avoid overflow when `seconds' is huge. This assumes + * that the maximum value for a time_t is <= INT_MAX. + */ + if (l > INT_MAX) l = INT_MAX; - } } else l = 0; time_to_sleep.tv_sec = (time_t)l; @@ -110,16 +116,38 @@ main(int argc, char *argv[]) } while (l); } - if (!neg && (time_to_sleep.tv_sec > 0 || time_to_sleep.tv_nsec > 0)) - (void)nanosleep(&time_to_sleep, (struct timespec *)NULL); + /* Skip over the trailing whitespace. */ + while (isspace((unsigned char)*p)) + ++p; + if (*p != '\0') + usage(); + + signal(SIGINFO, report_request); + if (!neg && (time_to_sleep.tv_sec > 0 || time_to_sleep.tv_nsec > 0)) { + original = time_to_sleep.tv_sec; + while (nanosleep(&time_to_sleep, &time_to_sleep) != 0) { + if (report_requested) { + /* + * Reporting does not bother with + * fractions of a second... + */ + warnx("about %ld second(s) left" + " out of the original %ld", + time_to_sleep.tv_sec, original); + report_requested = 0; + } else + break; + } + } - return(0); + return (0); } -void +static void usage(void) { - const char msg[] = "usage: sleep seconds\n"; + static const char msg[] = "usage: sleep seconds\n"; write(STDERR_FILENO, msg, sizeof(msg) - 1); + exit(1); } _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From owner-freebsd-bugs@FreeBSD.ORG Sat Jul 31 15:10:04 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9A2B0106566C for ; Sat, 31 Jul 2010 15:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5DAD18FC28 for ; Sat, 31 Jul 2010 15:10:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6VFA4pS098556 for ; Sat, 31 Jul 2010 15:10:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6VFA4fV098555; Sat, 31 Jul 2010 15:10:04 GMT (envelope-from gnats) Resent-Date: Sat, 31 Jul 2010 15:10:04 GMT Resent-Message-Id: <201007311510.o6VFA4fV098555@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, pluknet Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EFE0A1065673 for ; Sat, 31 Jul 2010 15:06:16 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id DFF918FC17 for ; Sat, 31 Jul 2010 15:06:16 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6VF6GdM000770 for ; Sat, 31 Jul 2010 15:06:16 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o6VF6G0J000769; Sat, 31 Jul 2010 15:06:16 GMT (envelope-from nobody) Message-Id: <201007311506.o6VF6G0J000769@www.freebsd.org> Date: Sat, 31 Jul 2010 15:06:16 GMT From: pluknet To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/149152: [patch] BSD grep loops with EISDIR trying to read a directory X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Jul 2010 15:10:04 -0000 >Number: 149152 >Category: bin >Synopsis: [patch] BSD grep loops with EISDIR trying to read a directory >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 Jul 31 15:10:04 UTC 2010 >Closed-Date: >Last-Modified: >Originator: pluknet >Release: HEAD r210642 >Organization: >Environment: FreeBSD foo 9.0-CURRENT FreeBSD 9.0-CURRENT #36: Fri Jul 23 10:30:36 UTC 2010 root@foo:/usr/obj/usr/src/sys/GENERIC amd64 >Description: BSD grep used in -CURRENT loops when it gets a directory as a file argument for grepping. grep open()'s a dir, stat()'s that dir, and do a read() on that dir in an endless loop. It seems that grep has no enough error handling. >How-To-Repeat: Loop easily reproducible. Try this (on -CURRENT sources): grep IP_FW_GET /sys/netinet/ipfw*; or grep IP_FW_GET /sys/netinet/ip*; or grep IP_FW_GET /sys/netinet/* That will produce something like this: [...] 41740 grep CALL stat(0x7fffffffe6d4,0x7fffffffda50) 41740 grep NAMI "/sys/netinet/ipfw" 41740 grep STRU struct stat {dev=67174149, ino=47296976, mode=drwxr-xr-x , nlink=4, uid=0, gid=0, rdev=94607662, atime=1276302257, stime=1279007706, ctime=1279007706, birthtime=-1, size=1024, blksize=4096, blocks=4, flags=0x0 } 41740 grep RET stat 0 41740 grep CALL open(0x7fffffffe6d4,O_RDONLY,0x1b6) 41740 grep NAMI "/sys/netinet/ipfw" 41740 grep RET open 3 41740 grep CALL stat(0x507300,0x7fffffffd860) 41740 grep NAMI "/sys/netinet/ipfw" 41740 grep STRU struct stat {dev=67174149, ino=47296976, mode=drwxr-xr-x , nlink=4, uid=0, gid=0, rdev=94607662, atime=1276302257, stime=1279007706, ctime=1279007706, birthtime=-1, size=1024, blksize=4096, blocks=4, flags=0x0 } 41740 grep RET stat 0 41740 grep CALL fstat(0x3,0x7fffffffd730) 41740 grep STRU struct stat {dev=67174149, ino=47296976, mode=drwxr-xr-x , nlink=4, uid=0, gid=0, rdev=94607662, atime=1276302257, stime=1279007706, ctime=1279007706, birthtime=-1, size=1024, blksize=4096, blocks=4, flags=0x0 } 41740 grep RET fstat 0 41740 grep CALL read(0x3,0x800c38000,0x1000) 41740 grep RET read -1 errno 21 Is a directory 41740 grep CALL read(0x3,0x800c38000,0x1000) 41740 grep RET read -1 errno 21 Is a directory 41740 grep CALL read(0x3,0x800c38000,0x1000) 41740 grep RET read -1 errno 21 Is a directory 41740 grep CALL read(0x3,0x800c38000,0x1000) 41740 grep RET read -1 errno 21 Is a directory 41740 grep CALL read(0x3,0x800c38000,0x1000) 41740 grep RET read -1 errno 21 Is a directory 41740 grep CALL read(0x3,0x800c38000,0x1000) 41740 grep RET read -1 errno 21 Is a directory 41740 grep CALL read(0x3,0x800c38000,0x1000) 41740 grep RET read -1 errno 21 Is a directory 41740 grep CALL read(0x3,0x800c38000,0x1000) 41740 grep RET read -1 errno 21 Is a directory 41740 grep CALL read(0x3,0x800c38000,0x1000) [...] >Fix: This is a sort of concept to demonstrate a possible way to handle around the issue. Patch attached with submission follows: Index: file.c =================================================================== --- file.c (revision 210642) +++ file.c (working copy) @@ -164,9 +164,12 @@ lnbuflen *= 2; lnbuf = grep_realloc(lnbuf, ++lnbuflen); } - if ((ch == '\n') || (ch == EOF)) { + if ((ch == '\n') || (ch == EOF && errno != EISDIR)) { lnbuf[i] = '\0'; break; + } else if (ch == EOF && errno == EISDIR) { + lnbuf[i] = '\0'; + return (NULL); /* XXX unclear why '\0' doesn't work */ } else lnbuf[i] = ch; } >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Jul 31 20:16:57 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E55B106566B; Sat, 31 Jul 2010 20:16:57 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0467B8FC12; Sat, 31 Jul 2010 20:16:57 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o6VKGufd099706; Sat, 31 Jul 2010 20:16:56 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o6VKGu5L099702; Sat, 31 Jul 2010 20:16:56 GMT (envelope-from linimon) Date: Sat, 31 Jul 2010 20:16:56 GMT Message-Id: <201007312016.o6VKGu5L099702@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, gabor@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: bin/149152: [patch] grep(1): BSD grep loops with EISDIR trying to read a directory X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Jul 2010 20:16:57 -0000 Old Synopsis: [patch] BSD grep loops with EISDIR trying to read a directory New Synopsis: [patch] grep(1): BSD grep loops with EISDIR trying to read a directory Responsible-Changed-From-To: freebsd-bugs->gabor Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jul 31 20:16:41 UTC 2010 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=149152