From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 9 00:30:05 2011 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 B22D6106566B for ; Sun, 9 Jan 2011 00: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 8C5FD8FC1F for ; Sun, 9 Jan 2011 00: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 p090U5wM000444 for ; Sun, 9 Jan 2011 00:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p090U52T000439; Sun, 9 Jan 2011 00:30:05 GMT (envelope-from gnats) Resent-Date: Sun, 9 Jan 2011 00:30:05 GMT Resent-Message-Id: <201101090030.p090U52T000439@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, Gleb Kurtsou Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BE776106564A for ; Sun, 9 Jan 2011 00:23:36 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id AE7408FC0C for ; Sun, 9 Jan 2011 00:23:36 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p090Na6l096166 for ; Sun, 9 Jan 2011 00:23:36 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p090NaTe096165; Sun, 9 Jan 2011 00:23:36 GMT (envelope-from nobody) Message-Id: <201101090023.p090NaTe096165@red.freebsd.org> Date: Sun, 9 Jan 2011 00:23:36 GMT From: Gleb Kurtsou To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/153801: [patch] btxld produces incorrect ELF binaries 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, 09 Jan 2011 00:30:05 -0000 >Number: 153801 >Category: bin >Synopsis: [patch] btxld produces incorrect ELF binaries >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jan 09 00:30:05 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Gleb Kurtsou >Release: >Organization: >Environment: FreeBSD 9.0-CURRENT #11 r216922+3950ba5 >Description: ELF binaries linked by btxld have invalid .data section virtual address. In a.out binaries .data section is aligned at page size, but it's not the case with ELF. btxldr expects kernel to be on next page (.data section): see sys/boot/i386/btx/btxldr.S: .set MEM_DATA,start+0x1000 # Data segment With the patch applied resulted binaries can be booted by grub (as well as a.out binaries). I didn't check if booting ELF loader is supported by FreeBSD boot2 code. >How-To-Repeat: >Fix: Patch attached with submission follows: diff --git a/usr.sbin/btxld/btxld.c b/usr.sbin/btxld/btxld.c index 1102b5c..7984c4c 100644 --- a/usr.sbin/btxld/btxld.c +++ b/usr.sbin/btxld/btxld.c @@ -426,7 +426,7 @@ puthdr(int fd, struct hdr *hdr) le32toh(eh.p[0].p_filesz)); eh.p[1].p_vaddr = eh.p[1].p_paddr = htole32(align(le32toh(eh.p[0].p_paddr) + le32toh(eh.p[0].p_memsz), - 4)); + 4096)); eh.p[1].p_filesz = eh.p[1].p_memsz = htole32(hdr->data); eh.sh[2].sh_addr = eh.p[0].p_vaddr; eh.sh[2].sh_offset = eh.p[0].p_offset; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 9 02:10:05 2011 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 431541065679 for ; Sun, 9 Jan 2011 02: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 03D448FC1A for ; Sun, 9 Jan 2011 02:10: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 p092A4I6008048 for ; Sun, 9 Jan 2011 02: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 p092A4Sh008047; Sun, 9 Jan 2011 02:10:04 GMT (envelope-from gnats) Resent-Date: Sun, 9 Jan 2011 02:10:04 GMT Resent-Message-Id: <201101090210.p092A4Sh008047@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, Nick Sayer Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1BF2A1065696 for ; Sun, 9 Jan 2011 02:09:32 +0000 (UTC) (envelope-from nsayer@quack.kfu.com) Received: from quack.kfu.com (kfu-1-pt.tunnel.tserv4.nyc4.ipv6.he.net [IPv6:2001:470:1f06:e09::2]) by mx1.freebsd.org (Postfix) with ESMTP id 9E1E88FC1B for ; Sun, 9 Jan 2011 02:09:31 +0000 (UTC) Received: from quack.kfu.com (localhost [127.0.0.1]) by quack.kfu.com (8.14.4/8.14.4) with ESMTP id p0929SYt003110 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Sat, 8 Jan 2011 18:09:30 -0800 (PST) (envelope-from nsayer@quack.kfu.com) Received: (from nsayer@localhost) by quack.kfu.com (8.14.4/8.14.4/Submit) id p0929Ref003109; Sat, 8 Jan 2011 18:09:27 -0800 (PST) (envelope-from nsayer) Message-Id: <201101090209.p0929Ref003109@quack.kfu.com> Date: Sat, 8 Jan 2011 18:09:27 -0800 (PST) From: Nick Sayer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/153804: boot from zfs kernel.old recovery undocumented/impossible X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Nick Sayer List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2011 02:10:05 -0000 >Number: 153804 >Category: kern >Synopsis: boot from zfs kernel.old recovery undocumented/impossible >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sun Jan 09 02:10:04 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Nick Sayer >Release: FreeBSD 8.2-RC1 amd64 >Organization: Just me >Environment: System: FreeBSD quack.kfu.com 8.2-RC1 FreeBSD 8.2-RC1 #5: Sat Jan 8 16:14:48 PST 2011 root@quack.kfu.com:/usr/obj/usr/src/sys/QUACK amd64 Disk configured for gptzfsboot, root on ZFS >Description: After creating an unbootable kernel, the steps necessary to boot kernel.old are unclear. The problem is that under normal circumstances, /boot/zfs/zpool.cache is loaded in some magic way - this is evidenced by breaking into the loader (by pressing "6") and doing an lsmod. If you attempt to unload, then manually load kernel and zfs.ko, the zpool.cache file is not loaded. Attempting to load zpool.cache with the load command fails, and there is no alternative command to do so. Attempting to boot the kernel without the zpool.cache loaded results in an irrecoverable failure to mount root. >How-To-Repeat: Set up a zfsroot system. boot. hit '6' at the loader menu, then "unload", "load kernel" and "load zfs.ko", then "boot". >Fix: Either loading zfs.ko needs to perform whatever magic is necessary to fetch zpool.cache, or a command needs to be added (like load_geli) to fetch the zpool cache. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 9 07:10:03 2011 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 DA486106566C for ; Sun, 9 Jan 2011 07: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 96A678FC0A for ; Sun, 9 Jan 2011 07: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 p097A3QM038264 for ; Sun, 9 Jan 2011 07: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 p097A3pa038263; Sun, 9 Jan 2011 07:10:03 GMT (envelope-from gnats) Resent-Date: Sun, 9 Jan 2011 07:10:03 GMT Resent-Message-Id: <201101090710.p097A3pa038263@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, Janne Snabb Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE921106564A for ; Sun, 9 Jan 2011 07:07:51 +0000 (UTC) (envelope-from snabb@tiktik.epipe.com) Received: from tiktik.epipe.com (tiktik.epipe.com [IPv6:2001:1828:0:3::2]) by mx1.freebsd.org (Postfix) with ESMTP id CDE378FC08 for ; Sun, 9 Jan 2011 07:07:50 +0000 (UTC) Received: from tiktik.epipe.com (localhost [127.0.0.1]) by tiktik.epipe.com (8.14.4/8.14.4) with ESMTP id p0977iki019919 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 9 Jan 2011 07:07:47 GMT (envelope-from snabb@tiktik.epipe.com) Received: (from snabb@localhost) by tiktik.epipe.com (8.14.4/8.14.4/Submit) id p0977i1K019312; Sun, 9 Jan 2011 07:07:44 GMT (envelope-from snabb) Message-Id: <201101090707.p0977i1K019312@tiktik.epipe.com> Date: Sun, 9 Jan 2011 07:07:44 GMT From: Janne Snabb To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: snabb@epipe.com Subject: bin/153809: [patch] sysinstall(8): Choose Distributions screen, conflicting selection key A X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Janne Snabb List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2011 07:10:03 -0000 >Number: 153809 >Category: bin >Synopsis: [patch] sysinstall(8): Choose Distributions screen, conflicting selection key A >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 Jan 09 07:10:03 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Janne Snabb >Release: FreeBSD 8.1-RELEASE i386 >Organization: EPIPE Communications >Environment: 8.1, 8.2RC1, -CURRENT >Description: In sysinstall(8) "Choose Distributions" screen it looks like you can choose "Minimal" option by pressing selection key A. However selection key A also means "All" and "Minimal" is not activated by pressing A ("All" takes precedence). In fact selection key 7 currently jumps to "Minimal" but the menu displays the dys-functional A key instead. A screenshot of this confusing screen is attached. >How-To-Repeat: Go to sysinstall(8) "Choose Distributions" screen and press "A". You will be always taken to "All" even though it looks like it could take you to "Minimal" as well. >Fix: Screenshot of the "Choose Distributions" screen: begin 644 sysinstall-choose-distributions-bug.png MB5!.1PT*&@H````-24A$4@```R````'@"`,```!JV?G'`````7-21T(`KLX< MZ0```P!03%1%``$``00``0`O`@$Y"`4*!0!B!PD%!P!J"@P(``"O#@P0``.> M#Q$-&P"D$A01#0BM%Q48%Q@6`!.O`!.Y*A&>'Q.L(B`C(1*U$AFV(B0A*R,H MK0$$/A6;*2T,C,Q8AZ,.S,X.3<[ M-2^NKAH<."Z].CPY,C3`1#Q!-#3(<2F%0T%%.SR6.CJ_0T5"@BR$3$1)2DA, MKC`P2TU*4$Y1K38W4E!42D?(J35W4U1244ZK45&/4$W'6%9:4DW-N#MS6UE= MK4-'5E2K3U7,6UU:6%:N6UF+9EUBR#]M8V%EKDU15UW.9&5C;61J866+8E[2 M8V2O:VEMUDIL7V71K5I;:F:K:VUJ:FJ+=6QR:V?6YDYD=FR):FG0WE]_UA<>WUZ_UI8?737_UMCAGV#>WK6 MK79YA(*&_F)EA(:#_V1L]&EKCH6+A8'7@8+=C(J.YW)T[W%PAX;4WG=SC(Z+ MXG9_EHV3K(B'UGUYYWA]X'N`E9*$E)*6V(&!WX"#E):3E8_CGY6;UX>+F)+< MSHN*G)J>G9JKQY*2G)Z;GIK>G)KKIYZDO9J;I:*GQ9N>I)[IM*&CI*:CI:'F MO*&EKZ:LMJ6MLZ>GK*JNK:;FKJVDK*ZKMJVGM;1RM*^ML;.=L[*JMK*DMK.W MM[::L[>GM;#HO[:BO[F2L[/QO;J8MK7FL[?MO+J^O;Z5N[Z;O+?PQKZ1 MP[^>R,*;Q<25Q<>*P<._Q&V=AZV<_5W=>!SM'NU\[UV]QAU=3+WMMWV]R$U=?4 MW-]RW.!ZX-;=Z-Y[Z>-PY^-WW]KYYN=R[>=U\NMQ[^UJ[/!DY^/_^>]FYNCE M^.]NY^;]]_-A\>?M]O-H[^?_[>OO_?==\>W_[/#___MA__MH__Y2__Y:__]D M^?+___?]_?O__O_\K@1J7@````EP2%ES```+$P``"Q,!`)J<&```(`!)1$%4 M>-KMO0UX7-=U(+:O15F0G1UCI.S$H(,HJXXGH\00TZD1($3@H.O),A5;E.M! M790M%FJ%A`FD(1S#@5`Q@=3`3)2%S,C61'0@;`B;]HO$R&8HFUU(=1B96E*( MQ8:*H:73 MRRE,_`!@@*P13%Z]NK`T>]H]^9;GG5LF#T1[S9OY$OF_.>^26N'4PI1.1>I9 MY)Z:ORC7`X`!LAYP>FGIK/ORC2M^\9IW=MEL?-K7O3=/X/+LTLOJY47O@D[# MZAGE"A0&?@`P0-8&3E[W)OT_4W/^?Y:NGULV'T1[Z?J<[?*"=S&<5H.WO"FX M.S!`UG^`>-[S_I^G3U`K<.UUA/W.TK6E*"7)@KC3'K)#[OPU.N.S>B>7KMWP M;M#2Y"RC#>I=\SQ<\J^>=E^G]3Q"8>%W^LT070!@@%1R@$P&,[EW[>*,][I[ M^^\[;\$_Z]XYJ M0>A,/GT:/>0$A^P!*\VY3YU?^MZD^]7SDPCWO;GYJ]Z#U,.WD[#],$VDSWHSJ@Y!Z7!=NKR09%([#_17^_6TFY?^ZPP;( MVS???NEO7OH/\$_X]Y+J@TA^!,'1H>*7B&\Q=77^C7/D07UE:NK"U%FK#S)W MG5B&O[HZ?_FI.4EM63Y%[V+JL^"*DGZL+ME2"#?7*&^RO\^_?YSGS2 M:0\;(-^]^;=@7TOY(,]/"?,RGZNY+?'APO3BPGG9YAA]$'>.6@9&(5N0L\)G MWFF)UF9!YB0+F M+CSIOKBX<);B)E4+XIW[VMS5"\*ZQ=-34R?<%Q`%L0>$8DE8\Y@+?!!!+O9! MB,T)+`WQ00)=N,V19`!8(!-N0=X&"Q(*;]Z8/C^[-(W>Y^F\?&+>NW@6XVCI M'Z:-..&UQJ>=GK]*7J.^ON#-^H^R5.^5I1DF8YJMD--ZV"_A,EZ_.H^1,SX% MH37P8S;'I`L`6)#*PNSB6XOH&]+"XEO/NQ?>0E^$YA<(SB^]M;A`2P9<\**& MKBUF%H@W\=>8[1OFNH][TXMO&;4!:!,"P(^"`!8 M$+`@``#@@P``@`4!```?!`!@;2U(\3_]3^@/+$C506MVQ"UD]ZV02UMVN`)< MMJH%*3H,(O@@/<-KJ6!W;J!J.HOKTI-K+ZR*B*YVK;TQYX#;[J26K3/1-.;T M&;CP=ICZN7O8U@?CN?;<]#(9,DW-7'@[,GH_]R;SMCX8SV[S^;DA%&3F M7188Y5:I!=%]D/Y$?5WCX;53,(=W4U8'"+HT.\VK-2&H#]:N'?[<7[?L:8)J MNFN';X?JVBU7C?V\T^FT]P&R:VX(Q0KNFU'N!K$@QX=V)`;;8VED7D>&AH>& MC\CL$*[HZCA2CY6.#PV/CP8E)']XQ'05D3!^IJLZ9Q.89,A71ZV<15JNBU]* MDYG7U@=V+K9V%.T6LW'0[6S7.1=+:B]JBKFHK/E54S\GG#;[_8@Y^P(-W",R MA9'?(8%+6%\=XES"[FJ5^B!^1?_]"KW+'B_&8K&Z;;N.2M>3\=BVW>/2`QC4 MPZ4X*A7KG/X[,([P<[N,>X,W!&GG%,.5M!$RW%F762=?1GUIGJ"+K[< MVW?(_#@MU\6G2=9N0S.OB9^QO7(K@W80:7ZOU?%>2UM?33@M[V?>5Z9^X9J: M0;AJZ.=8C;,CUN8*_2+V03B=UE>4B`KOYV;*6).0<"Y>2=INLIG5/EJG\+/JHN@@2K#](X?^)KNW)%[-:/WL)IT\J\@#QB6@$&;>@%]<\X+TODH)7"3<1O%!_(IHS%,+TN^.%Q4+XL^%\HQ% M9D]4CUL?_DV%SZV8V27)66<@YH0RS(3G,]+BWF=!WGG&7]^.R. MYNH),F<:^*%^*7"ML,[<#LGMZ)H@@+L'X1]?/ECN_>MDNP(++W0/NJ!NF97.&N"A:$:"K6D^Z"P8+HEC]N^(ZF]Y7(17_"-I`/XL-@7RJ1UZXVFRR( M2LMFDXE";<,AMSM9/\CK62S(L+HNH'*V?3]!5_WYC,S?PZ87#7$.EC7E^@FS M(G_K-O)C_<*O(BY#;H_6R@.&7BME050*T?X9^\5N0V-;?G&G;VB`T.Q;%2MVPCNA(.>OY$6OM5 MD9;C9+GJ'.Q?=1IS#4ZBRZ0?XM?(]'/(&JA4CVJ@Z5+?':V]]=TV6EF:5,\$ M9KFZ#Q*NGXF?23^,R\C](NJ'>TV5@2BL_'0?Q-I7&8Z[C>!"+&M561`\/]*1 MWIIMRC8KJT$^;E"=H7F]UFQSMHF6^/ZB?=D"K]>E7&WG.)]6N2KB6#VW-]F@ MSC4B15!/&"`IC!M'UP9=11=A[A)U&;3S$]O!].-<&&X<_1U@%,W]M+U[='XB M9Z&]`TP#UK8VH<3JM07U3-!FD-LFZ1ST2S];Z=?KB3+RC-983]\-UI:URU5Q M56E!-F`\2&NJOSP"XYHP`,!R+,CF@^-#,6=?$1X$@(KX()L/BO%87:P''@0` ML"```."#``"`!0$`J$X?Y"@^[]K_M:+2H4IHT)K*A+D`.>LW*:3!D(EBU4(0 M^1I]+I.*%-1CUZ5T_Q%:6RLCZ]R_&CTA:=6:"HW],/15^#T7^.4*;J1ZX;"G ML/R>+'\EO2WII!N=Y'B^UJE(U&EO,BQFL+W.^B`B#0S?QG-UJQ:/QM?H"PV1 M(@KWE*V]1ENRWK(U6`E(6H7?04-?M=6V-"2[(CP1H=J7X"+V`5Y\F5A63Y:] M%VMW,>6T#S?NE#<@K`1286ND.YV0+C!J$$JQ,A#BMJ-%%(;&QI58?Q%V0JU@ MG6;5HO-,^[,LH/653UMH:`Z;B-JC]5_AMK+NPG)ZLNR5]'$\CX[D\(ZIP4Z\ M\MR3[\S;2QS,5]F\K%\=SW?&G4:9BX]#JQ8CG;VXHP4-AMW2%-&T0A0%7=-> M(@.7Z*QHHA#D!KJ8Y,:<%LI/ORK2RJW4ZN4?=8?SA;+ZKV"\6\.FWA@(*/KE M>EQ[OC\+4ZBO=')?X1D&[(-KWR[0<9"ZH'N+2K]2C M7)C<03N_BO@@XHP?<]K:$JE#>*]J*I-(#04E$2>H:JC'^9EH_;?&'4XRU:F\ MY`4Q?D0#)&-7)H4CY2E%WDBQ4Y8K:R7+=?:UZ.UHC=&6H[A\-"MRVJ.9FGWU M2;F]7!>37*0]B>XW]978#KV?I;8Y;85&IW[0U(XQ0_^-^6U#FLK\4/_=<=A\ MCU#;6I1Z1/L[#HLSODD_4U_Y):?M47(U2_GAN!%E9['>?\K31+E,%'8$[76T MNT#[8!_OR2&+IA7[BL4C`A*]//X`Q8B@.(5QMS.Y6XH;"51-.M+59D/$1W.P M&Q75CFMQR2H%+)<\2K52HM:Y#IS38\/Q1*#0CQ(,Z5@ MN@B@Q,:EU1>-/2BZW]17KA2-H?:SI'VBUHG%Q5A%26>M-U1^S5+_2?=(ZPVQ MGYGVICO(`?=5D]Q78\D:7P-RG?$SQZ8P[+[Q+X<9P2 M&]"E/>[#1XOC.,:/:8"CE[<%,0DVBGI9KF1?7#UV@4;[49WYS";%@P3\D"Y[ ME?:RMU\IBD;R0=3^L[TYV^JIL2Z:SH:W>,2O@_0SY2?VGW"/M.@=L9ZX-S?- M[Z!!/]I7-:2O&@7_A?.SQ*8$VHMW0?7AU/O6@678>A(-'U&75;4@!26R#X]6 M(7Y#`^/5M()3^!GL@?_.2RV($).0#;,@:4QATLH6\=C'([.#;S3F>)"0#P:E M+(C>?T8+8J^GMDW3V6A!^DPMYS$=X:<`-.GG;&6L]YQ3B%?C6B2,&IO2KFJ? M=+0/`7$E>B,0CU]EB089#OTF5L""&_C/.>_9Z:MLTG8T6I,_4 M3]2/ND>;:W;(?$;PUHJM-VE71@O"W7_X.+7/A;]UV"V*C,&E5R@=A M.BN:"A:$\+-9$)6SS8+(6HGM"*O'[:GH@["[8.H-U8($^C41'T2^@]$LB'P' M6T(L"+E:RH*(/@CR/-ASU;)L"](5R.461/9I*N>#M/I.7B?ZQE`CQ)6KWT^B M?B_B_"RT@^I7"?SU`G^W.9IQ1`TZ&LGI@X/D&XV)(OJW-38_2KH@3=DW%2Q- M^N[EU.MKUH/Z]R+I*Y:UKS@MZF>#+IH]C=I_B%_]@.%^^"UJM]RCF-+/[8'V M6K^8[KG25V.HKPKBU7;Y#E)^7'O^G4II1T&^@QRG]R212RR(B5_E+$AO\(T] MY`M\&>L@O>&T!0,7(E?18(24PBBB:V6D$#4=D:\B73I'#*O(9:\*J;3F?I97 M-8:5-9ZP_A,UE2A&C/=R0.L-L5Y_T"\#MG40A6(`KTR(&HQH=["7KU&(ZR_: M^H;<65=5L4'`0#8.@"[>0$`*KL.`@``%@0L"```^"```&!! M``#6T@?9M?PS0%*Q^-XR2:)*VU6WMP+=P:6M@%\J5L>R9)3?WN@R&.=LG$I; M!FTX9"/V?5;A5ZR+Q:,&TV7K;-K[7.I6$I)'M"]'E\I8D,;:9<>HI9Q]Z5AY M)TA&EI:I1"Y#0=H*^(TT.$U'EMG>,F0P_4;3Y>5+3-7X6N56L^_166-1@^GL MVA\_M**0O,;:?>7J4AD?9`41>[ZJAQO+R^T76=JAPNC*'SM!VDKX"3DTRFUO MV3+?=8<_K27=:ZWN3#'/?HWAQ MM:\Z'G?-.2Q:8BU"O>S4MB&N, M<1#V];9UYM.6/'0HMW9*L1\^KNU1)7L(QTG2*&>>[>7 ML4CC_"PQ(I'>R7%[![0!8LY@V&3,RR7MTC7F\\C7ID>T#"!BSI!4/[\S&787 M^GF?9J1ZI>ZT28;<5RRCB'[B2$^>1:>S3"$3OO;#3;9\,JA>:B`7[+Z52^-- MPI.#VV&/(T1M2]GJK98/8LDXV(!.SQ MO/2,;_'A\9!J7[&K:H`3WG-;QV-)OK7AOI:]+XMS5,4ITICI32-*+2]]T>R($.B M!LV2-,YO>19$U&7Y%D2-\S#%3)AS2-ER9LD.=&7B(=6^8E<3K$_%EC?)%B3$ M=KJ\GMF"J$^.0?M])BZKOP[BS[+A.6OEO*3A%N1XL>C[3CR7.(E\9CA5&BN1 M&#K;K-T7S8)0?B9I-@O"Y\RC6H2T39=E6Y"!VYW='6*L>3D61,Q;R.62MH7A MU#E8O=,F&7)?!?S:E'ST-7I>13F.4*@7<.E3[(;I*3$]=5Q[U0Z5FS5W618D M/.NY+1>VR8+8LXKS7-WZU8S!@F2684%LTDK[(.G059),)2P(@1(^2'D6I#2N MU)TN[8/8K&UY%H3'!]HLB,6J2!;$Q&7/JOL@8[?M0.,6GT@1Y#6OK1-PTLS! M<<4ZQZGM42U(#.7'EOAQ'))V.Y=6Q^8+@P^2JG%(%+;N@_"S,W`IC[)[:W(E M:9R?J(L^9UI7XC!M2'M9*^.!!IU(*ZF>TU7<[=PV9JDGZJ?0\OM1C#,-A/X+ MQISM8H6Q!T= M&L9OER-#_$RH?0)N^(BRZ$MQQ]%?+9<3I^#\1"ZC"F>?R_CH4+$X+$>.C7`N MXT%.;T$&7:_U2T5R59:K2A/YF3C[&H2LZ%MAI;K7$QWRWP'5>V/'S)Q64T?1(1.'K-< M$>B,%B>\#"ASM7E5H5.+/Z\P5.Q^K+.,:H!E[^;%N4\3Z4'7N+Y1/G!^JP'Y MA)/85P7=C7/;KEHK@[4E;?UE(\JH#EAV/,AXKMW_#;#2\(J[/."W&M#M\^ZN MA@&RJJT49`R[&U[&!K<@``!@02`F?5-#?Z'HCA8.583+T";MH_(MR,AP\`7' M]"UG-"SGN$"K?RN)SH_4(U\YW!"*T&]-E0;>-F,K35#J6UAQN1J8I15-CC9= MK1@)_[X3=E>C[3!`7Q_1DS8\LJI]7P4^2(KOLC'DAAJ[/60[<3%9NVVW]DSO M8N>R1^9'5V[Q%VX-QFY3]E.M$03]8FZE>79JC\`ON@8U811CMQO/>2>K%;[. M\9`5`@.M/$!*[U$3\[JL7M]7A0_"5Y$-Z\F&T\3%KBQD#?%C6>U,UA+\['N= M7,-^JK5[6PVTRD:+\8NV'E_.S0RAL)SS'FF?68F[&L6"B'E=5FN>KQ(?A,_S MAAU)I7(*CN_6UR."-8JH_%B]4CD*PW=,57ZN"?;PFEKIVMNQ#/M2/H4A/K"8 M].=^LMKE,9XS;8Z?E;9/M6M'Z/B_(I?KY,I*#6*XH@_$;$[0R]:G8 M#F9S=/VD?A'>W<>QIG1V+XX*[373"CBJ,^=2R@>))7R*>,.(?#]\:=;G!978 M_6U-FNIUNJ$M;U]U"Q*6'\0=K*>YY&KV]17("=Y]":>E[[#TV&4<>I6?*RYY M(#O:4M2"A/!#T02QEN#\=IXE,87.`>=[6B4-#/QJ&_8Q72A.?4M&;]-<9Y$S MTX#1M@OU^"QF.><]Z`U&R_5#G5^?23BQ5JZ?X&D9]M*.B7W*^04:,!RO9[HS MFG_@BCUIHAT3^X7J7,;7KD1]D/.0Z&?:BSPF]&E_H2_%SHW?I]PM>K53M""V M?EEG'P1'M=%3LVT9`G&D8+[6:5&^8>!X/L4',?.+^;3J7EJ4_S6=V&?-,&6/ MZ9!D:)HJI2S+B$$TX+0HNK$I6R_M:36U4FBO)#?0C^:>+[5'5N>"-&@.-`CX M41RAM=T9S3]PQ3VW2,:P0BOU2Z!S9.CU*?K=2+&41&Y;EL7;LQVY(K1E>3P[ MRXN[@^ILV>&[UCY(BL=%L]5A8WXG>SR(/(>$\4.T`[D>Y6V_+S3#5%A,AR!# MT]0<@X%H!_!Z/*/UKS:W!VOT]CA"$42Y7#\U9U:X!4&QW+(&/3(%Q2FYNCI+ M?&%2[@>3X1IB"VUQG5$\!24^T!@/@J7&OMALR"A<0KMZIZHTA8DT(#2FG(MRIH6 M\MI^C#U<+M-0LR4I#G="1CP+59$&-<9\39N'0T MOFN*($FI]93H&*[SFEF0[T:P(/X[ZGBP#]>?O^6UV?(MB)F?."^K\>>J!6'K MNO:XTI!YKKRF.,*U%9HMR%0NRTQZG)\^%C,NA0`.]O0@GZ>=; M`=MZ-WIW+[JC+2G9FQL/]AU36H,%4;Y)#86>)D;UD^,#C3'I6%J-.2.BZTUT7*+!R;/T7-5D78!S M=VEGK2;CI%X1_=7BUGS:'II?/(2?1&NHY\OHZ:#YSW>%Z)>,][NDGBA#T(7& M2#*=N7[HC%>F@217.(<7:RK40S%Y>_7V*OKY;3N\*[ZW)Y8B<7HR/R)CFS(7 M2OJ%MC?0+_P,WY3:7C.M<"\/9ZG.TIIOV%G$UOO6J+>M5=6EX!KJ,5K45ZT: M;;R<;VP5]$$V-T0[MR0BA*Y`VU:E5UTK@-7U038UM)4;LQP*8\7C%1D@E=4* M`"S(LIYFM/;*SN-:%_#?OYU$KXI#6C4?@4>U*BW(5HH'F2CT^;_1]=;@T6K3 M"BP(6!```/!!``#6V(*HZ\3C^<[\HZNF:B'?.6C'&=:LW<*(36>;IIS"Q"^R MIB,K:-%(F3W9VQEH&E7GPDCY?3\3OZ`ZWZRV[Y MBGP0-0(0[===O=.2KWP?HZ'M/+X(11!TA5/K;@=K5RKL@]'*],'06=J'RW20+@Q5B@B M&&?=H9Z?'5Q4<`3)"IRS*(/7\Z5EM?F6XS1=?"Y)IT/EQ^NALV^97%]EB<+" MCW.QM$/CHO6!HHO2(I$6Q25JG`T:H%U*'6VBSI;^TV1(+0^AD#AK;<-#G,K^\9MT=;M(XE?LZYYK9)L>9)1YQO ME7:86AD/KL9MG%UU7Z_>SR*NSW3.NZ:]3!%VXGN9/@@Z(;NW2,_C'KN-$,>= M@6*1G=O=IZWZ^H-TUS9I%Q"*@684_M4L.QN<<.8EL5ZRIDNS(`).TT6<*6.Q MF@Y99VQ!L%R^*U2V(+=K_(26:^TPR57Z0&FEJ47RW%J;E_O`J(%X+CO5V=Q_ MN@RQY0&%<"_%.9AQUML6G%:RTUR/MCS$+J6G0J&42= M2W,#H>!7.63[B<=#?1"BL\C9J(%A[[`0)Q/T7SW^[19DB/.R3J$^ M)CG+>[]\6HE>+^8_Q;;LAV@F[Y!:F2IA08A?(M]?*5-(5X/3U&;=8TQ]$"X- M4=QFH%C!.H@8L9"*D)L.QVVG;'GH<.QP2LX[)$4*[D/KR(?LD0-:UE?TY8-. MJ4);/[2R)_^2B5HQ!)ZR;UL*9#"A>]#XQR.>B9 M]8(^,$5%E(R3H;1D/3[0KU/M/[7'AVS?@;2X1,0EE^FFL85Z/3T64+X:Y)#2 MY/+80E%3UN-".Z3X$ARED@S7GDM#M+Z-Z+(/D(I9$':U1&;(@% M&2K!18]&[.ULH)]9C5]2TA&C$2/F*/2EH6RNX;%[EKEZJ-17+#7OHTF#DFVS M?OVQ:F6<1\,L"(\M%.;JO%UG^2M6>'9+=W"?W%>TQRT6)#3[F&!!A.?*USF_ M;`OR=F0+0N+%_:L%.4^Z/6H,Q7>;9C$UYZ%:+\R"C.?:BVZ!YN_V9W(20VZ* M\;/%LP^H\=W&'(5T891(8SG,6DJ5&N-+=RG>4^,-NPDFUS!]1S[:D, M-=Y>I.@)L2!:VYH33D.&Q!;J]8SG+N*K/:Z:/U"6BV+2#[N#&3%V?7P/ZO'; MV/WM'&3M"&+<2UD03(%M#BMQ"])C.'=_&1:D)9\FN3;0*14D/PC*8>[CT(D> MZE(*T&1+F$(JU1 MF.(AE^&#U&=2Q$"VIC(I_$ZW*Y/"N*/^WT,X+[<(_M5^`X[3#I`,W;L"VEV9 M(9?A]'H2%X;3=,$C!..05D&R%T,]4;^V0]$@C];94P%M-E2N?[6@UV.Z M8-P^S&]T3Z9[(+5;XT)'WAY:8A1'&44KN=I=&1\$`&"K0/GK($[7!'0;P%:! M\E?2G?)W\@``;%(+8MB+52PWSAH`8,M8$```L""0HQ```"P(`$#%?1```+`@ M8$$``,`'`0``"P(``#X(``!8$```\$$``,""``"`#P(``!8$``!\$```L"!@ M00``P`$$[6F],?&4]49>+R(T2C)\+CZ_$=?M]$L,5]_( M94BZ4-IP(/S5R*=L'V;6CK=!8 MEW,G"K6KF(\PR'[8&HN0[P_ID9W>GT])WF)[?'O0+ZJ%VHGVR6^BU M=G:5G%4[J)YZ'U4:Y^+?N(:AX%SV>J>QQ=G)KTJZ1)(69/NHC]ZG?MM2B;R] MUU2<[>AB%1^L M$3/&*B>,IUWQ!-W6VA9\$KG<:WVTY)IR%$:2QKF@F2TU0,Y'WUO,.+F1EJ0H M0SK--X(T,=M'&5D2!]-9>Z_I.$MFPDB]$5_)G0YR%$;G4J8/0F>887IN=Z$= MCY&]N?9P8YQP]KL[3,\S+PP,4_VTT]V%5IKZ1.Y>K1+E"&=K=YI2?%WD7Z M&7I\IUV_<-H.PQWLT)ZZ\3W\:>)<.@Q/YPHLB)(+A)RXG:]--V=9J2EKPTFV M+MN48*>GMVI747[D'+97S;5.0W.7*_!#CT1+/NTD>^6;E,+\Q)E;SD.5*4<*RG5>/Z#Z&V)>*9:9GO1S.]&JP/-* M46^I8:784\=DF)\ZJ?\*.4F#5;$@8AXHN80>\7U#19?E@Z/? M;2@<']J1T#,3RFKEU'=\RL6<14C.D&3*PL3]@T[")=`J54,TY3J3F2,D$Y5A M3D=S92P]*OA#/-^?DB5J3Z?%@JB>3&=RM]T'P5PPQ9Z8GG]Q3Y`-GFH5W8*P M?%%RWD+25^7FN!)QJ9H.VKMQA7.++=^6X:F+TSRVPBM MJ=Z*?9")H^K"VA,AH&1?S&]KZ MCW(QUUNQ!52NBP+HL[],D[N MM3Y:*FU!PK]B(2YR>T6=N;0ROV(12"XO2V)&&"`\KW"[8C'US(2R!0GN?MD6 MA,FP9F?4+]:M@5!M)1+W2YN M07::;$1I'^2`,"=A?G6!IH'.Y?L@IKF?XU"O%=R.H-=(_Y6R('TE9D#$SV9! M^H)[=,!@0;)U>RV/`\[_4MSMW#ZF]BGJJ_+R[,H^B-_/(ZAW&UTIMZW/N2/> M:,E8+/L@J)Z@E<$'(3)P_G.,ZZC;I?5?1]`.;D&T>BM921])))+HK78LZ="Y M'WL4&!=>4GR0O4VUNVT6I+'6B9$^&FF($RXQRL7F@R220CUMCN,Z)WJ)!K%` M/[U$-]=C19@W0A^C6J_#@77*_7,`/&R7J\ M0[E(%H3JS&6@>L%,+DC+.+G0%:6<1"OVBVY!>'O%^R;4HSBY;2IGE/^\?F]S M;8MJRT,Q[:E#M^&V.+E'-=2"6.HMWP?!*[(%LIK;5RBZHSA_ M=W^!X$J5I*]8CS+:8I##7)6!UU<5+K[<\4.%T4?[!A5^0KU&;8YK"W3N>]1$ MH6DZR'%,/_[ES:2IH!^5@31U6=N$7@OR@0\:^T73U-SW0?[S$!GB/9+[U/Y` ML/;:[F_`+UC;%C0=--0S]I#0I_SJH[0=K;&64=?>+T;:0M^(:\&),(1Q&I>1 M2N[%JG[H5M+[`T8*V;+C%\$6(X/@E:^BVVJ!1EENV"-$8#A5]<` MPN7*.YQL`\08,RCV2]C>J>6T7.^U,!E%IS#NVYSBOB3>GYR6]P%@:`(+LNH^ M".[R?/>CA]RCF11:[NQ/M;HH%B*#XM=\W`XGF5(?!?]J#[^*9\-=F12.F?!Q MF4-!#`8#?+437QW-961^B&((QV_(]9@N#"=1:'*UJWG:MDY;/66?5&/[&7L M=,)\$+[WM;D]UT!V8C8GG(:,N#=7GJL;A^6W_8"B7HNWZ,(XREF99;4]M_I5 M+LW$1=;*T4[O0%'.0?PYFZN#W;>LI.[7;3?(<&FL2YKW6J>LG\F"<`I1>Q2K MS^X16)"U\D&ZZ8S47N?4=RM?7(SOVH;HCG13MCF[SQC=(<^`!;>056=90J'' M6V!<&JVE[[.\IYNB1>1W?,J/ZE>.!3'$C6@^2+@G@ZX6\L.T-S):GYI\'['' MT\R"H#AK7098D#7R05SW4;)/L]YI/.PNSX((\8$I);HC/"J"QX.HL.XDLX9W66Y7)-NL@++80Q9ZY8[D@L7ML3<%H0>J%56ECA+FP.IS7+0@_=T/DG)-HU7E` MEJMV@KI";JH7MI(N4OBE/(_'MK4\W`Z9>LTL5ZC'U]2Y;V9<24\[.7CR5\<' MX7NQR#D>[@3>^R/L\SFJ[_@Q7!7V-:$]1\?)#J)@$`B[GHK*'B9*@>4*.XV" MG4LB3EAA4.2:KHI[K$SUPO9BB11(9W;UJ+7EJ&3B$N"T7C/+%>KQ75GH\S"Y M1\:]6$=A4];J^2```&!!(!X$```L"`!`A7T0``"P(&!!``#`!P$```L"```^ M"```6!```/!!``#`@@``;&8?)(>BJN$'OTWUR[[]]CO??>>E2EB0M)/.=\(/ M?IOJU_O2W[STCX:G?1D^2`JB"0`V)9B>]F59$(@F`-B,\';Y%N1ML"``8$'` M@@``+,N"@`\"`!8$+`@``/@@``!@00``P`F\>]%I>Z+E_Z2E9Y?SV[$N=C]7X^"[\D-T%*WX7Q@@D.T_$#3[H"B M0E!H#\GCWA,Q5WQ/1*UZABNAW#JW]GU]R"#.<+(24$Q^X[^(3_Y[&# M#W#]?G+B]?G%&YSWB52>&%Q:ET'2'8;SE"2MO5+;U(_X9[B$&V?,#M5 MUA87<(82"YBT,D+$^QN97SADHDVW>^H:5W^$K+4/0K,<64ID@#QT\-/'W"=^ M]^.?%`FO>6?=%Q>O*.RFYZE-6?0NK*\I1F?D]B35/(VY#+4IIA/NA1/:#P@4 MW954:[`^&<)/.`4^'()VA$-D?J6D1>N#7-T=AS>9!1FE>?)PJ5W%,?!'R!,/ M?^P/)-R2=^Y+)U]XW7UJ[%%1NT-G,5VJ+TF7#W$ MVR9Q7H/L)FOK@XS=CC.MHM)M02G`B2/DH#(^?`LR]>:T__?DDG?V*??)B]Z\ M_S_SGD=PUSSOQK77UW>`=&5QM]4Y_1/N>`<^<#U50[JR+E;C[(BUB?5%G$_+ MSW['%.B<_%B@J.C?^#EQ/RD&BS>FHWNT[4#V1EFG` M:7D]U(X[ZIA6K!T,A[GDU;/N&3\N0VRO4[B#Z5S0=!'S:&E]X,_55#^E7]8@ MN\G:6A!3AE=C_JF'[ON4@EFZ[E%_P[%":4'$B/'CP$==L07Q[L;BTY+UY M`I>O>--5XX,0"^)W7+(VF./285FV!!^DZSC+\9$.9L^"F7S69!1A*)7GM)'!\?O_=^981@'X043RUX,]3?F+M.+NRI3 M80NBZB);D+1D15.2-*E?-IT/PK^I^*4>ZW>6!S_^R.,/_A^/N.I7+/?KV%Z\ MLN1=O<@^\U:/!>ESW0'\&+7&G$3>+]6W08"81ELM7IK7,Z;W)ACYU@`2T M3`/5@MCM6FD+$O`K84%477KB/'N[W0<9;VH>Y?V23Z0'JM""K&@=I-"P,Q@7 M+%VX:RC_LWTR_Y]W`@DT`6HROAT'O>E<@$[65`<8@VF*LI!>+2GI-G M#I[OEE[%_-B<+N)$Z-E)^3F-=-U>J(5$'SA=Q\^YO]YXF'!@CS] MQLSE&?_?!??$9>Q_?&WF9?^_+_LX.BHN7)YY8?WLQW@6Y5!'N=CQW.^_"#2A M#MGCX^BK53[;K+UD$1RB'6%]L*>)UFO-F),B[6VRZ4)M M5]`';=EF13\1Y]<;6/T["_$@`,N`B4+?>+D>@+A?8.,`[.8%6`8<3=9T#0=[ M(:+`\:&8LV\#IF*'>!"`94$R'JO;6T;]HE\_UK/QV@D6!`"@.GR0/[KEEG]V M"_[WDQ%QIG\_697=&*XS_-M(]W+=+,@?25RBX$QP2W4.D.T`Y<,MX^"#+'.` M_/Q/4/2_^;,_^^^E4O4.D$]\B.K\A\^=N8N4/O,L*T6&@$L5P"?.//L;XO_? M>N;9,W<*5^^*R.6N#379;00+\O/_V__P7Q+TO_A_O$%6NCY8S0/D$W_WC0\3 M3>_ZYLW?44N1G\F_VU\]`^1#W[CY6?'_W[/_AS<_'/S?SVP(,L;(#_]J[_T8S_-1LB?7=\(`V1L_P^_\H&/ M?.L;'U+F3'WV_.C^>_;?C9Z8_??T?T70!'V19`^38P8.^!_+S!__E!K(@?W[SYL]MW_[;-Y]5[,97 M%`ORGE]^]Z^?/?-M_TW^O93B.0'GO^/_\.:KZ+U?JG?SMW_Y_\4&1R]__ M]7/XJL(/S_BWGOG1)[[Y;7)5K\=Q(GSNS'-_]ZZH+6)#E#9![#_[T3_S8 M+]VG#9#K53U`/G+G!_[XYID2%N3'7[WYD5NWW_/J9]`#[3]*O^,/$([SX=6; MV`=Y;\#/+[WZPYOO?O_FJQ*7_;=NOYMPN1,-LS.D]%DRX__@YK?O"G#;/TKJ M47X__DTD[:-$6@`?^,"=7V&T'\;\MG_@[U_]X&=U"_+A3_S@*S\EM0U1H';( M7+Y_%\&Q>DR#YZ@&O^%K`#[(S^_NF]]2N/RXR.4YP8*@>?[#VW^3TI+ZG!^G M%<5N4G^R"JG0QP[WWWW1]0+C^@&O!Z2(/O^SI\3F@O6)#E#9#[ M#OZ8_XIU[[_<0#[(GP?VH)0/XML(-J-^@,S]'"=9D`\$C_:=/I?]H@7QX9L! MESN)7-F"?#B@W:Z4."T'E5;EIPZ0,YH%T6V8^K7+I`'X(."#Z%^Q?OR]?_K# M/Q3G?HZ3+`B?^W_NWVD61.7RK#3C"P-$X*+22@-$HE7YB3[(AYG.0=M,-N?[ MP@#Y"K,@F@9@09;K@R`+LM%\$&X/0GV0;[U_^WO_^%W9!V$X8D'N#CP4ZJMH M%D3B8O1!1`ORT_]/_Y-09K%@JC\9`NBVDF3S;%9D(]*&H`/LG(+\F\6 MO/_W?]\NE*K;@CQ'O]M\FZQ`_V%0LGU_\N=JZ;O2!]7O3R8?Q/1-"N,^\:?? M_P3ZAG23?&^VUE.^8G%:;@]$G#A`OLEH@[8QFX-E?.)S/R`:?#/85T#JF70! M"[+,=9"?_J?;M__$3^-UD'_QK__'?_U?;Q=*U;H.PS:'X[9O_Y!A?>-#^^]\_]UWE5@'0;CW(PW>@ZZ]/[2>:1WD_6Q- MYJ>"U1F&X\#7,GC;/B)0W$,HD*SW;]^NUH-UD`JMI&^9S8J__(UOW;5]ZP)8 M$!@@5L#S_#>^M7_[5AX@X(/``+'!K6>>.U/^7E^P()O9@OSD/Z>_GXF(,_U^ MICH'2*C.\+/<2_!!```V-D!,.@!`=?@@4>'8_1C^($K=-_^J.KH1G]D1ES.` MV&!7M+,]4K%XV*DA60.7;)VN`<=E#?R,7'"]HM^>0JC<;'QOF>W(UD74H.S3 M3PB%K'-$_3:@!7GBX_>B#%._7[KF[(VIZA@@^-2GH>;:W:6K-M9&R^,WTA#6 MIT8NHVG]K$..,]PC(Q=2#[6H+U1NQ'LNM,.0>]"D0=0>TBADG2N3[;$J?9#[ M#S[N/G+PP=(5U_U,=P[B6>BA$#F/7SJL3\U<3&<=!KBAPF@D+JR><8`(%`9^ M)=IQ*)H&Y6?&9NZ]?9N?P,MS3 M;\QXWL+,B]4R0-C9Y>*YN>P<688;SS;5.@U-RJFU>CUQ!M3YC6>;?2[:&;Y[ MFO33H2V>Q-8D'L?NO_@[[KNR>O> M*Q>FYKPYE"?]E6?<25$@=(*D&SZ+5UYM.^+1G/;FM[U*7Y,BC. M->2:LM3C>98H3LWLX097,TA:OC8]HF3LD'%IFGF$27.E_%.I?D,ND&Z4L4/* M!2)HG]:R*8H914S/!IEYQYM,&@B@Y*F27UOC6$9*OAIPB>-VI"0++%&4G9.J M6GV03]__T!/N2<_[WMS\E7F41>K-&]/GO^K_%7%5YH-T)E)#J-L:4IE4!MV< M73O:\%NWB#.]81OK\3Q+%&?)#86OMAMS/LDX-I,S::Z2?ZI;DFO)725HK^:! MLOEAW`=AI:Q!`]VCX#D*55\OR%O(I$D^B#4K%N+74FY.JJKV0?S!,,F_6"WB MS(02;J&:+$B?F*^5?EVIK_7?WV6<:71G,H M2AD,U:\_QFQ2@O:9B!8D(PR0G-3>U;`@?2ZW(.WK8T'>7J.O6'B`_(7K/OG, M"==]YN33[NLHMZV`PQ;DR=,GJF:`!/,MSL-ZO%CT_4*>!9SF9O5G.SE[K:6> M-$,CG(F+'21%W$KS^A^0@%[4T6I"^"!3%K(%L0WC9;KES)ODCMR!DL M2&!S-HD%N?=Q]U/W/H3\#=]:H)SHQ&Y&_H;8MF04A)MB";U`46.[TL=MWL"SJ MS((8ZZ4<9UN;:^3'N2BT^=W;=JF<&4[CQ[D4XXY3VQ/<2EP//>ZU7&XGY<*U M-_`S^B`!/S=5PRGJ;+UA:IO)!S&V([@+5&ZK:`DQQ;;-8$&>>.*)+[C'GD"9 M/"<1X)SHII(_;H+2^L+QH>&A<9I??,0O#^,W;%/)=4>#$@-CO9%H7*2K1:*! MQ)GA1NQ314/]8'H@IA+3+UAJEM8HOT?@[:<8C?!5&:0)'> M%#X(`$#E82R3&MTD/@@`0`S2Z\$``"``241!5.5A(K\CW91(EYDY&N)!`+8, M=.3:<^5FC@8+`@``/@@`P/)@;2W(B/Y5PHASW6-/'!/_]RG\Z>ID%!FG(M:K M*.#O0/Y/_X)35$MKH@L/]AZ-*'=T!?J%?8F*KJE`6T7YU-?6!]GI[-!BWE*F M;]/''C[XL/C_)Y<\S[OQVID5Z)@;(VEH0T\X;OR_U;],/W7OPDS)F MR3OWAGAG6I^.M&8=-PT0\U.R)7R0 MG4Z7`:O'P3UT\*!L05SWFG?VRZ_=>#/*`%D'"T(>RO&.TCM9UWJ`'"U&.ULG M:CTCA$8RAFMZP/24@`4)MR`/'?ST@R@>1+(@U\^Y9-_5_,+B6XLO^Z]="XNG M_/]]87&6X\@`(19$K/?:`KEJPE7LH=S361QUQY+U(^Z>^IS:+WJ$="I9GR3U M<,D?/YSVJ%_:C7&F>B+.K$LB29^QQGI<4OFI.%:OE`P+;:UF+0)<.+\XU?0H M:3GI@QHG+M=#_=*J]8&D56]7LD70SZ=(#KH<)VA0YCRUUCY(!`MRS!\?J@^" M+8@[[5UQ3\Q[%\^>G_V':;JOU[W@+7(<@BO8@G#<4^>7OC=U?G9I6L$MS2!< MY09(?5VPNU6+P=`MR-&,LZ^OT%B7\TLUN"3&=$P4:AMB+0AGJL=Q-EW:4@DR M%0W68[F(WSY,Z[K]A;Y4HE.4P>MQ&6-&&2(MX[=K1UM*M18,5XH?UK23QG[0 MEO&8G&X?FAVK\\DG%CKF*'_-K@%.7;OP0XCCN@_#]OR9:A+M\BNX)KM``:6D(=K=FM1@, MK8=PM)\[G"]8=N3Z_$;XGE9:+]V#U M9!G#F@R1EO##$8IJ)&.`4_F*CA`^@H#95@0'"^>"RBTR`OT``[D>H0X0K_4W)YK MS_4(M'8?1(^K(S@LJ. M82%F?@_3#^'\%G7Y`Z2&M`A%HN^MNR-7YDZ3:OV*Y7[2YH-0NX%>HG"<^N3L MM9]SM3*0.62V(P,\= M+1P*2D,"K=DVA49F&V1(%L0HP]7:9HPWM%@0/O>C=IAL'?=!B`5!&ECKJ0.D M1I)&2C6!!=%:-%35%J3-L))NV*/_Q(,''WQ"^/^G)I>\B[-+^/N3]\+DY(SW M&D+/WKBNX4XM7,>QZP+.I_5+KPLXS._)R@T/?+(B7O\]FJSI&FZ)I4E,0H-# M8Z_]4K/4=U@[)CS:O3!UDGJ+2_ M454P5CR^M<>&;RU&HJW;+P>V@`4Y^9;G77L!)MG-"KXOE0C.V:H&"[+1XD&> M.G_V_-G3\"!M7N@O]%7D)/^<[`4[@N//?;8I_U_ MCPNXIZ>FIIYQ)Z>B.]M/35WP:2:C5'TA8KT0&,]WXE]!:]NP6A(H'@W^3U\- M-T/4>F9:K>^-N/!6/EJN6*WE:P05DKO6>[&2*76?36NJ3MG->_#@`P\]].!# MCPBX$_,>W4\5%1#%PC_,1GGR7UE:<03)T0S9/:K$@[3&6+_P4D!1L\9Q?[DZ M_4N/"1?6RAI3_$8X:"U?(ZB0W&K)"HL>>=>7IJ-XIU7(@81 MK2QWQM/6?C&M=_.=4+N3T6*$HM8SPK+C_LPZ1X7U\D\W8H[":/$@!TT#A$04 MSOJEDZ=//G,21:>?/OGTB=.X](Q?(CB9@MH5<[07Y#6Y![C18D MB$E?NNYYWAMDO^[<=81#L1]S&&>V.4N>%]1S403)`L>1`7*)RO`T?B:^#S>M7#67.(A<,HI<\QGQU>N#1+,@ACSIU[PE?*K)R27O M[,G3V)8\L[3D7<1QZJ>7EEXD.,V"7$$47S_Y#*K'8Q`Y#@'=_\MQ`3\9AZ3- M6A^=VFWE1!1B"Y+=QO93T=DN%NLMDG/4_3DQR\Y"=SJ"L]7)K:ES^HNX7C'N M#!2+\IGN,BWCEZSITBP(PY7B)]G)-GH>/*W']4.E'L*ESBEP+FK+?5IZE=5K M%'J-\6L4N`CU),Z47X`C&K1N:Q3DFO-4;6@+@DYW?T++DX[L!HWSN+KXUA*- M\[AX0HD91#'G_K_77"F.\.KBPI(:@TAQW`>QQ"`&]=#^7_MG@IBS+ZU;D!(^ MR)$FNEM6C_M+)5E4-]ISJ\7])>J3,1^'5I$'M1/515J^YW9<\3!`M3_HU;WK^ZD7\&%\\>_YL$-/QU:"$'EZ\:BY*Q>RR.(HC:V-=7Z,.X_D1]ID?]UB31EA7W MYSC#X4ZZ(VDP).DGQ(@$^IE:SG16X@V;Q?8."3&(HC1$*^>I%6V$'@ECSE.U ML2T(&2`X3[KD@WQM[NH%*4IK=7R+,KYRC<:#Y(HV$EO4&>V;[XR8_]_F./ M/22=:N+/_71.?_H-G"?=MR4(=_D4MR6R?_#TU`WO,AH+.'9]"E.@$7+MNH9[ M8?'ZW-=DW)(W@TL7KV M2'!5/"N$<.&<>3U\%=.24H:>8$)U$330^9GJV?AE])-81'ZXGJB?)$ULFQ0' MCO*D4]JF0&X3TV6"]Z2MGMI>`2=8$"J7TFX0'Z0UE4GE2^,>?NC!AQ[ZM+PN M/C<_Z;Z(LZ//^N4K%PGNRM?)]=G@*J>XXE\G%N)-5+Y(\-,Z;H;P$W'7O.\H M.,SOK'V-V6\%/0)D5R;53W..\[:ADK+&MRL3X()ZNS*':+YR_^I`3Z:=<.Y7 M^XK3XE)>XXQI46E(X6>K9^`W6)^4W_;'_&M#;@_CA^N-"?KMPE?;+6T3WJD# M&=F@GE\J(%K,KQ!:+Y0?TP_+W<>N)C:(!=DPL*EC$*-"8WWO)FG)D7(CT=?+ M!]DH<'K)FWH:1LAF@.-%O"K4NEQZL"`&.(G6ZJ?@X=H,0.;YY4_?$`]B`K3_ M"BS(YK$@*SBY'BP(``#X(```&\&"M#=EF[LCX!YY^)./2X@3E]%IB>?>N%#% M79D?K#:-QK--V1&N7S9:+$?4>F;:YJXHN(BPIVD%NJR;!5G17JQ,NWKZ?!<[ M+UP8'_<_^"EY@(AGM5.SC#ZH!(>(^J>J$GG@JD:XZ&R+NXUH+"U*)J$5]KMXZ/DC4>)!_JU81 M]TGA_;IX"^%9>N+54^?/?GF2XM8'4`ZD0_@L='R&N.L^VC=(SFM"N9(0;JA` MLB8A'-FL[9<>):>8LWHB/Y_+84XAET1^I09(&Y7F#A*Y)ETD?H."?@55`PX6 M6BW7%,>5YJ>W+4WS8Z$^54]\W[(6Y-A]!Q]_X@DY3SJ/U7AJ<@G%@\R>)J4% M5#KYEO?BPM5H\>>K`]I^V+R3Q"?^)=D9YPUQ)'ZYGD2E.B0,OXC2026K9"A@OGA^(\ M6-MJ`GY"_,N*=N1N)!\D+Z"$X6RQW$(T1U-,MB+21WL!/ MUT#U06PQ)W(DNEI/E:;;)I5V);FF^%6>=4J:JS>2!5D;'T2.!Q%]D).+'LX* MXN.^CLX<.>&26(TGGSFQG@-D0+$@.PF.S.DH3@&=K(%CN74+,J#._6)\1#%9 M6[?7E>LQ?J4M2$C,2:"+S"^8M?L9/U^#N)R#1*6-$',BQW[H_;>*,1V;SP?Q M+\,(.(,B**F>>Y!$A^AQQNJ\7QRK`:_>C23&G4/HSS?)GY1!H@M[EW-J2NO M@S!IN4"#=HN%6UZ^6Z6]X(-0"]+0I*Z:YYH3^CK(P[_[P$/RV;PW9F?>6%PX MB^/*9RZC$L>=N.Q=G_]:=5@0E\?]Y6M1SG$2L>>D\!H)QK6G221>FN3TYO4X M*/6R-+90Y#<0;8"D&.<]=0Z)Y0[B_K@,D1^M9Y)KTL_$3_A<'>`F`GX3!GXB M3K`@5)>)_`Z:ZWRS^R!=[3G#2KJ&>P1E2I>7TMV7+TU?FCYO+CV)_CZ_G@,$ MQTH'L=S=-+_XWAQIVSCZ2]^[?=PPJ=>18WL(6#T1I'KTJHE?.'!:WL\=N5$: M+\YD2/R$>JI'9)EX8M8$$`A#FXL[AZF?4V(0S*MFES M^B```1S-./OZ4HE.Z(G2,(%6V=>IK\""K!NDDO5)&!^1)A._I]:KKR`>!``` M+`@``/@@```;W((T^N^2.?Q.B0+=>NL;.4Z&/WA,_O^3;RVB4PU?6,39!UY; MT",+3;@`9A??6MU#2L;P6[+_:T3ORRL("VD,WK4;P]^Z=_P:]_9\59",,!G3]>[S2V./43A=KR\_AQ&*QG/$MW]06A.[%0FNN(VZA(4GF)>UT]S_XV!\\ M],#CR@"Y/G]Y\3K*#>6Z9PU9:<^&9JIE.:16;X!T%/T^&&E)+B^/GS@[Y:+T MJ7E76PCX6@UF:#^7G2M7D%:H<,Y:QB\NG6%?/0-DG?9B[:UKS`5GDFNGNW_L MX6.//R#9$'^`$$`6Y,+TI;]T\?KY,R_2-74!=^D4.\G]$L&5M"\5@/'<.)X+ M1[OPHUA0UZ(Y=`BKX:,N7V,>T&9H5A+7F`/:.CVZWUBOV$-Q:(_L0+"F/L!T M&>9GIC.*;F&]>P"WK3T>2!-I-1F\-SC.M'XNK^\/T`%\A]8'IO[;$A;$!_\. MU[-=6='B06:O75]<\-Y"3_XU;`_0.>^OX[U8'(=B1"Y/S7F++[CNZV_,7)VC M.[0JD<SYL_/>#'O%FE[UKN2[9>L'>)ZE1FD'$5H_+^+SUOVK#3$GD41^ M6'^!^V&J!>%<."WNR4[-"Z)[9-78"E0:0WG<^UV5L[:S&&O?3W9]#W-_QZ.&+=4_/8KNX`T>(M$NC+UFYE*MDW5'191M8< MBUVOM>6D$KDP6I,/HN9CRFF1C,8\54IL"LWWGJ21\K5!AMR\@5:3(7D\0NP' MS;I8P[1/.1VL'8&_88PCQ"UOV6@6I!(^"(I18['2T>-!7&I!YB0+ M;TM(%L+GW1EF0:ZLJ07I"\OWEXIMVSU.YF"?@L2NA^2DDKA06KL%<;79O4^8 MYZ-9$"&_4W,T"])GL"!B']!0)ZX]+TEQCJ8XPBWY%0MU1X'/.I%CTE%^6M$> MB'FE>)Y!WY:0/+:3[F66UWQM?9`^:^0([$K@N1>*H/HG!ITN?T\BU( MNH0%<5TEIE&0EEZV!7'%$[*T]MKB"+?:.@BV(.2.^R.X]S?S(+LC&)!T!D@G);,ZT3^P MQ`P:+$B?T8*P=BS7!RG6Q49HR\5V&,Y:D67(_;?Y+4B\OMT53OYPT;II;=28 M=.J#S-ZXCD]M$'T0BE-\D(LSWNOD*CGG836AL=9!<=MC28?.A<;SGP*D"?=2?0*FN9OH@PPFW^O''O^"Z3SPN'C^*SD[T M_YP^BW(2?IV=(9CIRQ^%5<#V%.\:NK?>XB;UNA2/.&ESI!\%!A ME)W`2,]8%'IC4#^'4.1WR,I9+A%=<$3%H[*FXG9.L.D-RVYO:=J[$.ATZ5 M;QS>'+T$%F0+0UMV=?)OH+PDS?U;UH)`/`C`U@&P(```&\P'.7;L\\>.'?N" M@OWRR6=.?ME.=&*=L])&3Z9ZE%4;6TGVU97`T4#P48,&1R=L.J/S?R=,_(YK M;5N.5A-@0:*-C_L.WGOPOH._JZ#?\CRV+FZ"N77.:\Y/.R\%05\EG76RNQE' M7[<7],O;=$9SILEGR>0K\1RD\]4X0-;4!TG&^Z/@/O_Q@X]]_O<__J"$_(XW M=?JU&[,VUO/>NN;W1'L#BD6V.EQJ@)"^0IEBMK6MBP7)ZNOVPJWLM.E\O&C\ M?)NJJ42\H5'N%K,@(XE$;Q3<_?<]KN[%>LM[\6GWY"MS-M9O>>MJ090]1Z$P M2G>R^@_;D>;U.5DQ6/T8#7;5\AG+%*LHZ&R8]SB%@5]4*#M&X( MN/L//F[>BW5ZTCTQ/W?:O3AW$6%GY^?FK_@E'W?#6]1P\Y/T[/?5!YRC$*\G MH[/0@-97II@_;`7?T,#V_G<5YL#E>P#%:C.M$_$09 M'%B],4SK#J1:S?5\#>JH!0ET$6AW.$E-AJ!S?0;%0(Z)NB"*O)4?XJ+8AFS0 M+UE-[A;W00H-]=VE2X0O*_W#13G<>*R]\K4U-S5"^[34U-7 MO=FIKXDX%%LX_\:B=^WEM>G(GG@*KRF@6+N./#TSO:TSGPE*]&S9WB2)R4,G MJO?;K`_'<5HA[L^74=3,L_MQ=)#Z(D,O0\V:N>@OS9/_O&D`76Y468B&: MR9GD9%\J._>3\=MY#KB'"96M^Q3*=T:WA##[(]<"""'$> MKWN7V5DFU`?AN0SYOMXUZ\MN$C\MQ$*DF[--V7U*9(,8-U+:@B@E(6JCD-UG MI2CDA_%>:6,N0R'ZA.GB6Q5V6HD0L\-E9$*R4Y4?;\BDH1YJRC83&>"#(#AD M.*-;QX7Y(%*6SA6G_%DJ/IBD.C M0DGLJY5:$)L&?JFKP6ENBV)!TC0G^O"XNX=&7O@S.=%4CT&T6Q"Y;>$6A$N3 M^D7@LF5]D&*RMB<"+G0=!.5)/SGCO7D"E5">=+(V,N]=?.W&FP*.QQ:N]3I( MS.G")8[#.6'9*LG8[0Z*QT9K"ET3`JT\SP+/_OTR0G^LG3?'_6B=/T*L.=/OGTB=-/ M/AVV?ZNB-B38BX5F65+B.&&GUA@IX;SFQSGM;N4]G>,D+A,HF[E(:](`]2G) M>LY+4KWC%#=FT(_NU))D&.HQ73B%K9Y1`ZOL=SPV M`,2#5!R.2F<81J-(98)O2"$X`+`@FP#&\YWYSI&R*90STTTX@$WO@P``@`4! M```?!"P(`%@0L"``8$'`!P$```L"```^"```6!``@(WH@R0RJ4S3.V^_\UWX M!_\VT;\?5<:"%/#*;^]+?_/2?X!_\&]3_?OWE?!!``"V#BS#@@``;!U8A@\" M```6!"P(``#X(```8$$``,`'`0``"P(``#X(``!8$```\$$``,""``"`#P(` M`!8$+`@``/@@``!@00``UL8'N?FC?X0?_+;D[YVZ6%U-*0OR]O\-`+`UX<\/ M#0_=!CX(``#X(```J^.#@`4!``L"%@0`8#D6!'P0`+`@8$$``,`'`0``"P(` M`#[(^L(?W7++/[NE@O]^$KH4+,BF&B#;*PNW0)>"#[+)!LAGGCWSW&_8'OC/ MG7GNS+/^U5O]OW=NO^O,)VP5_Y#4J]@`^5>_\(N_\&ME4;2F,CUP0\&"5'R` MO'KS<_=\T/S4W_K9?_P_[]G_W*OW;-^^_XL0V0N^[YQLW/5FZ` M_*OW_@F`8&1I..UE4BCE];LY)HQEPR'4[D[M1 MJ6MXJ-G'D?D1+`CX(.OH@[S[H\_*[P(*`!:D"'P3;B+6U(-A:-)DL2'!5N/U@0<`'64^_[V=]S?^U]OQ!B0:@/ M0DO@@X`/LGH6Y-5G+5^GWO/+[_[ULV>^?>;.[;>>^5'X.LAGGOV[RED0WWC\ M[,_^XL_^PN^1[U0=C74YP0?AWZ[X]RP?6F-.HA/N*%B02@^0N^[9?_<';<_] M1_??O1^ML[_'__M3V^_<_R'K2CJI5[&M)K_U:[_^:]@/Z65%Q4H+1+L_C_WEQZV2#MY55JR&Q%I+WY M5R'\E@&$'^J7LQ5I947TFU_N_=V*%F3!>V7R2R+B(.Q/TP``!<))1$%4J<'F2T<_@.WO`NJ7?&NSB[6B-D[GH%I,W>F++S6P:\0?BA?CE7B4:^ M41']3DW.>I?!!XD&B]X%%77-.^M.DX>\;$"TIV80[9LW/&]:OWIZ=F9U&C)Y M_I0N;;),:4)OZ/Q6TKNH7RI[MU:DWXSW)EB0:/"6-Z6BEJZ?F'D1X5Y_8^;RS`NX='E&PTFT+YX[A1Z&J:E%;8Y#\^CDUT1:408#'W=Y MTCUW^8*EGDFN^_+,Y7.N7`^U@TJC.I^X[%]E_"09E-;S%J@NE)^)5H1`O\N& M=ESF_%"_V/N/XP3.NLZ$WY1!OZF@WI2(L\)E[PWP059@068O+2R^Z#YYR9NY M.L]*TY=L)85VD=F-.<6"^!3>[%_0$J:="F2(=_.DYR$-O*L73/4X3H(+5[$T MB<*;?=XFCFBC M6I"W7_J;EUY"NW?6X=>#?!#=@GCSP1P\_S5D2TY>]UZY,#7GOW:=N.R]\HQ[ M[HT+_GR+2Y\Q87O`53/:Z+ MV0?A]L_SJ#0/<2$R?/V^AOAQ&=O\VDUN6WR^J#\-*+\]/H-GQO;O[*_#3V+:;/?Y5ZM-.F]_X+[!Y>,?D@ M[/8_SQXL)D-Z.)[W:2]XBZ9ZHB[2`*'2B`=UQ2#MBLR%RGCJO,]OR9M1[2GA MI](J`T31C]2S^2!T@'SOROPE9]&:^I)0,M*;O+#(_/N\I'XO]>=FGG?+>,M63=)$& MR*5`!I_33?.\009[)U_P+LK\PFU$N'T1^3%:PH]]DR+])^'";5-4_=[4[TRU M^B`$K!9DW:&D!:$/@N\[//G,"==]YN33[NO>FW[I=%`RTNH^B'U.5QX._^J< M9$%T>X!UD>"*9$'F0NR50<8,MR!/GCXA\`NW$>'V1>3':*GVI\7^$W"E;%,T M_9X1[\R)TT]6M0]"!TC56A"C#W).L0=\GN)SICAWF6AU'R1\3I?G99]V2O5! M=-HP'R3<7BDR+G,?A-F(2OD@,JVI_T09I7T033_-!Q%QEO62R]6S#E+]%N2& MNI+N>4M_Q4H>6;E]9FGIVA*Q&T&)XPRTKOL=1$W7U/E5E9^`,_@@QGH&N7A5 MT"-KF\% M5J\J_$2<4._)TY,G3TR>,M?3Y8KMF)Q\VCWIR]5T^9+2-E'&B9-4T].,\RE3 M>T^X)Z46R5>?UJXR?D]-RY#T'"P*P@:%"J_!5 M#=5K00"J')Z^S-9S-O4``0L"L#QX\M+TI>GGMZ0%><__]+_JOZI8W80?_-;V MUV&R(";X+QP`@*T,,$```&"```#```$`@`$"```#!```!@@```P0```8(``` M,$```&"`P``!`(`!`@```P0```8(```,$```&"```#!````VU0#YI__9?PX_ M^&WA7XD!`@"PM0$&"```#!```!@@```P0```8(```,```0"``0(```,$```& M"```#!`````8(```,$```&"```#```$`@`$"```#!`!@HPV0_P@``&`%&"`` M`#!```!@@```P``!`(`!`@```P0```8(```,$```&"```#!`````8(```,`` M`0"``0(```,$```&"```#!```!@@``";!OY_F4>@EO&J:P``````245.1*Y" "8((` ` end Patch which changes the menu to display "7" as a selection key for "Minimal" instead of "A" which conflicts with "All": --- sysinstall-choose-distributions-bug.patch begins here --- Index: usr.sbin/sysinstall/menus.c =================================================================== --- usr.sbin/sysinstall/menus.c (revision 217184) +++ usr.sbin/sysinstall/menus.c (working copy) @@ -961,7 +961,7 @@ checkDistKernDeveloper, distSetKernDeveloper }, { "6 User", "Average user - binaries and doc only", checkDistUser, distSetUser }, - { "A Minimal", "The smallest configuration possible", + { "7 Minimal", "The smallest configuration possible", checkDistMinimum, distSetMinimum }, { "B Custom", "Specify your own distribution set", NULL, dmenuSubmenu, NULL, &MenuSubDistributions, '>', '>', '>' }, --- sysinstall-choose-distributions-bug.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 9 07:58:28 2011 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 26327106566C; Sun, 9 Jan 2011 07:58:28 +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 F0DED8FC0A; Sun, 9 Jan 2011 07:58:27 +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 p097wRY8012055; Sun, 9 Jan 2011 07:58:27 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p097wRAN012051; Sun, 9 Jan 2011 07:58:27 GMT (envelope-from linimon) Date: Sun, 9 Jan 2011 07:58:27 GMT Message-Id: <201101090758.p097wRAN012051@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-sysinstall@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: bin/153809: [patch] sysinstall(8): Choose Distributions screen, conflicting selection key A 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, 09 Jan 2011 07:58:28 -0000 Synopsis: [patch] sysinstall(8): Choose Distributions screen, conflicting selection key A Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jan 9 07:58:16 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=153809 From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 9 14:50:06 2011 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 323EE1065672 for ; Sun, 9 Jan 2011 14:50: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 EA07E8FC0A for ; Sun, 9 Jan 2011 14:50: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 p09Eo5Kq059536 for ; Sun, 9 Jan 2011 14:50:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p09Eo5VZ059535; Sun, 9 Jan 2011 14:50:05 GMT (envelope-from gnats) Resent-Date: Sun, 9 Jan 2011 14:50:05 GMT Resent-Message-Id: <201101091450.p09Eo5VZ059535@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, Jean De Gyns Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8BDC51065670 for ; Sun, 9 Jan 2011 14:47:08 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 7BB438FC1B for ; Sun, 9 Jan 2011 14:47:08 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p09El8Ut037275 for ; Sun, 9 Jan 2011 14:47:08 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p09El83H037274; Sun, 9 Jan 2011 14:47:08 GMT (envelope-from nobody) Message-Id: <201101091447.p09El83H037274@red.freebsd.org> Date: Sun, 9 Jan 2011 14:47:08 GMT From: Jean De Gyns To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/153816: ixgbe doesn't work properly with the Intel 10gigabit CX4 Dual Port network card 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, 09 Jan 2011 14:50:06 -0000 >Number: 153816 >Category: kern >Synopsis: ixgbe doesn't work properly with the Intel 10gigabit CX4 Dual Port network card >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 Jan 09 14:50:05 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Jean De Gyns >Release: 8.1 >Organization: Memnon R&D >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: I'm running on a computer with an Intel 10gigabit CX4 Dual Port network card. The FreeBSD version is 8.1 (but I also tried the 8.2) with the latest version of the ixgbe driver 2.2.3 got from the intel website. The problem is the interface never goes up. An ifconfig shows "no carrier" for both ix0 and ix1 interface while the switch shows a functional 10gb link. The nic works just fine with windows 7 and ubuntu 10.10 on the same computer. I read somewhere, you needed to assign an IP to the interface in order to bring it up, doesn't work. The man page states, I should contact "freebsdnic@mailbox.intel.com" if there are problems to report with the drivers but this email address doesn't work anymore. >How-To-Repeat: Just load the ixgbe driver and try to bring the interface up. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 9 14:53:40 2011 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 C03A0106566B; Sun, 9 Jan 2011 14:53: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 972C78FC08; Sun, 9 Jan 2011 14:53: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 p09Ere7b068767; Sun, 9 Jan 2011 14:53:40 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p09EreFt068763; Sun, 9 Jan 2011 14:53:40 GMT (envelope-from linimon) Date: Sun, 9 Jan 2011 14:53:40 GMT Message-Id: <201101091453.p09EreFt068763@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-net@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/153816: [ixgbe] ixgbe doesn't work properly with the Intel 10gigabit CX4 Dual Port network card 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, 09 Jan 2011 14:53:40 -0000 Old Synopsis: ixgbe doesn't work properly with the Intel 10gigabit CX4 Dual Port network card New Synopsis: [ixgbe] ixgbe doesn't work properly with the Intel 10gigabit CX4 Dual Port network card Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jan 9 14:53:21 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=153816 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 10 01:24:50 2011 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 DDC22106566B; Mon, 10 Jan 2011 01:24:50 +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 B504F8FC14; Mon, 10 Jan 2011 01:24:50 +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 p0A1Ooun044474; Mon, 10 Jan 2011 01:24:50 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0A1Ooe6044470; Mon, 10 Jan 2011 01:24:50 GMT (envelope-from linimon) Date: Mon, 10 Jan 2011 01:24:50 GMT Message-Id: <201101100124.p0A1Ooe6044470@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-fs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/153680: [xfs] 8.1 failing to mount XFS partitions 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, 10 Jan 2011 01:24:51 -0000 Old Synopsis: 8.1 failing to mount XFS partitions New Synopsis: [xfs] 8.1 failing to mount XFS partitions Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: linimon Responsible-Changed-When: Mon Jan 10 01:24:36 UTC 2011 Responsible-Changed-Why: reclassify and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=153680 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 10 11:08:59 2011 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 7027610656B1 for ; Mon, 10 Jan 2011 11:08:59 +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 44E9E8FC1A for ; Mon, 10 Jan 2011 11:08: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 p0AB8xbt003434 for ; Mon, 10 Jan 2011 11:08:59 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0AB8wqv003432 for freebsd-bugs@FreeBSD.org; Mon, 10 Jan 2011 11:08:58 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 10 Jan 2011 11:08:58 GMT Message-Id: <201101101108.p0AB8wqv003432@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, 10 Jan 2011 11:08:59 -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/153838 [patch] update emulators/cpmtools2 to 2.13 o ports/153836 fluffy [patch] update deskutils/plasma-applet-cwp 1.3.2 -> 1. o ports/153834 clsung [PATCH] net/py-s3cmd: update to 1.0.0 o ports/153833 portmgr [PATCH] Mk/bsd.database.mk: add mariadb as MYSQL_VER=5 f ports/153824 [PATCH] www/phpSysInfo: Update to 3.0.7 o ports/153819 yzlin [PATCH] update www/py-beautifulsoup30 to latest versio o ports/153810 [PATCH] Fix usb_interrupt_read() in devel/libusb for f o bin/153809 sysinstall [patch] sysinstall(8): Choose Distributions screen, co o ports/153807 nivit [PATCH] databases/py26-sqlalchemy: update to 0.6.6 o bin/153801 [patch] btxld produces incorrect ELF binaries o docs/153779 gjb [patch] [handbooks,doc,faq] update copyright years (sp f ports/153776 rea [patch] multimedia/mplayer - disabling RTCPU on non-{i o kern/153772 net [ixgbe] [patch] sysctls reference wrong XON/XOFF varia o ports/153768 bapt [patch] devel/icu 4.6 is not MAKE_JOBS_SAFE'd f ports/153767 pgollucci [patch] multimedia/xbmc: add VAAPI option o ports/153766 mm [patch] PHP Floating Point CVE Bumper patch o ports/153764 jsa [patch] multimedia/vlc: don't link against librt for s f ports/153762 wen [patch] irc/py-gozerbot: fix dependencies f ports/153760 sunpoet [patch] www/session2: fix dependencies o ports/153759 perl [patch] www/p5-Apache2-Scoreboard: Repair broken port o kern/153748 [libfetch] [patch] in ftp_request: closing of the conn o ports/153744 autotools [patch] devel/autoconf: clean error: Permission denied o docs/153738 gjb [patch] Docuement requirement to alter some sysctls wh o ports/153734 jsa [patch] multimedia/vlc: configure error: libgcrypt ver f ports/153733 [patch] emulators/visualboyadvance-m: problem with joy o bin/153731 [patch] ifconfig(8): ifconfig prints trailing whitespa o ports/153729 amdmi3 [patch] graphics/gnash: add VAAPI option o ports/153728 jsa [patch] multimedia/vlc: add VAAPI option o ports/153727 mm [patch] multimedia/ffmpeg: add VAAPI option o ports/153720 flz [PATCH] net-p2p/rtorrent: update to 0.8.7 o ports/153718 flz [PATCH] net-p2p/libtorrent: update to 0.12.7 o ports/153704 pgollucci [patch] multimedia/libvdpau: respect STRIP o kern/153695 fs [patch] [zfs] Booting from zpool created on 4k-sector o ports/153689 araujo [patch] net-mgmt/ocsinventory-agent o ports/153669 yzlin [PATCH] www/yii: update to 1.1.5 o ports/153668 girgen [patch] databases/postgresql90-server: allow for postg o bin/153667 [PATCH] comsat(8): libexec/comsat/comsat.c: gratuitous o conf/153666 rc [rc.d][patch] mount filesystems from fstab over zfs da o ports/153658 miwi [patch] devel/pecl-svn - Cleanup o ports/153657 python [patch] make lang/python26 work on powerpc p conf/153655 jh [rc.d][patch] substitute nfs4 with newnfs in netfs_typ o docs/153654 doc [patch] incorrect include in sysctl.9 o ports/153648 garga [patch] net/xmlrpc-c-devel: build tools by default f ports/153623 miwi [PATCH] www/drupal6: update to 6.20 o ports/153622 pgollucci [patch] sysutils/jfbterm: improve TERMCAP option o bin/153619 [patch] csup(1): prevent infinite cycle on empty ",v" o docs/153614 doc [patch] top(1) man page formatting error o ports/153611 ruby [PATCH] security/ruby-camellia: update to 1.2 f ports/153608 [patch] net-mgmt/nfdump: update to 1.6.2 o usb/153599 usb [patch] Feiya Elango USB MicroSD reader synchronize ca o ports/153598 nivit [PATCH] www/mimetex: Use WWWDIR and so on o ports/153597 portmgr [bsd.destdir.mk] [patch] chrooted make always returns o ports/153591 ruby [PATCH] update ftp/rubygem-curb 0.7.8 -> 0.7.9 o ports/153587 ume [PATCH] security/cyrus-sasl2: fix build with mysql 5.5 o kern/153584 fs [ext2fs] [patch] Performance fix and cleanups for BSD o ports/153583 [PATCH] x11-wm/scrotwm: update to 0.9.27 o ports/153581 mm [patch] multimedia/ffmpeg: make libvdpau a build-time f ports/153579 mm [PATCH] lang/php52: update suhosin patch o ports/153578 doceng [patch] textproc/docproj-nojadetex: JadeTeX included w o ports/153573 [patch] ports/Mk bsd.license.mk honor pkg_add -p/-P o ports/153571 skv [PATCH] update databases/p5-DBD-mysql to latest versio o ports/153570 sylvio [PATCH] update databases/rrdtool to latest version o ports/153569 stas [PATCH] update cad/gtkwave3 to latest version o ports/153567 acm [PATCH] x11/fpc-x11: doesn't respect localbase f ports/153566 miwi [patch] converters/enca update o docs/153562 bcr [patch] handbook/network: add clarity for syslogd_flag o ports/153556 miwi [patch] net/yaz update f ports/153553 miwi [patch] audio/clementine-player update o ports/153547 portmgr [patch] ports/Mk bsd.port.mk remove NO_SIZE from the p o ports/153544 [patch] remove NO_SIZE from ports which don't need it o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o docs/153542 doc [patch] Document TRYBROKEN in ports(7) o ports/153541 wxs [patch] devel/git: respect STRIP for stripping o ports/153540 mm [patch] multimedia/ffmpeg: respect STRIP o ports/153539 portmgr [bsd.port.mk][patch]: allow checking STRIP when WITH_D o ports/153529 yzlin [PATCH] sysutils/htop: Update & Take maintainership o bin/153527 [patch] wake(8) should use sysexits.h o ports/153519 [PATCH] audio/darkice: fix libaacplus2 o ports/153518 [PATCH] audio/libaacplus: update to 2.0.2 f ports/153492 wen [patch] update astro/merkaartor to 0.17.0 o ports/153490 wen [PATCH] net/openmq: jaxm support + minor startup impro f ports/153489 gahr [patch] www/libmicrohttpd -- update to 0.9.4 f ports/153488 ruby [PATCH] update devel/rubygem-ruby-prof to the recent v o ports/153473 [patch] mail/courier port upgrade from 0.63.0 to 0.65. o kern/153459 [kbdmux][patch] add option to specify built-in keymap o ports/153456 luigi [PATCH] sysutils/fio: update to 1.44.3 [feature safe] o ports/153455 wen [patch] update netim/centim to 4.22.10 o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes o ports/153451 x11 [PATCH] graphics/libGL remove mesa-demos as component f ports/153449 [PATCH] fix www/awstats awstats_configure.pl to run on f ports/153437 pgollucci [patch] emulators/dgen-sdl: mark BROKEN on non-i386 ar o ports/153436 [MAINTAINER][PATCH] sysutils/downtimed: update to 0.4 o ports/153435 kuriyama [PATCH] japanese/trac: update to 0.12.1 o ports/153429 [patch] Fix explicite uses of unzip in ports o bin/153426 [patch] fsck_msdosfs(8) only works with sector size 51 f ports/153425 [PATCH] www/limesurvey: Added a switch to use PostgreS p docs/153416 doc [patch] mail(1) -u option not correctly documented o kern/153415 ipfw [ipfw] [patch] Port numbers always zero in dynamic IPF o ports/153409 ache [PATCH] mail/procmail: Port builds shouldn't ask for u f ports/153404 ehaupt [PATCH] net/rsync: workaround for ACL problem with ZFS f ports/153395 pgollucci [PATCH] misc/ruby18-vpim: update to 0.695 o ports/153379 [PATCH] www/hastymail2 add options to add dependencies f ports/153375 [patch] emulators/fmsx unbroke p bin/153362 delphij [patch] add -p flag to set pidfile for rtadvd(8) o ports/153357 [patch] news/sabnzbdplus: rc script fails to kill the o ports/153345 miwi [patch] audio/qjackctl update to latest version o ports/153338 amdmi3 [patch] games/allacrost: luabind isn't needed anymore f ports/153295 glewis [PATCH] mail/dovecot2: update to 2.0.8 f ports/153287 [PATCH] net-mgmt/ndpmon: [SUMMARIZE CHANGES] o ports/153283 rea [patch] port net-mgmt/pnp update to version 0.6.10 f ports/153278 [PATCH] net/beacon: Fix udp socket buffer sizes o bin/153276 [patch] uudecode(1) error message is incorrect o bin/153261 jilles [patch] sed(1): fix for a race condition (from illumos o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' o bin/153257 [libc] [patch] regex(3): Add support for \< and \> wor o bin/153252 ipfw [ipfw][patch] ipfw lockdown system in subsequent call f ports/153241 [PATCH] fix plist of sysutils/k3b o ports/153238 pgollucci [PATCH] sysutils/rubygem-sys-uname: update to 0.8.5 o conf/153233 [patch] skel/dot.shrc: use prompt escapes, comment out f ports/153231 ohauer [PATCH] net-mgmt/nrpe2 enable ssl by default o ports/153215 [patch] Update port net/nss_ldapd to version 0.7.13 o conf/153164 [termcap] [patch] termcap needs an entry for rxvt-unic o misc/153157 [build] [patch] Add support for generating userland de o conf/153155 hrs [PATCH] [8.2-BETA1] ipfw rules fail to load cleanly on o bin/153154 [patch][libarchive] fix error handling in mtree parsin o ports/153136 girgen [patch] databases/postgresql84-server: allow for postg o conf/153123 rc [rc] [patch] add gsched rc file to automatically inser o ports/153113 brooks [PATCH] security/pssh: use GOOGLE_CODE/LOCAL macro o bin/153052 [patch] watch(8) breaks tty on error o ports/153030 yzlin [PATCH] irc/rbot: update to 0.9.15 f ports/153021 miwi [patch] devel/pecl-libevent - Add license - PHP versio o ports/153000 kwm [PATCH] www/midori, fix correct path compared to the p o ports/152982 pgollucci [patch] net/nss_ldap, ignore option nss_initgroups_ign f ports/152972 edwin [patch] net/freenet6 breaks rtadvd(8) f ports/152969 edwin [patch] net/freenet6's rc.d script breaks rcorder and f ports/152943 miwi [patch] databases/pecl-memcached Fixes/Cleanup o bin/152934 delphij [patch] Enhancements to printf(1) o bin/152928 bz [patch] rtadvd(8) don't send RA on i/f that's down f ports/152903 miwi [patch] www/pecl-tidy Fixes/Cleanup o ports/152901 mnag [patch] databases/pecl-sqlite Cleanup/Fixes o ports/152889 x11 [patch] x11-drivers/xorg-drivers default options kill o ports/152871 portmgr [patch] Request for exp-run and comment o bin/152868 imp [patch] pc-sysinstall(8) - Add support for using encry o bin/152856 cperciva [patch] allow up to be used instead of update in freeb f ports/152855 [PATCH] net/unison, net/unison-devel: update to respec o ports/152847 clsung [patch] port/buildbot-slave could use a startup script o ports/152838 yzlin [PATCH] www/suphp: [Add support for lighttpd] o ports/152833 gabor [patch] textproc/gnugrep: update to 2.7 o kern/152822 avg [patch] DTrace: syscall provider for compat/freebsd32 f ports/152820 des [patch] shells/zsh: correct memory report for time bui o ports/152804 portmgr [patch] Add USE_SRC and ONLY_FOR_*VER to bsd.port.mk o kern/152792 [patch] move temperature conversion macros to a common o ports/152745 kuriyama [PATCH] databases/pgpool-II: fix install by unprivileg o bin/152738 [patch] vmstat(8), printhdr() doesn't work correctly w o conf/152713 ed [termcap] [patch] broken color support under rxvt-256c o ports/152697 pgollucci [PATCH] games/assaultcube: Update from 1.0.2 to 1.1.0. f ports/152684 lev [patch] mail/dovecot2: Many improvements to default co o kern/152663 [ppc] [patch] Add MCS9865 PCI card to ppc(4) o ports/152548 dhn [PATCH] net/GeoIP: don't redefined memcpy s ports/152547 dougb [PATCH] ports-mgmt/portmaster: support .txz and .tgz p o ports/152538 pgollucci games/linux-ut fetch url broken [patch] f ports/152537 [patch] database/postgresql90-server no longer needs p o ports/152498 portmgr [patch] ports/Mk bsd.port.mk order if groups/users are o kern/152488 fs [tmpfs] [patch] mtime of file updated when only inode o conf/152465 simon [jail] [patch] devfs is mounted in jails without rules o ports/152400 danfe [PATCH] x11/nvidia-driver, x11/nvidia-settings, x11/nv o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us p bin/152345 jh [patch] truss(1) writes one byte past the buffer if it o ports/152316 pgollucci [PATCH] games/sauerbraten: Update to 20100728 p ports/152262 openoffice [patch] editors/openoffice.org-3 s ports/152258 delphij [PATCH] net/openldap-server: enable BDB 5.0 and above o kern/152254 ed [patch] Support ioctl() on TTY control devices o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte o kern/152250 scsi [ciss] [patch] Kernel panic when hw.ciss.expose_hidden o ports/152236 [patch] x11/slim: Enable pam support, add hald and dbu o kern/152232 [syscons] [patch] syscons VGA screensavers don't work o ports/152224 python [patch] fix installed permissions for lang/python27 f ports/152220 wen [PATCH] graphics/mapnik: update to 0.7.1 and unbreak o kern/152200 [vm] [patch] Overflow in vmspace_swap_count() o ports/152195 [PATCH] deskutils/pinot update to xapian-core 1.2.3 o ports/152194 brix [PATCH] www/xapian-omega update to 1.2.3 o ports/152193 perl [PATCH] databases/p5-Search-Xapian update to 1.2.3 f ports/152192 [PATCH] databases/xapian-bindings update to 1.2.3 o ports/152191 [PATCH] databases/xapian-core update to 1.2.3 o gnu/152178 [libregex] [patch] Misc. updates to gnu/libregex f bin/152143 bz [PATCH] rtadvd(8) null pointer dereference o bin/152132 script(1): [patch] Useless code in script.c (part 2) o bin/152131 script(1): [patch] Useless code in script.c (part 1) a ports/152102 portmgr [patch] Mk/bsd.port.mk: make dirrmtry more friendly o bin/152084 [patch] pw(8) does not allow @ or ! in gecos o kern/152079 fs [msdosfs] [patch] Small cleanups from the other NetBSD o kern/152042 [libc] [patch] wrong bufsize of __hdtoa f ports/152040 obrien [patch] editors/vim remove gettext autodetection, resp o kern/152034 [puc] [patch] SIIG Cyber 2S PCIe not working correcty o ports/152004 timur [PATCH] net/samba35: unbreak, fix plist o bin/151996 [patch] new tcpdrop(8) option to select interactively o bin/151976 [patch] mount_nullfs(8) patch to add support for expos o bin/151967 imp [patch] pc-sysinstall(8) - Add support 4k partition al o ports/151954 miwi [patch] Mk/*.mk: remove emacs mode, -*- mode: ...; -*- o bin/151937 [patch] netstat(1) utility lack support of displaying f ports/151930 [PATCH] net-mgmt/netams links to libmysqlclient/libpq o ports/151923 java [patch] java/openjdk6: free and native openjdk bootstr f kern/151908 bz [netinet6] [patch] nd6_ns_input: panic may happen, for o bin/151866 [libfetch] [patch] closing the cached FTP connection o bin/151850 [patch] style cleanups to newfs_msdosfs(8) o kern/151845 fs [smbfs] [patch] smbfs should be upgraded to support Un o ports/151837 [patch] sysutils/bsdstats : does honor BATCH when inst o ports/151830 kde [patch] devel/cmake: install cmake-mode.el o bin/151736 [patch] mount_nullfs(8) patch to add support for expos a bin/151720 jilles [patch] sh(1): parser accepts invalid syntax without r o ports/151719 autotools [PATCH] Lack of NLS option in devel/gmake o bin/151713 fs [patch] Bug in growfs(8) with respect to 32-bit overfl f ports/151706 [PATCH] games/endgame-singularity: update to 0.30b o misc/151698 imp [nanobsd] [patch] Add two new options to nanobsd.sh to o misc/151697 imp [nanobsd] [patch] nanobsd.sh copy links to packages as p misc/151696 embedded [nanobsd] [patch] nanobsd.sh doesn't run "make_conf_bu o misc/151695 embedded [nanobsd] [patch] Enhance tools/nanobsd/fill_pkg.sh p bin/151664 glebius [PATCH] route(8): sbin/route/route.c: Incorrect array o ports/151640 stas [patch] unbreak sysutils/fuser on 9.x o kern/151629 fs [fs] [patch] Skip empty directory entries during name o bin/151600 [patch] route(8) does not always flush stdout o kern/151586 [patch] [ipmi] Incorrect firmware version printed at b o docs/151478 doc [patch] Russian porters-handbook: MFen 1.440 -> 1.1077 o ports/151477 girgen [PATCH] databases/postgresql-jdbc: update to 9.0.801 o kern/151449 bz [patch] IPsec SPD rule does not match GIF with IPv6 ad s ports/151424 obrien [patch] make gettext support optionnal in editors/vim o bin/151400 [patch] ppp(8) new commands: iface name and iface desc f ports/151388 delphij [PATCH] mail/postfix-gps: OPTIONS added for other data o ports/151378 beat [PATCH] fix pkg-cofig file created by www/kompozer and o docs/151367 doc [patch] Update for puc.4 man page o kern/151365 [puc] [patch] Two new Moxa puc(4) devices s ports/151312 autotools [PATCH]devel/gmake: update to 3.82 (exp-run probably d o kern/151305 [patch] - CTASSERT(sizeof(struct jmvrec) == JREC_SIZE) f ports/151296 [patch] ports/sysutils/fusefs-kmod build fails: MNT_NF o ports/151285 acm [PATCH] net/twinkle: hidden dependency on kde o bin/151186 [patch] routed(8) turns RIP off if just one network ca o ports/151181 bf [patch] remove dependency of security/tor on security/ o ports/151173 timur [PATCH] net/samba34: Fix rc script to return correct " o misc/151141 [tools] [patch] include daily script in !MK_PKGTOOLS c o ports/151137 rnoland [patch] x11-wm/compiz compiz-manager o ports/151042 java [patch] java/openjdk6 Respect CC o bin/151036 [patch] Default snaplen of tcpdump(1) is not adequate o bin/151023 [patch] ping6(8) exits before all ICMPv6 echo replies o misc/151015 [patch] Add pfctl -P option to not perform service nam o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o usb/150989 usb [patch] Add Netgear WG111V2_2 support to upgt(4) o ports/150964 lwhsu [PATCH] databases/py-migrate: update to 0.6 f ports/150940 olgeni [PATCH] lang/clojure-mode.el: update to 1.7.1 o ports/150934 girgen [PATCH] databases/postgresql-jdbc: fix build with java o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl o bin/150890 kientzle [patch] bsdtar(1) does not always dive into subdirecto o kern/150858 geom [geom] [geom_label] [patch] glabel(8) is not compatibl o bin/150772 [patch] csup(1) should include limits.h instead of sys o bin/150771 [patch] csup(1) GNUmakefile missing o conf/150752 rc [rc.subr] [patch] be not needed to eval $_pidcmd on re o ports/150691 portmgr [patch] Templates/BSD.local.dist: add conf.{avail,d} f o bin/150648 [patch] rshd(8): Incorrect determination of length of o www/150619 www [patch] ru/features.sgml: MFen 1.20 -> 1.34 o conf/150599 jail [patch] /etc/rc.d/jail does not set jailname. o ports/150594 x11 [patch] graphics/dri: add support for ATI Radeon HD 42 o www/150553 www [patch] update Russian "FreeBSD Community" page o www/150531 www [patch] ru/community/irc.sgml: MFen 1.2 -> 1.4 o bin/150530 [patch] syslogd(8) doesn't support ipv6 addrs as desti o www/150522 www [patch] ru/community/mailinglists.sgml: MFen 1.4 -> 1. p docs/150490 gjb [patch] newfs man page clarification o conf/150474 rc [patch] rc.d/accounting: Add ability to set location o p bin/150384 jilles [patch] tr(1): tr mis-parses '[=]=]' equivalence class o docs/150365 doc [make.conf] [patch] remove BDECFLAGS from make.conf(5) o ports/150361 [patch] provide script to bind with nautilus for multi o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o ports/150287 shaun [patch] Segfault: games/spider crashes after 51 moves o ports/150265 doceng [patch] print/ghostscript8 disable bogus port conflict a bin/150262 [patch] truss(1) -f doesn't follow descendants of the o kern/150251 net [patch] [ixgbe] Late cable insertion broken o kern/150247 net [patch] [ixgbe] Version in -current won't build on 7.x o docs/150244 doc [patch] DRIVER_MODULE(9): MULTI_DRIVER_MODULE is only o bin/150229 cperciva [PATCH] update man page of freebsd-update(8) o conf/150228 [patch] periodic(8): fix daily/800.scrub-zfs errors wi o ports/150223 x11 [patch] x11-drivers/xorg-drivers/Makefile refers nonex o kern/150206 [libc] [patch] nmount(2): can't switch root partition o conf/150195 [patch] [rc.d] startup script for pfstatd(8) o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf o kern/150176 [libpcap] [patch] pcap(3): pcap_read_bpf() p->cc can g o amd64/150170 amd64 [patch] [amd64] [headers] SIG_ATOMIC_MIN/SIG_ATOMIC_MA o bin/150151 des [patch] fix quota(1) output [regression] p kern/150138 davidxu [patch] signal sent to stopped, traced process not imm o kern/150095 mav [patch] Account for reserved itimers which shouldn't c f ports/150040 shaun [patch] security/fwtk: plug-gw does not run on 64bit a p docs/150030 gjb [patch] dbopen(3) manpage not updated with r190497 cha a stand/149980 standards [libc] [patch] negative value integer to nanosleep(2) p docs/149979 gjb [PATCH] Add RETURN VALUES section to devclass_get_maxu p docs/149978 gjb [PATCH] Address missing EINVAL requirement for cpu_set o docs/149950 doc [patch] glob(3)'s reference to regex(3) is spelled inc a ports/149941 ohauer [patch] net-mgmt/nagios-check_bacula-5.0.2 library con o kern/149937 net [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/149936 [libmagic] [patch] wrong handling of decompression uti p usb/149934 usb [patch] [usb8] Transcend JetFlash V85 poor performance o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP o ports/149902 itetcu [PATCH] mail/dspam: important cleanup o usb/149900 usb [uftdi] [patch] FreeBSD 8.1 uftdi patch to support usb o conf/149867 rc [PATCH] rc.d script to manage multiple FIBS (kern opti o conf/149831 rc [PATCH] add support to /etc/rc.d/jail for delegating Z o bin/149806 [patch] OpenBSM auditd(8) fails to expire trails if ho f kern/149803 vwe [patch] loader: set vfs.mount.rootfrom using label o kern/149800 [fdc] [patch] "driver bug: Unable to set devclass (dev p bin/149780 jh [patch] setfacl(1) doesn't return non-zero on error o ports/149765 multimedia [PATCH] audio/faac: improve build patches p usb/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem s kern/149665 imura [PATCH] mount_smbfs the CP932 to UTF-8 mount as not. o kern/149580 mav [ata] [patch] When using an SIIG SATA card the error " o docs/149574 doc [patch] update mi_switch(9) man page o bin/149569 [patch] rtld(1): runtime linker unable to load needed p docs/149549 brueffer [patch] MLINK choosethread.9 to runqueue.9 o misc/149510 [build] [patch] CFT: sys/conf/newvers.sh: Cleanup and o www/149446 www [patch] improve misleading title of "report a bug" p bin/149403 ed [patch] truss(1) hangs when user input is requested o misc/149360 gavin [PATCH] update for tools/build/mk/OptionalObsoleteFile o kern/149266 [new driver] [patch] rpi(4) - Comtrol Infinity/Express o kern/149173 fs [patch] [zfs] make OpenSolaris installa o kern/149168 emulation [linux] [patch] Linux sendmsg / recvmsg / etc fixes fo o bin/149152 gabor [patch] grep(1): BSD grep loops with EISDIR trying to o kern/149117 net [inet] [patch] in_pcbbind: redundant test o docs/149047 doc [patch] tcsh(1) bears no mention of brace expansion in p kern/149041 olli [drm] [patch] DRM support for Radeon HD 4250 o kern/149015 fs [zfs] [patch] misc fixes for ZFS code to build on Glib o kern/149014 fs [zfs] [patch] declarations in ZFS libraries/utilities o kern/149013 fs [zfs] [patch] make ZFS makefiles use the libraries fro a kern/149012 gavin [headers] [patch] please replace '#include 1.14 o ports/148783 portmgr [bsd.port.mk] [patch] add LATEST_LINK and CONFLICTS to s ports/148695 portmgr [bsd.port.mk] [patch] Easier / automatic regression-te 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/148680 doc [sysctl][patch] Document some sys/kern sysctls p kern/148646 des [linprocfs] [patch] Implementation of the "environ" fi o kern/148644 marcel [uart] [patch] vgetty play voice file fails with 8.0 R o kern/148609 [libdialog] [patch] printing to a checklist window on p kern/148580 gavin [sysctl][patch] Document some sys/kern sysctls o bin/148528 cperciva [patch] portsnap(8): add new command mode o i386/148509 i386 [boot] [patch] Improvements to i386/boot2's comments 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/148406 python [PATCH] lang/python26: fix build backage without threa o kern/148367 [syscons] [patch] Add loader tunable to override SC_HI o ports/148314 stas [PATCH] editors/slime: update to 20100622 and cleanup 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 kern/148260 pf [pf] [patch] pf rdr incompatible with dummynet f ports/148223 mva [PATCH] editors/hte ability to install as hte instead p usb/148189 remko [usbdevs] [usb8] [patch] provide descriptive string fo o conf/148144 ipfw [patch] add ipfw_nat support for rc.firewall simple ty o ports/148097 emulation [patch] suggested addition to linux_base-* packages to p kern/148087 des [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/148035 x11 [patch] x11/xdm Fix auth in case of ro /usr o conf/148017 hrs [stf] [patch] rc script for stf does not honour create s ports/148005 mm [patch] devel/binutils: add gold option o kern/147998 [nfs] [patch] NFS -mapall group permissions ignored wh p conf/147992 gavin [termcap] [patch] xterm-256color is a 8 colors termina o bin/147938 [patch] mt(8): ioctl sign-extension warnings from some o bin/147887 [patch] Invalid extension type displayed with setkey(8 o kern/147881 fs [zfs] [patch] ZFS "sharenfs" doesn't allow different " o kern/147855 [ipmi] [patch] kernel panic when IPMI enabled on some o kern/147839 [libc] [patch] syscall(2) with wrong argument causing o ports/147806 apache [PATCH] www/apache20: httpd doesn't start with WITH_LD o conf/147685 rc [rc.d] [patch] new feature for /etc/rc.d/fsck 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/147646 x11 [PATCH] graphics/libGL: fix linking with newer gcc and o bin/147629 [patch] rup(1) problem 365 days period 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 p misc/147479 core [patch] [calendar] Dan Moschuk has passed away 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/147318 x11 [Patch]graphics/libdrm:Fix the PLIST when define WITHO o kern/147237 [psm] [patch] There is no IBM/Lenovo TrackPoint suppor o bin/147175 [kerberos] [patch] libhx509.so containes references to o kern/147127 [pccard] [patch] Fix panic in pccard.c o ports/147009 portmgr Mk/bsd.apache.mk: [patch] default to www/apache22 o bin/146916 ed [patch] sh(1) uses dumb terminal in single-user mode o kern/146889 [libc] [patch] Not having NET_RT_IFLIST #defined cause p usb/146871 usb [usbdevs] [usb8] [patch] provide descriprive string fo o bin/146859 [patch] pkg_create(1): libpkg/msg.c removal and relate o bin/146857 [patch] pkg_create(8): fix missing error call in uname 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/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 gavin [kbdmap] [patch] Danish kbdmap for MacBook o kern/146759 net [cxgb] [patch] cxgb panic calling cxgb_set_lro() witho o ports/146713 [patch] net-mgmt/argus-monitor update o misc/146687 [tools] [patch] Fix QA issues with tools/regression/ai o bin/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 bin/146543 [patch] mount(8): securelevel does not affect mount (d o bin/146541 secteam [patch] add check option to md5(1) o ports/146496 portmgr [bsd.port.mk] [PATCH] Removing ${PORTSDIR} from depend o conf/146439 [patch] remove share/man/man1aout o kern/146429 pjd [geli][panic][patch] kernel panic if geli autodetach i o kern/146410 pjd [zfs] [patch] bad file copy performance from UFS to ZF 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 f ports/146347 portmgr [patch] [bsd.port.mk] fix USE_DOS2UNIX info output o bin/146331 [patch] Grow ps(1) with "gid" and "group" keywords o bin/146254 [patch] mdmfs(8): Add -k option to specify a skeldir p kern/146250 bz [netinet] [patch] Races on interface alias removal o ports/146231 gecko [feature request] [patch] www/firefox: use port libs o kern/146190 vanhu [ipsec][patch] NAT traversal does not work in transpor o ports/146145 stas [patch] net-mgmt/flow-tools: add OPTIONS support 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 [NOTES] [patch] Add a requires line to /sys/amd64/conf 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 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 net [patch] add count option to netstat(1) o kern/145737 bz [netinet] [patch] Wrong UDP checksum not ignored as ex 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 bin/145694 [patch] enable config(8) execution outside of the kern o kern/145590 [kernel] [[patch] SIG_ATOMIC_{MIN,MAX} does not match p 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 p bin/145101 portmgr [patch] pkg_version(1) - remove hardcoded INDEX filena s bin/145100 portmgr [patch] pkg_add(1) - remove hardcoded versioning data o bin/145082 [patch] w(1), uptime(1) to use 24H time by default 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 kern/144874 net [if_bridge] [patch] if_bridge frees mbuf after pfil ho o ports/144852 [patch] sysutils/ntfsprogs - improvements to mkntfs o kern/144824 [boot] [patch] boot problem on USB (root partition mou o ports/144821 [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 bin/144652 [PATCH] pwd_mkdb(8) copies comments to /etc/passwd o docs/144630 doc [patch] domainname(1) manpage contains old information 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 jfv [ixgbe] [patch] ixgbe driver errors o conf/144548 brian [boot] [patch] Enable automatic detection of amd64/i38 p docs/144534 gjb [patch] fdescfs(5) and devfs(5) both provide /dev/fd/{ s bin/144531 [patch] cp(1) show percentage complete a ports/144482 portmgr [bsd.port.mk] [patch] actual-package-depends rejects o o kern/144458 fs [nfs] [patch] nfsd fails as a kld o misc/144442 [build] [patch] remove unnecessary group and passwd en 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 a bin/144300 brucec [md] [patch] mdconfig(8): mdconfig -{d,l}n doesn't wor 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 p kern/144194 netchild [linux] [patch] linuxulator: 2 exec bug fixes 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] [request] allow Atheros watchdog timeout 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 qingli [route] [patch] ECMP Phase 1 fixes for FreeBSD 7.2 s 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 bin/143572 fs [zfs] zpool(1): [patch] The verbose output from iostat o bin/143570 ed [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) o bin/143389 [2tb] [patch] fdisk(8) cannot handle above 1TB under i 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/143298 secteam [random] [patch] random_yarrow_block() doesn't actuall o gnu/143254 [patch] groff(1) build in base system does not honor P p 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 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 a docs/143041 blackend [handbook] [patch] doc/en__US.ISO8859-1 refers to slip 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 f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE p kern/142927 thompsa [vlan] [patch] handle parent interface link layer addr 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/142743 stas [PATCH] devel/cross-binutils: installed by *-rtems-gcc o 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 o conf/142434 rc [patch] Add cpuset(1) support to rc.subr(8) 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 [ndis] [patch] ndis is missing media status reporting o docs/142168 doc [patch] ld(1): ldd(1) not mentioned in ld(1) manpage 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 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 usb/141777 usb [usb8] [usbdevs] [rum] [patch] Support usbdevs / rum(4 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/141472 des [PATCH] shells/zsh: add linsysfs to (u)mount -t comple p kern/141439 netchild [linux] [patch] linux_exit_group kills group leader o conf/141317 jail [patch] uncorrect jail stop in /etc/rc.d/jail p 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 o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot o ports/140939 simon [patch] security/vuxml: fix and extend files/newentry. o kern/140728 jfv [em] [patch] Fast irq registration in em driver a 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 jfv [em] [patch] e1000 driver does not correctly handle mu o kern/140619 net [ifnet] [patch] refine obsolete if_var.h comments desc o kern/140597 andre [netinet] [patch] implement Lost Retransmission Detect o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja p kern/140567 adrian [ath] [patch] ath is not worked on my notebook PC p docs/140495 gjb [patch] /etc/rc.conf.d is not documented in rc.conf(5) o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d 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 o docs/140369 doc [patch] src/contrib/pf/man/pf.4 o kern/140349 [libpcap] [patch] libpcap's parser doesn't recognize n a bin/140309 [patch] bad syntax causes yacc(1) segfault 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 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] [rtld] dlopen(3) doesn't promote RTLD_GLOBAL f o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file 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 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 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 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 a bin/139314 [patch] install(1): install -d reports success on fail 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 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 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 bin/138131 remko [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 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 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/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 o bin/137156 doc [patch] fix dump(8) cryptic output on reporting progre o kern/137145 andre [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 misc/136889 embedded [nanobsd] [patch] nanobsd error reporting and other re 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 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 luigi [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 o ports/135670 ale [PATCH] databases/mysql50-server: in mysql-client mysq 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 docs/135516 doc [patch] pax(1) manual not mentioning chflags unawarene 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 s gnu/134604 [libgcc] [patch] Memory leak in gcclibs/libgomp o arm/134368 arm [patch] nslu2_led driver for the LEDs on the NSLU2 p 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/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 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 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 bin/132798 pjd [patch] ggatec(8): ggated/ggatec connection slowdown p 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 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/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] [panic] Kernel panic after NOMEM c o bin/132008 [patch] config(8) to allow using section/nosection in o kern/132001 [patch] [ixgb] driver update o kern/131933 [uart] [patch] add support for Sony Ericsson GC89 EDGE o ports/131930 x11 [PATCH] x11-servers/xorg-server coredumps on exit o docs/131918 doc [patch] Fixes for the BPF(4) man page p usb/131912 gavin [uslcom] [patch] New devices using Silicon Labs chips 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 bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm o kern/131536 andre [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 p usb/131123 usb [patch] [usb67] re-add UQ_ASSUME_CM_OVER_DATA USB quir o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ o misc/130856 [build] [patch] make installworld work when WITHOUT_GA o kern/130749 [libc] [patch] nscache.c/nscachedcli.c - return error 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 f 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 kern/130286 [patch] hifn(4) changes o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El 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 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 ports/129741 portmgr [patch] bsd.port.mk: support systems that have been bu o conf/129697 [patch] fix misbehavior of periodic/daily/100.clean-di p bin/129630 uqs [patch] bsnmpd(1): teach hostres module about ZFS o ports/129553 hrs [patch] print/acroread8 can't launch some programs due 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 yongari [xl] [patch] xl0 watchdog timeout 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 kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n 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 p 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/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 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 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 p kern/127928 andre [tcp] [patch] TCP bandwidth gets squeezed every time t s bin/127918 [ata] [request] [patch] ATA Security support for ataco 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 scsi [ata] [patch] [request] - support write cache toggling o bin/127633 edwin [patch] Update top(1) to 3.8b1 p docs/127602 trhodes [patch] Incomplete information in nsswitch.conf(5) o usb/127543 gavin [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 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/127276 [patch] ldd(1) invokes linux yes 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 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 jfv [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 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 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 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] periodic(8) new file: /etc/periodic/security/8 p kern/125034 jh [devfs] [patch] devfs does not apply rules to newly cr p kern/125030 jh [devfs] [patch] Command 'devfs ruleset 0' causes panic 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 [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 p kern/124744 avg [acpi] [patch] incorrect _BST result validation for To a docs/124716 trhodes [patch] GEOM RAID1 handbook example only covers boot p o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o misc/124431 bde [build] [patch] minor revision of BDECFLAGS p bin/124392 [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 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 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 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/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/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 s usb/122819 usb [usb67] [patch] Patch to provide dynamic additions to 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 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 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 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 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/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 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 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 kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields p kern/121102 avg [acpi] [patch] update acpi_fujitsu for the P8010 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 geom [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 [usb67] [umass] [patch] quirk to support ASUS P535 as o ports/120532 portmgr [PATCH] bsd.port.mk - add more recursive-foo targets 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 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 kern/119668 avg [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 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 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 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 gavin [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 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 '(' 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 o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant 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 p usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th 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 bin/116209 [patch] [request] decimal suffix in split(1) 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 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 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/114167 portmgr [patch] bsd.port.mk - ignoring major numbers in LIB_DE o bin/114082 [make.conf] [patch] default CFLAGS have a blank at the 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 o conf/113915 rc [patch] ndis wireless driver fails to associate when i p conf/113913 olli [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) s 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 s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las 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, o bin/112336 [patch] install(1): install -S (safe copy) with -C or s gnu/112215 obrien [patch] [amd64] gcc(1): "gcc -m32" attempts to link ag 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 s bin/111024 [request] [patch] [ata] atacontrol(8): support for sta 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 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 p 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 f ports/109501 rea [PATCH] add some configurable vars to mail/exim o bin/109478 [libc] [patch] adopt reentrant syslog functions from O 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/109232 imp [sio] [patch] ibufsize calculation wrong causing data o docs/109008 csjp [patch] add summary of kern/48198 to jexec(8) 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 [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 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 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 f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive p kern/104212 [puc] [patch] support for Kuroutoshikou SERIAL4P-LPPCI p bin/104092 keramida [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 p usb/101775 usb [usb67] [libusbhid] [patch] possible error in report d 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 [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 emulation [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 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 p 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 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 f kern/96030 yongari [bfe] [patch] Install hangs with Broadcomm 440x NIC in p bin/95979 obrien [patch] burncd(8) fails to fixate CDs o bin/95698 philip [patch] moused(8): Software control of sysmouse 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 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 s 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 [iconv] [patch] new utility: kiconv_cs_preload(8): Uti 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 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 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 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 fs [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 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/86635 pf [patch] pfctl(8): allow new page character (^L) in pf. a bin/86485 arundel [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 net [gre] [patch] possible depletion of kernel stack in ip 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 ( a bin/77651 [patch] init(8) can lose shutdown related signals s kern/77355 [i386] [patch] Detect i*86 subarches for uname s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match 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 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 [kbdmap] [patch] United States International keyboard 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 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 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/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/70476 [patch] reboot(8) change, -p behavior default for halt 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 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 o bin/64327 [patch] make(1): document surprising behaviour of assi 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 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 a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat p docs/61716 gjb [patch] newfs(8) code and manpage are out of sync 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 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 o bin/57088 scsi [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 o bin/55539 [patch] Parse fstab(5) with spaces in path names f misc/55387 [build] [patch] users LD_LIBRARY_PATH can interfere wi 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 o bin/52517 [request] [patch] New functionality for mail(1) 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 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 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 a kern/47286 [request] [patch] make device probing verbose when usi 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 gnu/44564 peter [patch] Aborted cvs session causes an endless loop in o stand/44365 standards [headers] [patch] [request] introduce ulong and unchar 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 > 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 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 a 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/36952 emulation [patch] [linux] ldd(1) command of linux does not work 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 f misc/35542 bde [build] [patch] BDECFLAGS needs -U__STRICT_ANSI__ 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 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 s kern/29423 [request] [patch] new feature: kernel security hooks i o bin/29363 gad [patch] newsyslog(8) can support time as extension f 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 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 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 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 bin/16422 [patch] [request] newfs(8) always make root's / direct 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/15168 [patch] Adding tracklist support to fdformat(1) p conf/15010 keramida [patch] rc.firewall: "client" firewall configuration k a bin/14682 gad [patch] lprm(1) unaware of lp(1) Environment Variables s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai s kern/13326 kmacy [headers] [patch] additional timespecs interfaces for s bin/13309 [patch] Fixes to nos-tun(8) a bin/13128 portmgr [patch] pkg_delete doesn't handle absolute pathnames c p i386/12088 imp [ed] [patch] ed(4) has minor problem with memory alloc s kern/12071 fanf [net] [patch] new function: large scale IP aliasing o bin/11294 [patch] logger(1) direct logging to other hosts a kern/11024 mtm [patch] getpwnam(3) uses incorrect #define to limit us o bin/10611 [patch] timed(8) enhancement o bin/10030 markm [patch] Kerberized telnet fails to encrypt when a host o bin/9868 [patch] date(1) add "date -a" o kern/9679 [portalfs] [patch] fix for uninterruptible open in por o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement o bin/8867 randi sysinstall(8): [patch] /stand/sysinstall core dumps (s o bin/4420 imp [patch] find(1) -exedir doesn't chdir for first entry s kern/4184 rwatson [netatalk] [patch] minor nits in sys/netatalk o bin/4116 [patch] [kerberos] Kerberized login as .root fai s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus a bin/1375 [patch] Extraneous warning from mv(1) 1869 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 10 11:13:53 2011 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 598EA106566B for ; Mon, 10 Jan 2011 11:13:53 +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 4589C8FC0A for ; Mon, 10 Jan 2011 11:13:53 +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 p0ABDrpn014350 for ; Mon, 10 Jan 2011 11:13:53 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0AB8xfV003438 for freebsd-bugs@FreeBSD.org; Mon, 10 Jan 2011 11:08:59 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 10 Jan 2011 11:08:59 GMT Message-Id: <201101101108.p0AB8xfV003438@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, 10 Jan 2011 11:13:53 -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] [patch] fdisk(8) cannot handle above 1TB under i 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/79251 geom [2TB] newfs fails on 2.6TB gbde device o kern/18874 fs [2TB] 32bit NFS servers export wrong negative values t 8 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/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 4 problems total. Problem reports for tag 'acd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/150628 [acd] [ata] burncd(1) can't write to optical drive 1 problem 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/152438 acpi [acpi]: patch to acpi_asus(4) to add extra sysctls for o kern/152098 acpi [acpi] Lenovo T61p does not resume 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 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 amd64/131456 amd64 [acpi] [ata] ACPI & ATA problems o kern/130683 acpi [ACPI] shutdown hangs after syncing disks - ACPI race? o i386/129953 acpi [acpi] ACPI timeout (CDROM) with Shuttle X27D o i386/126162 i386 [acpi] ACPI autoload failed : loading required module p kern/124744 avg [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 p kern/121102 avg [acpi] [patch] update acpi_fujitsu for the P8010 f 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/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/108695 acpi [acpi]: Fatal trap 9: general protection fault when in o kern/108488 acpi [acpi] ACPI-1304: *** Error: Method execution failed 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 37 problems 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 '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/153665 amd64 [ahci] AHCI module unconsistent behaviour with SATA3 d o kern/153205 [ahci] PIONEER DVD-RW: timeout with ahci(4), OK with a o kern/152817 [ahci] ahci doesn't find disk o kern/151091 [ahci] JMicron JMB363 unusable after S3 suspend/resume o amd64/148526 amd64 [ahci] ahci driver does not boot on AMD chip o kern/146464 [ahci] DVD device unusable with ahci(4) 6 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 kern/123520 scsi [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 -------------------------------------------------------------------------------- o kern/149306 net [alc] Doesn't work Atheros AR8131 PCIe Gigabit Etherne o kern/148772 yongari [alc] alc0 does not send/receive packets if not plugge f kern/147985 yongari [alc] alc network driver + tso ( + vlan ? ) does not w 3 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/153175 amd64 [amd64] Kernel Panic on only FreeBSD 8 amd64 o amd64/150170 amd64 [patch] [amd64] [headers] SIG_ATOMIC_MIN/SIG_ATOMIC_MA o amd64/127640 amd64 [amd64] gcc(1) will not build shared libraries with -f o amd64/120202 amd64 [amd64] [patch] [panic] kernel panic at start_all_aps, f kern/117607 [amd64] dev.cpu.0.freq not showing up any longer on am s gnu/112215 obrien [patch] [amd64] gcc(1): "gcc -m32" attempts to link ag 6 problems total. Problem reports for tag 'amr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153303 [amr] amr device driver dont detect logical drive amrd 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/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a 7 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 1 problem 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 -------------------------------------------------------------------------------- o kern/107206 [arcmsr] Background fsck causes kernel panic with arcm 1 problem total. Problem reports for tag 'arp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152235 net [arp] Permanent local ARP entries are not properly upd o kern/145300 qingli [arp] ARP table mapping is not refreshed on a MAC addr o kern/144777 qingli [arp] proxyarp broken in 8.0 [regression] o kern/140358 qingli 8.0RC2: [arp] arp: writing to routing socket: Invalid o kern/140051 yongari [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 10 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 f 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 -------------------------------------------------------------------------------- o kern/153440 [ata] 8.2 doesn't detect ICH8M anymore o kern/151608 [ata] FreeBSD doesn't detect Sandforce-based SSD o kern/150628 [acd] [ata] burncd(1) can't write to optical drive o kern/150315 [ata] sizeof(union ccb) changed between 7.x and 8.x s kern/149898 [ata] [request] add LSI AOC-USAS2-L8e support o kern/149580 mav [ata] [patch] When using an SIIG SATA card the error " o kern/149308 [ata] 8.1-RELEASE kernel panic on Windows 7 Virtual PC o kern/149201 [ata] DVD/CD Drive Error o kern/148675 [ata] [panic] kernel panics - reboots o kern/148361 [ata] [panic] Kernel Panic, With Faulty Drives o kern/147227 [ata] SSD preformance issues 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 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 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 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? 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 s kern/133593 [ata] `atacontrol(8) spindown` won't affect disk until o kern/132252 [ata] No CD/DVD devices found! o amd64/131456 amd64 [acpi] [ata] ACPI & ATA problems 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 kern/129373 [ata] [panic] Panic in ata-queue, VIA CLE266, 7.1-BETA o kern/128035 [ata] unexpexted detach of external SATA drive s bin/127918 [ata] [request] [patch] ATA Security support for ataco o kern/127717 scsi [ata] [patch] [request] - support write cache toggling 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 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 o kern/122291 [ata] acd0: timeout waiting to issue command / acd0: e 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 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/115152 [ata] Sil 3512 SATA controller panics on 6.2 o kern/114213 [ata] optical drive not detected in the 6.x series of s kern/112282 [ata] atacontrol(8): changing DMA modes when disk is r o kern/111196 [ata] [hang] SATA drives cause errors and cause system s bin/111024 [request] [patch] [ata] atacontrol(8): support for sta 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 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/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 f kern/101734 [ata] -CURRENT cannot see SATA drive on ASUS A8N-SLI ( 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) 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 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 o kern/90206 [ata] [reboot] Server reboot after "FAILURE - out of m s bin/81692 [patch] [ata] atacontrol(8) support for disk APM and a 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 o kern/36911 [ata] ATA cannot be disabled with hints or through BIO 116 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/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 9 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 s bin/116302 [ataraid] atacontrol(8) reports wrong stripe for intel o i386/89249 [ataraid] HighPoint RocketRAID 1520 (HPT372N) can't wr 5 problems total. Problem reports for tag 'ath': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153448 adrian [ath] ath networking device loses association after a o kern/152750 adrian [ath] ath0 lot of bad series hwrate o kern/151198 adrian [ath] ath/5416 fails bgscan with "ath0: ath_chan_set: o kern/150148 adrian [ath] Atheros 5424/2424 - AR2425 stopped working with o kern/149539 net [ath] atheros ar9287 is not supported by ath_hal o kern/149516 net [ath] ath(4) hostap with fake MAC/BSSID results in sta o kern/149307 net [ath] Doesn't work Atheros 9285 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 adrian [ath] Atheros 9285 cannot register with wifi AP (timeo o kern/148078 net [ath] wireless networking stops functioning o kern/145826 net [ath] Unable to configure adhoc mode on ath0/wlan0 o kern/143868 net [ath] [patch] [request] allow Atheros watchdog timeout o kern/140796 net [ath] [panic] privileged instruction fault p kern/140567 adrian [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 o kern/132722 net [ath] Wifi ath0 associates fine with AP, but DHCP or I f 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 net [ath] Terrible throughput/high ping latency with Ubiqu o kern/125617 net [ath] [panic] ath(4) related panic o kern/125501 net [ath] atheros cardbus driver hangs f kern/125332 net [ath] [panic] crash under any non-tiny networking unde 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 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/107279 net [ath] [panic] ath_start: attempted use of a free mbuf! f kern/105348 net [ath] ath device stopps TX f sparc/94483 sam [ath] ath_hal does not work on 6-release/sparc64 f kern/93886 net [ath] Atheros/D-Link DWL-G650 long delay to associate 38 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 p usb/140883 yongari [axe] [usb8] USB gigabit ethernet hangs after short pe o usb/88408 usb [axe] axe0 read PHY failed 3 problems total. Problem reports for tag 'bce': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140051 yongari [bce] [arp] ARP not sent through Bridge Firewall with s amd64/131209 amd64 [panic] [bce] 7.1-STABLE amd64 crash - m0 NULL o kern/125389 [ipmi] [bce] IPMI problem with bce o kern/100858 davidch [bce] Broadcom bce driver and SMP hangup 4 problems total. Problem reports for tag 'bfe': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/96030 yongari [bfe] [patch] Install hangs with Broadcomm 440x NIC in 1 problem total. Problem reports for tag 'bge': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/152295 yongari [bge] 8.1-R driver stop to reveice incoming packets on o kern/145621 yongari [bge] [panic] bge watchdog timeout --resetting -> cras o kern/136876 yongari [bge] bge will not resume properly after suspend f kern/123347 yongari [bge] bge1: watchdog timeout -- linkstate changed to D f kern/120791 yongari [bge] The Broadcom BCM5703 A2 NIC is running a lot of f kern/112570 yongari [bge] packet loss with bge driver on BCM5704 chipset f kern/109733 yongari [bge] bge link state issues [regression] f kern/104862 yongari [bge] BCM5704 only works at 10Mbit f kern/94162 yongari [bge] 6.x kenel stale with bge(4) f kern/92090 yongari [bge] bge0: watchdog timeout -- resetting 10 problems total. Problem reports for tag 'binutils': S Tracker Resp. Description -------------------------------------------------------------------------------- a gnu/138983 [binutils] System binutils too old for modern CPUs 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 -------------------------------------------------------------------------------- p kern/140590 bluetooth [bluetooth] ng_ubt(4) ng_l2cap_process_cmd_rej warning 1 problem total. Problem reports for tag 'boot0': S Tracker Resp. Description -------------------------------------------------------------------------------- p bin/135918 luigi [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 '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 amd64/138029 amd64 [panic][bpf] periodically kernel panic and reboot 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. 4 problems total. Problem reports for tag 'bsd.cmake.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/150363 kde [bsd.cmake.mk] specify default CMAKE_BUILD_TYPE 1 problem 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.destdir.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/153597 portmgr [bsd.destdir.mk] [patch] chrooted make always returns 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 -------------------------------------------------------------------------------- a ports/153625 portmgr [bsd.port.mk] Pass CPPFLAGS to MAKE_ENV and CONFIGURE_ o ports/153539 portmgr [bsd.port.mk][patch]: allow checking STRIP when WITH_D o ports/152877 portmgr [bsd.port.mk] Patch to add locking to ports make opera o ports/148783 portmgr [bsd.port.mk] [patch] add LATEST_LINK and CONFLICTS to s 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/146496 portmgr [bsd.port.mk] [PATCH] Removing ${PORTSDIR} from depend f ports/146347 portmgr [patch] [bsd.port.mk] fix USE_DOS2UNIX info output s ports/144533 portmgr [bsd.port.mk] ports tree Makefiles fail to setup a sta a 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 13 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() 1 problem 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 -------------------------------------------------------------------------------- o kern/149786 net [bwn] bwn on Dell Inspiron 1150: connections stall p kern/144724 weongyo [bwn] if_bwn does not pass traffic when in PIO mode 2 problems total. Problem reports for tag 'cam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153514 [cam] [panic] CAM related panic o kern/149927 brucec [cam] hard drive not stopped before removing power dur o kern/148070 [cam] [panic] panic: _mtx_lock_sleep: recursed on non- o kern/144233 mjacob [cam] xpt_rescan/XPT_SCAN_LUN should honor a wildcard a usb/143790 usb [boot] [cam] can not boot from usb hdd o kern/141934 scsi [cam] [patch] add support for SEAGATE DAT Scopion 130 o kern/138622 [cam] CAMIOCOMMAND ioctl failed: Inappropriate ioctl f o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El 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 avg [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/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 s kern/72041 [cam] [hang] Deadlock when disk is destroyed while use o bin/57088 scsi [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 23 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 -------------------------------------------------------------------------------- a 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 net [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 -------------------------------------------------------------------------------- o kern/114550 [cbb] Cardbus WiFi card activation problem 1 problem 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 o kern/95222 fs [cd9660] File sections on ISO9660 level 3 CDs ignored 3 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/153361 scsi [ciss] Smart Array 5300 boot/detect drive problem o kern/152250 scsi [ciss] [patch] Kernel panic when hw.ciss.expose_hidden o kern/151564 scsi [ciss] ciss(4) should increase CISS_MAX_LOGICAL to 10 o kern/149219 [ciss] DL380 G6 P212 trouble 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 11 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 kern/121768 [cpufreq] cpufreq module RELENG_6 -> 7 regressions on o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de 7 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/132277 net [crypto] [ipsec] poor performance using cryptodevice f 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 9 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 s kern/79262 yongari [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 2 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 -------------------------------------------------------------------------------- p kern/125034 jh [devfs] [patch] devfs does not apply rules to newly cr p kern/125030 jh [devfs] [patch] Command 'devfs ruleset 0' causes panic o kern/124881 [devfs] [patch] [request] Add possibility to check whi o kern/122838 [devfs] devfs doesn't handle complex paths (like zvol/ p kern/114057 jh [devfs] devfs symlink over device doesn't work p conf/91342 jh [devfs] Errors in devfs.rules files don't get logged o kern/87836 [devfs] If using ATAPICAM with cd(dvd)rw without media 7 problems total. Problem reports for tag 'devfs.rules': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/124853 [devfs.rules] [patch] devfs_ruleset_use may use freed 1 problem total. Problem reports for tag 'digi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte 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 5 problems 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 f kern/107342 [dri] Radeon dri breaks system 3 problems total. Problem reports for tag 'drm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152354 [drm] Obsolete Files s kern/150514 [drm] [request] Reorganize DRM Directory to Support Dr p kern/149041 olli [drm] [patch] DRM support for Radeon HD 4250 f 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/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 s kern/87653 [drm] ATI Radeon Mobile X600SE not detected by kernel 12 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/152360 net [dummynet] [panic] Crash related to dummynet. 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 (corr 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 'e1000': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/151409 yongari [e1000] Problem with Marvell driver, e1000phy.c 1 problem total. Problem reports for tag 'ed': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85493 imp [ed] [patch] OLDCARD can't probe ed driver 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 3 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 usb/152075 usb [usb8] [ehci] Add quirk for CS5536 USB 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/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/153671 net [em] [panic] 8.2-PRERELEASE repeatable kernel in if_em o kern/153308 net [em] em interface use 100% cpu o kern/153244 net [em] em(4) fails to send UDP to port 0xffff o kern/152853 net [em] tftpd (and likely other udp traffic) fails over e o kern/152828 net [em] poor performance on 8.1, 8.2-PRE o kern/152582 [em] request: merge em Intel Driver Upgrage to Version o kern/150516 jfv [em] e1000 receive queue handling problem o kern/148004 jfv [em] Inconsistent networking with em driver on FreeBSD o kern/147989 jfv [em] em Receive errors / CRC Errors / Alignment Errors o kern/146263 jfv [em] [panic] Panic in em(4) SIOCADDMULTI/em_set_multi/ p kern/144869 jfv [em] [panic] Instant kernel panic when adding NAT rule o kern/144680 jfv [em] em(4) problem with dual-port adapter o kern/143939 net [ipfw] [em] ipfw nat and em interface rxcsum problem o kern/143573 jfv [em] em(4) NIC crashes intermittently o kern/143285 jfv [em] [regression] jumbo frames broken in 8.0 o kern/142518 jfv [em] [lagg] Problem on 8.0-STABLE with em and lagg o kern/142019 jfv [em] em needs "ifconfig em0 down up" when link was gon o kern/141843 jfv [em] [vlan] Intel txcsum and assigned vlan invoke wron o kern/141285 jfv [em] hangs down/up intel nic during creating vlan o kern/140778 jfv [em] randomly panic in vlan/em o kern/140728 jfv [em] [patch] Fast irq registration in em driver o kern/140647 jfv [em] [patch] e1000 driver does not correctly handle mu o kern/140326 jfv [em] em0: watchdog timeout when communicating to windo o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) o kern/136168 jfv [em] em driver initialization fails on Intel 5000PSL m o kern/134956 jfv [em] FreeBSD 7.1 & 7.2, Intel PRO/1000 PT Quad Port Se o kern/134079 jfv [em] "em0: Invalid MAC address" in FreeBSD-Current ( 8 o amd64/129315 amd64 [em] amd64 motherboard: Intel DG965WH motherboard comp o kern/122928 jfv [em] interface watchdog timeouts and stops receiving p o kern/122772 jfv [em] em0 taskq panic, tcp reassembly bug causes radix o kern/122373 jfv [em] unable to receive on em 82542 w/o promisc o kern/122058 jfv [em] [panic] Panic on em1: taskq o kern/121624 jfv [em] [regression] Intel em WOL fails after upgrade to o kern/121298 jfv [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 jfv [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 f amd64/92337 amd64 [em] FreeBSD 6.0 Release Intel Pro 1000 MT em1 no buff o kern/91594 jfv [em] FreeBSD > 5.4 w/ACPI fails to detect Intel Pro/10 o kern/80932 jfv [em] [patch] Degraded performance of em driver 50 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 'ep': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151690 net [ep] network connectivity won't work until dhclient is 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 2 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 'exp-run': S Tracker Resp. Description -------------------------------------------------------------------------------- f ports/153262 miwi [exp-run]: Death to FreeBSD 6, Long Live FreeBSD! o ports/152268 portmgr [exp-run] check projects/binutils-2.17 for ports break 2 problems total. Problem reports for tag 'ext2fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153584 fs [ext2fs] [patch] Performance fix and cleanups for BSD o kern/142597 fs [ext2fs] ext2fs does not work on filesystems with real o kern/104133 fs [ext2fs] EXT2FS module corrupts EXT2/3 filesystems 3 problems total. Problem reports for tag 'fdc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/149800 [fdc] [patch] "driver bug: Unable to set devclass (dev 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 12 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 f kern/120991 fs [panic] [ffs] [snapshot] System crashes when manipulat 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 8 problems total. Problem reports for tag 'fifo': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/76525 [fifo] select() hangs on EOF from named pipe (FIFO) f kern/76144 [fifo] poll doesn't set POLLHUP when FIFO is closed 2 problems total. Problem reports for tag 'firewire': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 13 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 'fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151629 fs [fs] [patch] Skip empty directory entries during name o bin/122172 fs [fs]: amd(8) automount daemon dies on 6.3-STABLE i386, 2 problems total. Problem reports for tag 'fwip': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139162 yongari [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 o kern/103332 yongari [fxp] fxp driver does not work correctly on Intel 8255 3 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 'geli': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152609 geom [geli] geli onetime on gzero panics 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 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 -------------------------------------------------------------------------------- p bin/151252 jh [geom] libgeom(3) manual page contains broken link in o kern/150858 geom [geom] [geom_label] [patch] glabel(8) is not compatibl o kern/150626 geom [geom] [gjournal] gjournal(8) destroys label o kern/150555 geom [geom] gjournal unusable on GPT partitions o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF 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 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 kern/144962 geom [geom] panic when accessing GPT disk with a large numb o kern/144905 geom [geom][geom_part] panic in gpart_ctlreq when unpluggin o kern/142563 geom [geom] [hang] ioctl freeze in zpool 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 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/127420 geom [geom] [gjournal] [panic] Journal overflow on gmirrore o kern/123122 geom [geom] GEOM / gjournal kernel lock o kern/122738 geom [geom] gmirror list "losts consumers" after gmirror de o kern/122067 geom [geom] [panic] Geom crashed during boot 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 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 ( 36 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 -------------------------------------------------------------------------------- o bin/149215 geom [panic] [geom_part] gpart(8): Delete linux's slice via o kern/144905 geom [geom][geom_part] panic in gpart_ctlreq when unpluggin s bin/142786 [request] [geom_part] gpart(8) should recognize NAND m p kern/141235 ae [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 6 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 net [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/150626 geom [geom] [gjournal] gjournal(8) destroys label o kern/127420 geom [geom] [gjournal] [panic] Journal overflow on gmirrore 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 5 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 net [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/153273 ryusuke [HANDBOOK] 21.7.1 needs improvement o docs/150736 doc [handbook] ipfw docs: rule number is optional, not man o docs/148984 bcr [handbook] Mistake in section 16.15.4 of the handbook o docs/146521 doc [handbook] Update IPv6 system handbook section to ment o docs/145631 blackend [handbook] References to ttyd0 serial devices in handb 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 a docs/143041 blackend [handbook] [patch] doc/en__US.ISO8859-1 refers to slip p docs/141245 blackend [handbook][patch] Chapter 31.3 Wireless Networking: Up a docs/140918 blackend [handbook] update 8.0 handbook about serial port /dev o docs/140082 bland [handbook] handbook/jails: russian translation is miss 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 o docs/59240 blackend [patch] [handbook] update: linux MATLAB 18 problems total. Problem reports for tag 'hdac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152500 multimedia [hdac] play interrupt timeout, channel dead 1 problem total. Problem reports for tag 'headers': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/150170 amd64 [patch] [amd64] [headers] SIG_ATOMIC_MIN/SIG_ATOMIC_MA o kern/149960 [headers] syntax error /usr/include/machine/endian.h a kern/149012 gavin [headers] [patch] please replace '#include 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 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 21 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/149937 net [ipfilter] [patch] kernel panic in ipfilter IP fragmen 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 4 problems total. Problem reports for tag 'ipfw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153415 ipfw [ipfw] [patch] Port numbers always zero in dynamic IPF o bin/153252 ipfw [ipfw][patch] ipfw lockdown system in subsequent call o kern/152887 ipfw [ipfw] Can not set more then 1024 buckets with buckets o kern/152113 ipfw [ipfw] page fault on 8.1-RELEASE caused by certain amo o kern/150798 ipfw [ipfw] ipfw2 fwd rule matches packets but does not do o kern/148928 hrs [ipfw] Problem with loading of ipfw NAT rules during s 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 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/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 ipfw [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 o kern/112561 ipfw [ipfw] ipfw fwd does not work with some TCP packets 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/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 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 76 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 -------------------------------------------------------------------------------- o kern/151586 [patch] [ipmi] Incorrect firmware version printed at b 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 [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/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 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 25 problems total. Problem reports for tag 'ipw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142766 bschmidt [ipw] [regression] ipw(4) with Intel PRO/wireless 2100 f kern/131087 bschmidt [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 f kern/110140 bschmidt [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 arm/150581 arm [irq] Unknown error generates IRQ address decoding err 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 12 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 'isp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/150367 [isp] Possible QLogic fiber channel regression in 8.1- o kern/127927 scsi [isp] isp(4) target driver crashes kernel when set up 2 problems total. Problem reports for tag 'iwi': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/151441 bschmidt [iwi] iwi module not work properly using HP nc6220 o kern/144755 bschmidt [iwi] [panic] iwi panic when issuing /etc/rc.d/netif r o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- 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 -------------------------------------------------------------------------------- s kern/153594 bschmidt [iwn] Network keeps disconnecting when /etc/rc.d/netif 1 problem total. Problem reports for tag 'ixgbe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153816 net [ixgbe] ixgbe doesn't work properly with the Intel 10g o kern/153772 net [ixgbe] [patch] sysctls reference wrong XON/XOFF varia o kern/150920 net [ixgbe][igb] Panic when packets are dropped with heade o kern/150251 net [patch] [ixgbe] Late cable insertion broken o kern/150249 net [ixgbe] Media type detection broken o kern/150247 net [patch] [ixgbe] Version in -current won't build on 7.x o kern/144561 jfv [ixgbe] [patch] ixgbe driver errors o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when p kern/127834 rstone [ixgbe] [patch] wrong error counting o kern/126688 jfv [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and 10 problems total. Problem reports for tag 'jail': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/152465 simon [jail] [patch] devfs is mounted in jails without rules o conf/149050 jail [jail] rcorder ``nojail'' too coarse for Jail+VNET 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 15 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 gavin [kbdmap] [patch] Danish kbdmap for MacBook o conf/72465 [kbdmap] [patch] United States International keyboard 2 problems total. Problem reports for tag 'kbdmux': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153459 [kbdmux][patch] add option to specify built-in keymap p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c 2 problems total. Problem reports for tag 'kerberos': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151444 [kerberos] Kerberos5 is broken in the base system from o bin/147175 [kerberos] [patch] libhx509.so containes references to o bin/45830 [kerberos] KDC has problems when listening to IPv6 and o bin/4116 [patch] [kerberos] Kerberized login as .root fai 4 problems total. Problem reports for tag 'kernel': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/149797 [kernel] [panic] mutex sleepq chain not owned at /usr/ o kern/149591 [kernel] struct callout:c_flags should be volatile o kern/149586 [kernel] _callout_stop_safe prematurely unsets CALLOUT o kern/148801 [kernel] [patch] obsolete CAPABILITIES comment after s 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 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 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/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 f kern/29355 mux [kernel] [patch] add lchflags support 49 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 f kern/102784 [keyboard] system crashes when using hardware function o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, o kern/99538 [keyboard] [atkbdc] while using USB keyboard default p 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 usb/59698 usb [keyboard] [patch] Rework of ukbd HID to AT code trans o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( 21 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 p docs/142938 wkoszek [kld] share/examples: fix warnings 2 problems total. Problem reports for tag 'kqueue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153254 [kqueue] [request] Please add API to kqueue(2) to noti o kern/149857 [kqueue] kqueue not reporting EOF under certain circum 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 10 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 jfv [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 f kern/125442 net [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 9 problems total. Problem reports for tag 'libalias': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/115526 [libalias] libalias doesn't free memory o kern/105579 [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 bin/153154 [patch][libarchive] fix error handling in mtree parsin o kern/121556 kientzle [libarchive] ISO9660 decompression extension unsupport 2 problems total. Problem reports for tag 'libc': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/153502 [libc] regex(3) bug with UTF-8 locale o bin/153257 [libc] [patch] regex(3): Add support for \< and \> wor p bin/152551 gavin [libc] Remove unused variables. o kern/152042 [libc] [patch] wrong bufsize of __hdtoa o threa/150959 threads [libc] Stub pthread_once in libc should call _libc_onc o kern/150206 [libc] [patch] nmount(2): can't switch root partition a stand/149980 standards [libc] [patch] negative value integer to nanosleep(2) p bin/149464 jh [libc] [rtld] dlclose(3) can access freed memory and c o kern/149323 [libc] Applications with large memory footprint failin 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/147226 [libc] read(fd, buffer, len) returns -1 immediately, 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 o kern/142772 net [libc] lla_lookup: new lle malloc failed o kern/142173 [libc] localeconv(3): two-byte ascii thousands_sep s stand/141705 standards [libc] [request] libc lacks cexp (and friends) o kern/141682 [libc] [patch] Faster version of strncpy(3) a 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 f kern/131602 gavin [libc] sendfile(2) sends corrupted data o kern/130749 [libc] [patch] nscache.c/nscachedcli.c - return error a bin/130504 [libc] Serious bug in regular expression library (rege o kern/128933 kib [libc] realpath(3) does not follow SUS specification f o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion o kern/126230 [libc] select(2) causing weird process cpu usage and l 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/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 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/78787 [libc] [patch] sysconf(_SC_CLK_TCK) may return incorre o kern/76398 [libc] stdio can lose data in the presence of signals o kern/75855 [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/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 bin/26486 remko [libc] [patch] setnetgrent hangs when netgroup contain o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d 86 problems 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/151379 [libcrypto] libcryptopp.so/libcrypto++.so and Shared O o kern/117709 simon [libcrypto] [patch] Base openssl does not define OPENS 2 problems 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 -------------------------------------------------------------------------------- f 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/153748 [libfetch] [patch] in ftp_request: closing of the conn o bin/151866 [libfetch] [patch] closing the cached FTP connection p kern/148087 des [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 kern/116005 des [libfetch] libfetch accepts invalid URLs o kern/98873 des [libfetch] allow fetch(3) to force using of ipv4 or ip 7 problems total. Problem reports for tag 'libgcc': S Tracker Resp. Description -------------------------------------------------------------------------------- s gnu/134604 [libgcc] [patch] Memory leak in gcclibs/libgomp o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi 2 problems 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 stand/152415 standards [libm] implementation of expl() o kern/147599 [libm] [patch] Import netbsd complex functions into ou p stand/143358 das [libm] nearbyint(3) raises spurious inexact exception p stand/83845 das [libm] [patch] add log2() and log2f() support for libm 4 problems total. Problem reports for tag 'libmagic': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/149936 [libmagic] [patch] wrong handling of decompression uti 1 problem 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/150176 [libpcap] [patch] pcap(3): pcap_read_bpf() p->cc can g o bin/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 4 problems total. Problem reports for tag 'libregex': S Tracker Resp. Description -------------------------------------------------------------------------------- o gnu/152178 [libregex] [patch] Misc. updates to gnu/libregex 1 problem 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 'libstdc++': 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/151851 hselasky [libusb] libusb(3) libusb_control_transfer() return va p usb/140325 thompsa [libusb] [usb8] Missing/incorrect initialisation and m o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker 3 problems total. Problem reports for tag 'libusbhid': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/101775 usb [usb67] [libusbhid] [patch] possible error in report d 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 -------------------------------------------------------------------------------- p 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/149168 emulation [linux] [patch] Linux sendmsg / recvmsg / etc fixes fo o kern/148076 dchagin [linux] linux_sys_futex: unknown op 265 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 p kern/144194 netchild [linux] [patch] linuxulator: 2 exec bug fixes p kern/141439 netchild [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 s 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 s kern/118230 acm [linux] games/linux-quake4 fails to start f kern/99068 emulation [linux] [patch] Linux emulator crashed by java, when c o kern/86619 emulation [linux] linux emulator interacts oddly with cp 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/36952 emulation [patch] [linux] ldd(1) command of linux does not work o kern/21463 emulation [linux] Linux compatability mode should not allow setu 19 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 f i386/138211 gavin [loader] Boot fails on Intel X5550 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 7 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/27403 [lpt] lpt driver doesn't handle flags anymore o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting 4 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 docs/150365 doc [make.conf] [patch] remove BDECFLAGS from make.conf(5) o bin/114082 [make.conf] [patch] default CFLAGS have a blank at the 2 problems total. Problem reports for tag 'mbuf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137145 andre [mbuf] [patch] Reference count computing isn't correct a kern/134355 andre [mbuf] comments for m_getm2 inconsistent with behaviou 2 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 -------------------------------------------------------------------------------- a bin/144300 brucec [md] [patch] mdconfig(8): mdconfig -{d,l}n doesn't wor p kern/133170 brucec [md] [panic] panic when detaching swap-backed md(4) di p kern/122288 jh [md] [patch] mdconfig(8) returning negative unit numbe 3 problems total. Problem reports for tag 'mfi': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/153403 [mfi] BSD can't find SAS RAID on Intel SR2600UR server p kern/152768 jhb [mfi] Weird check in mfi(4) 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 5 problems total. Problem reports for tag 'mfs': S Tracker Resp. Description -------------------------------------------------------------------------------- f 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 avg [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 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 f kern/48976 gavin [modules] nwfs.ko oddity 8 problems 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/151941 [mpt] [hang] FreeBSD RELENG_6 server freezes during cr 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 amd64/135265 amd64 [mpt] Boot from install cd hangs on HP DL160 G5 with L 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 17 problems total. Problem reports for tag 'msdosfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152079 fs [msdosfs] [patch] Small cleanups from the other NetBSD 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] [iconv] mount_msdosfs: msdosfs_iconv: Operat 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 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 -------------------------------------------------------------------------------- f conf/151169 yongari [msk] Installation of FBSD 8.0 has cleared the MAC eth f kern/150257 yongari [msk] watchdog timeout o kern/149757 yongari [msk] msk0: phy write timeout o kern/147824 yongari [msk]: watchdog timeouts & Tx descriptor error o kern/139093 yongari [msk] msk FIFO rx overrun o kern/134401 yongari [msk] [panic] Kernel Fatal trap 12: page fault while i o kern/133204 yongari [msk] msk driver timeouts o kern/116853 yongari [msk] msk watchdog timeout f kern/114631 yongari [msk] "Tx descriptor error" with Marvell Yukon 9 problems total. Problem reports for tag 'multicast': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/149086 net [multicast] Generic multicast join failure in 8.1 1 problem total. Problem reports for tag 'mutex': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131573 [mutex] lock_init() assumes zero-filled struct 1 problem 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 1 problem total. Problem reports for tag 'nanobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/151698 imp [nanobsd] [patch] Add two new options to nanobsd.sh to o misc/151697 imp [nanobsd] [patch] nanobsd.sh copy links to packages as p misc/151696 embedded [nanobsd] [patch] nanobsd.sh doesn't run "make_conf_bu o misc/151695 embedded [nanobsd] [patch] Enhance tools/nanobsd/fill_pkg.sh 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] [patch] nanobsd error reporting and other re o misc/123240 [nanobsd] [patch] rerunning nanobsd.inc.sh fails becau o conf/96746 [nanobsd] [patch] Configuration changes and README for 14 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 [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 s kern/86920 net [ndis] ifconfig: SIOCS80211: Invalid argument [regress 14 problems total. Problem reports for tag 'net': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152569 net [net]: Multiple ppp connections and routing table prob o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP o amd64/139998 amd64 [panic][net] 7.2 amd64 panic in rtrequest1_fib 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 jfv [net] [patch] em0 reinitialization while adding aliase s kern/12071 fanf [net] [patch] new function: large scale IP aliasing 9 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/153497 net [netgraph] netgraph panic due to race conditions o kern/152893 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph 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 19 problems total. Problem reports for tag 'netinet': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/146250 bz [netinet] [patch] Races on interface alias removal o kern/145737 bz [netinet] [patch] Wrong UDP checksum not ignored as ex o kern/140597 andre [netinet] [patch] implement Lost Retransmission Detect o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o kern/131536 andre [netinet] [patch] kernel does allow manipulation of su o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard 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 9 problems total. Problem reports for tag 'netinet6': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/151908 bz [netinet6] [patch] nd6_ns_input: panic may happen, for 1 problem 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/153610 net [nfe] nfe0 malfunction at boot time f kern/147684 yongari [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 4 problems total. Problem reports for tag 'nfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152022 fs [nfs] nfs service hangs with linux client [regression] o kern/151681 net [nfs] NFS mount via IPv6 leads to hang on client with o kern/151326 fs [nfs] nfs exports fail if netgroups contain duplicate o kern/150336 fs [nfs] mountd/nfsd became confused; refused to reload n o kern/148204 fs [nfs] UDP NFS causes overload o kern/147998 [nfs] [patch] NFS -mapall group permissions ignored wh 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 p bin/139651 fs [nfs] mount(8): read-only remount of NFS volume does n o kern/137327 dfr [nfs] nfs nlm memery leak o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic p kern/136470 fs [nfs] Cannot mount / in read-only, over NFS o kern/135237 [nfs] sendfile(2) and SF_NODISKIO blocks on NFS files 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() fails to return ESTALE with rename()d fi 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 f 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/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 net [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 conf/67328 [nis] [ppp] Usermode PPP hangs on boot when NIS config 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 o bin/7287 [nis] Incorrect domain name for MAP_UPDATE in multidom s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus 22 problems total. Problem reports for tag 'notes': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/145991 amd64 [NOTES] [patch] Add a requires line to /sys/amd64/conf 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 '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 o amd64/84027 obrien [nve] if_nve gets stuck 2 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 '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 -------------------------------------------------------------------------------- a kern/150186 emulation [parallels] [panic] Parallels Desktop: CDROM disconnec f 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/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 9 problems total. Problem reports for tag 'pcm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152622 multimedia [pcm] uaudio recording problem o kern/149943 multimedia [pcm]: CS4236 audio problem 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 5 problems total. Problem reports for tag 'pcmcia': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/117026 imp [pcmcia]: Panic while removing PCMCIA wireless card 1 problem total. Problem reports for tag 'periodic': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o conf/152807 [periodic] security 900.tcpwrap does not report any re 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/70715 [periodic] Lack of year in dates in auth.log can cause o conf/47596 [periodic] daily security run complains if timezone ch 6 problems total. Problem reports for tag 'pf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153307 pf [pf] Bug with PF firewall 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 gjb [pf] pf.conf example should show allowing icmp through o kern/144311 bz [pf] [icmp] massive ICMP storm on lo0 occurs when usin s kern/143808 virtualization[pf] pf does not work inside jail 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/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 44 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 -------------------------------------------------------------------------------- f kern/152148 bz [pfil] vnet_pfil_init() happens too late if pfil_head_ o kern/143622 net [pfil] [patch] unlock pfil lock while calling firewall 2 problems 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/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 3 problems total. Problem reports for tag 'pipe': S Tracker Resp. Description -------------------------------------------------------------------------------- a 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 2 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/152663 [ppc] [patch] Add MCS9865 PCI card to ppc(4) o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 2 problems 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/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 [nis] [ppp] Usermode PPP hangs on boot when NIS config o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c 16 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 '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 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 o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation 16 problems total. Problem reports for tag 'pst': S Tracker Resp. Description -------------------------------------------------------------------------------- f i386/74153 i386 [pst] FreeBSD 5.3 cannot boot ftom pst 1 problem total. Problem reports for tag 'ptrace': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114155 [ptrace] sigsuspend gets interrupted by ptrace 1 problem 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/152034 [puc] [patch] SIIG Cyber 2S PCIe not working correcty o kern/151365 [puc] [patch] Two new Moxa puc(4) devices 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- 15 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 3 problems total. Problem reports for tag 'ral': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/149969 net [wlan] [ral] ralink rt2661 fails to maintain connectio 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) 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': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/153123 rc [rc] [patch] add gsched rc file to automatically inser 1 problem total. Problem reports for tag 'rc.d': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/153666 rc [rc.d][patch] mount filesystems from fstab over zfs da p conf/153655 jh [rc.d][patch] substitute nfs4 with newnfs in netfs_typ o conf/150195 [patch] [rc.d] startup script for pfstatd(8) 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 23 problems total. Problem reports for tag 'rc.subr': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/151063 rc [rc.subr] Verify network link and packet flow before s o conf/150752 rc [rc.subr] [patch] be not needed to eval $_pidcmd on re 2 problems total. Problem reports for tag 're': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152411 net [re] network card works only on 1000M f kern/144689 yongari [re] TCP transfer corruption using if_re 2 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 -------------------------------------------------------------------------------- f kern/150023 gavin [rl] Adding only vlan interfaces (no native IP) doesn' f kern/71045 yongari [rl] [vr] DHCP-Request is sets other device's ip to nu 2 problems total. Problem reports for tag 'route': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143703 qingli [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 -------------------------------------------------------------------------------- o kern/150036 [rpc] Sun RPC license has less restrictions now. f kern/117711 [rpc] rpcbind binds to all interfaces on random ports 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 1 problem total. Problem reports for tag 'rtld': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152662 [rtld] load libraries with address hint (cf. prelink) p kern/151861 [rtld] dlclose() of library causes separately opened l p bin/149464 jh [libc] [rtld] dlclose(3) can access freed memory and c o bin/140143 [patch] [rtld] dlopen(3) doesn't promote RTLD_GLOBAL f p kern/139723 [rtld] Quagga/zebra abort trap 6, FreeBSD 8.0-RC1 o kern/84199 [rtld] dlinfo does not handle RTLD_DI_SERINFOSIZE prop 6 problems total. Problem reports for tag 'rum': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/149643 net [rum] device not sending proper beacon frames in ap mo 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 usb/141777 usb [usb8] [usbdevs] [rum] [patch] Support usbdevs / rum(4 a kern/141696 virtualization[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 p 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] [panic] Kernel panic after NOMEM c 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 16 problems total. Problem reports for tag 'run': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf o usb/144387 usb [run] [panic] if_run panic 2 problems 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 kern/152599 [scheduler] scheduler issue - cpu overusage by 'intr' 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. 3 problems 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 'shutdown': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/109809 [shutdown] CPU hits 100% when issuing the halt command 1 problem 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/71198 [sio] Lack of puc(4) device in GENERIC kernel causes i 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 17 problems total. Problem reports for tag 'sk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 1 problem 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 'smbfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151845 fs [smbfs] [patch] smbfs should be upgraded to support Un 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/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 '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 o kern/109936 [smp] SMP kernel performance problem on FSC TX600 o kern/67830 [smp] [patch] CPU affinity problem with forked child p 4 problems total. Problem reports for tag 'snd_hda': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/150284 multimedia [snd_hda] No gain with Audio 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 8 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/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us o kern/148741 multimedia [sound] Headphones are deaf (do not work) on Lenovo Th 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 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 multimedia [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 57 problems 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 4 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/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load 4 problems total. Problem reports for tag 'syscons': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152232 [syscons] [patch] syscons VGA screensavers don't work o kern/152162 [syscons] On syscons, pressing delete key results in p 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" 15 problems total. Problem reports for tag 'sysctl': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/148680 doc [sysctl][patch] Document some sys/kern sysctls p kern/148580 gavin [sysctl][patch] Document some sys/kern sysctls o kern/143040 [sysctl] sysctl -a hangs, as a side effect it breaks s kern/135550 [sysctl] [request] Feature Request: Manufacturer Infor s kern/134231 vwe [sysctl] sysctl() 80% slower in 7.2 than 6.2 [regressi o kern/54439 [sysctl] [patch] Protecting sysctls variables by given 6 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 -------------------------------------------------------------------------------- a kern/144000 andre [tcp] setting TCP_MAXSEG by setsockopt() does not seem o kern/138046 andre [tcp] tcp sockets stay in SYN_SENT even after receivin p kern/127928 andre [tcp] [patch] TCP bandwidth gets squeezed every time t f kern/123617 andre [tcp] breaking connection when client downloading file o kern/123603 andre [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 p kern/118005 andre [tcp] Can No Longer SSH into 7.0 host a 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 15 problems total. Problem reports for tag 'termcap': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/153164 [termcap] [patch] termcap needs an entry for rxvt-unic o conf/152713 ed [termcap] [patch] broken color support under rxvt-256c p conf/147992 gavin [termcap] [patch] xterm-256color is a 8 colors termina o conf/136336 [termcap] [patch] missing entry for "center of keypad" s conf/128874 [termcap] termcap entry for rxvt missing :AX: capabili 5 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 '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 -------------------------------------------------------------------------------- o kern/152488 fs [tmpfs] [patch] mtime of file updated when only inode 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 7 problems total. Problem reports for tag 'tools': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/151141 [tools] [patch] include daily script in !MK_PKGTOOLS c o misc/147463 [tools] [patch] Patch for tools/regression/lib/libc/st o misc/146687 [tools] [patch] Fix QA issues with tools/regression/ai o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam 4 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/116172 bz [tun] [nd6] [panic] Network / ipv6 recursive mutex pan o bin/115951 [tun] pppoed(8): tun not closed after client abruptly 5 problems total. Problem reports for tag 'twa': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 3 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/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem 1 problem total. Problem reports for tag 'uart': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152310 [uart] [hang] Serial I/O hangs in FreeBSD 8.x o kern/148644 marcel [uart] [patch] vgetty play voice file fails with 8.0 R f kern/147082 [uart] Serial ports unusable [regression] s 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] add support for Sony Ericsson GC89 EDGE 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 10 problems total. Problem reports for tag 'uath': S Tracker Resp. Description -------------------------------------------------------------------------------- f 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/127543 gavin [patch] [ubsa] Support Option Globetrotter HSDPA modem 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 4 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 f kern/86763 jh [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/150334 geom [geom] [udf] [patch] geom label does not support UDF 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 3 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/152991 [ufs] false disk full with a too slow flash module o kern/152605 fs [ufs] [panic] handle_workitem_freeblocks: inode 18 blo o kern/151251 fs [ufs] Can not create files on filesystem with heavy us p kern/150796 mckusick [panic] [suj] [ufs] [softupdates] Panic on portbuild 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 fs [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 bin/118249 fs [ufs] mv(1): moving a directory changes its mtime o kern/117954 fs [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 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 o kern/33464 fs [ufs] soft update inconsistencies after system crash 33 problems total. Problem reports for tag 'uftdi': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/149900 usb [uftdi] [patch] FreeBSD 8.1 uftdi patch to support usb o usb/149675 usb [uftdi] [usb_serial] doesn't react to break properly o usb/149283 usb [uftdi] avrdude unable to talk to Arduino board (via u 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/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS 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 10 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 '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 'ukbd': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 p usb/125736 thompsa [ukbd] [hang] system hangs after AT keyboard detect if p 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 13 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 s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las 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 11 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/150401 usb [umass] [usb8] Errors from USB drives mixed between UF 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/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o usb/129500 usb [umass] [panic] FreeBSD Crashes when connecting SanDis o usb/128425 usb [umass] Cannot Connect Maxtor Onetouch 4 USB drive 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 [usb67] [umass] [patch] quirk to support ASUS P535 as 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 o 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 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 67 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 f 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 s 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/114780 usb [uplcom] [panic] Panics while stress testing the uplco 1 problem total. Problem reports for tag 'ural': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/149162 usb [ural] ASUS WL-167g doesn't work in 8.1 (continue of 1 o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa 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 kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes 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 4 problems total. Problem reports for tag 'usb': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El p usb/129858 remko [usb] [patch] Need to add quirk to da_scsi.c to suppor f usb/129766 usb [usb] [panic] plugging in usb modem HUAWEI E226 panics 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 f usb/120786 usb [usb] [panic] Kernel panic when forced umount of a det o usb/119509 usb [usb] USB flaky on Dell Optiplex 755 p usb/116699 usb [usb] [usb67] USB HID devices do not initialize at sys 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 f 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/52026 usb [usb] [request] umass driver support for InSystem ISD2 o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem 23 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 s usb/138570 usb [usb67] [panic] USB mass device panics current 7.2-STA o usb/138175 usb [usb67] [boot] System cannot boot, when USB reader wit 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 p usb/131123 usb [patch] [usb67] re-add UQ_ASSUME_CM_OVER_DATA USB quir o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o usb/128977 usb [usb67] [patch] uaudio is not full duplex s usb/122819 usb [usb67] [patch] Patch to provide dynamic additions to f usb/121232 usb [usb67] [panic] USB CardBus card removal causes reboot o usb/120572 usb [usb67] [umass] [patch] quirk to support ASUS P535 as p usb/116699 usb [usb] [usb67] USB HID devices do not initialize at sys o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated 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 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/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 p usb/101775 usb [usb67] [libusbhid] [patch] possible error in report d 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 o kern/99200 usb [usb67] SMP-Kernel crashes reliably when Bluetooth con 57 problems total. Problem reports for tag 'usb8': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/152075 usb [usb8] [ehci] Add quirk for CS5536 USB o usb/150401 usb [umass] [usb8] Errors from USB drives mixed between UF o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf p usb/149934 usb [patch] [usb8] Transcend JetFlash V85 poor performance s usb/148702 usb [usb8] [request] IO DATA USB-RSAQ5 support on FreeBSD- p usb/148189 remko [usbdevs] [usb8] [patch] provide descriptive string fo p 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 p 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/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 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 p 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/141777 usb [usb8] [usbdevs] [rum] [patch] Support usbdevs / rum(4 f 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 kern/141011 usb [usb8] Encrypted root, geli password at boot; enter ke o usb/140920 usb [install] [usb8] USB based install fails on 8.0-RELEAS o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b p usb/140883 yongari [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 61 problems total. Problem reports for tag 'usbdevs': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/148189 remko [usbdevs] [usb8] [patch] provide descriptive string fo p usb/146871 usb [usbdevs] [usb8] [patch] provide descriprive string fo p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google o usb/141777 usb [usb8] [usbdevs] [rum] [patch] Support usbdevs / rum(4 p usb/136761 usb [usbdevs][usb67][patch] Teach usbdevs / u3g(4) about H p usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 o usb/118485 gavin [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 10 problems total. Problem reports for tag 'uscanner': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/117205 remko [uscanner] [patch] uscanner support for HP ScanJet 447 s usb/85067 usb [uscanner] Cannot attach ScanJet 4300C to usb device 2 problems total. Problem reports for tag 'uslcom': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/131912 gavin [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 -------------------------------------------------------------------------------- a kern/152047 virtualization[vimage] [panic] TUN\TAP under jail with vimage crashe o kern/148155 virtualization[vimage] Kernel panic with PF/IPFilter + VIMAGE kernel a kern/147950 virtualization[vimage] [carp] VIMAGE + CARP = kernel crash 3 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 -------------------------------------------------------------------------------- o kern/152141 net [vlan] encapsulate vlan in ng_ether before output to i 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 jfv [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 9 problems total. Problem reports for tag 'vm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152200 [vm] [patch] Overflow in vmspace_swap_count() o kern/149587 [vm] Lockup on 8.1-RC2 system enabling vm.idlezero 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 s bin/2137 [vm] systat(1) total vm statistics are bad 14 problems total. Problem reports for tag 'vmware': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147793 emulation [vmware] [panic] cdrom handling, panic, possible race o kern/118819 [vmware] FreeBSD 6.2 in VMware is unstable and there i 2 problems total. Problem reports for tag 'vr': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/90890 yongari [vr] Problems with network: vr0: tx shutdown timeout f kern/71045 yongari [rl] [vr] DHCP-Request is sets other device's ip to nu 2 problems total. Problem reports for tag 'wi': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/150052 bschmidt [wi] wi(4) driver does not work with wlan(4) driver fo f kern/143074 bschmidt [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 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/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes f kern/149969 net [wlan] [ral] ralink rt2661 fails to maintain connectio 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 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 'wpi': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/147862 bschmidt [wpi] Possible bug in the wpi driver. Network Manager o kern/144987 net [wpi] [panic] injecting packets with wlaninject using o kern/143874 net [wpi] Wireless 3945ABG error. wpi0 could not allocate f kern/143595 bschmidt [wpi] [panic] Creating virtual interface over wpi0 in f kern/139079 bschmidt [wpi] Failure to attach wpi(4) f kern/138739 bschmidt [wpi] wpi(4) does not work very well under 8.0-BETA4 o kern/136943 net [wpi] [lor] wpi0_com_lock / wpi0 f kern/128917 bschmidt [wpi] [panic] if_wpi and wpa+tkip causing kernel panic f kern/121872 bschmidt [wpi] driver fails to attach on a fujitsu-siemens s711 9 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/153789 xen [xen] [regression] FreeBSD 8.2-RC1 crashes under Solar o kern/153674 xen [xen] i386/XEN idle thread shows wrong percentages o kern/153672 xen [xen] [panic] i386/XEN panics under heavy fork load o kern/153620 xen [xen] Xen guest system clock drifts in AWS EC2 (FreeBS o kern/153477 xen [xen] XEN pmap code abuses vm page queue lock o kern/153150 xen [xen] xen/ec2: disable checksum offloading on interfac o kern/152228 xen [xen] [panic] Xen/PV panic with machdep.idle_mwait=1 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 f kern/143069 xen [xen] [panic] Xen Kernel Panic - Memory modified after f kern/135421 xen [xen] FreeBSD Xen PVM DomU network failure - netfronc. f 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 f i386/124516 xen [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 16 problems total. Problem reports for tag 'xfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153680 fs [xfs] 8.1 failing to mount XFS partitions 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 4 problems total. Problem reports for tag 'xl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132669 yongari [xl] 3c905-TX send DUP! in reply on ping (sometime) o kern/129352 yongari [xl] [patch] xl0 watchdog timeout f kern/113895 yongari [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 5 problems total. Problem reports for tag 'zfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153753 fs [zfs] ZFS v15 - grammatical error when attempting to u o kern/153716 fs [zfs] zpool scrub time remaining is incorrect o kern/153695 fs [patch] [zfs] Booting from zpool created on 4k-sector o kern/153552 fs [zfs] zfsboot from 8.2-RC1 freeze at boot time o kern/153520 fs [zfs] Boot from GPT ZFS root on HP BL460c G1 unstable o kern/153418 fs [zfs] [panic] Kernel Panic occurred writing to zfs vol o kern/153351 fs [zfs] locking directories/files in ZFS o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' s kern/153173 fs [zfs] booting from a gzip-compressed dataset doesn't w o bin/153142 [zfs] ls -l outputs `ls: ./.zfs: Operation not support o kern/153126 fs [zfs] vdev failure, zpool=peegel type=vdev.too_small o kern/151942 fs [zfs] panic during ls(1) zfs snapshot directory f kern/151910 pjd [zfs] booting from raidz/raidz2 on ciss(4) doesn't wor o kern/151905 fs [zfs] page fault under load in /sbin/zfs o kern/151648 fs [zfs] disk wait bug o kern/151330 fs [zfs] will unshare all zfs filesystem after execute a o kern/151226 fs [zfs] can't delete zfs snapshot o kern/151111 fs [zfs] vnodes leakage during zfs unmount o kern/150503 fs [zfs] ZFS disks are UNAVAIL and corrupted after reboot o kern/150501 fs [zfs] ZFS vdev failure vdev.bad_label on amd64 o kern/150390 fs [zfs] zfs deadlock when arcmsr reports drive faulted o kern/149173 fs [patch] [zfs] make OpenSolaris installa o kern/149015 fs [zfs] [patch] misc fixes for ZFS code to build on Glib o kern/149014 fs [zfs] [patch] declarations in ZFS libraries/utilities o kern/149013 fs [zfs] [patch] make ZFS makefiles use the libraries fro 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/147560 fs [zfs] [boot] Booting 8.1-PRERELEASE raidz system take o kern/146941 fs [zfs] [panic] Kernel Double Fault - Happens constantly o kern/146786 fs [zfs] zpool import hangs with checksum errors 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 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 fs [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/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 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/130133 kmacy [panic] [zfs] 'kmem_map too small' caused by make clea 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 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 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 84 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 usb/153609 usb [zyd] [panic] kernel: Fatal trap 12: page fault while o usb/150892 usb [zyd] Whenever network contacted in any shape, way or o usb/149528 usb [zyd] Wireless USB stick not detected - vendor id 0x08 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 5 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 10 12:50:08 2011 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 626461065670 for ; Mon, 10 Jan 2011 12: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 3A6798FC16 for ; Mon, 10 Jan 2011 12: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 p0ACo8ZG013198 for ; Mon, 10 Jan 2011 12: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 p0ACo8aV013197; Mon, 10 Jan 2011 12:50:08 GMT (envelope-from gnats) Resent-Date: Mon, 10 Jan 2011 12:50:08 GMT Resent-Message-Id: <201101101250.p0ACo8aV013197@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 065A41065670 for ; Mon, 10 Jan 2011 12:43:48 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id CFBE48FC0A for ; Mon, 10 Jan 2011 12:43:47 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0AChlsX010421 for ; Mon, 10 Jan 2011 12:43:47 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0AChlOT010420; Mon, 10 Jan 2011 12:43:47 GMT (envelope-from nobody) Message-Id: <201101101243.p0AChlOT010420@red.freebsd.org> Date: Mon, 10 Jan 2011 12:43:47 GMT From: Petr Lampa To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/153841: page fault in icmp6_error2() called from nd6_llinfo_timer() 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, 10 Jan 2011 12:50:08 -0000 >Number: 153841 >Category: kern >Synopsis: page fault in icmp6_error2() called from nd6_llinfo_timer() >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jan 10 12:50:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Petr Lampa >Release: 8.2-PRERELEASE >Organization: BUT brno >Environment: FreeBSD xxx 8.2-PRERELEASE FreeBSD 8.2-PRERELEASE #16: Tue Nov 30 12:44:18 CET 2010 rrrr@xxxx:/usr/src/sys/i386/compile/GUTA i386 >Description: page fault Stopped at icmp6_error2+0xc3: movl 0x1dc(%eax),%eax where: Tracing pid 11 tid 1000006 td 0xc851e000 icmp6_error2(cad86800,1,3,0,c86d4c00,...) at icmp6_error2+0xc3 nd6_llinfo_timer(cc7da400,c851e000,c838bc40,c851e870,c851e000,...) at timer+0x126 softclock(c07bd760,c851e000,0,109,3b7b822b,...) at softclock_0x22a icmp6_error2+0xa3: jmp icmp6_error2+0x136 icmp6_error2+0xa8: cmpl $0x27,0xc(%ebx) icmp6_error2+0xac: jnbe icmp6_error2+0xe0 icmp6_error2+0xae: addl $0x1,ip6stat+0x8 icmp6_error2+0xb5: adcl $0,ip6stat+0xc icmp6_error2+0xbc: movl 0x18(%ebx),%eax icmp6_error2+0xbf: testl %eax,%eax icmp6_error2+0xc1: jz icmp6_error2+0xd3 icmp6_error2+0xc3: movl 0x1dc(%eax),%eax icmp6_error2+0xc9: movl 0(%eax),%eax icmp6_error2+0xcb: addl $0x1,0x30(%eax) icmp6_error2+0xcf: adcl $0,0x34(%eax) icmp6_error2+0xd3: movl %ebx,0(%esp) icmp6_error2+0xd6: call m_freem icmp6_error2+0xdb: jmp icmp6_error2+0x136 icmp6_error2+0xdd: leal 0(%esi),%esi icmp6_error2+0xe0: movl 0x8(%ebx),%esi icmp6_error2+0xe3: movl $0,0x8(%esp) icmp6_error2+0xeb: movl %edi,0x4(%esp) icmp6_error2+0xef: leal 0x8(%esi),%eax icmp6_error2+0xf2: movl ieax,0(%esp) icmp6_error2+0xf5: call in6_setscope icmp6_error2+0xfa: testl %eax,%eax icmp6_error2+0xfc: jnz icmp6_error2+0x136 (sorry, if there is some garbage here, this is a result of ocr) So, the location of page fault corresponds to the last branch of IP6_EXTHDR_CHECK() macro expanded in icmp6_error2: if ((m)->m_len < (off) + (hlen)) { \ V_ip6stat.ip6s_tooshort++; \ in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_truncated); \ The content of mbuf (m) is: 0xcad86800: 0 0 cad86896 1e 0xcad86810: 0 1 0 0 0xcad86820: 5a 0 4 6 0xcad86830: 0 0 5e0000 30000 It seems, that pkthdr is not there and so m->m_pkthdr.rcvif is 0 and it's dereferenced without a check. >How-To-Repeat: It happened after ping6/traceroute6 (not sure) to unresponding IPv6 address, which after time started responding (probably, I'm not really sure). >Fix: check flags for M_PKTHDR in IP6_EXTHDR_CHECK() >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 10 11:06:05 2011 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 78133106564A for ; Mon, 10 Jan 2011 11:06:05 +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 483C88FC0A for ; Mon, 10 Jan 2011 11:06: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 p0AB65Wq000966 for ; Mon, 10 Jan 2011 11:06:05 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0AB62cZ000964 for freebsd-bugs@FreeBSD.org; Mon, 10 Jan 2011 11:06:02 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 10 Jan 2011 11:06:02 GMT Message-Id: <201101101106.p0AB62cZ000964@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, 10 Jan 2011 13:06:35 +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, 10 Jan 2011 11:06:05 -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 -------------------------------------------------------------------------------- f ports/153839 wen astro/cfitsio not build o ports/153838 [patch] update emulators/cpmtools2 to 2.13 o ports/153837 [NEW PORT] p5-Async-Interrupt: allow C/XS libraries to o ports/153836 fluffy [patch] update deskutils/plasma-applet-cwp 1.3.2 -> 1. o ports/153835 [NEW PORT] net-mgmt/phpweathermap: A network visualisa o ports/153834 clsung [PATCH] net/py-s3cmd: update to 1.0.0 o ports/153833 portmgr [PATCH] Mk/bsd.database.mk: add mariadb as MYSQL_VER=5 o amd64/153831 amd64 [boot] CD bootloader won't on Tyan s2912G2nr o ports/153830 mytop stopped working after update mysql-client o ports/153829 wen [REPOCOPY] lang/python31 --> lang/python32 o ports/153828 wen [NEW PORT] Seven Ada ports including GNAT, GNAT Progra f ports/153827 flo build real shared object for devel/pwlib on powerpc f ports/153826 flo build real shared object for net/openh323 on powerpc o ports/153825 skv databases/p5-DBD-mysql fails with mysql-client-5.5.8 p f ports/153824 [PATCH] www/phpSysInfo: Update to 3.0.7 o ports/153823 Update graphics/white_dune to 0.30 o docs/153821 doc Removal of 3 public technical mailing lists o ports/153820 ruby New port: mail/rubygem-rmail (lightweight mail librar o ports/153819 yzlin [PATCH] update www/py-beautifulsoup30 to latest versio o ports/153818 oliver Update graphics/cegui to 0.7.5 o ports/153817 oliver Update graphics/ogre3d to 1.7.2 o kern/153816 net [ixgbe] ixgbe doesn't work properly with the Intel 10g o ports/153815 sunpoet [MAINTAINER] www/node-devel: update to 0.3.4 o ports/153814 pav Switch default MySQL version from 5.1 to 5.5 o ports/153812 [new port] deskutils/myitcrm - MYIT CRM is a CRM proje o ports/153811 wen [new port] databases/mysqldumper: MySQLDumper is tool o ports/153810 [PATCH] Fix usb_interrupt_read() in devel/libusb for f o bin/153809 sysinstall [patch] sysinstall(8): Choose Distributions screen, co f ports/153808 dhn net-im/rubygem-termtter not launching after install o ports/153807 nivit [PATCH] databases/py26-sqlalchemy: update to 0.6.6 o kern/153804 boot from zfs kernel.old recovery undocumented/impossi o ports/153803 [NEW PORT] databases/mysqldumper: MySQLDumper is tool o bin/153801 [patch] btxld produces incorrect ELF binaries o ports/153798 sahil mail/postfix doesn't have sqlite3 maps option o ports/153795 repocopy www/drupal5/bsd.drupal.mk to Mk/bsd.drupal.mk o ports/153793 miwi repocopy www/drupal6 to www/drupal7 o ports/153792 miwi [maintainer] archivers/dpkg security update o ports/153791 Missing Optional Dependency for audio/squeezeserver o kern/153789 xen [xen] [regression] FreeBSD 8.2-RC1 crashes under Solar o ports/153787 new port devel/p5-Tie-Cache-LRU: LRU Cache in Memory t o ports/153785 [update] deskutils/cairo-dock-plugins to 2.2.0-4 o ports/153784 [update] deskutils/cairo-dock to 2.2.0-4 o ports/153781 wxs Update port: net/isc-dhcp41-server Concurrent IPv4 DHC o docs/153779 gjb [patch] [handbooks,doc,faq] update copyright years (sp f ports/153776 rea [patch] multimedia/mplayer - disabling RTCPU on non-{i o ports/153775 sylvio net/ntop port has problems compiling rrdtool1.4 o ports/153773 net/rabbitmq: reads configuration from /etc instead of o kern/153772 net [ixgbe] [patch] sysctls reference wrong XON/XOFF varia o kern/153771 Unkillable process after a SCSI tape write error f ports/153770 www/mediawiki LaTeX math plugin search path issues o kern/153769 mutex alc0 not owned o ports/153768 bapt [patch] devel/icu 4.6 is not MAKE_JOBS_SAFE'd f ports/153767 pgollucci [patch] multimedia/xbmc: add VAAPI option o ports/153766 mm [patch] PHP Floating Point CVE Bumper patch o ports/153764 jsa [patch] multimedia/vlc: don't link against librt for s f ports/153762 wen [patch] irc/py-gozerbot: fix dependencies f ports/153760 sunpoet [patch] www/session2: fix dependencies o ports/153759 perl [patch] www/p5-Apache2-Scoreboard: Repair broken port f ports/153758 wen [Update]math/py-matplotlib:update to 1.0.1 o kern/153757 Kernel panic using openchrome Xorg driver on 9-CURRENT o stand/153756 standards fp leak in hesiod.c . o kern/153753 fs [zfs] ZFS v15 - grammatical error when attempting to u o ports/153752 beech Updated port: irc/eggdrop 1.6.20 o ports/153751 tabthorpe Update Port: www/drood => 1.64 o kern/153748 [libfetch] [patch] in ftp_request: closing of the conn o amd64/153746 amd64 kernel crash with 2 X11 sessions on amd64 with radeon o ports/153745 tobez Update Port: net-mgmt/p5-NetAddr-IP 4.038 o ports/153744 autotools [patch] devel/autoconf: clean error: Permission denied o ports/153743 sylvio www/bluefish: fix pkg-plist o ports/153742 Update port: sysutils/desktop-installer f ports/153741 dhn [Maintainer Update] converters/bsdconv family to 4.0 o ports/153739 wxs [maintainer update] net/freeradius2: fix rlm_python is o docs/153738 gjb [patch] Docuement requirement to alter some sysctls wh o ports/153737 Abandoned port: dns/staticcharge o ports/153735 jsa multimedia/vlc: install error: `Permission denied' for o ports/153734 jsa [patch] multimedia/vlc: configure error: libgcrypt ver f ports/153733 [patch] emulators/visualboyadvance-m: problem with joy o bin/153731 [patch] ifconfig(8): ifconfig prints trailing whitespa o ports/153729 amdmi3 [patch] graphics/gnash: add VAAPI option o ports/153728 jsa [patch] multimedia/vlc: add VAAPI option o ports/153727 mm [patch] multimedia/ffmpeg: add VAAPI option o ports/153726 pgollucci [new port] multimedia/vdpau-video: A VDPAU-based backe o ports/153725 pgollucci [new port] multimedia/libva: VAAPI wrapper and dummy d o ports/153723 miwi Compile of devel/pear has a dependency on php security o ports/153721 x11-wm/wmconfig - Port update to version 1.3.4 o ports/153720 flz [PATCH] net-p2p/rtorrent: update to 0.8.7 o ports/153718 flz [PATCH] net-p2p/libtorrent: update to 0.12.7 o kern/153716 fs [zfs] zpool scrub time remaining is incorrect o ports/153715 net/freeradius: FreeRADIUS exiting with Signal 11 on F f ports/153713 wen Upgrade deskutils/phprojekt 5.2.2 -> 6.0.5 o ports/153708 upgrade databases/slony1 port to latest f ports/153706 security/gorilla broken o ports/153705 danfe x11/nvidia-driver: The package forgot to install libGL o ports/153704 pgollucci [patch] multimedia/libvdpau: respect STRIP o usb/153703 usb My USB keyboard does not use in 8-STABLE f ports/153702 sunpoet net/prosearch: databases/mysql${MYSQL_VER}-scripts dep o ports/153701 oliver x11-toolkits/gigi fails to build o ports/153700 [NEW PORT] www/pivotx: Software to help you maintain d f ports/153697 ports java/jboss5 build failed o kern/153695 fs [patch] [zfs] Booting from zpool created on 4k-sector o ports/153692 stas Update devel/cross-binutils to version 2.21 o ports/153689 araujo [patch] net-mgmt/ocsinventory-agent o ports/153688 [MAINTAINER] net-mgmt/zabbix-server: update to 1.8.4 o kern/153680 fs [xfs] 8.1 failing to mount XFS partitions o ports/153676 wen Delete obsolete gnat 3.15p ports (five) o kern/153674 xen [xen] i386/XEN idle thread shows wrong percentages o misc/153673 [build] tic (the terminfo compiler) not being created o kern/153672 xen [xen] [panic] i386/XEN panics under heavy fork load o kern/153671 net [em] [panic] 8.2-PRERELEASE repeatable kernel in if_em o ports/153669 yzlin [PATCH] www/yii: update to 1.1.5 o ports/153668 girgen [patch] databases/postgresql90-server: allow for postg o bin/153667 [PATCH] comsat(8): libexec/comsat/comsat.c: gratuitous o conf/153666 rc [rc.d][patch] mount filesystems from fstab over zfs da o amd64/153665 amd64 [ahci] AHCI module unconsistent behaviour with SATA3 d o ports/153664 portmgr [repocopy] net-im/openfire --> net-im/openfire36 o ports/153661 miwi [UPDATE] sysutils/xfce4-battery-plugin to 1.0.0 o bin/153659 awk(1) segfaults when trying to extract a combination o ports/153658 miwi [patch] devel/pecl-svn - Cleanup o ports/153657 python [patch] make lang/python26 work on powerpc p conf/153655 jh [rc.d][patch] substitute nfs4 with newnfs in netfs_typ o docs/153654 doc [patch] incorrect include in sysctl.9 f ports/153651 Update port: x11-fonts/terminus-font - Update to 4.32 o ports/153648 garga [patch] net/xmlrpc-c-devel: build tools by default o ports/153646 miwi New port devel/pecl-apd f ports/153645 Update ports: emulators/mame update to v0.141 o ports/153644 x11 patch for x11/xorg on powerpc needs to also be applied o ports/153643 Add disk plugin support to net-mgmt/collectd o ports/153632 gabor textproc/docbook fails to build o ports/153629 wen databases/py-bsddb3: pkg-plist is incorrect: pkg_valid o ports/153627 [NEW PORT] audio/soundkonverter: Frontend to various a a ports/153625 portmgr [bsd.port.mk] Pass CPPFLAGS to MAKE_ENV and CONFIGURE_ f ports/153623 miwi [PATCH] www/drupal6: update to 6.20 o ports/153622 pgollucci [patch] sysutils/jfbterm: improve TERMCAP option o ports/153621 makc [NEW PORT] audio/kaudiocreator: An audio-cd ripper and o kern/153620 xen [xen] Xen guest system clock drifts in AWS EC2 (FreeBS o bin/153619 [patch] csup(1): prevent infinite cycle on empty ",v" o ports/153616 pgollucci [maintainer-update] net-mgmt/nagios-devel: Update to 3 o docs/153614 doc [patch] top(1) man page formatting error o ports/153613 lev Update devel/msp430-binutils to version 2.17 f ports/153612 Update devel/arm-elf-binutils to version 2.17 o ports/153611 ruby [PATCH] security/ruby-camellia: update to 1.2 o kern/153610 net [nfe] nfe0 malfunction at boot time o usb/153609 usb [zyd] [panic] kernel: Fatal trap 12: page fault while f ports/153608 [patch] net-mgmt/nfdump: update to 1.6.2 f ports/153607 Update devel/djgpp-binutils to version 2.17 o ports/153605 I have updated x11-wm/amiwm to 0.21pl2 o ports/153602 perl In security/p5-GD-SecurityImage added option for depen o ports/153601 New port: security/msktutil Active Directory keytab ma o bin/153600 Path length restrictions in mount/umount tools prevent o usb/153599 usb [patch] Feiya Elango USB MicroSD reader synchronize ca o ports/153598 nivit [PATCH] www/mimetex: Use WWWDIR and so on o ports/153597 portmgr [bsd.destdir.mk] [patch] chrooted make always returns o ports/153595 pgollucci [NEW PORT] www/p5-WWW-Mechanize-SpamCop: SpamCop repor s kern/153594 bschmidt [iwn] Network keeps disconnecting when /etc/rc.d/netif o ports/153593 x11 graphics/dri: clutter segfault, something to do with i o ports/153591 ruby [PATCH] update ftp/rubygem-curb 0.7.8 -> 0.7.9 o ports/153587 ume [PATCH] security/cyrus-sasl2: fix build with mysql 5.5 o kern/153584 fs [ext2fs] [patch] Performance fix and cleanups for BSD o ports/153583 [PATCH] x11-wm/scrotwm: update to 0.9.27 o ports/153581 mm [patch] multimedia/ffmpeg: make libvdpau a build-time f ports/153579 mm [PATCH] lang/php52: update suhosin patch o ports/153578 doceng [patch] textproc/docproj-nojadetex: JadeTeX included w o ports/153573 [patch] ports/Mk bsd.license.mk honor pkg_add -p/-P o ports/153571 skv [PATCH] update databases/p5-DBD-mysql to latest versio o ports/153570 sylvio [PATCH] update databases/rrdtool to latest version o ports/153569 stas [PATCH] update cad/gtkwave3 to latest version o ports/153567 acm [PATCH] x11/fpc-x11: doesn't respect localbase f ports/153566 miwi [patch] converters/enca update o ports/153565 APACHE_PORT needs to be better documented o ports/153564 miwi [maintainer update] multimedia/bombono update o docs/153562 bcr [patch] handbook/network: add clarity for syslogd_flag o ports/153557 decke patch to warn birtualbox compiler to unsetenv DISPLAY o ports/153556 miwi [patch] net/yaz update f ports/153553 miwi [patch] audio/clementine-player update o kern/153552 fs [zfs] zfsboot from 8.2-RC1 freeze at boot time o ports/153551 skv cant install databases/p5-DBD-mysql with databases/ma o ports/153547 portmgr [patch] ports/Mk bsd.port.mk remove NO_SIZE from the p o ports/153544 [patch] remove NO_SIZE from ports which don't need it o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o docs/153542 doc [patch] Document TRYBROKEN in ports(7) o ports/153541 wxs [patch] devel/git: respect STRIP for stripping o ports/153540 mm [patch] multimedia/ffmpeg: respect STRIP o ports/153539 portmgr [bsd.port.mk][patch]: allow checking STRIP when WITH_D o ports/153536 perl New Port: databases/p5-Redis-hiredis o ports/153535 New Port: databases/hiredis o ports/153534 amdmi3 Script error in port graphics/geeqie o ports/153531 clsung [UPDATE] devel/global: Update to 5.9.3 o ports/153529 yzlin [PATCH] sysutils/htop: Update & Take maintainership o bin/153527 [patch] wake(8) should use sysexits.h o ports/153526 sunpoet vuxml entry for www/wordpress CVE-2010-4257 o ports/153521 update port net-mgmt/ndoutils to 1.4b9 o kern/153520 fs [zfs] Boot from GPT ZFS root on HP BL460c G1 unstable o ports/153519 [PATCH] audio/darkice: fix libaacplus2 o ports/153518 [PATCH] audio/libaacplus: update to 2.0.2 o kern/153514 [cam] [panic] CAM related panic o ports/153504 ruby [NEW PORT] sysutils/rubygem-chef: A systems integratio o ports/153503 Patch to add PostgreSQL health check to net/haproxy o bin/153502 [libc] regex(3) bug with UTF-8 locale o ports/153500 beech [MAINTAINER] comms/anyremote: update to 5.3 o ports/153499 wen [MAINTAINER] dns/libidn: Update to 1.19 o ports/153498 wen [MAINTAINER] databases/sqlite3: Change options list o kern/153497 net [netgraph] netgraph panic due to race conditions o amd64/153496 amd64 [hyper-v] [install] Install on Hyper-V leaves corrupt o ports/153495 x11 x11-drivers/xf86-video-ati wavy line problem for lenov f ports/153492 wen [patch] update astro/merkaartor to 0.17.0 o ports/153490 wen [PATCH] net/openmq: jaxm support + minor startup impro f ports/153489 gahr [patch] www/libmicrohttpd -- update to 0.9.4 f ports/153488 ruby [PATCH] update devel/rubygem-ruby-prof to the recent v f ports/153486 ehaupt [update] security/libntlm -> 1.2, no API changes o ports/153479 pgollucci [maintainer] math/ruby-narray_miss: update to 1.2.1 o ports/153478 pgollucci [MAINTAINER] mail/rubygem-vmail: update to 1.1.7 o kern/153477 xen [xen] XEN pmap code abuses vm page queue lock o ports/153475 miwi [UPDATE] x11-clocks/xfce4-timer-out-plugin to 1.0.0 o ports/153473 [patch] mail/courier port upgrade from 0.63.0 to 0.65. f ports/153470 lme [UPDATE] games/freesynd to v0.4 f ports/153468 Update for www/firefox-sync f ports/153465 [MAINTAINER] net/torsocks: update to 1.1 f ports/153464 wxs [Update]lang/go: update to 20101225 snapshot o ports/153463 miwi port update: databases/py-psycopg2 p conf/153460 dougb devd(8) cannot be restarted correctly via /etc/rc.d sc o kern/153459 [kbdmux][patch] add option to specify built-in keymap o ports/153456 luigi [PATCH] sysutils/fio: update to 1.44.3 [feature safe] o ports/153455 wen [patch] update netim/centim to 4.22.10 o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes f ports/153453 pgollucci [NEW PORT] databases/rubygem-memchache: Ruby bindings o ports/153452 New port: science/py-ws2300 A driver for the LaCrosse o ports/153451 x11 [PATCH] graphics/libGL remove mesa-demos as component f ports/153449 [PATCH] fix www/awstats awstats_configure.pl to run on o kern/153448 adrian [ath] ath networking device loses association after a o ports/153441 net/openmq-client: Open Message Queue - Java Message S o kern/153440 [ata] 8.2 doesn't detect ICH8M anymore f ports/153437 pgollucci [patch] emulators/dgen-sdl: mark BROKEN on non-i386 ar o ports/153436 [MAINTAINER][PATCH] sysutils/downtimed: update to 0.4 o ports/153435 kuriyama [PATCH] japanese/trac: update to 0.12.1 o ports/153433 secteam security/vuxml: split recent PHP entry into multiple o o ports/153431 gabor security/amavisd-new p5-IO-Socket-INET6 causes massive o ports/153429 [patch] Fix explicite uses of unzip in ports o ports/153428 miwi [UPDATE] x11/xfce4-verve-plugin to 1.0.0 o bin/153426 [patch] fsck_msdosfs(8) only works with sector size 51 f ports/153425 [PATCH] www/limesurvey: Added a switch to use PostgreS o ports/153422 [NEW PORT] databases/memcacheq-0.2.0: Simple queue ser o kern/153418 fs [zfs] [panic] Kernel Panic occurred writing to zfs vol p docs/153416 doc [patch] mail(1) -u option not correctly documented o kern/153415 ipfw [ipfw] [patch] Port numbers always zero in dynamic IPF o ports/153409 ache [PATCH] mail/procmail: Port builds shouldn't ask for u o ports/153406 apache www/apache22's SUEXEC_RSRCLIMIT option does not take e f ports/153404 ehaupt [PATCH] net/rsync: workaround for ACL problem with ZFS f kern/153403 [mfi] BSD can't find SAS RAID on Intel SR2600UR server o ports/153398 [update] x11/printscreen update f ports/153395 pgollucci [PATCH] misc/ruby18-vpim: update to 0.695 o ports/153387 sahil Maintainer Update: games/ninix-aya to 4.0.8 o ports/153386 stas devel/valgrind does not build/include man pages o arm/153380 arm Panic / translation fault with wlan on ARM o ports/153379 [PATCH] www/hastymail2 add options to add dependencies f ports/153375 [patch] emulators/fmsx unbroke o misc/153373 [build] Cannot buildworld for 8.1_RELEASE-p2 o amd64/153372 amd64 [panic] kernel panic o ports/153370 sylvio graphics/gscan2pdf 0.9.31 doesn't start up p bin/153362 delphij [patch] add -p flag to set pidfile for rtadvd(8) o kern/153361 scsi [ciss] Smart Array 5300 boot/detect drive problem o ports/153358 x11 x11-drivers/xf86-video-intel: Intel driver freeze with o ports/153357 [patch] news/sabnzbdplus: rc script fails to kill the o kern/153351 fs [zfs] locking directories/files in ZFS o ports/153347 miwi [maintainer update] devel/upnp update o ports/153345 miwi [patch] audio/qjackctl update to latest version o ports/153338 amdmi3 [patch] games/allacrost: luabind isn't needed anymore s ports/153337 hrs print/acroread9: terminate called after throwing an in p ports/153327 gnome devel/gvfs WITH_AVAHI option o ports/153321 kuriyama fixed pkg-plist in www/p5-Dancer o ports/153320 pgollucci New Port: www/p5-Feersum o ports/153314 girgen mark deprecated: port databases/postgresql81-server o ports/153313 girgen mark deprecated: port databases/postgresql74-server o ports/153312 girgen mark deprecated: port databases/postgresql73-server o ports/153309 bf math/R references files outside the build directory o kern/153308 net [em] em interface use 100% cpu o kern/153307 pf [pf] Bug with PF firewall o kern/153303 [amr] amr device driver dont detect logical drive amrd o ports/153301 java java/openjdk6 web browser plugin doesn't work with bot o gnu/153298 Update base gcc with latest GPL2 patches (FSF 4.2.2 p f ports/153295 glewis [PATCH] mail/dovecot2: update to 2.0.8 f ports/153291 The version of qt4 ports and that of bsd.qt.mk don't m f kern/153289 gavin Modem Ring Signal not reliably detected f ports/153287 [PATCH] net-mgmt/ndpmon: [SUMMARIZE CHANGES] f ports/153286 cy port sysutils/screen WRKDIRPREFIX not working o ports/153284 luigi sysutils/fio should be in the benchmarks category, not o ports/153283 rea [patch] port net-mgmt/pnp update to version 0.6.10 o ports/153281 ashish editors/emacs: glib warning when starting emacs f ports/153278 [PATCH] net/beacon: Fix udp socket buffer sizes o ports/153277 girgen databases/postgresql90-server crashes during compilat o bin/153276 [patch] uudecode(1) error message is incorrect o docs/153273 ryusuke [HANDBOOK] 21.7.1 needs improvement o ports/153264 pgollucci www/apache22 and apache13-modssl -- rc.d script improv o ports/153263 [NEW PORT] databases/percona-server: Multithreaded SQL f ports/153262 miwi [exp-run]: Death to FreeBSD 6, Long Live FreeBSD! o bin/153261 jilles [patch] sed(1): fix for a race condition (from illumos o ports/153259 New port: sysutils/freecontrol Scripted distributed Fr o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' o bin/153257 [libc] [patch] regex(3): Add support for \< and \> wor o kern/153255 net [panic] 8.2-PRERELEASE repeatable kernel panic under h o kern/153254 [kqueue] [request] Please add API to kqueue(2) to noti o bin/153252 ipfw [ipfw][patch] ipfw lockdown system in subsequent call f ports/153251 www/drush is out of date f ports/153249 sysutils/syscp port is missing a critical dependency o kern/153244 net [em] em(4) fails to send UDP to port 0xffff o kern/153243 emulation [ibcs2] Seg fault whne running COFF binary using iBCS2 f ports/153241 [PATCH] fix plist of sysutils/k3b o bin/153240 des fetch(1): http transfer hangs after ^T (status) on tty o ports/153238 pgollucci [PATCH] sysutils/rubygem-sys-uname: update to 0.8.5 o bin/153235 delphij [regression] top(1): extra whitespace on header line o conf/153233 [patch] skel/dot.shrc: use prompt escapes, comment out f ports/153231 ohauer [PATCH] net-mgmt/nrpe2 enable ssl by default o ports/153230 kuriyama security/gnupg build broken [with patch] o ports/153224 clsung security/snort misplaces dynamic rules is you select s o ports/153215 [patch] Update port net/nss_ldapd to version 0.7.13 o bin/153211 cperciva freebsd-update(8) can not fetch updates over a proxy w o ports/153208 Update devel/allegro-devel to 4.4.1.1 o ports/153207 math/libtsnnls: fix failure building o bin/153206 netstat(1): "netstat -sz" doesn't reset any IPv6 stati o kern/153205 [ahci] PIONEER DVD-RW: timeout with ahci(4), OK with a o conf/153200 rc post-boot /etc/rc.d/network_ipv6 start can miss neighb f ports/153198 obrien sysutils/pwsafe does not register all of its dependenc o ports/153195 New port: www/mathjax cross-browser JavaScript display o ports/153180 openoffice Compile of /usr/ports/editors/openoffice.org-3 fails o ports/153179 sylvio net-mgmt/net-snmp corrected memory stats output patch o amd64/153175 amd64 [amd64] Kernel Panic on only FreeBSD 8 amd64 s kern/153173 fs [zfs] booting from a gzip-compressed dataset doesn't w f ports/153172 pgollucci [REPOCOPY] www/zope211 --> www/zope213 f ports/153171 pgollucci [REPOCOPY] www/zope211 --> www/zope212 f ports/153170 pgollucci [Update]www/zope211:Update to 2.11.7 o ports/153167 python Problem with signals, threads, and subprocesses in lan o conf/153164 [termcap] [patch] termcap needs an entry for rxvt-unic o kern/153161 ipfw IPFIREWALL does not allow specify rules with ICMP code o misc/153157 [build] [patch] Add support for generating userland de o bin/153156 When watch(1) is invoked incorrectly it trashes the tt o conf/153155 hrs [PATCH] [8.2-BETA1] ipfw rules fail to load cleanly on o bin/153154 [patch][libarchive] fix error handling in mtree parsin f bin/153153 syrinx net-mgmt/bsnmp-ucd build fails o ports/153152 beech update port: www/phpgedview from 4.2.2 to 4.2.3 o kern/153150 xen [xen] xen/ec2: disable checksum offloading on interfac o usb/153149 usb USB stick quirk regression o ports/153148 change port: deskutils/x-tile A tiling application for o ports/153147 danfe Repocopy request: graphics/yafray -> graphics/yafaray o bin/153142 [zfs] ls -l outputs `ls: ./.zfs: Operation not support o ports/153136 girgen [patch] databases/postgresql84-server: allow for postg o ports/153130 sysutils/k3b: problem with k3b and mounting ntfs with o ports/153128 stas graphics/ocaml-lablgl fails to build o kern/153126 fs [zfs] vdev failure, zpool=peegel type=vdev.too_small o bin/153124 grep(1): "grep foo * > somefile" goes into an infinite o conf/153123 rc [rc] [patch] add gsched rc file to automatically inser o ports/153122 [new port] deskutils/phpscheduleit - is web-based reso o ports/153120 x11 x11-drivers/xf86-video-ati: Xserver/xdm crashes and fr o ports/153114 gecko www/firefox 3.6.12_1,1 crash: Assertion failure: prop o ports/153113 brooks [PATCH] security/pssh: use GOOGLE_CODE/LOCAL macro o bin/153052 [patch] watch(8) breaks tty on error o misc/153049 [build] PORTS_MODULES= seriously broken if port depend o ports/153045 [NEW PORT] math/lapacke: Standard C language APIs for o ports/153032 sysutils/fusefs-ntfs: Patching ntfs-3g, to behave as F o ports/153030 yzlin [PATCH] irc/rbot: update to 0.9.15 f ports/153024 security/rkhunter should not overwrite /usr/local/etc/ f ports/153021 miwi [patch] devel/pecl-libevent - Add license - PHP versio o ports/153019 timur net/samba-smbclient: Allow SAMBA_PORT to be set via /e o bin/153012 arundel iostat(8) requires an argument to -c option o ports/153008 brooks lang/clang: clang/binutils incompatibility o kern/153006 [new driver] add 3Ware tws driver f i386/153003 gavin [panic] Cant boot PCBSD-CURRENT-20101204x86CD.iso Dec0 o ports/153000 kwm [PATCH] www/midori, fix correct path compared to the p o kern/152991 [ufs] false disk full with a too slow flash module o ports/152982 pgollucci [patch] net/nss_ldap, ignore option nss_initgroups_ign f ports/152972 edwin [patch] net/freenet6 breaks rtadvd(8) o ports/152970 Incorrect handling of ‘case’ statement in shells/v7sh f ports/152969 edwin [patch] net/freenet6's rc.d script breaks rcorder and o ports/152965 port update: multimedia/freevo-1.9.0_3 to freevo-1.9.0 o ports/152958 The port of www/mnogosearch 3.3.10 is using an out-of- o ports/152954 danfe New port: multimedia/gst123 - a command line audio/vid o ports/152947 Add ZFS ARC statistics into net-mgmt/collectd port f ports/152943 miwi [patch] databases/pecl-memcached Fixes/Cleanup o i386/152942 i386 [install] "acd0[READ(offset=32768, length=2048)]error= o bin/152934 delphij [patch] Enhancements to printf(1) o bin/152928 bz [patch] rtadvd(8) don't send RA on i/f that's down o kern/152922 adrian Routerstation Pro different flash model investigation f ports/152915 russian/xmms v. 1.2.11_12 don't see cdinfo and tag's i o ports/152913 pgollucci [UPDATE] www/MT japanese/MT french/MT german/MT update f bin/152909 gavin scp mistake file to directory f ports/152903 miwi [patch] www/pecl-tidy Fixes/Cleanup o ports/152901 mnag [patch] databases/pecl-sqlite Cleanup/Fixes o ports/152899 stas devel/valgrind: unhandled syscall: 506 o kern/152893 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o usb/152892 usb Not updating /etc files in installer FreeBSD-8.2-BETA1 o ports/152890 ashish multimedia/libvpx port not configured for powerpc o ports/152889 x11 [patch] x11-drivers/xorg-drivers default options kill o ports/152888 security/gpgme: add workaround for: ** Sylpheed-WARNIN o kern/152887 ipfw [ipfw] Can not set more then 1024 buckets with buckets o ports/152886 python databases/py-bsddb fails to build with databases/db51 o ports/152885 sunpoet (databases/mariadb) postfix unable to look up mariadb o ports/152877 portmgr [bsd.port.mk] Patch to add locking to ports make opera o ports/152875 mm graphics/ImageMagick ver. 6.6.5-10 build error with op o amd64/152874 amd64 [install] 8.1 install fails where 7.3 works due to lac o ports/152871 portmgr [patch] Request for exp-run and comment o bin/152868 imp [patch] pc-sysinstall(8) - Add support for using encry o ports/152866 itetcu Take over ownership of the sysutils/nut port o ports/152861 [new port] games/supertuxkart-devel o bin/152856 cperciva [patch] allow up to be used instead of update in freeb f ports/152855 [PATCH] net/unison, net/unison-devel: update to respec o kern/152853 net [em] tftpd (and likely other udp traffic) fails over e o ports/152847 clsung [patch] port/buildbot-slave could use a startup script o ports/152838 yzlin [PATCH] www/suphp: [Add support for lighttpd] o ports/152833 gabor [patch] textproc/gnugrep: update to 2.7 o kern/152828 net [em] poor performance on 8.1, 8.2-PRE o kern/152822 avg [patch] DTrace: syscall provider for compat/freebsd32 f ports/152820 des [patch] shells/zsh: correct memory report for time bui o kern/152817 [ahci] ahci doesn't find disk o gnu/152808 gdb(1) crash on exit o conf/152807 [periodic] security 900.tcpwrap does not report any re o ports/152804 portmgr [patch] Add USE_SRC and ONLY_FOR_*VER to bsd.port.mk o kern/152796 fcntl(2) audit records should not be labeled "file att o ports/152795 kde Remove old KDE_ORIGVER o kern/152792 [patch] move temperature conversion macros to a common o kern/152791 bz [icmp] ND, ICMPv6 Redirect vs Destination Cache failed o conf/152784 rc services provide himself instead providing class of se f ports/152770 sysutils/duplicity-devel/ throws ioctl sign-extension p kern/152768 jhb [mfi] Weird check in mfi(4) o kern/152750 adrian [ath] ath0 lot of bad series hwrate o ports/152745 kuriyama [PATCH] databases/pgpool-II: fix install by unprivileg f ports/152744 sysutils/duplicity updated to 0.6.11 o bin/152738 [patch] vmstat(8), printhdr() doesn't work correctly w o conf/152713 ed [termcap] [patch] broken color support under rxvt-256c o ports/152697 pgollucci [PATCH] games/assaultcube: Update from 1.0.2 to 1.1.0. f ports/152684 lev [patch] mail/dovecot2: Many improvements to default co f ports/152678 amdmi3 [update] deskutils/global-menu to 0.7.10 f ports/152669 no work innodb (databases/mariadb) o kern/152663 [ppc] [patch] Add MCS9865 PCI card to ppc(4) o kern/152662 [rtld] load libraries with address hint (cf. prelink) o bin/152661 parallel make sometimes gets working dir confused o ports/152650 wen Updated port sysutils/LPRng o kern/152647 Use of geli hmac/sha512 yields GEOM_ELI "bytes corrupt o misc/152636 [install] 8.1 Boot Only ISO doesn't support install vi o kern/152622 multimedia [pcm] uaudio recording problem o ports/152618 net/vnc: allow vncviewer build on CURRENT o misc/152613 FreeBSD 8.x can not find logical drives on extended pa o kern/152609 geom [geli] geli onetime on gzero panics o kern/152605 fs [ufs] [panic] handle_workitem_freeblocks: inode 18 blo o misc/152604 FreeBSD 7.2/7.3 installation CD panics on HP Proliant o kern/152599 [scheduler] scheduler issue - cpu overusage by 'intr' o kern/152582 [em] request: merge em Intel Driver Upgrage to Version o ports/152579 mm ftp/proftpd 1.3.3c_1 - IPv6 support is broken o kern/152569 net [net]: Multiple ppp connections and routing table prob o ports/152568 portmgr New option framework proposal o ports/152564 x11 I have updated x11-drivers/xf86-input-vmmouse to 12.6. o ports/152563 x11 I have updated the x11-drivers/xf86-video-vmware port p bin/152551 gavin [libc] Remove unused variables. o bin/152549 The function catstrg() in usr.bin/xlint/lint1/tree.c i o ports/152548 dhn [PATCH] net/GeoIP: don't redefined memcpy s ports/152547 dougb [PATCH] ports-mgmt/portmaster: support .txz and .tgz p o bin/152546 gdb(1): internal-error: fbsd_thread_new_objfile: Asser o misc/152543 listing color format cause kernel panic in .zfs dir o ports/152541 mi devel/gdb6: libgdb.a(tui-io.o)(.text+0x3c0): In functi o ports/152538 pgollucci games/linux-ut fetch url broken [patch] f ports/152537 [patch] database/postgresql90-server no longer needs p p misc/152531 Incorrect sysctl description o bin/152525 ntpd(8) on 8.1 loops on select() with EBADF o ports/152502 girgen databases/postgresql90-server core dumps when built wi o kern/152500 multimedia [hdac] play interrupt timeout, channel dead o ports/152498 portmgr [patch] ports/Mk bsd.port.mk order if groups/users are o kern/152488 fs [tmpfs] [patch] mtime of file updated when only inode o misc/152485 /dev/null seek offset is not reported correctly f ports/152474 mi Upgrading 'gdb-6.6_1' to 'gdb-6.6_2' (devel/gdb6) fail f ports/152468 ashish Update Port: textproc/exmpp to 0.9.5. o ports/152467 [new port] net/openafs port o conf/152465 simon [jail] [patch] devfs is mounted in jails without rules f ports/152464 wen www/bozohttpd: update to 20100920, fix prefix substitu o bin/152458 bz rtadvd(8) needs to allow RA without a prefix info opti o ports/152457 gabor install failure for gnome-packagekit (docbook2man) o ports/152456 pgollucci Fix port: sysutils/busybox Stop breakage on FreeBSD 8+ o ports/152453 textproc/urlview port should install gecko.sh optional o ports/152446 cperciva portsnap(8) error o kern/152438 acpi [acpi]: patch to acpi_asus(4) to add extra sysctls for o amd64/152430 amd64 HP ProLiant Microserver n36l cannot boot into installe o stand/152415 standards [libm] implementation of expl() o kern/152411 net [re] network card works only on 1000M o kern/152405 wrong user time is reported when CPU frequency throttl o ports/152400 danfe [PATCH] x11/nvidia-driver, x11/nvidia-settings, x11/nv o ports/152389 sem sysutils/grub and sysutils/grub2 misinterpret disklabe o ports/152387 ruby ports-mgmt/portupgrade: portinstall with bash completi o ports/152386 New port: devel/TheSchwartz-Worker-SendEmail o bin/152385 ee(1) has different keybindings in the livefs environm o ports/152384 New port: devel/TheSchwartz-Simple o ports/152381 wen graphics/mapserver doesn't build with postgresql 9.0 o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us o ports/152376 New port: audio/lastfmsubmitd o ports/152374 sylvio /usr/ports/net-mgmt/py-yapsnmp fails o kern/152360 net [dummynet] [panic] Crash related to dummynet. o ports/152355 hrs net/openbgpd stops syslogging after syslogd restart o kern/152354 [drm] Obsolete Files p bin/152345 jh [patch] truss(1) writes one byte past the buffer if it o ports/152341 des shells/zsh fails to load zsh/regex with ZSH_STATIC kno o ports/152316 pgollucci [PATCH] games/sauerbraten: Update to 20100728 o kern/152310 [uart] [hang] Serial I/O hangs in FreeBSD 8.x s ports/152309 marius sysutils/cdrtools fetch broken behind a proxy o ports/152306 mm devel/binutils create binary incompatible kernel modul f ports/152304 sysutils/fcron: illegal instruction 4 s ports/152296 devel/subversion: wrong message when trying to checkou f kern/152295 yongari [bge] 8.1-R driver stop to reveice incoming packets on o kern/152293 [libstdc++] SEGV in libstdc++.so.6 o ports/152268 portmgr [exp-run] check projects/binutils-2.17 for ports break p ports/152262 openoffice [patch] editors/openoffice.org-3 o bin/152259 bsnmpd(1) fails with stack overflow during GETBULK of s ports/152258 delphij [PATCH] net/openldap-server: enable BDB 5.0 and above o kern/152254 ed [patch] Support ioctl() on TTY control devices o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte o kern/152250 scsi [ciss] [patch] Kernel panic when hw.ciss.expose_hidden a ports/152244 glarkin [UPDATE] audio/ripperx o ports/152236 [patch] x11/slim: Enable pam support, add hald and dbu o kern/152235 net [arp] Permanent local ARP entries are not properly upd o kern/152232 [syscons] [patch] syscons VGA screensavers don't work o bin/152229 b64decode(1)/b64_pton(3) should decode common variant o kern/152228 xen [xen] [panic] Xen/PV panic with machdep.idle_mwait=1 o ports/152224 python [patch] fix installed permissions for lang/python27 f ports/152220 wen [PATCH] graphics/mapnik: update to 0.7.1 and unbreak o kern/152200 [vm] [patch] Overflow in vmspace_swap_count() o ports/152195 [PATCH] deskutils/pinot update to xapian-core 1.2.3 o ports/152194 brix [PATCH] www/xapian-omega update to 1.2.3 o ports/152193 perl [PATCH] databases/p5-Search-Xapian update to 1.2.3 f ports/152192 [PATCH] databases/xapian-bindings update to 1.2.3 o ports/152191 [PATCH] databases/xapian-core update to 1.2.3 o ports/152186 [NEW PORT] lang/python-doc-text: Documentation for the o gnu/152178 [libregex] [patch] Misc. updates to gnu/libregex o ports/152175 New port: lang/javascript-v8 Google's open source Java o kern/152162 [syscons] On syscons, pressing delete key results in p o ports/152159 x11 [hang] xorg/x11: X11 freezes with Intel Mobile 965 and o bin/152154 script(1) -k malfunctions with certain shells (e.g. tc f ports/152152 math/polymake: Port upgrade request f kern/152148 bz [pfil] vnet_pfil_init() happens too late if pfil_head_ f bin/152143 bz [PATCH] rtadvd(8) null pointer dereference o kern/152141 net [vlan] encapsulate vlan in ng_ether before output to i f ports/152134 error: cannot portupgrade 'slony1-1.2.20' to 'slony1-1 o bin/152132 script(1): [patch] Useless code in script.c (part 2) o bin/152131 script(1): [patch] Useless code in script.c (part 1) o ports/152118 New port: deskutils/linux-tahometer A worktime trackin o kern/152113 ipfw [ipfw] page fault on 8.1-RELEASE caused by certain amo f ports/152111 timur databases/tdb: Cannnot install tdb from ports o ports/152109 New port: x11/keylaunch2 A fork of keylaunch that a o docs/152103 doc man ipnat is out-dated a ports/152102 portmgr [patch] Mk/bsd.port.mk: make dirrmtry more friendly a ports/152099 glarkin [NEW PORT] www/loggerhead o kern/152098 acpi [acpi] Lenovo T61p does not resume f amd64/152097 gavin Sound button in Lenovo T61p mutes sound in kde o bin/152084 [patch] pw(8) does not allow @ or ! in gecos o ports/152082 [NEW PORT] www/encode-explorer: A PHP script to browse o kern/152079 fs [msdosfs] [patch] Small cleanups from the other NetBSD o usb/152075 usb [usb8] [ehci] Add quirk for CS5536 USB o ports/152073 New port: audio/WMmp o ports/152071 ume security/cyrus-sasl2: fix GSSAPI when using heimdal fr o ports/152066 mnag [new port] databases/py-MySQLdb40 and so forth: New sl f ports/152060 miwi [new port] devel/pear-PHPTAL Pear port for PHPTAL. a kern/152047 virtualization[vimage] [panic] TUN\TAP under jail with vimage crashe f ports/152045 New port: www/links-hacked browser with tricks for tab o bin/152044 pstat(8): pstat -f does not work o kern/152042 [libc] [patch] wrong bufsize of __hdtoa f ports/152040 obrien [patch] editors/vim remove gettext autodetection, resp o kern/152036 getifaddrs(3) returns truncated sockaddrs for netmasks o kern/152034 [puc] [patch] SIIG Cyber 2S PCIe not working correcty o ports/152024 portmgr Mk/bsd.port.mk: skip non-existent users in GIDs o kern/152022 fs [nfs] nfs service hangs with linux client [regression] o ports/152006 New Port: archivers/unzip-iconv: Slave port of unzip w o ports/152004 timur [PATCH] net/samba35: unbreak, fix plist o bin/151996 [patch] new tcpdrop(8) option to select interactively f ports/151984 makc multimedia/minitube not working f ports/151982 Can't build sysutils/fusefs-kmod ; problem with ruby o bin/151976 [patch] mount_nullfs(8) patch to add support for expos o ports/151973 New port: security/arpCounterattack -- Detects and rem o ports/151970 bf New port math/slatec Common Maths libraries, over 1400 o bin/151967 imp [patch] pc-sysinstall(8) - Add support 4k partition al o ports/151954 miwi [patch] Mk/*.mk: remove emacs mode, -*- mode: ...; -*- o docs/151952 doc No example for scanning for SSIDs in ifconfig(8) man p o kern/151942 fs [zfs] panic during ls(1) zfs snapshot directory o kern/151941 [mpt] [hang] FreeBSD RELENG_6 server freezes during cr o bin/151940 dhclient(8): Implement multiple options in Domain Sear o bin/151937 [patch] netstat(1) utility lack support of displaying f ports/151930 [PATCH] net-mgmt/netams links to libmysqlclient/libpq o kern/151924 very slow boot from disk: 15m+ o ports/151923 java [patch] java/openjdk6: free and native openjdk bootstr f kern/151910 pjd [zfs] booting from raidz/raidz2 on ciss(4) doesn't wor f kern/151908 bz [netinet6] [patch] nd6_ns_input: panic may happen, for o ports/151907 [NEW PORT] security/sophie: A daemon which uses 'libsa o kern/151905 fs [zfs] page fault under load in /sbin/zfs o ports/151887 timur net/samba35: patch-source3__smbd__negprot.c braking sm f ports/151886 makc multimedia/libxine fails to build o ports/151884 openoffice editors/openoffice.org-3-devel port misbehaviour f ports/151876 www/squid: Squid rc script doesn't restart the daemon o bin/151866 [libfetch] [patch] closing the cached FTP connection p kern/151861 [rtld] dlclose() of library causes separately opened l p usb/151851 hselasky [libusb] libusb(3) libusb_control_transfer() return va o bin/151850 [patch] style cleanups to newfs_msdosfs(8) o kern/151845 fs [smbfs] [patch] smbfs should be upgraded to support Un o ports/151837 [patch] sysutils/bsdstats : does honor BATCH when inst o ports/151833 amdmi3 sysutils/kiconvtool: I don't know how to load the pair f ports/151831 dinoex {graphics,japanese,russian,ukrainian}/gd conflict with o ports/151830 kde [patch] devel/cmake: install cmake-mode.el a ports/151816 danfe x11/nvidia-drivers: Please udpate nvidia drivers 256.5 o kern/151813 FreeBSD 8.1/amd64: garbage in /var/log/messages a docs/151812 gjb find man page missing stuff o ports/151808 oliver security/courier-authlib: courier-authdaemond doesn't f ports/151783 mail/fetchmail: rc.d script broken in case of MDA use f ports/151777 deskutils/xfce4-volstatus-icon Segmentation fault and o ports/151774 [new port] sysutils/pprotectd p threa/151767 davidxu pthread_mutex_init returns success with bad attributes o ports/151764 timur security/vuxml update for security vulnerability: port o kern/151758 [panic] tmux kernel panic, with out root privilegies o docs/151752 doc pw.conf(5) doesn't define format for file clearly o ports/151747 Request for (a variation of) emulators/wine for amd64 o bin/151736 [patch] mount_nullfs(8) patch to add support for expos o ports/151730 miwi New port: devel/pear-HTML_QuickForm_CAPTCHA Pear HTML_ o ports/151729 miwi New port: devel/pear-Text_CAPTCHA Pear Implementation f ports/151723 kuriyama x11-clocks/asclock-xlib needs imake to build, mark job a bin/151720 jilles [patch] sh(1): parser accepts invalid syntax without r o ports/151719 autotools [PATCH] Lack of NLS option in devel/gmake o gnu/151716 gcc(1) fail with internal compiler error when using -f o ports/151714 emulation print/acroread9 not usable due to lack of support in t o bin/151713 fs [patch] Bug in growfs(8) with respect to 32-bit overfl o ports/151711 bsam [repocopy] textproc/goldendict -> textproc/goldendict- f ports/151706 [PATCH] games/endgame-singularity: update to 0.30b o misc/151698 imp [nanobsd] [patch] Add two new options to nanobsd.sh to o misc/151697 imp [nanobsd] [patch] nanobsd.sh copy links to packages as p misc/151696 embedded [nanobsd] [patch] nanobsd.sh doesn't run "make_conf_bu o misc/151695 embedded [nanobsd] [patch] Enhance tools/nanobsd/fill_pkg.sh f ports/151694 nox emulators/kqemu-kmod: Kernel module kqemu fails to loa o kern/151690 net [ep] network connectivity won't work until dhclient is f ports/151689 dns/rbldnsd does not use preassigned UID/GIDs o kern/151681 net [nfs] NFS mount via IPv6 leads to hang on client with p bin/151664 glebius [PATCH] route(8): sbin/route/route.c: Incorrect array o bin/151663 grdc(1): games/grdc: -s does not scroll o ports/151662 ruby ports-mgmt/portupgrade: upgrade of autoconf leaves old o kern/151650 FreeBSD9-CURRENT can't boot when recompile KERNEL. o kern/151648 fs [zfs] disk wait bug o ports/151645 flo Move mason_handler.fcgi and webmux.pl inside www/rt38 o ports/151643 flo www/rt38: RT38 upgrade directory location o ports/151640 stas [patch] unbreak sysutils/fuser on 9.x f ports/151637 ohauer Update port: security/maia Much needed updates for Per o kern/151629 fs [fs] [patch] Skip empty directory entries during name o ports/151614 acm net-p2p/transmisson-remote-gui misspelled o kern/151608 [ata] FreeBSD doesn't detect Sandforce-based SSD o ports/151603 vbox Self-built emulators/virtualbox-ose-kmod vboxnetflt.ko o bin/151600 [patch] route(8) does not always flush stdout o ports/151596 x11 x11/xorg: wacom bamboo button 1 no longer works o ports/151595 maho math/lapack: Cannot build math ATLAS and LAPACK becaus o kern/151593 net [igb] [panic] Kernel panic when bringing up igb networ o kern/151586 [patch] [ipmi] Incorrect firmware version printed at b o ports/151581 mnag misc/compat6x: fix bug with umask set less restrictive o ports/151572 The first start of net/tucan failed because it can't w o kern/151564 scsi [ciss] ciss(4) should increase CISS_MAX_LOGICAL to 10 o ports/151534 python lang/python26 + WITH_PTH doesn't install correctly o ports/151510 ruby ports-mgmt/portupgrade: circular dependencies breaks p o docs/151478 doc [patch] Russian porters-handbook: MFen 1.440 -> 1.1077 o ports/151477 girgen [PATCH] databases/postgresql-jdbc: update to 9.0.801 o ports/151472 ume mail/cyrus-imapd23 failed to compile o ports/151467 New port: sysutils/autojump acts as a complement to cd o ports/151465 sylvio net-mgmt/net-snmp don't show some UDP related objects o ports/151453 [NEW PORT] sysutils/froxlor: PHP-based ISP Server Mana o kern/151449 bz [patch] IPsec SPD rule does not match GIF with IPv6 ad o kern/151444 [kerberos] Kerberos5 is broken in the base system from f kern/151441 bschmidt [iwi] iwi module not work properly using HP nc6220 o www/151438 bugmeister query-cgi use monospace font o www/151437 bugmeister query-cgi broken with base64 encoded mime email f ports/151431 ohauer Update to include ZFS module in sysutils/grub2-1.98 o ports/151427 wen math/FriCAS: fatal error encountered in SBCL pid 19170 s ports/151424 obrien [patch] make gettext support optionnal in editors/vim o ports/151414 portmgr Add 'work' when WRKDIRPREFIX is used. f kern/151409 yongari [e1000] Problem with Marvell driver, e1000phy.c f ports/151403 sunpoet New port: databases/keyspace Keyspace o bin/151400 [patch] ppp(8) new commands: iface name and iface desc f ports/151388 delphij [PATCH] mail/postfix-gps: OPTIONS added for other data s ports/151387 makc New port: audio/mscore MuseScore Score Typesetter o amd64/151385 amd64 [boot] Installation hangs on MacBook o bin/151384 uqs rs(1) truncates lines longer than 2048 bytes (BSIZE) o kern/151379 [libcrypto] libcryptopp.so/libcrypto++.so and Shared O o ports/151378 beat [PATCH] fix pkg-cofig file created by www/kompozer and o ports/151373 x11 Please upgrade x11-drivers/xf86-video-neomagic to 1.2. o ports/151371 New Port: audio/pithos GNOME Pandora player o docs/151367 doc [patch] Update for puc.4 man page o kern/151365 [puc] [patch] Two new Moxa puc(4) devices f ports/151347 port net-mgmt/rancid doesn't work corretly with SVN o docs/151336 scsi Missing documentation of scsi_ and ata_ functions in c o kern/151330 fs [zfs] will unshare all zfs filesystem after execute a o kern/151326 fs [nfs] nfs exports fail if netgroups contain duplicate p bin/151321 jh mount_nfs(8) won't recognize readahead o ports/151318 pgollucci [repocopy][new port] x11-wm/stumpwm: rename to x11-wm/ o stand/151316 standards lib/libc/string/strerror.c r1.9 breaks POSIX s ports/151312 autotools [PATCH]devel/gmake: update to 3.82 (exp-run probably d o ports/151306 stas devel/libdispatch fails to install static version of t o kern/151305 [patch] - CTASSERT(sizeof(struct jmvrec) == JREC_SIZE) o ports/151300 Add LaTeX Project Public Licenses to Mk/bsd.licenses.d o ports/151299 audio/mt-daapd: portlint(1) fixes and more f ports/151296 [patch] ports/sysutils/fusefs-kmod build fails: MNT_NF o ports/151294 skv cannot build lang/perl5.10 o ports/151285 acm [PATCH] net/twinkle: hidden dependency on kde o ports/151280 matusita emulators/vmware-guestd6 port install error in /usr/po o bin/151264 syrinx bsnmpd(1): pf counters aren't updated on some SNMP que p bin/151252 jh [geom] libgeom(3) manual page contains broken link in o kern/151251 fs [ufs] Can not create files on filesystem with heavy us o ports/151237 [NEW PORT] x11-toolkits/gob2: GOB (GOB2 anyway) is a p o bin/151229 sysinstall sysinstall(8) - shift-tab doesn't work as expected o kern/151226 fs [zfs] can't delete zfs snapshot o ports/151222 fjoe [REPOCOPY] x11-toolkits/wxgtk28* -> x11-toolkits/wxgtk o ports/151203 multimedia Fixed syntax in libfame.m4 file in multimedia/libfame o kern/151198 adrian [ath] ath/5416 fails bgscan with "ath0: ath_chan_set: o bin/151187 pkg_add(1): allow different pkgdep location o bin/151186 [patch] routed(8) turns RIP off if just one network ca o ports/151182 des Port sysutils/munin-node creates wrong newsyslog.conf o ports/151181 bf [patch] remove dependency of security/tor on security/ o ports/151173 timur [PATCH] net/samba34: Fix rc script to return correct " f conf/151169 yongari [msk] Installation of FBSD 8.0 has cleared the MAC eth o bin/151168 pkg_add(1): pkg_add -K should preserve file metadata f ports/151154 audio/amarok-kde4 crashes on network activity if ports o misc/151141 [tools] [patch] include daily script in !MK_PKGTOOLS c o ports/151137 rnoland [patch] x11-wm/compiz compiz-manager o ports/151124 hrs net/openbgpd: OpenBGPD exists if an interface is remov o i386/151122 i386 [boot] BTX 1.02 crashes on boot f kern/151119 bz gif inet tunnel addresses are not hidded in jail o kern/151111 fs [zfs] vnodes leakage during zfs unmount o docs/151104 doc mksnap_ffs(8) should mention 20 snapshot limit on UFS f ports/151093 thierry [repocopy]: Dual version xapian related 1.0.x and 1.2. o kern/151091 [ahci] JMicron JMB363 unusable after S3 suspend/resume o www/151084 www A major Bulgarian ISP which uses FreeBSD o conf/151063 rc [rc.subr] Verify network link and packet flow before s o ports/151042 java [patch] java/openjdk6 Respect CC o bin/151036 [patch] Default snaplen of tcpdump(1) is not adequate o bin/151023 [patch] ping6(8) exits before all ICMPv6 echo replies o misc/151015 [patch] Add pfctl -P option to not perform service nam o ports/151005 New port: www/peraperaprv, a pure java twitter client o ports/150996 found cause of graphics/pecl-imagick segfaulting php5 o bin/150995 sysinstall sysinstall(8): corruption of partition table o ports/150994 maho math/suitesparse can not compile with atlas o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o usb/150989 usb [patch] Add Netgear WG111V2_2 support to upgt(4) o bin/150988 adduser(8) problem of directory mode a ports/150980 dinoex print/cups-base: I can not create package for cups-bas s ports/150968 kuriyama textproc/p5-XML-Parser fails test o ports/150964 lwhsu [PATCH] databases/py-migrate: update to 0.6 o threa/150959 threads [libc] Stub pthread_once in libc should call _libc_onc f ports/150940 olgeni [PATCH] lang/clojure-mode.el: update to 1.7.1 o ports/150934 girgen [PATCH] databases/postgresql-jdbc: fix build with java o kern/150920 net [ixgbe][igb] Panic when packets are dropped with heade o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl o ports/150903 bsam databases/dbf: options --sql / --csv does produce crap o usb/150892 usb [zyd] Whenever network contacted in any shape, way or f ports/150891 dinoex print/cups-base: slightly more worked-out example devd o bin/150890 kientzle [patch] bsdtar(1) does not always dive into subdirecto f ports/150883 Ports games/openastromenace won't compile on 64 bit o ports/150882 acm Ports games/el won't compile on 64 bit o ports/150878 girgen databases/postgresql90-contrib not compilable o docs/150877 doc ambiguity in newsyslog(8) man page about zfs with comp o kern/150858 geom [geom] [geom_label] [patch] glabel(8) is not compatibl o ports/150848 stas sysutils/devcpu-data: cpucontrol microcode update lead o kern/150798 ipfw [ipfw] ipfw2 fwd rule matches packets but does not do p kern/150796 mckusick [panic] [suj] [ufs] [softupdates] Panic on portbuild o ports/150794 glewis tomcat7's rc.d script wont shutdown tomcat with java/o f ports/150783 mail/qpopper: fails to configure ocasionally o ports/150781 glebius graphics/gdal: build fail o bin/150772 [patch] csup(1) should include limits.h instead of sys o bin/150771 [patch] csup(1) GNUmakefile missing o ports/150768 pgollucci Update xfce4-xkb-plugin from 0.4.3 to 0.5.3.3 o i386/150766 i386 Dell Vostro 3700 siffle sous FreeBSD / Dell Vostro 370 o conf/150752 rc [rc.subr] [patch] be not needed to eval $_pidcmd on re o ports/150739 stas multimedia/xmms does not work on sparc64 o docs/150736 doc [handbook] ipfw docs: rule number is optional, not man o bin/150723 syrinx bsnmpd(1): add knowledge of "ada" disks (ATA via SCSI o ports/150691 portmgr [patch] Templates/BSD.local.dist: add conf.{avail,d} f f ports/150682 ashish Update Port: databases/couchdb o bin/150648 [patch] rshd(8): Incorrect determination of length of o bin/150642 net netstat(1) doesn't print anything for SCTP sockets o kern/150640 [panic] Fatal Trap 9 - 8.1-release o ports/150633 x11 x11-servers/xorg-server: KVM switching causing X serve o ports/150631 gecko www/firefox 3.6.9 does not build if you have previousl o kern/150628 [acd] [ata] burncd(1) can't write to optical drive o kern/150626 geom [geom] [gjournal] gjournal(8) destroys label s bin/150620 [request] Please include utility programs for ncurses o www/150619 www [patch] ru/features.sgml: MFen 1.20 -> 1.34 o conf/150599 jail [patch] /etc/rc.d/jail does not set jailname. o ports/150595 sylvio audio/mhwaveedit: does not build o ports/150594 x11 [patch] graphics/dri: add support for ATI Radeon HD 42 o misc/150590 Screen goes blank when PC-BSD graphic install is loade o arm/150581 arm [irq] Unknown error generates IRQ address decoding err o kern/150557 net [igb] igb0: Watchdog timeout -- resetting o kern/150555 geom [geom] gjournal unusable on GPT partitions o www/150553 www [patch] update Russian "FreeBSD Community" page o ports/150547 dinoex Fix bsd.port.mk to allow for INSTALL_AS_USER when BINO p usb/150546 usb libusb(3) libusb_control_transfer() prototype is incor o ports/150542 bapt [new port]: sysutils/createrepo o ports/150541 [new port] sysutils/yum - Installer/updater for rpm o www/150531 www [patch] ru/community/irc.sgml: MFen 1.2 -> 1.4 o bin/150530 [patch] syslogd(8) doesn't support ipv6 addrs as desti o www/150522 www [patch] ru/community/mailinglists.sgml: MFen 1.4 -> 1. o kern/150516 jfv [em] e1000 receive queue handling problem s kern/150514 [drm] [request] Reorganize DRM Directory to Support Dr o kern/150503 fs [zfs] ZFS disks are UNAVAIL and corrupted after reboot o ports/150502 multimedia multimedia/gpac-libgpac 0.4.5_4,1 fails to compile on o kern/150501 fs [zfs] ZFS vdev failure vdev.bad_label on amd64 o ports/150493 Update for: security/openssh-portable port from 5.2p1 p docs/150490 gjb [patch] newfs man page clarification o ports/150489 [NEW PORT] devel/d-feet: D-Feet is a D-Bus debugger wr f i386/150486 i386 Installation Problem o kern/150481 qingli IFA_RTSELF: freebsd 8.1 - ifdown - ifup - loopback rou o conf/150474 rc [patch] rc.d/accounting: Add ability to set location o o ports/150431 girgen DTrace support for databases/postgresql84-server o ports/150425 www/squid31: rc.d/squid's squid_fib setting ineffectiv o usb/150401 usb [umass] [usb8] Errors from USB drives mixed between UF o kern/150390 fs [zfs] zfs deadlock when arcmsr reports drive faulted p bin/150384 jilles [patch] tr(1): tr mis-parses '[=]=]' equivalence class o kern/150367 [isp] Possible QLogic fiber channel regression in 8.1- o docs/150365 doc [make.conf] [patch] remove BDECFLAGS from make.conf(5) o ports/150363 kde [bsd.cmake.mk] specify default CMAKE_BUILD_TYPE o ports/150361 [patch] provide script to bind with nautilus for multi o kern/150336 fs [nfs] mountd/nfsd became confused; refused to reload n o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o ports/150316 new port: net/neatx o kern/150315 [ata] sizeof(union ccb) changed between 7.x and 8.x a ports/150310 dinoex print/cups-base: SSL support missing o ports/150295 nivit audio/sonata fails in __init__ at mpd.MPDClient() : o o ports/150294 news/hellanzb fails to run due to string compare bug o ports/150290 x11/xterm -C no longer grabs console o ports/150287 shaun [patch] Segfault: games/spider crashes after 51 moves o kern/150284 multimedia [snd_hda] No gain with Audio o ports/150266 New port: x11/tabbed Simple generic tabbed fronted to o ports/150265 doceng [patch] print/ghostscript8 disable bogus port conflict a bin/150262 [patch] truss(1) -f doesn't follow descendants of the f kern/150257 yongari [msk] watchdog timeout o docs/150255 doc dtrace description should mention makeoptions DEBUG=-g o ports/150252 miwi [NEW PORT] sysutils/gigolo : frontend to connect/mount o kern/150251 net [patch] [ixgbe] Late cable insertion broken o kern/150249 net [ixgbe] Media type detection broken o kern/150247 net [patch] [ixgbe] Version in -current won't build on 7.x o docs/150244 doc [patch] DRIVER_MODULE(9): MULTI_DRIVER_MODULE is only f ports/150241 bapt sysutils/moosefs-chunkserver: small typo in pkg-instal o ports/150240 xride audio/baudline : version upgrade s bin/150237 sysinstall sysinstall(8): Suggestion: installer should suggest th f ports/150235 sysutils/smartmontools build system bug o bin/150229 cperciva [PATCH] update man page of freebsd-update(8) o conf/150228 [patch] periodic(8): fix daily/800.scrub-zfs errors wi o bin/150224 net ppp(8) does not reassign static IP after kill -KILL co o ports/150223 x11 [patch] x11-drivers/xorg-drivers/Makefile refers nonex o docs/150219 doc zfs(8) manual page misses jail/unjail s ports/150208 [new port] databases/jasperserver: Open Source Java Re o kern/150207 fs zpool(1): zpool import -d /dev tries to open weird dev o kern/150206 [libc] [patch] nmount(2): can't switch root partition o conf/150195 [patch] [rc.d] startup script for pfstatd(8) o ports/150194 There is no startup script for databases/cassandra o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf a kern/150186 emulation [parallels] [panic] Parallels Desktop: CDROM disconnec f ports/150184 python cannot install ports/math/py-numpy o kern/150176 [libpcap] [patch] pcap(3): pcap_read_bpf() p->cc can g o ports/150174 maho math/blas: Allow Profiled Libraries to be disabled. o amd64/150170 amd64 [patch] [amd64] [headers] SIG_ATOMIC_MIN/SIG_ATOMIC_MA f ports/150169 www/havp: Assertion failed: file llvm/lib/System/Mutex o ports/150155 x11 x11/xorg hangs after xrandr(1) usage o bin/150151 des [patch] fix quota(1) output [regression] o kern/150148 adrian [ath] Atheros 5424/2424 - AR2425 stopped working with o ports/150142 java Not installed java/openjdk6 on file system zfs /usr/lo p kern/150138 davidxu [patch] signal sent to stopped, traced process not imm o docs/150124 doc Request for update of "building the kernel" section of f ports/150117 dinoex www/opera: After closing Opera offers to send bug repo o kern/150095 mav [patch] Account for reserved itimers which shouldn't c o stand/150093 standards C++ std::locale support is broken o ports/150086 [NEW PORT] net-im/tkabber-plugins-devel: External Plug f kern/150052 bschmidt [wi] wi(4) driver does not work with wlan(4) driver fo o ports/150047 net/ipv6socket_scrub: Makefile contains incorrect URL o ports/150046 bf graphics/exact-image: exact-image-0.8.1 does not compi f ports/150040 shaun [patch] security/fwtk: plug-gw does not run on 64bit a o kern/150036 [rpc] Sun RPC license has less restrictions now. p docs/150030 gjb [patch] dbopen(3) manpage not updated with r190497 cha f kern/150023 gavin [rl] Adding only vlan interfaces (no native IP) doesn' a stand/149980 standards [libc] [patch] negative value integer to nanosleep(2) p docs/149979 gjb [PATCH] Add RETURN VALUES section to devclass_get_maxu p docs/149978 gjb [PATCH] Address missing EINVAL requirement for cpu_set o ports/149973 mva [REPOCOPY] graphics/blender -> graphics/blender-devel o bin/149972 pw(8): usermod -u should error f kern/149969 net [wlan] [ral] ralink rt2661 fails to maintain connectio f ports/149963 chinese/ibus-chewing: Refine FETCH_ARGS o kern/149960 [headers] syntax error /usr/include/machine/endian.h o docs/149950 doc [patch] glob(3)'s reference to regex(3) is spelled inc f ports/149949 mbr emulators/open-vm-tools: Problems with DHCP on startup f kern/149948 [panic] when starting net/ladvd o ports/149947 [NEW PORT] devel/smartCVS, a powerful graphical CVS cl o kern/149943 multimedia [pcm]: CS4236 audio problem a ports/149941 ohauer [patch] net-mgmt/nagios-check_bacula-5.0.2 library con o kern/149937 net [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/149936 [libmagic] [patch] wrong handling of decompression uti p usb/149934 usb [patch] [usb8] Transcend JetFlash V85 poor performance o ports/149928 New port: textproc/iText iText, a JAVA-PDF library by o kern/149927 brucec [cam] hard drive not stopped before removing power dur o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP o ports/149902 itetcu [PATCH] mail/dspam: important cleanup o usb/149900 usb [uftdi] [patch] FreeBSD 8.1 uftdi patch to support usb s kern/149898 [ata] [request] add LSI AOC-USAS2-L8e support o ports/149892 [NEW PORT] textproc/weka-devel: Data Mining Software i o ports/149889 mm multimedia/ffmpeg-devel build errors o conf/149867 rc [PATCH] rc.d script to manage multiple FIBS (kern opti f ports/149864 amdmi3 New Port: multimedia/imagination o kern/149857 [kqueue] kqueue not reporting EOF under certain circum o ports/149851 jsa multimedia/vlc and mplayer - race conditions? f ports/149849 makc New Port : print/scribus-devel - Scribus is a desktop o ports/149846 kwm graphics/gimp-gap: outdated (not maintained) port o docs/149845 doc unify spelling of blocksize, block-size and block size o ports/149837 portmgr bsd.licenses.mk: a bit better way of optional license o conf/149831 rc [PATCH] add support to /etc/rc.d/jail for delegating Z o bin/149828 kientzle tar(1) poor (empty) error message when extracting trun o ports/149817 ruby ports-mgmt/portupgrade: portinstall -p option doesn't o bin/149806 [patch] OpenBSM auditd(8) fails to expire trails if ho f kern/149803 vwe [patch] loader: set vfs.mount.rootfrom using label o kern/149800 [fdc] [patch] "driver bug: Unable to set devclass (dev o kern/149797 [kernel] [panic] mutex sleepq chain not owned at /usr/ o kern/149786 net [bwn] bwn on Dell Inspiron 1150: connections stall p bin/149780 jh [patch] setfacl(1) doesn't return non-zero on error a ports/149771 perl mail/p5-Mail-SpamAssassin port no longer installs bina o ports/149765 multimedia [PATCH] audio/faac: improve build patches p usb/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem o kern/149762 geom volume labels with rogue characters o kern/149757 yongari [msk] msk0: phy write timeout o ports/149743 x11 x11/xorg: garbled window since Xorg-7.5 o gnu/149712 [build] -fno-builtin in CFLAGS will cause gcc(1) to se o ports/149691 shaun new port: japanese/tegaki-zinnia-japanese o ports/149690 shaun new port: japanese/tegaki-recognize o ports/149689 shaun new port: japanese/py-tegaki-gtk o ports/149688 shaun new port: japanese/py-tegaki o ports/149687 shaun new port: japanese/zinnia-tomoe o ports/149686 shaun new port: japanese/py-zinnia o ports/149685 shaun new port: japanese/zinnia o ports/149678 portmgr Mk/bsd.port.mk: add a sanity check for OPTIONS o usb/149675 usb [uftdi] [usb_serial] doesn't react to break properly s kern/149665 imura [PATCH] mount_smbfs the CP932 to UTF-8 mount as not. f kern/149655 [panic] Panic when installing FreeBSD-8.1-RELEASE-amd6 o i386/149647 i386 [panic] Dell Inspiron 530 (FX09) panic at boot with 8. o kern/149643 net [rum] device not sending proper beacon frames in ap mo o ports/149636 x11 x11/xorg: buffer overflow in pci_device_freebsd_read_r o misc/149633 bugmeister Problem with replaying to PR o kern/149609 net [panic] reboot after adding second default route o ports/149601 New port: games/gargoyle - a multiplatform interacti o kern/149591 [kernel] struct callout:c_flags should be volatile o kern/149587 [vm] Lockup on 8.1-RC2 system enabling vm.idlezero o kern/149586 [kernel] _callout_stop_safe prematurely unsets CALLOUT o kern/149580 mav [ata] [patch] When using an SIIG SATA card the error " o docs/149574 doc [patch] update mi_switch(9) man page o bin/149569 [patch] rtld(1): runtime linker unable to load needed o ports/149564 patch for various games/ adding appropriate LICENSEs t p docs/149549 brueffer [patch] MLINK choosethread.9 to runqueue.9 o kern/149539 net [ath] atheros ar9287 is not supported by ath_hal o ports/149538 sysutils/fusefs-ntfs panic on writte on 8.1 o ports/149537 x11 I have updated the x11/pixman port to release 0.18.2 o kern/149532 jfv [igb] igb/ixgb controllers panic on FreeBSD 8.1-RELEAS o usb/149528 usb [zyd] Wireless USB stick not detected - vendor id 0x08 o docs/149522 doc Russian network article: incorrect translation about n o kern/149516 net [ath] ath(4) hostap with fake MAC/BSSID results in sta o ports/149513 eclipse java/eclipse can not compile with 'WITH_TESTS=true' o misc/149510 [build] [patch] CFT: sys/conf/newvers.sh: Cleanup and f ports/149491 timur net/samba33: Samba fails with Asyncronous IO support ( o kern/149479 [panic] 8.1-RELEASE kernel panic p bin/149464 jh [libc] [rtld] dlclose(3) can access freed memory and c o www/149446 www [patch] improve misleading title of "report a bug" s ports/149427 kde building x11/kdebase3 fails in 8.1-PRERELEASE o ports/149420 ume security/cyrus-sasl2 fails to build GSSAPI, breaking p o bin/149412 secteam bdes(1) in CFB/OFB modes can't decrypt own output o ports/149411 clsung sysutils/fusefs-unionfs: writing to the net/samba* sha o bin/149409 kientzle `tar cf - | tar xf -' fails when hitting ^T (STATUS) [ p bin/149403 ed [patch] truss(1) hangs when user input is requested o kern/149373 net [realtek/atheros]: None of my network card working f i386/149371 vwe can not power system off o threa/149366 threads pthread_cleanup_pop never runs the configured routine o bin/149363 tcsh(1) cause situation when ssh connection closed s ports/149361 culot Update port: security/nettle o misc/149360 gavin [PATCH] update for tools/build/mk/OptionalObsoleteFile o ports/149348 New port: net/wowzamediaserver o kern/149323 [libc] Applications with large memory footprint failin o kern/149308 [ata] 8.1-RELEASE kernel panic on Windows 7 Virtual PC o kern/149307 net [ath] Doesn't work Atheros 9285 o kern/149306 net [alc] Doesn't work Atheros AR8131 PCIe Gigabit Etherne o arm/149288 arm mail/dovecot causes panic during configure on Sheevapl o usb/149283 usb [uftdi] avrdude unable to talk to Arduino board (via u f ports/149270 vanhu security/ipsec-tools is broken in CURRENT o kern/149266 [new driver] [patch] rpi(4) - Comtrol Infinity/Express o ports/149250 hrs japanese/FreeWnn-server: /etc/rc: WARNING: $wnn_enable o bin/149232 cperciva portsnap(8) does not generate INDEX-9 on FreeBSD 9-CUR o kern/149220 mjacob FreeBSD doesn't see raid disk LSI1078 (IBM x3850 m2 72 o kern/149219 [ciss] DL380 G6 P212 trouble o bin/149215 geom [panic] [geom_part] gpart(8): Delete linux's slice via o kern/149208 fs mksnap_ffs(8) hang/deadlock o kern/149201 [ata] DVD/CD Drive Error o ports/149186 timur net/samba34 builds broken binaries on Sheevaplug (ARM) o ports/149177 timur net/samba34: rc script gives wrong output format for r o kern/149173 fs [patch] [zfs] make OpenSolaris installa o kern/149168 emulation [linux] [patch] Linux sendmsg / recvmsg / etc fixes fo o ports/149167 python lang/python26 fails to build _ctypes on Sheevaplug (AR o usb/149162 usb [ural] ASUS WL-167g doesn't work in 8.1 (continue of 1 o bin/149152 gabor [patch] grep(1): BSD grep loops with EISDIR trying to o kern/149117 net [inet] [patch] in_pcbbind: redundant test o docs/149106 doc xfs.5: non-working mount example o kern/149086 net [multicast] Generic multicast join failure in 8.1 f conf/149059 dougb regression in /etc/rc.subr o docs/149051 doc [request] No document for clang or clang++ o conf/149050 jail [jail] rcorder ``nojail'' too coarse for Jail+VNET o docs/149047 doc [patch] tcsh(1) bears no mention of brace expansion in p kern/149041 olli [drm] [patch] DRM support for Radeon HD 4250 p docs/149033 pjd hastctl.8 manpage wrong o ports/149031 csjp Not work security/termlog o kern/149022 fs [hang] File system operations hangs with suspfs state o kern/149015 fs [zfs] [patch] misc fixes for ZFS code to build on Glib o kern/149014 fs [zfs] [patch] declarations in ZFS libraries/utilities o kern/149013 fs [zfs] [patch] make ZFS makefiles use the libraries fro a kern/149012 gavin [headers] [patch] please replace '#include 1.14 o ports/148783 portmgr [bsd.port.mk] [patch] add LATEST_LINK and CONFLICTS to o ports/148777 [New Port] sysutils/qjail: Utility to deploy large num a ports/148774 danfe x11/nvidia-driver: Being possible to get compiled on T o kern/148772 yongari [alc] alc0 does not send/receive packets if not plugge o kern/148748 [ataraid] Metadata Read Write Inconsistency o ports/148744 x11 Add more x11 applications to x11/xorg-apps o kern/148741 multimedia [sound] Headphones are deaf (do not work) on Lenovo Th o ports/148727 ashish editors/emacs: devel/cedet Autoloading failed to defin s usb/148702 usb [usb8] [request] IO DATA USB-RSAQ5 support on FreeBSD- p kern/148698 attilio [panic] Panic at boot due to integer overflow computin s ports/148695 portmgr [bsd.port.mk] [patch] Easier / automatic regression-te o kern/148689 ipfw [ipfw] antispoof wrongly triggers on link local IPv6 a 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/148680 doc [sysctl][patch] Document some sys/kern sysctls o kern/148676 [panic] kernel panic lockmgr: locking against myself o kern/148675 [ata] [panic] kernel panics - reboots o conf/148656 rc rc.firewall(8): {oip} and {iip} variables in rc.firewa o ports/148652 x11 x11-drivers/xf86-video-intel support for HM55 p kern/148646 des [linprocfs] [patch] Implementation of the "environ" fi o kern/148644 marcel [uart] [patch] vgetty play voice file fails with 8.0 R s ports/148637 portmgr [bsd.port.mk] Options are ignored for any port that de o i386/148624 i386 PERC H200 Controller on Dell R610 Not recognized o kern/148609 [libdialog] [patch] printing to a checklist window on o ports/148605 security/ipsec-tools rc.d/racoon startup script fails o ports/148591 x11 information note for x11-drivers/xf86-input-synaptics o ports/148585 skv textproc/docbook-xsl: docbook-xsl-1.75.2 fails to inst o kern/148581 [libc] fopen(3) fails with EMFILE if there are more th p kern/148580 gavin [sysctl][patch] Document some sys/kern sysctls o ports/148536 glewis [UPDATE] ports/java/jdk16 to JDK 6 Update 21 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 threa/148515 threads Memory / syslog strangeness in FreeBSD 8.x ( possible 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 o kern/148490 fs [zfs]: zpool attach - resilver bidirectionally, and re 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 p kern/148473 weongyo Infinite loop in broadcom43xx driver o bin/148471 fdisk(8) prompts with negative partition size [regress o ports/148454 games/freebsd-carddeck-kde4: freebsd's kde card deck d o ports/148444 x11 [hang] x11-drivers/xf86-video-intel: intel driver free o kern/148430 ipfw [ipfw] IPFW schedule delete broken. 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 ports/148398 [NEW PORT] net/omcmd: CLI utility for performing OMAPI o alpha/148392 ports Users of Alpha platform should stay with Dovecot 1.1.1 o kern/148368 fs [zfs] ZFS hanging forever on 8.1-PRERELEASE o kern/148367 [syscons] [patch] Add loader tunable to override SC_HI o kern/148361 [ata] [panic] Kernel Panic, With Faulty Drives o ports/148340 x11 x11-drivers/xf86-video-neomagic: unresolved symbol xf8 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 ports/148314 stas [PATCH] editors/slime: update to 20100622 and cleanup f ports/148311 danger www/uwsgi: webservers modules missing 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 bin/148296 fs [zfs] [loader] [patch] Very slow probe in /usr/src/sys 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 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/148234 pkg_install fails for some math/octave-forge ports o ports/148231 Remove math/octave-forge-spanish o ports/148230 Dependency list change for math/octave-forge 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 kern/148204 fs [nfs] UDP NFS causes overload o bin/148201 sysinstall sysinstall(8): core dump (Error 10) while trying to in s ports/148196 mm devel/binutils: ignores libmap.conf(5) or missing *@GL p usb/148189 remko [usbdevs] [usb8] [patch] provide descriptive string fo o kern/148179 [libc] Possible Memory Leak in getaddrinfo(3) o kern/148157 ipfw [ipfw] IPFW in kernel nat BUG found in FreeBSD 8.1-PRE o kern/148155 virtualization[vimage] Kernel panic with PF/IPFilter + VIMAGE kernel a bin/148150 obrien Poor file(1) performance o conf/148144 ipfw [patch] add ipfw_nat support for rc.firewall simple ty o kern/148138 fs [zfs] zfs raidz pool commands freeze o conf/148137 ipfw [ipfw] call order of natd and ipfw startup scripts o kern/148130 [syscons] Inappropriate ioctl for device o kern/148112 adrian [ath] Atheros 9285 cannot register with wifi AP (timeo o ports/148099 ashish editors/emacs22: patch available for emacs movemail vu o ports/148097 emulation [patch] suggested addition to linux_base-* packages to o ports/148096 emulation emulators/linux_base-* can not be built from ports on 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. p kern/148087 des [libfetch] [patch] Fetch doesn't supply proxy auth cre 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 bin/148053 brucec labeling o docs/148037 doc bge(4) does not list all devices in if_bge.c / if_bger o ports/148035 x11 [patch] x11/xdm Fix auth in case of ro /usr o ports/148029 x11 Unable to build graphics/libGL o ports/148027 amdmi3 New port: graphics/ramenhdr, node based video composit o kern/148018 [flowtable] flowtable crashes on ia64 o conf/148017 hrs [stf] [patch] rc script for stf does not honour create o ports/148006 stas Update of devel/ocaml-camomile to 0.7.3 s ports/148005 mm [patch] devel/binutils: add gold option o kern/148004 jfv [em] Inconsistent networking with em driver on FreeBSD o kern/147998 [nfs] [patch] NFS -mapall group permissions ignored wh o docs/147995 doc elf.5 man page has has missing reference p conf/147992 gavin [termcap] [patch] xterm-256color is a 8 colors termina o kern/147989 jfv [em] em Receive errors / CRC Errors / Alignment Errors f kern/147985 yongari [alc] alc network driver + tso ( + vlan ? ) does not w 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 a kern/147950 virtualization[vimage] [carp] VIMAGE + CARP = kernel crash o docs/147946 trhodes Something strange in the updating/upgrading section of o ports/147943 New port: net/radsecproxy Radsecproxy is a generic RAD o bin/147938 [patch] mt(8): ioctl sign-extension warnings from some o kern/147926 [hang] system freezes due to heavy io to the disks 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 o kern/147903 fs [zfs] [panic] Kernel panics on faulty zfs device o ports/147897 hrs net/openbgpd: Openbgp nexthop invalid after em0 resett o kern/147894 net [ipsec] IPv6-in-IPv4 does not work inside an ESP-only o bin/147887 [patch] Invalid extension type displayed with setkey(8 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 kern/147862 bschmidt [wpi] Possible bug in the wpi driver. Network Manager 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/147847 audio/zynaddsubfx mxml error when opening instruments o i386/147842 i386 [install] Installation Failure on Panasonic CF-Y5 o kern/147839 [libc] [patch] syscall(2) with wrong argument causing s ports/147829 Improved net/ucarp startup script: multiple VHID and F o kern/147824 yongari [msk]: watchdog timeouts & Tx descriptor error o ports/147806 apache [PATCH] www/apache20: httpd doesn't start with WITH_LD o kern/147793 emulation [vmware] [panic] cdrom handling, panic, possible race 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 kern/147756 [libc] open_socket_in: Protocol not supported - after o kern/147720 ipfw [ipfw] ipfw dynamic rules and fwd 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 kern/147704 scsi [mpt] sys/dev/mpt: new chip revision, partially unsupp o conf/147685 rc [rc.d] [patch] new feature for /etc/rc.d/fsck f kern/147684 yongari [nfe] nVidia MCP55 driver blocks IPMI LAN on load 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/147667 geom [gmirror] Booting with one component of a gmirror, the o kern/147664 geom [geom] [patch] Add the ability to create linux and fat o ports/147660 new port: net-im/pidgin-mra, Mail.ru Agent protocol pl 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 bin/147629 [patch] rup(1) problem 365 days period 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/147568 x11 [patch] powerpc64 support for x11-servers/xorg-server o kern/147560 fs [zfs] [boot] Booting 8.1-PRERELEASE raidz system take o kern/147558 [panic] sbdrops kernel panic o ports/147554 fluffy new ports: audio/linux-f10-[alsa|pulseaudio] f ports/147553 amdmi3 NEW port: graphics/VisualizationLibrary s 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 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 p misc/147479 core [patch] [calendar] Dan Moschuk has passed away o i386/147475 usb [install] FreeBSD 8.x does not install on ASUS K8N4-E o ports/147473 matusita emulators/vmware-guestd6 fails to install with ESX vmw 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 o conf/147444 rc [rc.d] [patch] /etc/rc.d/zfs stop not called on reboot o misc/147430 cperciva freebsd-update not updating /usr/src/UPDATING o kern/147420 fs [ufs] [panic] ufs_dirbad, nullfs, jail panic (corrupt 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 o kern/147338 System sees only half of the memory installed o ports/147318 x11 [Patch]graphics/libdrm:Fix the PLIST when define WITHO o ports/147310 sobomax net/ortp upgrade error o bin/147303 restore(8) uses uninitialized variables: tape.c dirs.c o ports/147291 python lang/python* doesn't compile nis.so when WITHOUT_NIS s s ports/147290 dinoex graphics/graphviz does not install properly o ports/147282 apache errors when starting www/apache22 after installation o o ports/147267 x11 PORT graphics/libglut should conflict with graphics/fr o ports/147242 ruby ports-mgmt/portupgrade incorrectly remove old port whe o misc/147239 network problem with system start o kern/147237 [psm] [patch] There is no IBM/Lenovo TrackPoint suppor o www/147234 bugmeister send-pr should accept application/x-shar from browsers f www/147233 bugmeister send-pr fails with HTTP error 417 in Opera 10.10 for L o kern/147227 [ata] SSD preformance issues o kern/147226 [libc] read(fd, buffer, len) returns -1 immediately, 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 x11-toolkits/open-motif: mwm seems to lose mouse event s ports/147169 bsd.ruby.mk: Adding GEM_ARGS o kern/147155 net [ip6] setfb not work with ipv6 o ports/147149 x11 x11/xorg: Xorg 7.5 hangs o kern/147127 [pccard] [patch] Fix panic in pccard.c o ports/147125 x11 x11-servers/xorg-vfbserver missing dependency f kern/147102 hrs [ip6] route6d deletes site-local routes o kern/147086 AHCI not being enabled on PC f kern/147082 [uart] Serial ports unusable [regression] o ports/147009 portmgr Mk/bsd.apache.mk: [patch] default to www/apache22 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 kern/146941 fs [zfs] [panic] Kernel Double Fault - Happens constantly o i386/146931 [install] FreeBSD 8.x Installation Failure o bin/146916 ed [patch] sh(1) uses dumb terminal in single-user mode o conf/146910 WITHOUT_INET6=Yes installs broken sendmail.cf file o conf/146908 edwin Afrikaans LC_TIME is incorrect (symlink to en_US) o ports/146895 [NEW PORT] emulators/linux-libusb -- linux(4)-friendly o kern/146889 [libc] [patch] Not having NET_RT_IFLIST #defined cause o ports/146880 [MAINTAINER] korean/ko.TeX : update to 0.2.0.20100511 o ports/146879 [MAINTAINER] korean/ko.TeX-fonts-extra : update to 0.2 p usb/146871 usb [usbdevs] [usb8] [patch] provide descriprive string fo o bin/146859 [patch] pkg_create(1): libpkg/msg.c removal and relate o bin/146857 [patch] pkg_create(8): fix missing error call in uname 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/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 gavin [kbdmap] [patch] Danish kbdmap for MacBook o kern/146792 net [flowtable] flowcleaner 100% cpu's core load o kern/146786 fs [zfs] zpool import hangs with checksum errors o ports/146781 nork broken port japanese/roundcube s bin/146774 [request] Import progress(1) utility from NetBSD base 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/146719 net [pf] [panic] PF or dumynet kernel panic o gnu/146716 gcc(1) gcc CPU detection error o i386/146715 acpi [acpi] Suspend works, resume not on a HP Probook 4510s o ports/146713 [patch] net-mgmt/argus-monitor update o kern/146708 fs [ufs] [panic] Kernel panic in softdep_disk_write_compl p usb/146693 thompsa [rum] Edimax EW‐7318USG not found in usbdevs or o misc/146687 [tools] [patch] Fix QA issues with tools/regression/ai o gnu/146682 [build] make clean fails to rm /usr/src/contrib/groff/ o kern/146661 [ata] damage files on ufs on ata pseudo raid when runn s 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 a ports/146640 jpaetzel misc/wanpipe: SIOC_WANPIPE_PIPEMON conflicts with GIFG o bin/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/146558 mm devel/binutils causes devel/libdispatch not to build ( o bin/146543 [patch] mount(8): securelevel does not affect mount (d o bin/146541 secteam [patch] add check option to md5(1) s ports/146540 kde kdegraphics-kuickshow-3.5.10_3 (graphics/kuickshow) do o kern/146534 net [icmp6] wrong source address in echo reply o kern/146528 fs [zfs] Severe memory leak in ZFS on i386 s ports/146526 Clean up www/mod_extract_forwarded o docs/146521 doc [handbook] Update IPv6 system handbook section to ment 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 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 i386/146446 i386 [install] FreeBSD 8.0 installation hangs at an early s o conf/146439 [patch] remove share/man/man1aout o kern/146436 [cpufreq] [panic] Panic when changing profile to econo o ports/146434 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 kern/146410 pjd [zfs] [patch] bad file copy performance from UFS to ZF f kern/146394 net [vlan] IP source address for outgoing connections 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/146364 x11 x11/xeyes does not run, and destroy X 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 f ports/146347 portmgr [patch] [bsd.port.mk] fix USE_DOS2UNIX info output 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 bin/146299 sysinstall sysinstall(8): cannot create slice o kern/146287 scsi [ciss] ciss(4) cannot see more than one SmartArray con o kern/146270 [ata] Divide by zero in ata driver o ports/146264 x11 [regression] x11-servers/xorg-server 1.7.5,1 xorg.conf o kern/146263 jfv [em] [panic] Panic in em(4) SIOCADDMULTI/em_set_multi/ 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 p kern/146250 bz [netinet] [patch] Races on interface alias removal o kern/146237 emulation [linux] Linux binaries not reading directories mounted o ports/146231 gecko [feature request] [patch] www/firefox: use port libs 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 kern/146190 vanhu [ipsec][patch] NAT traversal does not work in transpor o ports/146187 girgen databases/postgresql83-server doesn't compile when lin 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/146145 stas [patch] net-mgmt/flow-tools: add OPTIONS support s ports/146120 lme games/scummvm update to 1.1.0 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 kern/146082 net [ng_l2tp] a false invaliant check was performed in ng_ 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 s kern/145999 [request] optional offset for `mdconfig -t vnode' o amd64/145991 amd64 [NOTES] [patch] Add a requires line to /sys/amd64/conf f ports/145966 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 dougb add periodic script to back up /var/db/pkg 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 net [patch] add count option to netstat(1) f kern/145918 yongari [ae] After spontaneous ae0 "watchdog timeout", "stray o www/145917 www SVG at logo.html is broken o conf/145887 /usr/sbin/nologin should be in the default /etc/shells p kern/145865 [kernel] [panic] kernel memory leak with disabled devd 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 misc/145803 [boot] Boot Manager creates wrong MBR record f kern/145802 pjd [zfs] page fault under load 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 bin/145752 hexdump(1) - properly escaped " fails format check o kern/145750 daichi [unionfs] [hang] unionfs locks the machine o kern/145737 bz [netinet] [patch] Wrong UDP checksum not ignored as ex 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/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 ports/145658 x11 x11-servers/xephyr: XGetVisualInfo returns multiple XV o ports/145657 des shells/zsh: The completion for mount(8) doesn't includ 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 blackend [handbook] References to ttyd0 serial devices in handb o kern/145621 yongari [bge] [panic] bge watchdog timeout --resetting -> cras o kern/145613 [boot] booting from zfs root not working p kern/145600 TCP/ECN behaves different to CE/CWR than ns2 reference 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 kern/145528 [libedit] ftp(1) crashes in libedit when cancelling a o bin/145518 cperciva freebsd-update(8) does not change 'Release Name' optio 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 p 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 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 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 bin/145309 fs bsdlabel: Editing disk label invalidates the whole dev 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/145289 lme sysutils/syslog-ng: syslog-ng.conf.sample doesn't cove 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 f 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 f 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 usb/145165 usb [keyboard] [usb8] ukbd_set_leds_callback: error=USB_ER o kern/145158 [boot] 8.0-RELEASE DVD hang on boot p bin/145101 portmgr [patch] pkg_version(1) - remove hardcoded INDEX filena s bin/145100 portmgr [patch] pkg_add(1) - remove hardcoded versioning data o bin/145082 [patch] w(1), uptime(1) to use 24H time by default o i386/145079 i386 [boot] BTX halted on P3 server f 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 doc Remove all reference to floppy installs o docs/145066 doc Update for new uart dev names for serial port. f ports/145062 itetcu audio/liblastfm: doesn't respect PREFIX o kern/145058 [panic] Reproducable panic in 7.3 while building clama o kern/145042 geom [geom] System stops booting after printing message "GE o kern/145040 [mac] PANIC_REBOOT_WAIT_TIME not honored o bin/145027 brucec Remove all sysinstall(8) references to floppy and slip o kern/145026 [panic] [sdhci] Fatal trap 12 with sdhci and without a o kern/145024 emulation [linux] [panic] kernel crash by linux.ko module with n 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/145002 girgen databases/postgresql83-client : libpgport.a is missing a bin/145000 portmgr [patch] pkg_create(1) needs realpath(3) on -p argument o kern/144987 net [wpi] [panic] injecting packets with wlaninject using o docs/144986 gjb [pf] pf.conf example should show allowing icmp through o ports/144982 stas x11-toolkits/ocaml-lablgtk2 problem: ocamlfind won't f o kern/144962 geom [geom] panic when accessing GPT disk with a large numb 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 kern/144905 geom [geom][geom_part] panic in gpart_ctlreq when unpluggin o kern/144882 net MacBookPro =>4.1 does not connect to BSD in hostap wit o kern/144874 net [if_bridge] [patch] if_bridge frees mbuf after pfil ho s ports/144873 dinoex graphics/graphviz not updating (install error) p kern/144869 jfv [em] [panic] Instant kernel panic when adding NAT rule o ports/144861 timur Update to net/samba3 to add option to force usage of T o ports/144852 [patch] sysutils/ntfsprogs - improvements to mkntfs 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 [patch] audio/xmms2 : update to version 0.7 DrNo. o docs/144818 doc all mailinglist archives dated 19970101 contain traili 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 qingli [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 kern/144755 bschmidt [iwi] [panic] iwi panic when issuing /etc/rc.d/netif r o kern/144754 gssapi(3): cyradm crashes inside libgssapi.so f kern/144743 [psm] mouse positioning partialy working o bin/144736 devd(8) should consider spaces in event description wh 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 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 kern/144689 yongari [re] TCP transfer corruption using if_re o kern/144680 jfv [em] em(4) problem with dual-port adapter s ports/144663 kde multimedia/kmplayer begins freeze after the opening of 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 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 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 kern/144616 net [nat] [panic] ip_nat panic FreeBSD 7.2 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 o 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 o kern/144561 jfv [ixgbe] [patch] ixgbe driver errors f ports/144555 graphics/mesagl: glutMainLoop() crashes when using VBO o misc/144553 [nanobsd] NanoBSD's updatep* scripts fail with boot0cf 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 p docs/144534 gjb [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 s bin/144531 [patch] cp(1) show percentage complete o docs/144515 doc [handbook] Expand handbook Table of contents 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 a 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 misc/144442 [build] [patch] remove unnecessary group and passwd en o i386/144437 brucec [boot] BTX loader halts on HP DC5850 o kern/144416 fs [panic] Kernel panic on online filesystem optimization s kern/144415 fs [zfs] [panic] kernel panics on boot after zfs crash 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 usb/144387 usb [run] [panic] if_run panic f bin/144377 ed Display of diacritics is mildly broken in ee(1) o bin/144343 hrs The rtadvd cannot avoid the prefix that doesn't want t 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 f kern/144323 bschmidt [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 s bin/144313 vwe ld(1) can't find libs in /usr/local/lib but ldconfig(8 o kern/144311 bz [pf] [icmp] massive ICMP storm on lo0 occurs when usin o kern/144301 scsi [ciss] [hang] HP proliant server locks when using ciss a bin/144300 brucec [md] [patch] mdconfig(8): mdconfig -{d,l}n doesn't wor 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 bin/144278 sysinstall [install] Fixit from USB dont work o kern/144269 ipfw [ipfw] problem with ipfw tables o ports/144248 flo 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 [cam] xpt_rescan/XPT_SCAN_LUN should honor a wildcard o stand/144231 standards bind/connect/sendto too strict about sockaddr length a ports/144224 mono [PATCH] lang/mono Fix build with new GCC o conf/144213 rc [rc.d] [patch] Disappearing zvols on reboot f kern/144206 yongari Marvell Yukon NIC not working under FreeBSD o ports/144203 clsung textproc/refdb: network clients loop indefinitely when p kern/144194 netchild [linux] [patch] linuxulator: 2 exec bug fixes o kern/144187 ipfw [ipfw] deadlock using multiple ipfw nat and multiple l 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 o bin/144109 hostapd(8) uses the MAC of the wireless interface, but 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 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 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 o ports/144010 apache devel/apr1 tries to use SYSVIPC even in jails o i386/144005 [hang] System freezes a kern/144000 andre [tcp] setting TCP_MAXSEG by setsockopt() does not seem 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 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] textproc/linux-f10-ibus-qt et al.: Linux v o kern/143874 net [wpi] Wireless 3945ABG error. wpi0 could not allocate o kern/143868 net [ath] [patch] [request] allow Atheros watchdog timeout 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 kern/143825 fs [nfs] [panic] Kernel panic on NFS client s kern/143808 virtualization[pf] pf does not work inside jail 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 a usb/143790 usb [boot] [cam] 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 qingli [route] [patch] ECMP Phase 1 fixes for FreeBSD 7.2 s bin/143699 [patch] extend brandelf's OS knowledge o bin/143698 portmgr pkg_add(1) probably behaving incorrectly s 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 f kern/143595 bschmidt [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 kern/143573 jfv [em] em(4) NIC crashes intermittently o bin/143572 fs [zfs] zpool(1): [patch] The verbose output from iostat o bin/143570 ed [patch] stock ftpd(8) does not handle "filesize" limit o bin/143568 secteam 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 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 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 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 o bin/143389 [2tb] [patch] fdisk(8) cannot handle above 1TB under i 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 bin/143362 awk(1) incorrect matching p stand/143358 das [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/143340 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/143324 [panic] vm_fault: fault on nofault entry, addr: c10a50 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 usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system o kern/143285 jfv [em] [regression] jumbo frames broken in 8.0 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 kern/143212 fs [nfs] NFSv4 client strange work ... o kern/143208 net [ipsec] [gif] IPSec over gif interface not working p 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 kern/143126 [ata] Data loss on read timeout 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 f kern/143074 bschmidt [wi]: wi driver triggers panic o kern/143073 [patch][panic] unp_gc panic (race with uipc_detach) f 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 a docs/143041 blackend [handbook] [patch] doc/en__US.ISO8859-1 refers to slip o kern/143040 [sysctl] sysctl -a hangs, as a side effect it breaks 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 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 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 p docs/142938 wkoszek [kld] share/examples: fix warnings 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 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/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 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] [geom_part] gpart(8) should recognize NAND m o kern/142781 [lor] New LOR: process lock / system map o kern/142774 net Problem with outgoing connections on interface with mu o kern/142772 net [libc] lla_lookup: new lle malloc failed o kern/142766 bschmidt [ipw] [regression] ipw(4) with Intel PRO/wireless 2100 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 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 o 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/142521 pb multimedia/kino fails to build on 8.0-amd64 with FFMPE o kern/142518 jfv [em] [lagg] Problem on 8.0-STABLE with em and lagg 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 o conf/142434 rc [patch] Add cpuset(1) support to rc.subr(8) o i386/142421 i386 [ata] optical drives not found o kern/142401 fs [ntfs] [patch] Minor updates to NTFS from NetBSD o kern/142390 [keyboard] 30th console switch hangs computer complete p docs/142367 roam [patch] wlan(4) does not document requirement for kern 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 usb/142229 usb [ums] [usb8] [hang] connecting a USB mouse to a Dell P o kern/142198 simon SSLv3 failure with irc/xchat on FreeBSD 8.0 p kern/142197 [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 [patch] ld(1): ldd(1) not mentioned in ld(1) manpage o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 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 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/142046 jpaetzel net/isc-dhcp31-server: isc-dhcpd cannot write to lease o kern/142019 jfv [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) o kern/141934 scsi [cam] [patch] add support for SEAGATE DAT Scopion 130 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 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 jfv [em] [vlan] Intel txcsum and assigned vlan invoke wron o kern/141841 [ata] Controller ST-Lab A-173 (Sil3512) lost the HDD d 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 usb/141777 usb [usb8] [usbdevs] [rum] [patch] Support usbdevs / rum(4 f ports/141762 danfe net-p2p/linuxdcpp segmentation fault f kern/141756 gavin [mmc] MMC card attached to blocks keybo 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) a kern/141696 virtualization[rum] [panic] rum(4)+ vimage = kernel panic o kern/141682 [libc] [patch] Faster version of strncpy(3) f 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 o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o kern/141632 ed [libteken] vidcontrol -T cons25 doesn't work with 'mod 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 p kern/141439 netchild [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 s bin/141340 netstat(1): wrong netstat -w 1 output 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 andre Network Performance has decreased by 30% [regression] f usb/141313 thompsa [usb8] nvidia USB 2.0 controller - stops copying on US p 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 jfv [em] hangs down/up intel nic during creating vlan 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 p docs/141245 blackend [handbook][patch] Chapter 31.3 Wireless Networking: Up p kern/141235 ae [geom_part] 8.0 no longer provides /dev entries for al a 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 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 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 ports/141103 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 o docs/141032 doc 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 [usb8] Encrypted root, geli password at boot; enter ke o kern/141010 fs [zfs] "zfs scrub" fails when backed by files in UFS2 o bin/140972 sysintall(8): 8.0-RELEASE-i386-memstick Fixit broken - o ports/140968 python 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 simon [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 a docs/140918 blackend [handbook] update 8.0 handbook about serial port /dev 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 p usb/140883 yongari [axe] [usb8] USB gigabit ethernet hangs after short pe o ports/140882 lev devel/py-subversion: subversion-1.6.6_1 build error wi o ports/140880 ruby ports-mgmt/portupgrade: portversion confused with ezm3 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 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 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 o kern/140778 jfv [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 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 jfv [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 a 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 jfv [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 o 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 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 andre [netinet] [patch] implement Lost Retransmission Detect o bin/140595 brucec [request] sysinstall(8): Replace "Country Selection" w o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja p kern/140590 bluetooth [bluetooth] ng_ubt(4) ng_l2cap_process_cmd_rej warning o docs/140583 hrs ports/print/acroread9 - handbook and port fail to ment s www/140580 www svnweb file logs are useless p kern/140567 adrian [ath] [patch] ath is not worked on my notebook PC o ports/140557 shaun ports shells/44bsd-csh ESC file completion and ^D (vie o ports/140542 edwin sysutils/isc-cron should be compatible with cron from o 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 p docs/140495 gjb [patch] /etc/rc.conf.d is not documented in rc.conf(5) o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d 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 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 arundel ls(1), section STANDARD: the -A is exception from POSI o kern/140429 [vfs] [panic] Fatal trap 12: page fault while in kerne o kern/140416 [mfi] mfi driver stuck in timeout o www/140378 shaun 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 jfv [em] em0: watchdog timeout when communicating to windo p usb/140325 thompsa [libusb] [usb8] Missing/incorrect initialisation and m a bin/140309 [patch] bad syntax causes 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 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 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 o 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 sysinstall(8): Installation boot sequence freezes o bin/140143 [patch] [rtld] dlopen(3) doesn't promote RTLD_GLOBAL f 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 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 yongari [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 i386/139999 i386 [panic] random freeze and crash o amd64/139998 amd64 [panic][net] 7.2 amd64 panic in rtrequest1_fib 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 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 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 o 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 p bin/139651 fs [nfs] mount(8): read-only remount of NFS volume does n o amd64/139614 avg [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 o kern/139581 ipfw [ipfw] "ipfw pipe" not limiting bandwidth 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 kern/139549 firewire [firewire] reconnecting a firewire disk does not cause f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks p bin/139492 portmgr pkg_install(1) - overlapping data buffer in call to sn o ports/139440 [panic] 8.0 RC1 panics on writing large files to sysut o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE 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 bin/139346 net [patch] arp(8) add option to remove static entries lis o docs/139336 doc [request] ZFS documentation suggestion o ports/139321 clsung security/snort 2.8.4.1_1 not compiling - dlsym no mess a bin/139314 [patch] install(1): install -d reports success on fail 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 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 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 yongari [fwip] [panic] 8.0-RC1 panics if using IP over firewir o ports/139148 pb multimedia/dvdauthor: progress estimation bug in dvdun 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] s docs/139095 manolis new article on creating an internal FreeBSD Update Ser o kern/139093 yongari [msk] msk FIFO rx overrun o kern/139088 acpi [acpi] ACPI Exception: AE_AML_INFINITE_LOOP error o kern/139080 [libc] [patch] closelog() can close negative file desc f kern/139079 bschmidt [wpi] Failure to attach wpi(4) o kern/139058 net [ipfilter] mbuf cluster leak on FreeBSD 7.2 o bin/139052 kan gcc(1): Stack protection breaks -fprofile-generate on 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 a gnu/138983 [binutils] System binutils too old for modern CPUs 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 f kern/138944 emulation [parallels] [regression] Parallels no longer works in o kern/138938 [psm] Synaptics Support dosn't work on Dell Latitude 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 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 f kern/138739 bschmidt [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 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 fs [panic] ffs_blkfree: freeing free block o kern/138660 jfv [igb] igb driver troubles in 8.0-BETA4 o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT 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 o ports/138602 audio/sphinxbase port update s usb/138570 usb [usb67] [panic] USB mass device panics current 7.2-STA o bin/138560 ifconfig(8): wpa_supplicant(8): Incorrect usage of str s bin/138547 vwe [request] improve dhcp behaviour with multiple network o kern/138537 [ata] [panic] Memory modified after free 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 bin/138423 sysinstall sysinstall(8): Installer (and sade) get wrong number o o kern/138421 fs [ufs] [patch] remove UFS label limitations 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 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 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 bin/138131 remko [patch] pstat(8): pstat -t coredumps when reading from 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 andre [tcp] tcp sockets stay in SYN_SENT even after receivin o amd64/138029 amd64 [panic][bpf] 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 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 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 p 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 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 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 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 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/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 ports/137378 Advisory locks fail with ports/security/cfs on FreeBSD o usb/137377 usb [usb8] request support for Huawei E180 o kern/137372 net [ral] FreeBSD doesn't support wireless interface from 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/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 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 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 kern/137181 [ata] Promise SATA controller SX4-M PDC20621 does not o kern/137165 [panic] panic: page fault o bin/137156 doc [patch] fix dump(8) cryptic output on reporting progre o kern/137145 andre [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 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 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] [patch] nanobsd error reporting and other re o kern/136888 [boot] boot0sio timeout much longer when DSR/CTS low o kern/136876 yongari [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 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 p 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 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 kern/136216 [headers] Missing prototype declaration for setfib() o o kern/136168 jfv [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/136120 [panic] free: address has not been allocated. 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 jfv 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 luigi [boot0] [patch] Make BootEasy compatible with NT Drive o kern/135898 geom [geom] Severe filesystem corruption - large files or l 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 o ports/135691 ruby ports-mgmt/portupgrade Wrong example in man page of pk o kern/135690 [panic] [ata] ufs_dirbad: /backuphd: bad dir ino 22259 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 f kern/135667 xen ufs filesystem corruption on XEN DomU system 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 o kern/135608 [patch] sysctl(8) should be able to handle byte values 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/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 [patch] pax(1) manual not mentioning chflags unawarene a ports/135503 wxs lang/python26 upgrade should get mailman too o kern/135502 net [periodic] Warning message raised by rtfree function i o kern/135497 [ata] JMicron JMB363 controller does not recognize PAT s 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 f www/135465 www FreeBSD cvsweb reporting inaccurate logs? o kern/135458 dchagin Missing errno translation in Linux getsockopt(,,SO_ERR 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/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 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 [mpt] Boot from install cd hangs on HP DL160 G5 with L o kern/135237 [nfs] sendfile(2) and SF_NODISKIO blocks on NFS files o kern/135222 jfv [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 f usb/135200 usb SAMSUNG i740 usb mass: Synchronize cache failed, statu o usb/135182 usb UMASS quirk - Olympus FE20 camera f 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 ports/135089 portmgr bsd.port.mk: Honor LOCALBASE for CFLAGS 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 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 bin/134975 ipfw [patch] ipfw(8) can't work with set in rule file. o kern/134956 jfv [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/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/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o kern/134745 [mmcsd] [panic] mmcsd.ko produce kernel panic o 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 s gnu/134604 [libgcc] [patch] Memory leak in gcclibs/libgomp o kern/134591 [ral] ral(4) driver frequently loses carrier (on RT256 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/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) o kern/134504 [vesa] thinkpad t60 with ati x1400 in vesa console mod f 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/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 yongari [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 andre [mbuf] comments for m_getm2 inconsistent with behaviou o kern/134344 top(1) shows user CPU value that's not equal to the to p 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 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 s kern/134231 vwe [sysctl] sysctl() 80% slower in 7.2 than 6.2 [regressi 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 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 jfv [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 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/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 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/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 ... 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 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/133595 net [panic] Kernel Panic at pcpu.h:195 s kern/133593 [ata] `atacontrol(8) spindown` won't affect disk until o kern/133572 net [ppp] [hang] incoming PPTP connection hangs the system o 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 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/133382 ppc [install] Installer gets signal 11 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 kern/133286 dd can fill system memory o kern/133265 jail [jail] is there a solution how to run nfs client in ja 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 yongari [msk] msk driver timeouts o kern/133174 fs [msdosfs] [patch] msdosfs must support utf-encoded int p kern/133170 brucec [md] [panic] panic when detaching swap-backed md(4) di s 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 o kern/132987 daichi [unionfs] unionfs_readdir has math problem o kern/132960 fs [ufs] [panic] panic:ffs_blkfree: freeing free frag o kern/132889 net [ndis] [panic] NDIS kernel crash on load BCM4321 AGN d 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 bin/132798 pjd [patch] ggatec(8): ggated/ggatec connection slowdown p 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/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 yongari [xl] 3c905-TX send DUP! in reply on ping (sometime) o kern/132664 [lor] vfs_mount.c / msdosfs_vfsops.c 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/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 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 kern/132397 fs reboot causes filesystem corruption (failure to sync b p docs/132392 trhodes [PATCH] remove leftovers of libkse from pthread.3 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 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 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 usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o usb/132066 usb [ukbd] Keyboard failure USB keyboard DELL 760 o usb/132036 usb [panic] page fault when connecting Olympus C740 camera 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 docs/131968 danger ipnat man page points to wrong directory o kern/131933 [uart] [patch] add support for Sony Ericsson GC89 EDGE o ports/131930 x11 [PATCH] x11-servers/xorg-server coredumps on exit o docs/131918 doc [patch] Fixes for the BPF(4) man page p usb/131912 gavin [uslcom] [patch] New devices using Silicon Labs chips 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 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 p kern/131718 [lor] kern_sysctl.c / acpi_video.c 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 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 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 andre [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] 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 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 security/gsasl does not link if krb5-1.6.3_5 is instal s amd64/131209 amd64 [panic] [bce] 7.1-STABLE amd64 crash - m0 NULL o bin/131143 [patch] amd(8) causes annoying "embedded slash in map p usb/131123 usb [patch] [usb67] re-add UQ_ASSUME_CM_OVER_DATA USB quir f bin/131113 jh 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 bschmidt [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/ p kern/131038 bz [ip6] [panic] kernel panic in ip6_forward o bin/131013 pw(8) does not update NIS group file o kern/130998 [dtrace] DTrace stops tracing because of struct thread 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 s bin/130954 vwe 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 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 kern/130794 [ata] hw.ata.ata_dma_limit without any effect o kern/130749 [libc] [patch] nscache.c/nscachedcli.c - return error o usb/130736 usb Page fault unplugging USB stick f 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 [libc] Serious bug in regular expression library (rege 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 f 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 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 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 [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El 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 usb/130076 vwe Panic when connecting USB camera o stand/130067 standards Wrong numeric limits in system headers? f kern/130059 net [panic] Leaking 50k mbufs/hour o bin/130056 [patch] have nfsstat(1) use strtonum instead of atoi 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 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 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 f usb/129766 usb [usb] [panic] plugging in usb modem HUAWEI E226 panics 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 f 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 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 [patch] fix misbehavior of periodic/daily/100.clean-di a docs/129684 trhodes gcache.8 man page missing 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 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 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 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/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 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 yongari [xl] [patch] xl0 watchdog timeout o kern/129316 [sio] [panic] kernel panic (pcpu.h:195; support.s:499) o amd64/129315 amd64 [em] amd64 motherboard: Intel DG965WH motherboard comp o usb/129311 usb [usb] [panic] Instant crash with an USB card reader o bin/129287 [request] powerd(8) should grow signals to switch betw o kern/129261 simokawa [firewire] Kernel crash on boot with disconnected fire 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 perl databases/p5-DBD-SQLite fails when SQLite is compil o kern/129197 net [panic] 7.0 IP stack related panic 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) 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/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 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 kib [libc] realpath(3) does not follow SUS specification f o threa/128922 threads threads hang with xorg running f kern/128917 bschmidt [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 s 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 jfv [igb] page fault under load with igb/LRO 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 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 f 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 p 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/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 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 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 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 gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi o kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets 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 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 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 p kern/127928 andre [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 s bin/127918 [ata] [request] [patch] ATA Security support for ataco 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 bin/127872 [libc] [patch] Rewinding on unionfs and Subversion f kern/127870 brucec [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 o kern/127787 fs [lor] [ufs] Three LORs: vfslock/devfs/vfslock, ufs/vfs s 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 scsi [ata] [patch] [request] - support write cache toggling o amd64/127640 amd64 [amd64] gcc(1) will not build shared libraries with -f o bin/127633 edwin [patch] Update top(1) to 3.8b1 o kern/127623 [headers] header definition for cftime is missing. p docs/127602 trhodes [patch] Incomplete information in nsswitch.conf(5) o kern/127553 [build] (errata) in kernel generic et al, device ural o usb/127543 gavin [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 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 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 geom [geom] [gjournal] [panic] Journal overflow on gmirrore p kern/127411 [ata] [panic] ata panics on bad block p docs/127406 usb [patch] update umodem man page: Sony Ericsson W810i 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/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 o bin/127276 [patch] ldd(1) invokes linux yes o bin/127270 fs fsck_msdosfs(8) may crash if BytesPerSec is zero o bin/127265 [patch] ddb(4): Adding the ddb command set from module 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 o kern/127109 [mpt]: FreeBSD fails to boot except in safe mode 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 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 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 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 jfv [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 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 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/126287 fs [ufs] [panic] Kernel panics while mounting an UFS file o kern/126232 emulation [linux] Linux ioctl TCGETS (0x5401) always fails o kern/126230 [libc] select(2) causing weird process cpu usage and l 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 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 p usb/125736 thompsa [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 net [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 net [ath] [panic] 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 i386/125516 gavin [install] 7.0-RELEASE install dies o usb/125510 usb [panic] repeated plug and unplug of USB mass storage d o kern/125501 net [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 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 net [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 f kern/125332 net [ath] [panic] crash under any non-tiny networking unde o docs/125329 keramida PACKAGEROOT should be documented in the Handbook 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] periodic(8) new file: /etc/periodic/security/8 p kern/125034 jh [devfs] [patch] devfs does not apply rules to newly cr p kern/125030 jh [devfs] [patch] Command 'devfs ruleset 0' causes panic o ports/125012 bf problems in math/ldouble for 128bit long double on i38 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 [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 adrian [ieee80211] net80211 discards power-save queue packets o conf/124747 rc [patch] savecore can't create dump from encrypted swap p kern/124744 avg [acpi] [patch] incorrect _BST result validation for To 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 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 f usb/124604 usb [ums] Microsoft combo wireless mouse doesn't work s misc/124541 cperciva portsnap: portsnap3.FreeBSD.org mirror on error for ov f i386/124516 xen [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 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 [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 apache security/heimdal: www/mod_auth_kerb doesn't compile ag o kern/124364 pf [pf] [panic] Kernel panic with pf + bridge 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 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 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), 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() fails to return ESTALE with rename()d fi 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 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 andre [tcp] breaking connection when client downloading file o usb/123611 usb [usb] BBB reset failed, STALLED from Imation/Mitsumi U o kern/123603 andre [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 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 kern/123520 scsi [ahd] unable to boot from net while using ahd p kern/123518 [patch] src/sys/kern.mk fails to disable -msse3 for am 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 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 kern/123358 [ipfw] ipfw add 1000 allow IP from any to any doesn't f kern/123347 yongari [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/123279 thompsa [lagg] order of operations dependancy in bringing up l 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 kern/123160 net [ip] Panic and reboot at sysctl kern.polling.enable=0 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 ports/123068 sysutils/bubblemon2 bubblemon-dockapp: error extractin f kern/123066 vanhu [ipsec] [panic] kernel trap with ipsec f kern/123045 net [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/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 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 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 jfv [em] interface watchdog timeouts and stops receiving p o threa/122923 threads 'nice' does not prevent background process from steali 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() s usb/122819 usb [usb67] [patch] Patch to provide dynamic additions to o usb/122813 usb [udbp] [request] udbp driver should be removed in favo 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 jfv [em] em0 taskq panic, tcp reassembly bug causes radix o kern/122749 [cardbus] cardbus problem on IBM Thinkpad T60P o kern/122738 geom [geom] gmirror list "losts consumers" after gmirror de o kern/122697 net [ath] Atheros card is not well supported 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 a kern/122597 thompsa [iwi] Intel iwi fails after 3 - 4 hours of use"firmwar o kern/122588 [lor] 4 Lock Order Reversal 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 f amd64/122468 amd64 Compile problems after upgrading to 7.0 o conf/122445 Unable to override EDITOR in /etc/profile due to defau o kern/122380 fs [ffs] ffs_valloc:dup alloc (Soekris 4801/7.0/USB Flash o kern/122373 jfv [em] unable to receive on em 82542 w/o promisc o ports/122333 pgollucci net/arping - patch to lookup for interface and src ip, 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 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 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 usb/122119 usb [umass] umass device causes creation of daX but not da o kern/122109 ipfw [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 o kern/122058 jfv [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 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 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 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 f kern/121872 bschmidt [wpi] driver fails to attach on a fujitsu-siemens s711 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 o usb/121708 usb [keyboard] nforce 650i mobo w/ usb keyboard infinite k 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 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 jfv [em] [regression] Intel em WOL fails after upgrade to o docs/121585 doc [handbook] Wrong multicast specification f 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/121556 kientzle [libarchive] ISO9660 decompression extension unsupport o kern/121555 net [panic] Fatal trap 12: current process = 12 (swi1: net 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 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 kern/121437 net [vlan] Routing to layer-2 address does not work on VLA o ports/121420 glewis java/jdk16: Java applet fails to find class under fire o ports/121416 glewis java/jdk15 can't build if BIN environment variable is 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 (corr o kern/121373 bz [ipsec] New IPSEC & IPV6 & AH+ESP Broken 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 jfv [em] [panic] Fatal trap 12: page fault while in kernel 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 swills 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 kern/121234 [vm] vm_fault: fault on nofault f usb/121232 usb [usb67] [panic] USB CardBus card removal causes reboot 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 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 p kern/121102 avg [acpi] [patch] update acpi_fujitsu for the P8010 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] [ffs] [snapshot] System crashes when manipulat o bin/120990 geom [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 f kern/120791 yongari [bge] The Broadcom BCM5703 A2 NIC is running a lot of f 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 gmirror(8) command set on livecd is minimal [regressio o usb/120572 usb [usb67] [umass] [patch] quirk to support ASUS P535 as 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/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 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 o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o bin/120114 [patch] reboot(8) - add features available in Solaris. f 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 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/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 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 o ports/119732 java java/linux-sun-jre16: linux-sun-jre16 plugin doesn't w 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 avg [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 p bin/119610 wkoszek [patch] config(8): config -x appends unwanted trailing o kern/119606 [sio] [patch] PCMCIA card not attached to driver 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 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 kern/119374 [ata] [regression] ATAPI or ATAPICAM bug (regression i o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose f 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 p docs/119338 trhodes gprof(1) refers to unmentioned option "-c" 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 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 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/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 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 f ports/118716 linimon security/heimdal - 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 gavin [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 o kern/118399 secteam [tap] local/remote kernel DoS through TAP device 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 [ufs] mv(1): moving a directory changes its mtime o bin/118248 gavin newsyslog(8) does not obey -s (nosignal) flag s kern/118230 acm [linux] 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 x11/xterm v229 mishandles combining characters 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 bin/118114 [patch] update manctl(8) 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 kern/118005 andre [tcp] 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 fs [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 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 f 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 f kern/117607 [amd64] dev.cpu.0.freq not showing up any longer on am o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant 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 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 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 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 jfv [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 p 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/116853 yongari [msk] msk watchdog timeout f i386/116844 i386 [boot] [hang] cannot boot from cd when using Dell Vost 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 p usb/116699 usb [usb] [usb67] USB HID devices do not initialize at sys 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 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 shaun 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 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 a kern/116335 andre [tcp] Excessive TCP window updates s bin/116302 [ataraid] atacontrol(8) reports wrong stripe for intel 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 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 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 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 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/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 kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o kern/115526 [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 threa/115211 threads pthread_atfork misbehaves in initial thread s kern/115202 [request] memory error diagnostic 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 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 standards /etc/rc.subr: line 511: omits a quotation mark: "force f kern/114631 yongari [msk] "Tx descriptor error" with Marvell Yukon 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 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 p kern/114237 csjp [lor] kernel lock 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 o kern/114095 pf [carp] carp+pf delay with high state limit o bin/114082 [make.conf] [patch] default CFLAGS have a blank at the 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 p kern/114057 jh [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 o conf/113915 rc [patch] ndis wireless driver fails to associate when i p conf/113913 olli [patch] [requst] new file /etc/periodic/daily/490.stat o bin/113912 tunefs(8): silent failure setting glabel on boot parti f kern/113895 yongari [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 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) s 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 s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las 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 p 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 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' 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 s 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] [amd64] gcc(1): "gcc -m32" attempts to link ag 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 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 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 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 s bin/111024 [request] [patch] [ata] atacontrol(8): support for sta 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. f ports/110826 dinoex port graphics/tiff: tiff2pdf tints images with wrong c f kern/110720 kmacy [net] [patch] [request] support for interface descript 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 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 f kern/110140 bschmidt [ipw] ipw fails under load 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 p 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 f 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 [shutdown] CPU hits 100% when issuing the halt command o kern/109762 [hang] deadlock in g_down -> ahd_action -> contigmallo o ports/109745 portmgr 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 f kern/109733 yongari [bge] bge link state issues [regression] p 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 f ports/109501 rea [PATCH] add some configurable vars to mail/exim o bin/109478 [libc] [patch] adopt reentrant syslog functions from O 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/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] [iconv] mount_msdosfs: msdosfs_iconv: Operat 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 o kern/108924 [ar] Panics when Intel MatrixRAID RAID1 is degraded o bin/108895 net pppd(8): PPPoE dead connections on 6.2 [regression] 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/108488 acpi [acpi] ACPI-1304: *** Error: Method execution failed 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/108379 [ata] Secondary SATA drive not detected by FreeBSD 6.2 o kern/108361 [lpt] lpt0: device busy with HP 710c parallel printer 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 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/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 [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 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 f kern/107342 [dri] Radeon dri breaks system f www/107291 murray Keyboard accessibility sabotaged by www/share/sgml/hea p kern/107285 [panic] freeze and reboot by mounting CDROM volume twi f kern/107279 net [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 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 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++ :: 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 docs/106135 doc [request] articles/vinum needs to be updated o kern/106107 fs [ufs] left-over fsck_snapshot after unfinished backgro 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 [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 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/105368 [geli] geli passphrase prompt malfunctioning when moun o usb/105361 usb [usb67] [panic] Kernel panic during unmounting mass st f 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 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 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 f kern/104862 yongari [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/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/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 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 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 p bin/104092 keramida [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 f 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 bin/103712 amd(8): Automounter is apparently not passing flags to 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 s kern/103603 6.1 install-boot from floppies fails s kern/103578 [ums] ums does not recognize mouse buttons o kern/103532 [irq] Interrupt storm in 6.2-PRERELEASE [regression] s www/103522 www Search interface oddity 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 [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 f 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 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 p usb/101775 usb [usb67] [libusbhid] [patch] possible error in report d 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 f kern/101734 [ata] -CURRENT cannot see SATA drive on ASUS A8N-SLI ( 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 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 f 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 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 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 misc/99643 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 kern/99538 [keyboard] [atkbdc] while using USB keyboard default p 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 a docs/99356 ru man page of sendmsg(2) does not include EINVAL o conf/99328 [patch] updates for src/share/examples/cvsup o bin/99307 [patch] mount_nfs(8) incompatible with zVM VMNFS 3A0 o www/99305 bugmeister [request] 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 [usb67] SMP-Kernel crashes reliably when Bluetooth con 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 emulation [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 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/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" s bin/97498 fs [request] newfs(8) has no option to clear the first 12 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 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/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 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 net [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 p 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 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 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 s usb/96120 usb [ums] [request] USB mouse not always detected o conf/96094 [gif] startup scripts do not configure gif interfaces f kern/96030 yongari [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 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 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/95459 Rebooting the system while rebuilding RAID (Intel Matr o docs/95408 remko install over serial console does not work as documente 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 [cd9660] 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 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 fs fsck(8) incorrectly reports 'file system marked clean' 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 kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o bin/94635 fs 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 www/94423 danger [patch] XML'ified release todo list o kern/94393 [ar] PseudoRAID loses track of the master disk 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 f kern/94162 yongari [bge] 6.x kenel stale with bge(4) s bin/94159 [request] ipsecctl ported from openbsd 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 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 f kern/93886 net [ath] Atheros/D-Link DWL-G650 long delay to associate o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o bin/93857 [iconv] [patch] new utility: kiconv_cs_preload(8): Uti 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 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 a kern/93685 [pipe] select on pipe write fails from '0' end o misc/93661 [patch] loader(8): prevent *.4th files and friends fro 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 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/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/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID 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 yongari 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 f 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 f usb/91896 usb camcontrol(8): Serial Number of USB Memory Sticks is n 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 f ports/91838 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 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 jfv [em] FreeBSD > 5.4 w/ACPI fails to detect Intel Pro/10 o kern/91572 [atapicam] [panic] writing to UFS/softupdates DVD medi 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 p conf/91342 jh [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 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 f kern/90890 yongari [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 o bin/90524 reset(1) doesn't fully restore terminal state 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 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 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 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 o kern/89258 [mouse] synaptic touchpad support "worse" with hw.psm. o i386/89249 [ataraid] HighPoint RocketRAID 1520 (HPT372N) can't wr o kern/89166 [mouse] jumpy mouse movement 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 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 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 kern/88555 fs [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/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 f 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 fs [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 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 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/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 f 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 f kern/86763 jh [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 emulation [linux] linux emulator interacts oddly with cp o kern/86587 fs [msdosfs] rm -r /PATH fails with lots of small files a bin/86485 arundel [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 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 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 gnu/85895 [patch] cc -print-search-dirs returns (null) 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/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 fs 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 bin/85445 net ifconfig(8): deprecated keyword to ifconfig inoperativ p kern/85320 net [gre] [patch] possible depletion of kernel stack in ip o kern/85257 brucec [boot] BTX boot loader fails on USB CDROM (HP DL145 Op o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o kern/85123 [iir] Improper serialization in iir_ioctl() allows iir 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 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 a bin/77651 [patch] 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 bin/77089 natd(8) ignores -u with passive FTP 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 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/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 f kern/76144 [fifo] poll doesn't set POLLHUP when FIFO is closed 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 [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 multimedia [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 fs Background-fsck checks one filesystem twice and omits f usb/74771 usb [umass] [hang] mounting write-protected umass device a 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 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 o kern/73823 acpi [request] acpi / power-on by timer support o conf/73786 [patch] added WARNING in spanish to stable-supfile 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 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 bin/73261 Suspending su(1) sometimes hangs 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 sysinstall sysinstall(8): Sysinstall generates invalid partition o bin/72875 des Some utilities used in debugging do not function prope 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 bin/72501 cperciva script(1) loops after EOF is read o conf/72465 [kbdmap] [patch] United States International keyboard 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 s ports/72202 simon portaudit warns about the CVS server vulnerability whi 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 o kern/71833 multiple process disc access / injustice o kern/71774 fs [ntfs] NTFS cannot "see" files on a WinXP filesystem 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 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/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 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 [sio] Lack of puc(4) device in GENERIC kernel causes i o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes f kern/71045 yongari [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 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 fs 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 [patch] 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 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 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 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 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 kern/67580 [request] add hints for boot failures s kern/67545 [nfs] NFS Diskless Mount Option Suggestion o misc/67502 cvsadm cvs-all commit message did not include all files touch o conf/67328 [nis] [ppp] Usermode PPP hangs on boot when NIS config 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- 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 s 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 o bin/64327 [patch] make(1): document surprising behaviour of assi 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 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/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 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 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 bin/61971 kinit(1) --renewable fails 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 brucec sysinstall(8): fdisk(8) uses incorrect calculations fo 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 p docs/61716 gjb [patch] 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 o bin/61603 brucec sysinstall(8): wrong geometry guessed o kern/61503 fs [smbfs] mount_smbfs does not work as non-root s i386/61481 [patch] a mechanism to wire io-channel-check to userla 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 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 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 s 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 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 o ports/59254 portmgr 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 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 p 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 f 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 o bin/57088 scsi [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(2) call (poll(2) too) hangs, yet call works per 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 o bin/55539 [patch] Parse fstab(5) with spaces in path names o kern/55448 dbm(3): dbm_nextkey() misbehaves after dbm_store() in f 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 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 s docs/54752 doc bus_dma explained in ISA section in Handbook: should b 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 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 [request] [patch] New functionality for mail(1) o bin/52469 ppp(8) Multiple devices using UDP don't work. f 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 doc 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 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 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 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 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 a kern/47286 [request] [patch] make device probing verbose when usi 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 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 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 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 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 stand/44365 standards [headers] [patch] [request] introduce ulong and unchar 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 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 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/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/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 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 brucec 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/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 a 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 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 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 > 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 ifconfig(8) Can not assign alias to any POINTOPOINT in 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 o bin/39849 restore(8) fails to overwrite files with schg flag set 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 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 a 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 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 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 emulation [patch] [linux] ldd(1) command 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 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 f misc/35542 bde [build] [patch] BDECFLAGS needs -U__STRICT_ANSI__ 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 p 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 gnu/34128 sdiff(1) "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/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 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 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 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 f 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 bin/27829 pax(1) uid/gid cache is read-only o bin/27687 fs 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: 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 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 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 o bin/24461 [nis] Being able to increase the YP timeout without re f 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 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 brucec [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 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 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 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. o bin/16422 [patch] [request] newfs(8) always make root's / direct 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/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 [patch] lprm(1) unaware of lp(1) Environment Variables 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 s kern/13326 kmacy [headers] [patch] additional timespecs interfaces for s bin/13309 [patch] Fixes to nos-tun(8) o kern/13141 se [scsi] Multiple LUN support in NCR driver is broken. a bin/13128 portmgr [patch] pkg_delete doesn't handle absolute pathnames c o bin/13108 authunix_create_default includes egid twice o bin/13042 make(1) doesn't handle wildcards in subdirectory paths o bin/12801 nvi infinite recursion with options "leftright" and "c o bin/12545 peter kldload(8) should be more sensitive to errors in *_mod p i386/12088 imp [ed] [patch] ed(4) has minor problem with memory alloc s kern/12071 fanf [net] [patch] new function: large scale IP aliasing o bin/11294 [patch] logger(1) direct logging to other hosts o kern/11165 emulation [ibcs2] IBCS2 doesn't work correctly with PID_MAX 9999 s bin/11114 harti make(1) does not work as documented with .POSIX: targe a kern/11024 mtm [patch] getpwnam(3) uses incorrect #define to limit us o gnu/10670 peter cvs doesn't allow digits in local keywords o bin/10611 [patch] timed(8) enhancement o bin/10358 yar ftpd(8) has problems with long pathnames o bin/10030 markm [patch] Kerberized telnet fails to encrypt when a host s kern/9927 gibbs [ahc] the ahc driver doesn't correctly grok switched S o bin/9868 [patch] date(1) add "date -a" o kern/9679 [portalfs] [patch] fix for uninterruptible open in por o kern/9619 rodrigc Restarting mountd kills existing mounts o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement o bin/8867 randi sysinstall(8): [patch] /stand/sysinstall core dumps (s o kern/8498 silby Race condition between unp_gc() and accept(). o bin/7973 gad lpd(8) Bad control file owner in case of remote printi s kern/7556 sl_compress_init() will fail if called anything else t o bin/7287 [nis] Incorrect domain name for MAP_UPDATE in multidom s bin/7232 sysinstall sysinstall(8): suggestion for FreeBSD installation dia s bin/6785 place for all the default dump flags o kern/5877 kmacy sb_cc counts control data as well as data data s bin/5712 /bin/chio code cleaup and option added o bin/5609 gad lpd cannot send long files to HP's JetDirect interface s bin/5296 slattach fails creating pidfile with ioctl(TIOCSCTTY): o bin/5031 gad lpr does not remove original file if -s is used o bin/4420 imp [patch] find(1) -exedir doesn't chdir for first entry s kern/4184 rwatson [netatalk] [patch] minor nits in sys/netatalk s bin/4172 des [request] suggest reconnection option added to fetch(1 o bin/4116 [patch] [kerberos] Kerberized login as .root fai 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] systat(1) total vm statistics are bad s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus a bin/1375 [patch] Extraneous warning from mv(1) 6084 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 10 13:40:11 2011 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 7A2FF106566B for ; Mon, 10 Jan 2011 13:40: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 57CFB8FC15 for ; Mon, 10 Jan 2011 13:40: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 p0ADeBXk067335 for ; Mon, 10 Jan 2011 13:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0ADeB8g067330; Mon, 10 Jan 2011 13:40:11 GMT (envelope-from gnats) Resent-Date: Mon, 10 Jan 2011 13:40:11 GMT Resent-Message-Id: <201101101340.p0ADeB8g067330@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, Oleg Gawriloff Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3BAED106564A for ; Mon, 10 Jan 2011 13:34:36 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 2B9648FC13 for ; Mon, 10 Jan 2011 13:34:36 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0ADYZ8l092732 for ; Mon, 10 Jan 2011 13:34:35 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0ADYZ67092731; Mon, 10 Jan 2011 13:34:35 GMT (envelope-from nobody) Message-Id: <201101101334.p0ADYZ67092731@red.freebsd.org> Date: Mon, 10 Jan 2011 13:34:35 GMT From: Oleg Gawriloff To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/153844: devel/py-mwlib update to 0.12.14 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, 10 Jan 2011 13:40:11 -0000 >Number: 153844 >Category: misc >Synopsis: devel/py-mwlib update to 0.12.14 >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 Jan 10 13:40:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Oleg Gawriloff >Release: 7.2 >Organization: Atlant Telecom >Environment: FreeBSD albatros.telecom.by 7.2-RELEASE-p2 FreeBSD 7.2-RELEASE-p2 #0: Mon Jul 13 13:04:32 EEST 2009 root@albatros.telecom.by:/usr/obj/usr/src/sys/ALBATROS i386 >Description: Pls update. Fixes unicode problem: ELEASE-p2-i386.egg/mwlib/serve.py", line 95, in make_collection_id sio.write(calc_checksum(json.loads(unicode(mb, 'utf-8')))) TypeError: decoding Unicode is not supported >How-To-Repeat: >Fix: Patch attached with submission follows: diff -Nru /usr/ports/devel/py-mwlib/Makefile py-mwlib/Makefile --- /usr/ports/devel/py-mwlib/Makefile 2011-01-10 15:23:07.000000000 +0200 +++ py-mwlib/Makefile 2010-02-05 13:36:07.000000000 +0200 @@ -6,7 +6,8 @@ # PORTNAME= mwlib -PORTVERSION= 0.12.14 +PORTVERSION= 0.12.12 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff -Nru /usr/ports/devel/py-mwlib/distinfo py-mwlib/distinfo --- /usr/ports/devel/py-mwlib/distinfo 2011-01-10 15:21:03.000000000 +0200 +++ py-mwlib/distinfo 2009-12-22 02:58:11.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (mwlib-0.12.14.tar.gz) = e1967178f9c3e6668129fdfd7528ebe2 -SHA256 (mwlib-0.12.14.tar.gz) = 44e8543caabd1c9822e39261f4f21a76a30c5bf240b525e9de96bf30bc43b365 -SIZE (mwlib-0.12.14.tar.gz) = 2678090 +MD5 (mwlib-0.12.12.tar.gz) = 3b13d173f91ad70283fe2799e70905aa +SHA256 (mwlib-0.12.12.tar.gz) = 0fc70de41edcf920312170245a3e0200764f40e2407d6ec7ede3e8e00fa82520 +SIZE (mwlib-0.12.12.tar.gz) = 2649169 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 10 13:40:11 2011 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 CE19C106567A for ; Mon, 10 Jan 2011 13:40: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 ABDA78FC17 for ; Mon, 10 Jan 2011 13:40: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 p0ADeBS0067365 for ; Mon, 10 Jan 2011 13:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0ADeBeg067359; Mon, 10 Jan 2011 13:40:11 GMT (envelope-from gnats) Resent-Date: Mon, 10 Jan 2011 13:40:11 GMT Resent-Message-Id: <201101101340.p0ADeBeg067359@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, Oleg Gawriloff Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E19F0106564A for ; Mon, 10 Jan 2011 13:36:38 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id D1A6D8FC27 for ; Mon, 10 Jan 2011 13:36:38 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0ADacEe093201 for ; Mon, 10 Jan 2011 13:36:38 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0ADacsJ093200; Mon, 10 Jan 2011 13:36:38 GMT (envelope-from nobody) Message-Id: <201101101336.p0ADacsJ093200@red.freebsd.org> Date: Mon, 10 Jan 2011 13:36:38 GMT From: Oleg Gawriloff To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/153845: devel/py-mwlib.rl update to 0.12.7 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, 10 Jan 2011 13:40:11 -0000 >Number: 153845 >Category: misc >Synopsis: devel/py-mwlib.rl update to 0.12.7 >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 Jan 10 13:40:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Oleg Gawriloff >Release: 7.2 >Organization: Atlant Telecom >Environment: FreeBSD albatros.telecom.by 7.2-RELEASE-p2 FreeBSD 7.2-RELEASE-p2 #0: Mon Jul 13 13:04:32 EEST 2009 root@albatros.telecom.by:/usr/obj/usr/src/sys/ALBATROS i386 >Description: Pls update. Compatible with mwlib 0.12.14. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -Nru /usr/ports/devel/py-mwlib.rl/Makefile py-mwlib.rl/Makefile --- /usr/ports/devel/py-mwlib.rl/Makefile 2011-01-10 15:29:14.000000000 +0200 +++ py-mwlib.rl/Makefile 2010-05-31 04:58:24.000000000 +0300 @@ -6,7 +6,8 @@ # PORTNAME= mwlib.rl -PORTVERSION= 0.12.7 +PORTVERSION= 0.12.4 +PORTREVISION= 3 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,7 +17,7 @@ BUILD_DEPENDS= ${LOCALBASE}/bin/texvc:${PORTSDIR}/print/texvc \ ${LOCALBASE}/bin/fribidi:${PORTSDIR}/converters/fribidi \ - ${PYTHON_PKGNAMEPREFIX}mwlib>=0.12.14:${PORTSDIR}/devel/py-mwlib \ + ${PYTHON_PKGNAMEPREFIX}mwlib>=0.12.0:${PORTSDIR}/devel/py-mwlib \ ${PYTHON_PKGNAMEPREFIX}mwlib.ext>=0.12.0:${PORTSDIR}/devel/py-mwlib.ext \ ${PYTHON_PKGNAMEPREFIX}pygments>=1.0:${PORTSDIR}/textproc/py-pygments RUN_DEPENDS= ${BUILD_DEPENDS} diff -Nru /usr/ports/devel/py-mwlib.rl/distinfo py-mwlib.rl/distinfo --- /usr/ports/devel/py-mwlib.rl/distinfo 2011-01-10 15:27:24.000000000 +0200 +++ py-mwlib.rl/distinfo 2009-10-21 15:48:19.000000000 +0300 @@ -1,3 +1,3 @@ -MD5 (mwlib.rl-0.12.7.tar.gz) = d3ad92d844705801ffcbb2a5fd208130 -SHA256 (mwlib.rl-0.12.7.tar.gz) = 34f46772fd7aefe25cc241830916cc1c44b43ce0c3bba92e4e689b8b569e6269 -SIZE (mwlib.rl-0.12.7.tar.gz) = 3966117 +MD5 (mwlib.rl-0.12.4.tar.gz) = 26673a4cc859e020015e139fb0a5b12c +SHA256 (mwlib.rl-0.12.4.tar.gz) = 91178f1863ca8392bb6174c7946efb21f530d6634202923bd703835fc6311ad0 +SIZE (mwlib.rl-0.12.4.tar.gz) = 3954727 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 10 14:00:20 2011 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 65F711065670 for ; Mon, 10 Jan 2011 14:00:20 +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 242198FC14 for ; Mon, 10 Jan 2011 14:00:20 +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 p0AE0Jpe086778 for ; Mon, 10 Jan 2011 14:00:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0AE0JI9086765; Mon, 10 Jan 2011 14:00:19 GMT (envelope-from gnats) Resent-Date: Mon, 10 Jan 2011 14:00:19 GMT Resent-Message-Id: <201101101400.p0AE0JI9086765@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, Martin Simmons Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 15AC41065670 for ; Mon, 10 Jan 2011 13:54:13 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 04E838FC15 for ; Mon, 10 Jan 2011 13:54:13 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0ADsCqa006741 for ; Mon, 10 Jan 2011 13:54:12 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0ADsCid006735; Mon, 10 Jan 2011 13:54:12 GMT (envelope-from nobody) Message-Id: <201101101354.p0ADsCid006735@red.freebsd.org> Date: Mon, 10 Jan 2011 13:54:12 GMT From: Martin Simmons To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/153847: Kernel panic from incorrect m_free in nfs_getattr 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, 10 Jan 2011 14:00:20 -0000 >Number: 153847 >Category: kern >Synopsis: Kernel panic from incorrect m_free in nfs_getattr >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 Jan 10 14:00:19 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Martin Simmons >Release: 7.3-RELEASE >Organization: >Environment: FreeBSD greig.cam.lispworks.com 7.3-RELEASE FreeBSD 7.3-RELEASE #0: Sun Mar 21 06:15:01 UTC 2010 root@walker.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: kgdb gives the output below from the dump: Unread portion of the kernel message buffer: <6>nfs server pid904@greig:/sp: is alive again Fatal trap 12: page fault while in kernel mode cpuid = 0; apic id = 00 fault virtual address = 0x7273752f fault code = supervisor read, page not present instruction pointer = 0x20:0xc084c330 stack pointer = 0x28:0xe7d0984c frame pointer = 0x28:0xe7d0985c code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 27611 (sh) trap number = 12 panic: page fault cpuid = 0 Uptime: 23h58m43s Physical memory: 2035 MB Dumping 181 MB: 166 150 134 118 102 <6>nfs server pid904@greig:/nfs: not responding 86 70 54 38 Fatal trap 12: page fault while in kernel mode cpuid = 1; apic id = 01 fault virtual address = 0x207366ce fault code = supervisor read, page not present instruction pointer = 0x20:0xc06616ed stack pointer = 0x28:0xc51b9be0 frame pointer = 0x28:0xc51b9bf0 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 14 (swi4: clock sio) trap number = 12 22 6 #0 doadump () at pcpu.h:196 #1 0xc07f8c57 in boot (howto=0x104) at /usr/src/sys/kern/kern_shutdown.c:418 #2 0xc07f8f29 in panic (fmt=Variable "fmt" is not available. ) at /usr/src/sys/kern/kern_shutdown.c:574 #3 0xc0b010dc in trap_fatal (frame=0xe7d0980c, eva=0x7273752f) at /usr/src/sys/i386/i386/trap.c:950 #4 0xc0b01360 in trap_pfault (frame=0xe7d0980c, usermode=0x0, eva=0x7273752f) at /usr/src/sys/i386/i386/trap.c:863 #5 0xc0b01d55 in trap (frame=0xe7d0980c) at /usr/src/sys/i386/i386/trap.c:541 #6 0xc0ae503b in calltrap () at /usr/src/sys/i386/i386/exception.s:166 #7 0xc084c330 in m_freem (mb=0x7273752f) at /usr/src/sys/kern/uipc_mbuf.c:162 #8 0xc09a4245 in nfs_getattr (ap=0xe7d09980) at /usr/src/sys/nfsclient/nfs_vnops.c:666 #9 0xc0b16172 in VOP_GETATTR_APV (vop=0xc0c8ab40, a=0xe7d09980) at vnode_if.c:530 #10 0xc09a83ac in nfs_lookup (ap=0xe7d09a98) at vnode_if.h:286 #11 0xc0b17b76 in VOP_LOOKUP_APV (vop=0xc0c8ab40, a=0xe7d09a98) at vnode_if.c:99 #12 0xc0872afb in lookup (ndp=0xe7d09ba8) at vnode_if.h:57 #13 0xc0873972 in namei (ndp=0xe7d09ba8) at /usr/src/sys/kern/vfs_lookup.c:234 #14 0xc0881c04 in kern_stat (td=0xc68a7000, path=0x28203288
, pathseg=UIO_USERSPACE, sbp=0xe7d09c18) at /usr/src/sys/kern/vfs_syscalls.c:2131 #15 0xc0881def in stat (td=0xc68a7000, uap=0xe7d09cfc) at /usr/src/sys/kern/vfs_syscalls.c:2115 #16 0xc0b016b5 in syscall (frame=0xe7d09d38) at /usr/src/sys/i386/i386/trap.c:1101 #17 0xc0ae50a0 in Xint0x80_syscall () at /usr/src/sys/i386/i386/exception.s:262 #18 0x00000033 in ?? () >How-To-Repeat: Not sure, but I think it has something to do with filesystems being run by am-utils. >Fix: Last time I saw this (in 7.2) I got some way to tracking it down. I think the problem is that nfs_request doesn't validate the value of error that it reads from the nfs packet: if (*tl == 0) { tl = nfsm_dissect(u_int32_t *, NFSX_UNSIGNED); if (*tl != 0) { error = fxdr_unsigned(int, *tl); Things go wrong if this value has the NFSERR_RETERR bit set already (e.g. due to a bug in the nfs server). In particular, when this value is returned to nfsm_request, the bit will be cleared and nfs_getattr will subsequently call m_freem(mrep) even though mrep hasn't been initialized by nfs_request. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 10 14:10:12 2011 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 97B6D10656B6 for ; Mon, 10 Jan 2011 14:10: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 74F5B8FC33 for ; Mon, 10 Jan 2011 14:10: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 p0AEACAc099943 for ; Mon, 10 Jan 2011 14:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0AEACQ0099942; Mon, 10 Jan 2011 14:10:12 GMT (envelope-from gnats) Resent-Date: Mon, 10 Jan 2011 14:10:12 GMT Resent-Message-Id: <201101101410.p0AEACQ0099942@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, Alexander Hausner Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C250106566B for ; Mon, 10 Jan 2011 14:06:08 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 8B96F8FC12 for ; Mon, 10 Jan 2011 14:06:08 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0AE66Ol012914 for ; Mon, 10 Jan 2011 14:06:06 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0AE665P012913; Mon, 10 Jan 2011 14:06:06 GMT (envelope-from nobody) Message-Id: <201101101406.p0AE665P012913@red.freebsd.org> Date: Mon, 10 Jan 2011 14:06:06 GMT From: Alexander Hausner To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/153848: [carp] [ipv6] backup host can't connect to master host 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, 10 Jan 2011 14:10:12 -0000 >Number: 153848 >Category: kern >Synopsis: [carp] [ipv6] backup host can't connect to master host >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jan 10 14:10:12 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Alexander Hausner >Release: FreeBSD 8.2-PRERELEASE #0 >Organization: BMG >Environment: FreeBSD fbsd2.bmg.gv.at 8.2-PRERELEASE FreeBSD 8.2-PRERELEASE #0: Wed Jan 5 17:56:25 CET 2011 root@fbsd1.bmg.gv.at:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Hi, in an ipv6 environment carp backup host can't connect to master host via ipv6. The backup host connects only to itself. Given the following environment: host fbsd1: fbsd1# ifconfig em0: flags=8943 metric 0 mtu 1500 options=9b ether 08:00:27:d2:e3:52 inet 10.41.77.1 netmask 0xffff0000 broadcast 10.41.255.255 inet6 fe80::a00:27ff:fed2:e352%em0 prefixlen 64 scopeid 0x1 inet6 2b17::1 prefixlen 64 nd6 options=3 media: Ethernet autoselect (1000baseT ) status: active lo0: flags=8049 metric 0 mtu 16384 options=3 inet 127.0.0.1 netmask 0xff000000 inet6 ::1 prefixlen 128 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x2 nd6 options=3 carp0: flags=49 metric 0 mtu 1500 inet6 2b17::10 prefixlen 64 nd6 options=3 carp: MASTER vhid 1 advbase 1 advskew 0 host fbsd2: fbsd2# ifconfig em0: flags=8943 metric 0 mtu 1500 options=9b ether 08:00:27:6d:e0:f9 inet 10.41.77.2 netmask 0xffff0000 broadcast 10.41.255.255 inet6 fe80::a00:27ff:fe6d:e0f9%em0 prefixlen 64 scopeid 0x1 inet6 2b17::2 prefixlen 64 nd6 options=3 media: Ethernet autoselect (1000baseT ) status: active lo0: flags=8049 metric 0 mtu 16384 options=3 inet 127.0.0.1 netmask 0xff000000 inet6 ::1 prefixlen 128 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x2 nd6 options=3 carp0: flags=49 metric 0 mtu 1500 inet6 2b17::10 prefixlen 64 nd6 options=3 carp: BACKUP vhid 1 advbase 1 advskew 100 if you try now a telnet to 2b17::10 port 25/tcp on host fbsd2 gives the following: fbsd2# telnet 2b17::10 25 Trying 2b17::10... Connected to 2b17::10. Escape character is '^]'. 220 fbsd2.bmg.gv.at ESMTP Sendmail 8.14.4/8.14.4; Mon, 10 Jan 2011 15:48:11 +0100 (CET) It connects to itself (backup host) not to the master host, the same thing with ipv4 works correctly as expected i.e. it connects to the master host. Thanks in advance, Alex >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 10 14:24:11 2011 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 507BC1065670; Mon, 10 Jan 2011 14:24:11 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2924A8FC17; Mon, 10 Jan 2011 14:24: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 p0AEOBRD021025; Mon, 10 Jan 2011 14:24:11 GMT (envelope-from bz@freefall.freebsd.org) Received: (from bz@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0AEOBvT021021; Mon, 10 Jan 2011 14:24:11 GMT (envelope-from bz) Date: Mon, 10 Jan 2011 14:24:11 GMT Message-Id: <201101101424.p0AEOBvT021021@freefall.freebsd.org> To: bz@FreeBSD.org, freebsd-bugs@FreeBSD.org, bz@FreeBSD.org From: bz@FreeBSD.org Cc: Subject: Re: kern/153841: page fault in icmp6_error2() called from nd6_llinfo_timer() 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, 10 Jan 2011 14:24:11 -0000 Synopsis: page fault in icmp6_error2() called from nd6_llinfo_timer() Responsible-Changed-From-To: freebsd-bugs->bz Responsible-Changed-By: bz Responsible-Changed-When: Mon Jan 10 14:23:53 UTC 2011 Responsible-Changed-Why: I'll take a peek. It might be fixed already. http://www.freebsd.org/cgi/query-pr.cgi?pr=153841 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 10 14:24:30 2011 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 CEA891065672; Mon, 10 Jan 2011 14:24:30 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A5E618FC13; Mon, 10 Jan 2011 14:24: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 p0AEOUc5021087; Mon, 10 Jan 2011 14:24:30 GMT (envelope-from bz@freefall.freebsd.org) Received: (from bz@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0AEOUis021083; Mon, 10 Jan 2011 14:24:30 GMT (envelope-from bz) Date: Mon, 10 Jan 2011 14:24:30 GMT Message-Id: <201101101424.p0AEOUis021083@freefall.freebsd.org> To: bz@FreeBSD.org, freebsd-bugs@FreeBSD.org, bz@FreeBSD.org From: bz@FreeBSD.org Cc: Subject: Re: kern/153848: [carp] [ipv6] backup host can't connect to master host 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, 10 Jan 2011 14:24:30 -0000 Synopsis: [carp] [ipv6] backup host can't connect to master host Responsible-Changed-From-To: freebsd-bugs->bz Responsible-Changed-By: bz Responsible-Changed-When: Mon Jan 10 14:24:20 UTC 2011 Responsible-Changed-Why: I'll have a look. http://www.freebsd.org/cgi/query-pr.cgi?pr=153848 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 10 16:10:12 2011 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 DB97310656A8 for ; Mon, 10 Jan 2011 16:10: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 176FD8FC20 for ; Mon, 10 Jan 2011 16:10: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 p0AGA9fE033244 for ; Mon, 10 Jan 2011 16:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0AGA9TL033243; Mon, 10 Jan 2011 16:10:09 GMT (envelope-from gnats) Resent-Date: Mon, 10 Jan 2011 16:10:09 GMT Resent-Message-Id: <201101101610.p0AGA9TL033243@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, Spencer Minear Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0A9A7106566B for ; Mon, 10 Jan 2011 16:06:00 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id ED96D8FC18 for ; Mon, 10 Jan 2011 16:05:59 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0AG5x3H095418 for ; Mon, 10 Jan 2011 16:05:59 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0AG5xTC095417; Mon, 10 Jan 2011 16:05:59 GMT (envelope-from nobody) Message-Id: <201101101605.p0AG5xTC095417@red.freebsd.org> Date: Mon, 10 Jan 2011 16:05:59 GMT From: Spencer Minear To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/153851: keyboard issues on new Intel Mother boards. 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, 10 Jan 2011 16:10:12 -0000 >Number: 153851 >Category: misc >Synopsis: keyboard issues on new Intel Mother boards. >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 Jan 10 16:10:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Spencer Minear >Release: Seen in our 6.x and 7.x based systems >Organization: McAfee >Environment: NA >Description: We have been working with two new Intel Mother boards, S3420GP and S5520HC. Both of these boards have no AT controller hardware and limited emulation of the 60/64 ports. At system boot there is a long delay between the point when control is given to the loaded kernel and the first of the boot messages. The delay is due to the fact that the ports look alive, but the emulation does not support at least the controller diagnose self test or the keyboard port test functions. In both cases the command is accepted but no response is ever set and the existing driver code ends up doing long timeouts waiting for the response to the tests. We do not have a general solution for this as yet and simply bypass these tests when are on this hardware as detected by the symbios.planar information. Another problem is that the systems shutdown -h operation turns results in a hung system. This happens because the only path for keyboard input via the USB controllers. During the shutdown processing, before we reach the shutdown_halt function that spins waiting for keyboard input, the module shutdown is done. This results in calls to the uhci_shutdown and ehci_shutdown functions which send commands to the controller to stop in the uchi case and to reset in the ehci case. For reasons I do not know the stop of the uhci does not block keyboard input but the reset in the ehci does. Non the less when we need keyboard input and that data is via usb controllers, it is not good to do anything to the hardware. Our initial solution is to expose the shutdown howto value and detect that state in the USB drivers and if RB_HALT is set, we do not change the hardware state. >How-To-Repeat: Watch a boot and run a shudown -h. >Fix: Our initial actions are outlined in the problem description >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 10 17:36:05 2011 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 952A5106566B; Mon, 10 Jan 2011 17:36:05 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6B3FD8FC20; Mon, 10 Jan 2011 17:36: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 p0AHa5eG028867; Mon, 10 Jan 2011 17:36:05 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0AHa58B028863; Mon, 10 Jan 2011 17:36:05 GMT (envelope-from jh) Date: Mon, 10 Jan 2011 17:36:05 GMT Message-Id: <201101101736.p0AHa58B028863@freefall.freebsd.org> To: mike09785@bellsouth.net, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: kern/102363: "Resource temporarily unavailable" message from dvd+rw-tools attempting to burn dual layer discs 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, 10 Jan 2011 17:36:05 -0000 Synopsis: "Resource temporarily unavailable" message from dvd+rw-tools attempting to burn dual layer discs State-Changed-From-To: open->feedback State-Changed-By: jh State-Changed-When: Mon Jan 10 17:36:04 UTC 2011 State-Changed-Why: Can you still reproduce this on a supported release? http://www.freebsd.org/cgi/query-pr.cgi?pr=102363 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 10 17:36:56 2011 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 1051C1065674; Mon, 10 Jan 2011 17:36:56 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D9C6B8FC08; Mon, 10 Jan 2011 17:36:55 +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 p0AHatLT028974; Mon, 10 Jan 2011 17:36:55 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0AHatP6028970; Mon, 10 Jan 2011 17:36:55 GMT (envelope-from jh) Date: Mon, 10 Jan 2011 17:36:55 GMT Message-Id: <201101101736.p0AHatP6028970@freefall.freebsd.org> To: alex@infobit.ru, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: kern/104755: Making ISO image with k3b hangs 6.2-PRERELEASE 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, 10 Jan 2011 17:36:56 -0000 Synopsis: Making ISO image with k3b hangs 6.2-PRERELEASE State-Changed-From-To: open->feedback State-Changed-By: jh State-Changed-When: Mon Jan 10 17:36:54 UTC 2011 State-Changed-Why: Can you still reproduce this on a supported release? http://www.freebsd.org/cgi/query-pr.cgi?pr=104755 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 10 17:37:50 2011 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 34AF21065673; Mon, 10 Jan 2011 17:37:50 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0B2E08FC0A; Mon, 10 Jan 2011 17:37:50 +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 p0AHbnYb029079; Mon, 10 Jan 2011 17:37:49 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0AHbniw029075; Mon, 10 Jan 2011 17:37:49 GMT (envelope-from jh) Date: Mon, 10 Jan 2011 17:37:49 GMT Message-Id: <201101101737.p0AHbniw029075@freefall.freebsd.org> To: el.mofo@uol.com.br, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: kern/104822: [hang] RELENG_6 hangs with VIA VT8237A chipset [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: Mon, 10 Jan 2011 17:37:50 -0000 Synopsis: [hang] RELENG_6 hangs with VIA VT8237A chipset [regression] State-Changed-From-To: open->feedback State-Changed-By: jh State-Changed-When: Mon Jan 10 17:37:49 UTC 2011 State-Changed-Why: Can you still reproduce this on a supported release? http://www.freebsd.org/cgi/query-pr.cgi?pr=104822 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 10 17:38:35 2011 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 0EC4C1065693; Mon, 10 Jan 2011 17:38:35 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D8AF98FC23; Mon, 10 Jan 2011 17:38:34 +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 p0AHcYKC029185; Mon, 10 Jan 2011 17:38:34 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0AHcYOF029181; Mon, 10 Jan 2011 17:38:34 GMT (envelope-from jh) Date: Mon, 10 Jan 2011 17:38:34 GMT Message-Id: <201101101738.p0AHcYOF029181@freefall.freebsd.org> To: pete@twisted.org.uk, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: kern/105067: K8D Master-F and other 8111/8131 boards will not run SMP with PCI disc controllers 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, 10 Jan 2011 17:38:35 -0000 Synopsis: K8D Master-F and other 8111/8131 boards will not run SMP with PCI disc controllers State-Changed-From-To: open->feedback State-Changed-By: jh State-Changed-When: Mon Jan 10 17:38:34 UTC 2011 State-Changed-Why: Can you still reproduce this on a supported release? http://www.freebsd.org/cgi/query-pr.cgi?pr=105067 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 10 18:52:37 2011 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 BB95C106566B; Mon, 10 Jan 2011 18:52:37 +0000 (UTC) (envelope-from pete@twisted.org.uk) Received: from toybox.twisted.org.uk (toybox.twisted.org.uk [IPv6:2002:c390:806:1::6]) by mx1.freebsd.org (Postfix) with ESMTP id 89A238FC1A; Mon, 10 Jan 2011 18:52:37 +0000 (UTC) Received: from pete by toybox.twisted.org.uk with local (Exim 4.72 (FreeBSD)) (envelope-from ) id 1PcMr6-000Bwn-De; Mon, 10 Jan 2011 18:52:36 +0000 Date: Mon, 10 Jan 2011 18:52:36 +0000 Message-Id: To: freebsd-bugs@FreeBSD.org, jh@FreeBSD.org In-Reply-To: <201101101738.p0AHcYOF029181@freefall.freebsd.org> From: Pete French Cc: Subject: Re: kern/105067: K8D Master-F and other 8111/8131 boards will not run SMP with PCI disc controllers 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, 10 Jan 2011 18:52:37 -0000 4 years later I no longer have the hardware, so no ;) From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 10 19:00:26 2011 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 46BBD106566B for ; Mon, 10 Jan 2011 19:00:26 +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 1A7558FC14 for ; Mon, 10 Jan 2011 19:00: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 p0AJ0PDm014044 for ; Mon, 10 Jan 2011 19:00:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0AJ0PoM014023; Mon, 10 Jan 2011 19:00:25 GMT (envelope-from gnats) Date: Mon, 10 Jan 2011 19:00:25 GMT Message-Id: <201101101900.p0AJ0PoM014023@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Pete French Cc: Subject: Re: kern/105067: K8D Master-F and other 8111/8131 boards will not run SMP with PCI disc controllers X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Pete French List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2011 19:00:26 -0000 The following reply was made to PR kern/105067; it has been noted by GNATS. From: Pete French To: bug-followup@FreeBSD.org, pete@twisted.org.uk Cc: Subject: Re: kern/105067: K8D Master-F and other 8111/8131 boards will not run SMP with PCI disc controllers Date: Mon, 10 Jan 2011 18:52:00 +0000 4 years later I no longer have the hardware, so no ;-) From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 10 19:13:27 2011 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 C34F910656CB; Mon, 10 Jan 2011 19:13:27 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 995048FC14; Mon, 10 Jan 2011 19:13:27 +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 p0AJDRMH035632; Mon, 10 Jan 2011 19:13:27 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0AJDRAj035628; Mon, 10 Jan 2011 19:13:27 GMT (envelope-from jh) Date: Mon, 10 Jan 2011 19:13:27 GMT Message-Id: <201101101913.p0AJDRAj035628@freefall.freebsd.org> To: pete@twisted.org.uk, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: kern/105067: K8D Master-F and other 8111/8131 boards will not run SMP with PCI disc controllers 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, 10 Jan 2011 19:13:27 -0000 Synopsis: K8D Master-F and other 8111/8131 boards will not run SMP with PCI disc controllers State-Changed-From-To: feedback->closed State-Changed-By: jh State-Changed-When: Mon Jan 10 19:13:27 UTC 2011 State-Changed-Why: Submitter can't reproduce anymore. http://www.freebsd.org/cgi/query-pr.cgi?pr=105067 From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 11 01:42:21 2011 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 DF893106566C; Tue, 11 Jan 2011 01:42:21 +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 B697E8FC15; Tue, 11 Jan 2011 01:42: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 p0B1gL6Y099060; Tue, 11 Jan 2011 01:42:21 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0B1gLYu099049; Tue, 11 Jan 2011 01:42:21 GMT (envelope-from linimon) Date: Tue, 11 Jan 2011 01:42:21 GMT Message-Id: <201101110142.p0B1gLYu099049@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, wen@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/153844: devel/py-mwlib update to 0.12.14 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, 11 Jan 2011 01:42:22 -0000 Synopsis: devel/py-mwlib update to 0.12.14 Responsible-Changed-From-To: freebsd-bugs->wen Responsible-Changed-By: linimon Responsible-Changed-When: Tue Jan 11 01:41:56 UTC 2011 Responsible-Changed-Why: make this a ports PR and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=153844 From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 11 01:42:46 2011 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 7D6241065674; Tue, 11 Jan 2011 01:42:46 +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 546BE8FC0C; Tue, 11 Jan 2011 01:42:46 +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 p0B1gkZX099240; Tue, 11 Jan 2011 01:42:46 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0B1gkQA099233; Tue, 11 Jan 2011 01:42:46 GMT (envelope-from linimon) Date: Tue, 11 Jan 2011 01:42:46 GMT Message-Id: <201101110142.p0B1gkQA099233@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, wen@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/153845: devel/py-mwlib.rl update to 0.12.7 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, 11 Jan 2011 01:42:46 -0000 Synopsis: devel/py-mwlib.rl update to 0.12.7 Responsible-Changed-From-To: freebsd-bugs->wen Responsible-Changed-By: linimon Responsible-Changed-When: Tue Jan 11 01:41:56 UTC 2011 Responsible-Changed-Why: Make this a ports PR and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=153845 From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 11 01:45:47 2011 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 5DB241065673; Tue, 11 Jan 2011 01:45:47 +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 345938FC22; Tue, 11 Jan 2011 01:45: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 p0B1jlQh000900; Tue, 11 Jan 2011 01:45:47 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0B1jldh000896; Tue, 11 Jan 2011 01:45:47 GMT (envelope-from linimon) Date: Tue, 11 Jan 2011 01:45:47 GMT Message-Id: <201101110145.p0B1jldh000896@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-fs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/153847: [nfs] [panic] Kernel panic from incorrect m_free in nfs_getattr 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, 11 Jan 2011 01:45:47 -0000 Old Synopsis: Kernel panic from incorrect m_free in nfs_getattr New Synopsis: [nfs] [panic] Kernel panic from incorrect m_free in nfs_getattr Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Jan 11 01:45:24 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=153847 From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 11 01:48:22 2011 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 891331065670; Tue, 11 Jan 2011 01:48:22 +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 5FDB38FC14; Tue, 11 Jan 2011 01:48:22 +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 p0B1mM4D001381; Tue, 11 Jan 2011 01:48:22 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0B1mMBQ001377; Tue, 11 Jan 2011 01:48:22 GMT (envelope-from linimon) Date: Tue, 11 Jan 2011 01:48:22 GMT Message-Id: <201101110148.p0B1mMBQ001377@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-i386@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: i386/153851: [keyboard] keyboard issues on new Intel Mother boards. 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, 11 Jan 2011 01:48:22 -0000 Old Synopsis: keyboard issues on new Intel Mother boards. New Synopsis: [keyboard] keyboard issues on new Intel Mother boards. Responsible-Changed-From-To: freebsd-bugs->freebsd-i386 Responsible-Changed-By: linimon Responsible-Changed-When: Tue Jan 11 01:47:12 UTC 2011 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=153851 From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 11 08:00:21 2011 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 F32E9106567A for ; Tue, 11 Jan 2011 08:00:20 +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 97D358FC1C for ; Tue, 11 Jan 2011 08:00:20 +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 p0B80KMV035527 for ; Tue, 11 Jan 2011 08:00:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0B80KoI035518; Tue, 11 Jan 2011 08:00:20 GMT (envelope-from gnats) Resent-Date: Tue, 11 Jan 2011 08:00:20 GMT Resent-Message-Id: <201101110800.p0B80KoI035518@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, "Ilya A. Arhipov" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C7321065672 for ; Tue, 11 Jan 2011 07:54:32 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 600CD8FC0A for ; Tue, 11 Jan 2011 07:54:32 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0B7sVP8069465 for ; Tue, 11 Jan 2011 07:54:31 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0B7sV1s069464; Tue, 11 Jan 2011 07:54:31 GMT (envelope-from nobody) Message-Id: <201101110754.p0B7sV1s069464@red.freebsd.org> Date: Tue, 11 Jan 2011 07:54:31 GMT From: "Ilya A. Arhipov" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/153884: [patch] update opengfx to 0.3.2 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, 11 Jan 2011 08:00:21 -0000 >Number: 153884 >Category: misc >Synopsis: [patch] update opengfx to 0.3.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Jan 11 08:00:19 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Ilya A. Arhipov >Release: FreeBSD 9.0-CURRENT >Organization: >Environment: FreeBSD micro 9.0-CURRENT FreeBSD 9.0-CURRENT #2 r216383M: Sun Dec 12 02:58:14 MSK 2010 root@micro:/usr/obj/usr/src/head/sys/MICROKERNEL amd64 >Description: Update opengfx to 0.3.2 Change MASTER_SITES Fix install directory >How-To-Repeat: >Fix: see attach Patch attached with submission follows: diff -Nru opengfx_old/Makefile opengfx/Makefile --- opengfx_old/Makefile 2010-11-04 22:17:39.000000000 +0300 +++ opengfx/Makefile 2011-01-11 10:08:08.100122826 +0300 @@ -6,10 +6,11 @@ # PORTNAME= opengfx -PORTVERSION= 0.3.1 +PORTVERSION= 0.3.2 CATEGORIES= games -MASTER_SITES= http://ftp.snt.utwente.nl/pub/games/openttd/binaries/extra/opengfx/${PORTVERSION}/ \ - http://gb.binaries.openttd.org/binaries/extra/opengfx/${PORTVERSION}/ +MASTER_SITES= http://gb.binaries.openttd.org/binaries/extra/${PORTNAME}/${PORTVERSION}/ \ + http://de.binaries.openttd.org/binaries/extra/${PORTNAME}/${PORTVERSION}/ \ + http://cz.binaries.openttd.org/openttd/binaries/extra/${PORTNAME}/${PORTVERSION}/ DISTNAME= ${PORTNAME}-${PORTVERSION}-all MAINTAINER= micro@heavennet.ru @@ -18,12 +19,9 @@ USE_ZIP= yes NO_BUILD= yes -post-extract: - @${FIND} ${WRKDIR}/opengfx-${PORTVERSION} -type f -name "*.txt" -exec ${MV} {} {}-gfx \; - do-install: - ${MKDIR} ${PREFIX}/share/openttd/data + ${MKDIR} ${PREFIX}/share/openttd/data/opengfx ${INSTALL_DATA} ${WRKDIR}/opengfx-${PORTVERSION}/* \ - ${PREFIX}/share/openttd/data + ${PREFIX}/share/openttd/data/opengfx .include diff -Nru opengfx_old/distinfo opengfx/distinfo --- opengfx_old/distinfo 2010-11-04 22:17:39.000000000 +0300 +++ opengfx/distinfo 2011-01-11 05:10:00.000000000 +0300 @@ -1,2 +1,2 @@ -SHA256 (opengfx-0.3.1-all.zip) = 16be83cd0fc59ba8f1a8b3f3ebe26e6c0df325ca7593976de74e073c5d1ee39b -SIZE (opengfx-0.3.1-all.zip) = 3387182 +SHA256 (opengfx-0.3.2-all.zip) = e9f94bb0799e9a8d9bf6451da353434086f027fe0dfb7c01d205f739467fafdb +SIZE (opengfx-0.3.2-all.zip) = 3384254 diff -Nru opengfx_old/pkg-plist opengfx/pkg-plist --- opengfx_old/pkg-plist 2010-11-04 22:17:39.000000000 +0300 +++ opengfx/pkg-plist 2011-01-11 05:10:00.000000000 +0300 @@ -1,12 +1,13 @@ -share/openttd/data/changelog.txt-gfx -share/openttd/data/license.txt-gfx -share/openttd/data/ogfx1_base.grf -share/openttd/data/ogfxc_arctic.grf -share/openttd/data/ogfxe_extra.grf -share/openttd/data/ogfxh_tropical.grf -share/openttd/data/ogfxi_logos.grf -share/openttd/data/ogfxt_toyland.grf -share/openttd/data/opengfx.obg -share/openttd/data/readme.txt-gfx +share/openttd/data/opengfx/changelog.txt +share/openttd/data/opengfx/license.txt +share/openttd/data/opengfx/ogfx1_base.grf +share/openttd/data/opengfx/ogfxc_arctic.grf +share/openttd/data/opengfx/ogfxe_extra.grf +share/openttd/data/opengfx/ogfxh_tropical.grf +share/openttd/data/opengfx/ogfxi_logos.grf +share/openttd/data/opengfx/ogfxt_toyland.grf +share/openttd/data/opengfx/opengfx.obg +share/openttd/data/opengfx/readme.txt +@dirrmtry share/openttd/data/opengfx @dirrmtry share/openttd/data @dirrmtry share/openttd >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 11 08:10:09 2011 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 6E67E106566B for ; Tue, 11 Jan 2011 08: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 321868FC1A for ; Tue, 11 Jan 2011 08: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 p0B8A9HM049532 for ; Tue, 11 Jan 2011 08:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0B8A9Wf049531; Tue, 11 Jan 2011 08:10:09 GMT (envelope-from gnats) Resent-Date: Tue, 11 Jan 2011 08:10:09 GMT Resent-Message-Id: <201101110810.p0B8A9Wf049531@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, Yuri Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 54CD7106564A for ; Tue, 11 Jan 2011 08:02:37 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 44A1F8FC12 for ; Tue, 11 Jan 2011 08:02:37 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0B82aX1070127 for ; Tue, 11 Jan 2011 08:02:36 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0B82aVs070126; Tue, 11 Jan 2011 08:02:36 GMT (envelope-from nobody) Message-Id: <201101110802.p0B82aVs070126@red.freebsd.org> Date: Tue, 11 Jan 2011 08:02:36 GMT From: Yuri To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/153887: Linux emulator not understand STB_GNU_UNIQUE binding 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, 11 Jan 2011 08:10:09 -0000 >Number: 153887 >Category: misc >Synopsis: Linux emulator not understand STB_GNU_UNIQUE binding >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jan 11 08:10:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Yuri >Release: 8.1-STABLE amd64 >Organization: n/a >Environment: >Description: I have the working app in Ubuntu. When I copy it to FreeBSD with all shared libs I get such message: app.linux: symbol lookup error: ../lib/libstdc++.so.6: undefined symbol: _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE, version GLIBCXX_3.4 ./lib/libstdc++.so.6 has been taken from Ubuntu (gcc-4.5.1). It was compiled there from gcc sources. Upon closer inspection I see that on FreeBSD: > readelf -aW ../lib/libstdc++.so.6 | grep _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE 1426: 000f30dc 4 OBJECT : 10 DEFAULT 26 _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE@@GLIBCXX_3.4 3380: 000f30dc 4 OBJECT : 10 DEFAULT 26 _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE But on Ubuntu the word 10 is replaced with UNIQUE. It refers to the relatively newly introduced extension STB_GNU_UNIQUE, see here: http://osdir.com/ml/general/2009-08/msg09809.html I think Linux emulator is outdated and needs to be updated. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 11 08:46:36 2011 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 0970B106566B; Tue, 11 Jan 2011 08:46:36 +0000 (UTC) (envelope-from micro@heavennet.ru) Received: from mail-iy0-f182.google.com (mail-iy0-f182.google.com [209.85.210.182]) by mx1.freebsd.org (Postfix) with ESMTP id C41F18FC1C; Tue, 11 Jan 2011 08:46:35 +0000 (UTC) Received: by iyb26 with SMTP id 26so19309978iyb.13 for ; Tue, 11 Jan 2011 00:46:35 -0800 (PST) MIME-Version: 1.0 Received: by 10.231.33.202 with SMTP id i10mr29829774ibd.55.1294734019415; Tue, 11 Jan 2011 00:20:19 -0800 (PST) Received: by 10.231.70.71 with HTTP; Tue, 11 Jan 2011 00:20:19 -0800 (PST) In-Reply-To: <201101110800.p0B80KBd035449@freefall.freebsd.org> References: <201101110754.p0B7sV1s069464@red.freebsd.org> <201101110800.p0B80KBd035449@freefall.freebsd.org> Date: Tue, 11 Jan 2011 11:20:19 +0300 Message-ID: From: "Ilya A. Arhipov" To: FreeBSD-gnats-submit@freebsd.org, freebsd-bugs@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: misc/153884: [patch] update opengfx to 0.3.2 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, 11 Jan 2011 08:46:36 -0000 2011/1/11 > Thank you very much for your problem report. > It has the internal identification `misc/153884'. > The individual assigned to look at your > report is: freebsd-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=153884 > > >Category: misc > >Responsible: freebsd-bugs > >Synopsis: [patch] update opengfx to 0.3.2 > >Arrival-Date: Tue Jan 11 08:00:19 UTC 2011 > mistake category. misc -> ports -- Best regard. Ilya A. Arhipov From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 11 08:50:08 2011 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 CCBEE106566C for ; Tue, 11 Jan 2011 08: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 A1BDF8FC0A for ; Tue, 11 Jan 2011 08: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 p0B8o8LB095991 for ; Tue, 11 Jan 2011 08: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 p0B8o8cw095990; Tue, 11 Jan 2011 08:50:08 GMT (envelope-from gnats) Date: Tue, 11 Jan 2011 08:50:08 GMT Message-Id: <201101110850.p0B8o8cw095990@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Ilya A. Arhipov" Cc: Subject: Re: misc/153884: [patch] update opengfx to 0.3.2 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Ilya A. Arhipov" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2011 08:50:08 -0000 The following reply was made to PR misc/153884; it has been noted by GNATS. From: "Ilya A. Arhipov" To: FreeBSD-gnats-submit@freebsd.org, freebsd-bugs@freebsd.org Cc: Subject: Re: misc/153884: [patch] update opengfx to 0.3.2 Date: Tue, 11 Jan 2011 11:20:19 +0300 --002215048dc74e503d04998dc1c5 Content-Type: text/plain; charset=ISO-8859-1 2011/1/11 > Thank you very much for your problem report. > It has the internal identification `misc/153884'. > The individual assigned to look at your > report is: freebsd-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=153884 > > >Category: misc > >Responsible: freebsd-bugs > >Synopsis: [patch] update opengfx to 0.3.2 > >Arrival-Date: Tue Jan 11 08:00:19 UTC 2011 > mistake category. misc -> ports -- Best regard. Ilya A. Arhipov --002215048dc74e503d04998dc1c5 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
2011/1/11 <FreeBSD-gnats-submit= @freebsd.org>
Thank you very much for your problem report.
It has the internal identification `misc/153884'.
The individual assigned to look at your
report is: freebsd-bugs.

You can access the state of your problem report at any time
via this link:

http://www.freebsd.org/cgi/query-pr.cgi?pr=3D153884

>Category: =A0 =A0 =A0 misc
>Responsible: =A0 =A0freebsd-bugs
>Synopsis: =A0 =A0 =A0 [patch] update opengfx to 0.3.2
>Arrival-Date: =A0 Tue Jan 11 08:00:19 UTC 2011

mistake category. misc -> ports
=
--
Best regard.
Ilya A. Arhipov

--002215048dc74e503d04998dc1c5-- From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 11 09:28:36 2011 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 5178B106566B; Tue, 11 Jan 2011 09:28:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 28ACB8FC14; Tue, 11 Jan 2011 09:28:36 +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 p0B9Sa0v038862; Tue, 11 Jan 2011 09:28:36 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0B9SaJn038858; Tue, 11 Jan 2011 09:28:36 GMT (envelope-from sunpoet) Date: Tue, 11 Jan 2011 09:28:36 GMT Message-Id: <201101110928.p0B9SaJn038858@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/153884: [patch] update opengfx to 0.3.2 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, 11 Jan 2011 09:28:36 -0000 Synopsis: [patch] update opengfx to 0.3.2 Class-Changed-From-To: update->maintainer-update Class-Changed-By: sunpoet Class-Changed-When: Tue Jan 11 09:17:27 UTC 2011 Class-Changed-Why: Submitter is maintainer. Responsible-Changed-From-To: freebsd-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Tue Jan 11 09:17:27 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=153884 From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 11 11:10:08 2011 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 8649C106566B for ; Tue, 11 Jan 2011 11:10: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 561328FC15 for ; Tue, 11 Jan 2011 11:10: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 p0BBA8RT049822 for ; Tue, 11 Jan 2011 11: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 p0BBA8Lh049821; Tue, 11 Jan 2011 11:10:08 GMT (envelope-from gnats) Date: Tue, 11 Jan 2011 11:10:08 GMT Message-Id: <201101111110.p0BBA8Lh049821@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Stefan =?iso-8859-1?Q?Kr=FCger?= Cc: Subject: Re: kern/152647: Use of geli hmac/sha512 yields GEOM_ELI "bytes corrupted at offset" error X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Stefan =?iso-8859-1?Q?Kr=FCger?= List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2011 11:10:08 -0000 The following reply was made to PR kern/152647; it has been noted by GNATS. From: Stefan =?iso-8859-1?Q?Kr=FCger?= To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/152647: Use of geli hmac/sha512 yields GEOM_ELI "bytes corrupted at offset" error Date: Tue, 11 Jan 2011 11:36:20 +0100 The problem still exists on 8.2-RC1. FreeBSD beastie.home.lan 8.2-RC1 FreeBSD 8.2-RC1 #0: Thu Dec 23 15:32:35 UTC 2010 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 Steps to reproduce the issue: # swapoff -a # geli load # geli onetime -a HMAC/SHA1 -e AES-CBC -s 4096 -d /dev/ad0s1b GEOM_ELI: Device ad0s1b.eli created. GEOM_ELI: Encryption: AES-CBC 128 GEOM_ELI: Integrity: HMAC/SHA1 GEOM_ELI: Crypto: software GEOM_ELI: ad0s1b.eli: 4096 bytes corrupted at offset 954429440. GEOM_ELI: ad0s1b.eli: 8192 bytes corrupted at offset 65536. GEOM_ELI: ad0s1b.eli: 8192 bytes corrupted at offset 8192. GEOM_ELI: ad0s1b.eli: 8192 bytes corrupted at offset 0. GEOM_ELI: ad0s1b.eli: 8192 bytes corrupted at offset 262144. GEOM_ELI: ad0s1b.eli: 8192 bytes corrupted at offset 65536. GEOM_ELI: ad0s1b.eli: 8192 bytes corrupted at offset 8192. GEOM_ELI: ad0s1b.eli: 8192 bytes corrupted at offset 0. GEOM_ELI: ad0s1b.eli: 8192 bytes corrupted at offset 262144. GEOM_ELI: ad0s1b.eli: 4096 bytes corrupted at offset 32768. GEOM_ELI: ad0s1b.eli: 4096 bytes corrupted at offset 0. GEOM_ELI: ad0s1b.eli: 4096 bytes corrupted at offset 8192. GEOM_ELI: ad0s1b.eli: 4096 bytes corrupted at offset 65536. GEOM_ELI: ad0s1b.eli: 4096 bytes corrupted at offset 0. # This happens with any data integrity verification algorithm. Also, newfs'ing a HMAC/* geli partition is not possible. HTH From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 11 11:10:10 2011 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 8A3D210656BC for ; Tue, 11 Jan 2011 11:10: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 5F41D8FC13 for ; Tue, 11 Jan 2011 11:10: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 p0BBAAYh049856 for ; Tue, 11 Jan 2011 11:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0BBAAmw049855; Tue, 11 Jan 2011 11:10:10 GMT (envelope-from gnats) Date: Tue, 11 Jan 2011 11:10:10 GMT Message-Id: <201101111110.p0BBAAmw049855@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Sergey Kandaurov Cc: Subject: Re: bin/152525: ntpd(8) on 8.1 loops on select() with EBADF X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sergey Kandaurov List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2011 11:10:10 -0000 The following reply was made to PR bin/152525; it has been noted by GNATS. From: Sergey Kandaurov To: bug-followup@FreeBSD.org, pluknet@gmail.com Cc: Subject: Re: bin/152525: ntpd(8) on 8.1 loops on select() with EBADF Date: Tue, 11 Jan 2011 14:03:29 +0300 Some more details and investigations. This situation reproduces iff there are over 1000 IP assigned on interface. I suspect select() behaves incorrectly on such fd_set size of listen sockets. [unmodified ntpd as in 8]# sockstat | grep ntpd | grep '\:123' | wc -l 999 [unmodified ntpd as in 8]# top -bI | grep ntpd 1478 root 1 113 0 11736K 3428K CPU3 3 429.7H 75.78% ntpd The possible correction is in updating ntpd to the latest stable ntpd version that supports listening on a specified subset of sockets. So I've updated ntpd to 4.2.6p2 on one of the problem boxes, and that reduced the number of listened sockets to 6. [ntpd 4.2.6]# sockstat | grep ntpd | grep '\:123' | wc -l 6 That seems to fix the reported issue. -- wbr, pluknet From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 11 16:00:19 2011 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 DA3C81065693 for ; Tue, 11 Jan 2011 16:00:19 +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 8F7278FC19 for ; Tue, 11 Jan 2011 16:00:19 +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 p0BG0JKN060493 for ; Tue, 11 Jan 2011 16:00:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0BG0JLT060452; Tue, 11 Jan 2011 16:00:19 GMT (envelope-from gnats) Resent-Date: Tue, 11 Jan 2011 16:00:19 GMT Resent-Message-Id: <201101111600.p0BG0JLT060452@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, Pedro Giffuni Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3792A106566B for ; Tue, 11 Jan 2011 15:59:31 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 24F0D8FC14 for ; Tue, 11 Jan 2011 15:59:31 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0BFxUuJ048357 for ; Tue, 11 Jan 2011 15:59:30 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0BFxU6p048356; Tue, 11 Jan 2011 15:59:30 GMT (envelope-from nobody) Message-Id: <201101111559.p0BFxU6p048356@red.freebsd.org> Date: Tue, 11 Jan 2011 15:59:30 GMT From: Pedro Giffuni To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/153901: Replace the GPL'd emu10k1-alsa.h with emuxkireg.h from NetBSD 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, 11 Jan 2011 16:00:20 -0000 >Number: 153901 >Category: kern >Synopsis: Replace the GPL'd emu10k1-alsa.h with emuxkireg.h from NetBSD >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jan 11 16:00:19 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Pedro Giffuni >Release: 8.2-RC1 >Organization: >Environment: FreeBSD mogwai.giffuni.net 8.2-RC1 FreeBSD 8.2-RC1 #0: Thu Dec 23 15:32:35 UTC 2010 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: NetBSD has a files dev/pci/emuxkireg.h NetBSD file which is equivalent to the alsa header we use in our sound system for the emu10k1 code. The NetBSD is actually much smaller as it doesn't carry some data structures that we don't use anyway. I brought in the NetBSD file and left it basically unmodified, I was careful not to add anything on it that would affect the license (I didn't fix style issues either). I then modified the C sources to match the header and finally hammered in what was missing. A code review is welcome, plus I hope using this header will help a bit the "crosspolination" effect with the other BSDs. >How-To-Repeat: >Fix: Patch attached. Patch attached with submission follows: diff -ruN dev/sound/pci.orig/emu10k1.c dev/sound/pci/emu10k1.c --- dev/sound/pci.orig/emu10k1.c 2011-01-07 22:17:46.000000000 +0000 +++ dev/sound/pci/emu10k1.c 2011-01-10 20:16:03.000000000 +0000 @@ -32,7 +32,7 @@ #include #include -#include "emu10k1-alsa%diked.h" +#include #include #include @@ -66,12 +66,94 @@ #define ENABLE 0xffffffff #define DISABLE 0x00000000 -#define ENV_ON DCYSUSV_CHANNELENABLE_MASK +#define ENV_ON EMU_CHAN_DCYSUSV_CHANNELENABLE_MASK #define ENV_OFF 0x00 /* XXX: should this be 1? */ -#define A_IOCFG_GPOUT_A 0x40 /* Analog Output */ -#define A_IOCFG_GPOUT_D 0x04 /* Digital Output */ -#define A_IOCFG_GPOUT_AD (A_IOCFG_GPOUT_A|A_IOCFG_GPOUT_D) /* A_IOCFG_GPOUT0 */ +#define EMU_A_IOCFG_GPOUT_A 0x40 +#define EMU_A_IOCFG_GPOUT_D 0x04 +#define EMU_A_IOCFG_GPOUT_AD (EMU_A_IOCFG_GPOUT_A|EMU_A_IOCFG_GPOUT_D) /* EMU_A_IOCFG_GPOUT0 */ + +#define EMU_HCFG_GPOUT1 0x00000800 + +/* instruction set */ +#define iACC3 0x06 +#define iMACINT0 0x04 +#define iINTERP 0x0e + +#define C_00000000 0x40 +#define C_00000001 0x41 +#define C_00000004 0x44 +#define C_40000000 0x4d +/* Audigy constants */ +#define A_C_00000000 0xc0 +#define A_C_40000000 0xcd + +/* GPRs */ +#define FXBUS(x) (0x00 + (x)) +#define EXTIN(x) (0x10 + (x)) +#define EXTOUT(x) (0x20 + (x)) + +#define GPR(x) (EMU_FXGPREGBASE + (x)) +#define A_EXTIN(x) (0x40 + (x)) +#define A_FXBUS(x) (0x00 + (x)) +#define A_EXTOUT(x) (0x60 + (x)) +#define A_GPR(x) (EMU_A_FXGPREGBASE + (x)) + +/* FX buses */ +#define FXBUS_PCM_LEFT 0x00 +#define FXBUS_PCM_RIGHT 0x01 +#define FXBUS_MIDI_LEFT 0x04 +#define FXBUS_MIDI_RIGHT 0x05 +#define FXBUS_MIDI_REVERB 0x0c +#define FXBUS_MIDI_CHORUS 0x0d + +/* Inputs */ +#define EXTIN_AC97_L 0x00 +#define EXTIN_AC97_R 0x01 +#define EXTIN_SPDIF_CD_L 0x02 +#define EXTIN_SPDIF_CD_R 0x03 +#define EXTIN_TOSLINK_L 0x06 +#define EXTIN_TOSLINK_R 0x07 +#define EXTIN_COAX_SPDIF_L 0x0a +#define EXTIN_COAX_SPDIF_R 0x0b +/* Audigy Inputs */ +#define A_EXTIN_AC97_L 0x00 +#define A_EXTIN_AC97_R 0x01 + +/* Outputs */ +#define EXTOUT_AC97_L 0x00 +#define EXTOUT_AC97_R 0x01 +#define EXTOUT_TOSLINK_L 0x02 +#define EXTOUT_TOSLINK_R 0x03 +#define EXTOUT_AC97_CENTER 0x04 +#define EXTOUT_AC97_LFE 0x05 +#define EXTOUT_HEADPHONE_L 0x06 +#define EXTOUT_HEADPHONE_R 0x07 +#define EXTOUT_REAR_L 0x08 +#define EXTOUT_REAR_R 0x09 +#define EXTOUT_ADC_CAP_L 0x0a +#define EXTOUT_ADC_CAP_R 0x0b +#define EXTOUT_ACENTER 0x11 +#define EXTOUT_ALFE 0x12 +/* Audigy Outputs */ +#define A_EXTOUT_FRONT_L 0x00 +#define A_EXTOUT_FRONT_R 0x01 +#define A_EXTOUT_CENTER 0x02 +#define A_EXTOUT_LFE 0x03 +#define A_EXTOUT_HEADPHONE_L 0x04 +#define A_EXTOUT_HEADPHONE_R 0x05 +#define A_EXTOUT_REAR_L 0x06 +#define A_EXTOUT_REAR_R 0x07 +#define A_EXTOUT_AFRONT_L 0x08 +#define A_EXTOUT_AFRONT_R 0x09 +#define A_EXTOUT_ACENTER 0x0a +#define A_EXTOUT_ALFE 0x0b +#define A_EXTOUT_AREAR_L 0x0e +#define A_EXTOUT_AREAR_R 0x0f +#define A_EXTOUT_AC97_L 0x10 +#define A_EXTOUT_AC97_R 0x11 +#define A_EXTOUT_ADC_CAP_L 0x16 +#define A_EXTOUT_ADC_CAP_R 0x17 struct emu_memblk { SLIST_ENTRY(emu_memblk) link; @@ -247,9 +329,9 @@ { u_int32_t ptr, val, mask, size, offset; - ptr = ((reg << 16) & sc->addrmask) | (chn & PTR_CHANNELNUM_MASK); - emu_wr(sc, PTR, ptr, 4); - val = emu_rd(sc, DATA, 4); + ptr = ((reg << 16) & sc->addrmask) | (chn & EMU_PTR_CHNO_MASK); + emu_wr(sc, EMU_PTR, ptr, 4); + val = emu_rd(sc, EMU_DATA, 4); if (reg & 0xff000000) { size = (reg >> 24) & 0x3f; offset = (reg >> 16) & 0x1f; @@ -265,23 +347,23 @@ { u_int32_t ptr, mask, size, offset; - ptr = ((reg << 16) & sc->addrmask) | (chn & PTR_CHANNELNUM_MASK); - emu_wr(sc, PTR, ptr, 4); + ptr = ((reg << 16) & sc->addrmask) | (chn & EMU_PTR_CHNO_MASK); + emu_wr(sc, EMU_PTR, ptr, 4); if (reg & 0xff000000) { size = (reg >> 24) & 0x3f; offset = (reg >> 16) & 0x1f; mask = ((1 << size) - 1) << offset; data <<= offset; data &= mask; - data |= emu_rd(sc, DATA, 4) & ~mask; + data |= emu_rd(sc, EMU_DATA, 4) & ~mask; } - emu_wr(sc, DATA, data, 4); + emu_wr(sc, EMU_DATA, data, 4); } static void emu_wrefx(struct sc_info *sc, unsigned int pc, unsigned int data) { - pc += sc->audigy ? A_MICROCODEBASE : MICROCODEBASE; + pc += sc->audigy ? EMU_A_MICROCODEBASE : EMU_MICROCODEBASE; emu_wrptr(sc, 0, pc, data); } @@ -294,8 +376,8 @@ { struct sc_info *sc = (struct sc_info *)devinfo; - emu_wr(sc, AC97ADDRESS, regno, 1); - return emu_rd(sc, AC97DATA, 2); + emu_wr(sc, EMU_AC97ADDR, regno, 1); + return emu_rd(sc, EMU_AC97DATA, 2); } static int @@ -303,8 +385,8 @@ { struct sc_info *sc = (struct sc_info *)devinfo; - emu_wr(sc, AC97ADDRESS, regno, 1); - emu_wr(sc, AC97DATA, data, 2); + emu_wr(sc, EMU_AC97ADDR, regno, 1); + emu_wr(sc, EMU_AC97DATA, data, 2); return 0; } @@ -346,7 +428,7 @@ } RANGE(rate, 48, 9600); sc->timerinterval = 48000 / rate; - emu_wr(sc, TIMER, sc->timerinterval & 0x03ff, 2); + emu_wr(sc, EMU_TIMER, sc->timerinterval & 0x03ff, 2); return sc->timerinterval; } @@ -357,15 +439,15 @@ u_int32_t x; if (go) { if (sc->timer++ == 0) { - x = emu_rd(sc, INTE, 4); - x |= INTE_INTERVALTIMERENB; - emu_wr(sc, INTE, x, 4); + x = emu_rd(sc, EMU_INTE, 4); + x |= EMU_INTE_INTERTIMERENB; + emu_wr(sc, EMU_INTE, x, 4); } } else { sc->timer = 0; - x = emu_rd(sc, INTE, 4); - x &= ~INTE_INTERVALTIMERENB; - emu_wr(sc, INTE, x, 4); + x = emu_rd(sc, EMU_INTE, 4); + x &= ~EMU_INTE_INTERTIMERENB; + emu_wr(sc, EMU_INTE, x, 4); } return 0; } @@ -373,7 +455,7 @@ static void emu_enastop(struct sc_info *sc, char channel, int enable) { - int reg = (channel & 0x20) ? SOLEH : SOLEL; + int reg = (channel & 0x20) ? EMU_SOLEH : EMU_SOLEL; channel &= 0x1f; reg |= 1 << 24; reg |= channel << 16; @@ -568,49 +650,49 @@ r = v->ismaster ? 0 : r; } - emu_wrptr(sc, v->vnum, CPF, v->stereo ? CPF_STEREO_MASK : 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_CPF, v->stereo ? EMU_CHAN_CPF_STEREO_MASK : 0); val = v->stereo ? 28 : 30; val *= v->b16 ? 1 : 2; start = sa + val; if (sc->audigy) { - emu_wrptr(sc, v->vnum, A_FXRT1, v->fxrt1); - emu_wrptr(sc, v->vnum, A_FXRT2, v->fxrt2); - emu_wrptr(sc, v->vnum, A_SENDAMOUNTS, 0); + emu_wrptr(sc, v->vnum, EMU_A_CHAN_FXRT1, v->fxrt1); + emu_wrptr(sc, v->vnum, EMU_A_CHAN_FXRT2, v->fxrt2); + emu_wrptr(sc, v->vnum, EMU_A_CHAN_SENDAMOUNTS, 0); } else - emu_wrptr(sc, v->vnum, FXRT, v->fxrt1 << 16); + emu_wrptr(sc, v->vnum, EMU_CHAN_FXRT, v->fxrt1 << 16); - emu_wrptr(sc, v->vnum, PTRX, (x << 8) | r); - emu_wrptr(sc, v->vnum, DSL, ea | (y << 24)); - emu_wrptr(sc, v->vnum, PSST, sa | (l << 24)); - emu_wrptr(sc, v->vnum, CCCA, start | (v->b16 ? 0 : CCCA_8BITSELECT)); + emu_wrptr(sc, v->vnum, EMU_CHAN_PTRX, (x << 8) | r); + emu_wrptr(sc, v->vnum, EMU_CHAN_DSL, ea | (y << 24)); + emu_wrptr(sc, v->vnum, EMU_CHAN_PSST, sa | (l << 24)); + emu_wrptr(sc, v->vnum, EMU_CHAN_CCCA, start | (v->b16 ? 0 : EMU_CHAN_CCCA_8BITSELECT)); - emu_wrptr(sc, v->vnum, Z1, 0); - emu_wrptr(sc, v->vnum, Z2, 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_Z1, 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_Z2, 0); silent_page = ((u_int32_t)(sc->mem.silent_page_addr) << 1) - | MAP_PTI_MASK; - emu_wrptr(sc, v->vnum, MAPA, silent_page); - emu_wrptr(sc, v->vnum, MAPB, silent_page); - - emu_wrptr(sc, v->vnum, CVCF, CVCF_CURRENTFILTER_MASK); - emu_wrptr(sc, v->vnum, VTFT, VTFT_FILTERTARGET_MASK); - emu_wrptr(sc, v->vnum, ATKHLDM, 0); - emu_wrptr(sc, v->vnum, DCYSUSM, DCYSUSM_DECAYTIME_MASK); - emu_wrptr(sc, v->vnum, LFOVAL1, 0x8000); - emu_wrptr(sc, v->vnum, LFOVAL2, 0x8000); - emu_wrptr(sc, v->vnum, FMMOD, 0); - emu_wrptr(sc, v->vnum, TREMFRQ, 0); - emu_wrptr(sc, v->vnum, FM2FRQ2, 0); - emu_wrptr(sc, v->vnum, ENVVAL, 0x8000); - - emu_wrptr(sc, v->vnum, ATKHLDV, - ATKHLDV_HOLDTIME_MASK | ATKHLDV_ATTACKTIME_MASK); - emu_wrptr(sc, v->vnum, ENVVOL, 0x8000); + | EMU_CHAN_MAP_PTI_MASK; + emu_wrptr(sc, v->vnum, EMU_CHAN_MAPA, silent_page); + emu_wrptr(sc, v->vnum, EMU_CHAN_MAPB, silent_page); + + emu_wrptr(sc, v->vnum, EMU_CHAN_CVCF, EMU_CHAN_CVCF_CURRFILTER_MASK); + emu_wrptr(sc, v->vnum, EMU_CHAN_VTFT, EMU_CHAN_VTFT_FILTERTARGET_MASK); + emu_wrptr(sc, v->vnum, EMU_CHAN_ATKHLDM, 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_DCYSUSM, EMU_CHAN_DCYSUSM_DECAYTIME_MASK); + emu_wrptr(sc, v->vnum, EMU_CHAN_LFOVAL1, 0x8000); + emu_wrptr(sc, v->vnum, EMU_CHAN_LFOVAL2, 0x8000); + emu_wrptr(sc, v->vnum, EMU_CHAN_FMMOD, 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_TREMFRQ, 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_FM2FRQ2, 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_ENVVAL, 0x8000); + + emu_wrptr(sc, v->vnum, EMU_CHAN_ATKHLDV, + EMU_CHAN_ATKHLDV_HOLDTIME_MASK | EMU_CHAN_ATKHLDV_ATTACKTIME_MASK); + emu_wrptr(sc, v->vnum, EMU_CHAN_ENVVOL, 0x8000); - emu_wrptr(sc, v->vnum, PEFE_FILTERAMOUNT, 0x7f); - emu_wrptr(sc, v->vnum, PEFE_PITCHAMOUNT, 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_PEFE_FILTERAMOUNT, 0x7f); + emu_wrptr(sc, v->vnum, EMU_CHAN_PEFE_PITCHAMOUNT, 0); if (v->slave != NULL) emu_vwrite(sc, v->slave); @@ -631,29 +713,29 @@ sample = v->b16 ? 0x00000000 : 0x80808080; for (i = 0; i < cs; i++) - emu_wrptr(sc, v->vnum, CD0 + i, sample); - emu_wrptr(sc, v->vnum, CCR_CACHEINVALIDSIZE, 0); - emu_wrptr(sc, v->vnum, CCR_READADDRESS, cra); - emu_wrptr(sc, v->vnum, CCR_CACHEINVALIDSIZE, ccis); - - emu_wrptr(sc, v->vnum, IFATN, 0xff00); - emu_wrptr(sc, v->vnum, VTFT, 0xffffffff); - emu_wrptr(sc, v->vnum, CVCF, 0xffffffff); - emu_wrptr(sc, v->vnum, DCYSUSV, 0x00007f7f); + emu_wrptr(sc, v->vnum, EMU_CHAN_CD0 + i, sample); + emu_wrptr(sc, v->vnum, EMU_CHAN_CCR_CACHEINVALIDSIZE, 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_CCR_READADDRESS, cra); + emu_wrptr(sc, v->vnum, EMU_CHAN_CCR_CACHEINVALIDSIZE, ccis); + + emu_wrptr(sc, v->vnum, EMU_CHAN_IFATN, 0xff00); + emu_wrptr(sc, v->vnum, EMU_CHAN_VTFT, 0xffffffff); + emu_wrptr(sc, v->vnum, EMU_CHAN_CVCF, 0xffffffff); + emu_wrptr(sc, v->vnum, EMU_CHAN_DCYSUSV, 0x00007f7f); emu_enastop(sc, v->vnum, 0); pitch_target = emu_rate_to_linearpitch(v->speed); initial_pitch = emu_rate_to_pitch(v->speed) >> 8; - emu_wrptr(sc, v->vnum, PTRX_PITCHTARGET, pitch_target); - emu_wrptr(sc, v->vnum, CPF_CURRENTPITCH, pitch_target); - emu_wrptr(sc, v->vnum, IP, initial_pitch); + emu_wrptr(sc, v->vnum, EMU_CHAN_PTRX_PITCHTARGET, pitch_target); + emu_wrptr(sc, v->vnum, EMU_CHAN_CPF_PITCH, pitch_target); + emu_wrptr(sc, v->vnum, EMU_CHAN_IP, initial_pitch); } else { - emu_wrptr(sc, v->vnum, PTRX_PITCHTARGET, 0); - emu_wrptr(sc, v->vnum, CPF_CURRENTPITCH, 0); - emu_wrptr(sc, v->vnum, IFATN, 0xffff); - emu_wrptr(sc, v->vnum, VTFT, 0x0000ffff); - emu_wrptr(sc, v->vnum, CVCF, 0x0000ffff); - emu_wrptr(sc, v->vnum, IP, 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_PTRX_PITCHTARGET, 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_CPF_PITCH, 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_IFATN, 0xffff); + emu_wrptr(sc, v->vnum, EMU_CHAN_VTFT, 0x0000ffff); + emu_wrptr(sc, v->vnum, EMU_CHAN_CVCF, 0x0000ffff); + emu_wrptr(sc, v->vnum, EMU_CHAN_IP, 0); emu_enastop(sc, v->vnum, 1); } if (v->slave != NULL) @@ -666,7 +748,7 @@ int s, ptr; s = (v->b16 ? 1 : 0) + (v->stereo ? 1 : 0); - ptr = (emu_rdptr(sc, v->vnum, CCCA_CURRADDR) - (v->start >> s)) << s; + ptr = (emu_rdptr(sc, v->vnum, EMU_CHAN_CCCA_CURRADDR) - (v->start >> s)) << s; return ptr & ~0x0000001f; } @@ -875,27 +957,27 @@ ch->num = sc->rnum; switch(sc->rnum) { case 0: - ch->idxreg = sc->audigy ? A_ADCIDX : ADCIDX; - ch->basereg = ADCBA; - ch->sizereg = ADCBS; - ch->setupreg = ADCCR; - ch->irqmask = INTE_ADCBUFENABLE; + ch->idxreg = sc->audigy ? EMU_A_ADCIDX : EMU_ADCIDX; + ch->basereg = EMU_ADCBA; + ch->sizereg = EMU_ADCBS; + ch->setupreg = EMU_ADCCR; + ch->irqmask = EMU_INTE_ADCBUFENABLE; break; case 1: - ch->idxreg = FXIDX; - ch->basereg = FXBA; - ch->sizereg = FXBS; - ch->setupreg = FXWC; - ch->irqmask = INTE_EFXBUFENABLE; + ch->idxreg = EMU_FXIDX; + ch->basereg = EMU_FXBA; + ch->sizereg = EMU_FXBS; + ch->setupreg = EMU_FXWC; + ch->irqmask = EMU_INTE_EFXBUFENABLE; break; case 2: - ch->idxreg = MICIDX; - ch->basereg = MICBA; - ch->sizereg = MICBS; + ch->idxreg = EMU_MICIDX; + ch->basereg = EMU_MICBA; + ch->sizereg = EMU_MICBS; ch->setupreg = 0; - ch->irqmask = INTE_MICBUFENABLE; + ch->irqmask = EMU_INTE_MICBUFENABLE; break; } sc->rnum++; @@ -967,27 +1049,27 @@ switch(sc->bufsz) { case 4096: - sz = ADCBS_BUFSIZE_4096; + sz = EMU_RECBS_BUFSIZE_4096; break; case 8192: - sz = ADCBS_BUFSIZE_8192; + sz = EMU_RECBS_BUFSIZE_8192; break; case 16384: - sz = ADCBS_BUFSIZE_16384; + sz = EMU_RECBS_BUFSIZE_16384; break; case 32768: - sz = ADCBS_BUFSIZE_32768; + sz = EMU_RECBS_BUFSIZE_32768; break; case 65536: - sz = ADCBS_BUFSIZE_65536; + sz = EMU_RECBS_BUFSIZE_65536; break; default: - sz = ADCBS_BUFSIZE_4096; + sz = EMU_RECBS_BUFSIZE_4096; } snd_mtxlock(sc->lock); @@ -997,23 +1079,23 @@ emu_wrptr(sc, 0, ch->sizereg, sz); if (ch->num == 0) { if (sc->audigy) { - val = A_ADCCR_LCHANENABLE; + val = EMU_ADCCR_LCHANENABLE; if (AFMT_CHANNEL(ch->fmt) > 1) - val |= A_ADCCR_RCHANENABLE; + val |= EMU_ADCCR_RCHANENABLE; val |= audigy_recval(ch->spd); } else { - val = ADCCR_LCHANENABLE; + val = EMU_ADCCR_LCHANENABLE; if (AFMT_CHANNEL(ch->fmt) > 1) - val |= ADCCR_RCHANENABLE; + val |= EMU_ADCCR_RCHANENABLE; val |= emu_recval(ch->spd); } emu_wrptr(sc, 0, ch->setupreg, 0); emu_wrptr(sc, 0, ch->setupreg, val); } - val = emu_rd(sc, INTE, 4); + val = emu_rd(sc, EMU_INTE, 4); val |= ch->irqmask; - emu_wr(sc, INTE, val, 4); + emu_wr(sc, EMU_INTE, val, 4); break; case PCMTRIG_STOP: @@ -1022,9 +1104,9 @@ emu_wrptr(sc, 0, ch->sizereg, 0); if (ch->setupreg) emu_wrptr(sc, 0, ch->setupreg, 0); - val = emu_rd(sc, INTE, 4); + val = emu_rd(sc, EMU_INTE, 4); val &= ~ch->irqmask; - emu_wr(sc, INTE, val, 4); + emu_wr(sc, EMU_INTE, val, 4); break; case PCMTRIG_EMLDMAWR: @@ -1122,9 +1204,9 @@ { int i; - i = emu_rd(sc, INTE, 4); - i |= INTE_MIDIRXENABLE; - emu_wr(sc, INTE, i, 4); + i = emu_rd(sc, EMU_INTE, 4); + i |= EMU_INTE_MIDIRXENABLE; + emu_wr(sc, EMU_INTE, i, 4); sc->mpu = mpu401_init(&emu_mpu_class, sc, emu_intr2, &sc->mpu_intr); } @@ -1139,52 +1221,52 @@ snd_mtxlock(sc->lock); while (1) { - stat = emu_rd(sc, IPR, 4); + stat = emu_rd(sc, EMU_IPR, 4); if (stat == 0) break; ack = 0; /* process irq */ - if (stat & IPR_INTERVALTIMER) - ack |= IPR_INTERVALTIMER; + if (stat & EMU_IPR_INTERVALTIMER) + ack |= EMU_IPR_INTERVALTIMER; - if (stat & (IPR_ADCBUFFULL | IPR_ADCBUFHALFFULL)) - ack |= stat & (IPR_ADCBUFFULL | IPR_ADCBUFHALFFULL); + if (stat & (EMU_IPR_ADCBUFFULL | EMU_IPR_ADCBUFHALFFULL)) + ack |= stat & (EMU_IPR_ADCBUFFULL | EMU_IPR_ADCBUFHALFFULL); - if (stat & (IPR_EFXBUFFULL | IPR_EFXBUFHALFFULL)) - ack |= stat & (IPR_EFXBUFFULL | IPR_EFXBUFHALFFULL); + if (stat & (EMU_IPR_EFXBUFFULL | EMU_IPR_EFXBUFHALFFULL)) + ack |= stat & (EMU_IPR_EFXBUFFULL | EMU_IPR_EFXBUFHALFFULL); - if (stat & (IPR_MICBUFFULL | IPR_MICBUFHALFFULL)) - ack |= stat & (IPR_MICBUFFULL | IPR_MICBUFHALFFULL); + if (stat & (EMU_IPR_MICBUFFULL | EMU_IPR_MICBUFHALFFULL)) + ack |= stat & (EMU_IPR_MICBUFFULL | EMU_IPR_MICBUFHALFFULL); - if (stat & IPR_PCIERROR) { - ack |= IPR_PCIERROR; + if (stat & EMU_PCIERROR) { + ack |= EMU_PCIERROR; device_printf(sc->dev, "pci error\n"); /* we still get an nmi with ecc ram even if we ack this */ } - if (stat & IPR_SAMPLERATETRACKER) { - ack |= IPR_SAMPLERATETRACKER; + if (stat & EMU_IPR_RATETRCHANGE) { + ack |= EMU_IPR_RATETRCHANGE; #ifdef EMUDEBUG device_printf(sc->dev, "sample rate tracker lock status change\n"); #endif } - if (stat & IPR_MIDIRECVBUFEMPTY) + if (stat & EMU_IPR_MIDIRECVBUFE) if (sc->mpu_intr) { (sc->mpu_intr)(sc->mpu); - ack |= IPR_MIDIRECVBUFEMPTY | IPR_MIDITRANSBUFEMPTY; + ack |= EMU_IPR_MIDIRECVBUFE | EMU_IPR_MIDITRANSBUFE; } if (stat & ~ack) device_printf(sc->dev, "dodgy irq: %x (harmless)\n", stat & ~ack); - emu_wr(sc, IPR, stat, 4); + emu_wr(sc, EMU_IPR, stat, 4); if (ack) { snd_mtxunlock(sc->lock); - if (ack & IPR_INTERVALTIMER) { + if (ack & EMU_IPR_INTERVALTIMER) { x = 0; for (i = 0; i < sc->nchans; i++) { if (sc->pch[i].run) { @@ -1197,15 +1279,15 @@ } - if (ack & (IPR_ADCBUFFULL | IPR_ADCBUFHALFFULL)) { + if (ack & (EMU_IPR_ADCBUFFULL | EMU_IPR_ADCBUFHALFFULL)) { if (sc->rch[0].channel) chn_intr(sc->rch[0].channel); } - if (ack & (IPR_EFXBUFFULL | IPR_EFXBUFHALFFULL)) { + if (ack & (EMU_IPR_EFXBUFFULL | EMU_IPR_EFXBUFHALFFULL)) { if (sc->rch[1].channel) chn_intr(sc->rch[1].channel); } - if (ack & (IPR_MICBUFFULL | IPR_MICBUFHALFFULL)) { + if (ack & (EMU_IPR_MICBUFFULL | EMU_IPR_MICBUFHALFFULL)) { if (sc->rch[2].channel) chn_intr(sc->rch[2].channel); } @@ -1378,12 +1460,12 @@ audigy_addefxop(sc, 0x0f, 0x0c0, 0x0c0, 0x0cf, 0x0c0, &pc); for (i = 0; i < 512; i++) - emu_wrptr(sc, 0, A_FXGPREGBASE + i, 0x0); + emu_wrptr(sc, 0, EMU_A_FXGPREGBASE + i, 0x0); pc = 16; /* stop fx processor */ - emu_wrptr(sc, 0, A_DBG, A_DBG_SINGLE_STEP); + emu_wrptr(sc, 0, EMU_A_DBG, EMU_A_DBG_SINGLE_STEP); /* Audigy 2 (EMU10K2) DSP Registers: FX Bus @@ -1518,7 +1600,7 @@ A_C_00000000, A_EXTIN(A_EXTIN_AC97_R), &pc); /* resume normal operations */ - emu_wrptr(sc, 0, A_DBG, 0); + emu_wrptr(sc, 0, EMU_A_DBG, 0); } static void @@ -1534,7 +1616,7 @@ } for (i = 0; i < 256; i++) - emu_wrptr(sc, 0, FXGPREGBASE + i, 0); + emu_wrptr(sc, 0, EMU_FXGPREGBASE + i, 0); /* FX-8010 DSP Registers: FX Bus @@ -1654,7 +1736,7 @@ C_00000000, EXTIN(EXTIN_AC97_R), &pc); /* resume normal operations */ - emu_wrptr(sc, 0, DBG, 0); + emu_wrptr(sc, 0, EMU_DBG, 0); } /* Probe and attach the card */ @@ -1665,69 +1747,69 @@ if (sc->audigy) { /* enable additional AC97 slots */ - emu_wrptr(sc, 0, AC97SLOT, AC97SLOT_CNTR | AC97SLOT_LFE); + emu_wrptr(sc, 0, EMU_AC97SLOT, EMU_AC97SLOT_CENTER | EMU_AC97SLOT_LFE); } /* disable audio and lock cache */ - emu_wr(sc, HCFG, - HCFG_LOCKSOUNDCACHE | HCFG_LOCKTANKCACHE_MASK | HCFG_MUTEBUTTONENABLE, + emu_wr(sc, EMU_HCFG, + EMU_HCFG_LOCKSOUNDCACHE | EMU_HCFG_LOCKTANKCACHE_MASK | EMU_HCFG_MUTEBUTTONENABLE, 4); /* reset recording buffers */ - emu_wrptr(sc, 0, MICBS, ADCBS_BUFSIZE_NONE); - emu_wrptr(sc, 0, MICBA, 0); - emu_wrptr(sc, 0, FXBS, ADCBS_BUFSIZE_NONE); - emu_wrptr(sc, 0, FXBA, 0); - emu_wrptr(sc, 0, ADCBS, ADCBS_BUFSIZE_NONE); - emu_wrptr(sc, 0, ADCBA, 0); + emu_wrptr(sc, 0, EMU_MICBS, EMU_RECBS_BUFSIZE_NONE); + emu_wrptr(sc, 0, EMU_MICBA, 0); + emu_wrptr(sc, 0, EMU_FXBS, EMU_RECBS_BUFSIZE_NONE); + emu_wrptr(sc, 0, EMU_FXBA, 0); + emu_wrptr(sc, 0, EMU_ADCBS, EMU_RECBS_BUFSIZE_NONE); + emu_wrptr(sc, 0, EMU_ADCBA, 0); /* disable channel interrupt */ - emu_wr(sc, INTE, - INTE_INTERVALTIMERENB | INTE_SAMPLERATETRACKER | INTE_PCIERRORENABLE, + emu_wr(sc, EMU_INTE, + EMU_INTE_INTERTIMERENB | EMU_INTE_SAMPLERATER | EMU_INTE_PCIERRENABLE, 4); - emu_wrptr(sc, 0, CLIEL, 0); - emu_wrptr(sc, 0, CLIEH, 0); - emu_wrptr(sc, 0, SOLEL, 0); - emu_wrptr(sc, 0, SOLEH, 0); + emu_wrptr(sc, 0, EMU_CLIEL, 0); + emu_wrptr(sc, 0, EMU_CLIEH, 0); + emu_wrptr(sc, 0, EMU_SOLEL, 0); + emu_wrptr(sc, 0, EMU_SOLEH, 0); /* wonder what these do... */ if (sc->audigy) { - emu_wrptr(sc, 0, SPBYPASS, 0xf00); - emu_wrptr(sc, 0, AC97SLOT, 0x3); + emu_wrptr(sc, 0, EMU_SPBYPASS, 0xf00); + emu_wrptr(sc, 0, EMU_AC97SLOT, 0x3); } /* init envelope engine */ for (ch = 0; ch < NUM_G; ch++) { - emu_wrptr(sc, ch, DCYSUSV, ENV_OFF); - emu_wrptr(sc, ch, IP, 0); - emu_wrptr(sc, ch, VTFT, 0xffff); - emu_wrptr(sc, ch, CVCF, 0xffff); - emu_wrptr(sc, ch, PTRX, 0); - emu_wrptr(sc, ch, CPF, 0); - emu_wrptr(sc, ch, CCR, 0); - - emu_wrptr(sc, ch, PSST, 0); - emu_wrptr(sc, ch, DSL, 0x10); - emu_wrptr(sc, ch, CCCA, 0); - emu_wrptr(sc, ch, Z1, 0); - emu_wrptr(sc, ch, Z2, 0); - emu_wrptr(sc, ch, FXRT, 0xd01c0000); - - emu_wrptr(sc, ch, ATKHLDM, 0); - emu_wrptr(sc, ch, DCYSUSM, 0); - emu_wrptr(sc, ch, IFATN, 0xffff); - emu_wrptr(sc, ch, PEFE, 0); - emu_wrptr(sc, ch, FMMOD, 0); - emu_wrptr(sc, ch, TREMFRQ, 24); /* 1 Hz */ - emu_wrptr(sc, ch, FM2FRQ2, 24); /* 1 Hz */ - emu_wrptr(sc, ch, TEMPENV, 0); + emu_wrptr(sc, ch, EMU_CHAN_DCYSUSV, ENV_OFF); + emu_wrptr(sc, ch, EMU_CHAN_IP, 0); + emu_wrptr(sc, ch, EMU_CHAN_VTFT, 0xffff); + emu_wrptr(sc, ch, EMU_CHAN_CVCF, 0xffff); + emu_wrptr(sc, ch, EMU_CHAN_PTRX, 0); + emu_wrptr(sc, ch, EMU_CHAN_CPF, 0); + emu_wrptr(sc, ch, EMU_CHAN_CCR, 0); + + emu_wrptr(sc, ch, EMU_CHAN_PSST, 0); + emu_wrptr(sc, ch, EMU_CHAN_DSL, 0x10); + emu_wrptr(sc, ch, EMU_CHAN_CCCA, 0); + emu_wrptr(sc, ch, EMU_CHAN_Z1, 0); + emu_wrptr(sc, ch, EMU_CHAN_Z2, 0); + emu_wrptr(sc, ch, EMU_CHAN_FXRT, 0xd01c0000); + + emu_wrptr(sc, ch, EMU_CHAN_ATKHLDM, 0); + emu_wrptr(sc, ch, EMU_CHAN_DCYSUSM, 0); + emu_wrptr(sc, ch, EMU_CHAN_IFATN, 0xffff); + emu_wrptr(sc, ch, EMU_CHAN_PEFE, 0); + emu_wrptr(sc, ch, EMU_CHAN_FMMOD, 0); + emu_wrptr(sc, ch, EMU_CHAN_TREMFRQ, 24); /* 1 Hz */ + emu_wrptr(sc, ch, EMU_CHAN_FM2FRQ2, 24); /* 1 Hz */ + emu_wrptr(sc, ch, EMU_CHAN_TEMPENV, 0); /*** these are last so OFF prevents writing ***/ - emu_wrptr(sc, ch, LFOVAL2, 0); - emu_wrptr(sc, ch, LFOVAL1, 0); - emu_wrptr(sc, ch, ATKHLDV, 0); - emu_wrptr(sc, ch, ENVVOL, 0); - emu_wrptr(sc, ch, ENVVAL, 0); + emu_wrptr(sc, ch, EMU_CHAN_LFOVAL2, 0); + emu_wrptr(sc, ch, EMU_CHAN_LFOVAL1, 0); + emu_wrptr(sc, ch, EMU_CHAN_ATKHLDV, 0); + emu_wrptr(sc, ch, EMU_CHAN_ENVVOL, 0); + emu_wrptr(sc, ch, EMU_CHAN_ENVVAL, 0); if (sc->audigy) { /* audigy cards need this to initialize correctly */ @@ -1736,9 +1818,9 @@ emu_wrptr(sc, ch, 0x4e, 0); emu_wrptr(sc, ch, 0x4f, 0); /* set default routing */ - emu_wrptr(sc, ch, A_FXRT1, 0x03020100); - emu_wrptr(sc, ch, A_FXRT2, 0x3f3f3f3f); - emu_wrptr(sc, ch, A_SENDAMOUNTS, 0); + emu_wrptr(sc, ch, EMU_A_CHAN_FXRT1, 0x03020100); + emu_wrptr(sc, ch, EMU_A_CHAN_FXRT2, 0x3f3f3f3f); + emu_wrptr(sc, ch, EMU_A_CHAN_SENDAMOUNTS, 0); } sc->voice[ch].vnum = ch; @@ -1769,13 +1851,13 @@ * AN = 0 (Audio data) * P = 0 (Consumer) */ - spcs = SPCS_CLKACCY_1000PPM | SPCS_SAMPLERATE_48 | - SPCS_CHANNELNUM_LEFT | SPCS_SOURCENUM_UNSPEC | - SPCS_GENERATIONSTATUS | 0x00001200 | 0x00000000 | - SPCS_EMPHASIS_NONE | SPCS_COPYRIGHT; - emu_wrptr(sc, 0, SPCS0, spcs); - emu_wrptr(sc, 0, SPCS1, spcs); - emu_wrptr(sc, 0, SPCS2, spcs); + spcs = EMU_SPCS_CLKACCY_1000PPM | EMU_SPCS_SAMPLERATE_48 | + EMU_SPCS_CHANNELNUM_LEFT | EMU_SPCS_SOURCENUM_UNSPEC | + EMU_SPCS_GENERATIONSTATUS | 0x00001200 | 0x00000000 | + EMU_SPCS_EMPHASIS_NONE | EMU_SPCS_COPYRIGHT; + emu_wrptr(sc, 0, EMU_SPCS0, spcs); + emu_wrptr(sc, 0, EMU_SPCS1, spcs); + emu_wrptr(sc, 0, EMU_SPCS2, spcs); if (!sc->audigy) emu_initefx(sc); @@ -1786,8 +1868,8 @@ u_int32_t tmp; /* Setup SRCMulti_I2S SamplingRate */ - tmp = emu_rdptr(sc, 0, A_SPDIF_SAMPLERATE) & 0xfffff1ff; - emu_wrptr(sc, 0, A_SPDIF_SAMPLERATE, tmp | 0x400); + tmp = emu_rdptr(sc, 0, EMU_A_SPDIF_SAMPLERATE) & 0xfffff1ff; + emu_wrptr(sc, 0, EMU_A_SPDIF_SAMPLERATE, tmp | 0x400); /* Setup SRCSel (Enable SPDIF, I2S SRCMulti) */ emu_wr(sc, 0x20, 0x00600000, 4); @@ -1816,13 +1898,13 @@ for (i = 0; i < EMUMAXPAGES; i++) sc->mem.ptb_pages[i] = tmp | i; - emu_wrptr(sc, 0, PTB, (sc->mem.ptb_pages_addr)); - emu_wrptr(sc, 0, TCB, 0); /* taken from original driver */ - emu_wrptr(sc, 0, TCBS, 0); /* taken from original driver */ + emu_wrptr(sc, 0, EMU_PTB, (sc->mem.ptb_pages_addr)); + emu_wrptr(sc, 0, EMU_TCB, 0); /* taken from original driver */ + emu_wrptr(sc, 0, EMU_TCBS, 0); /* taken from original driver */ for (ch = 0; ch < NUM_G; ch++) { - emu_wrptr(sc, ch, MAPA, tmp | MAP_PTI_MASK); - emu_wrptr(sc, ch, MAPB, tmp | MAP_PTI_MASK); + emu_wrptr(sc, ch, EMU_CHAN_MAPA, tmp | EMU_CHAN_MAP_PTI_MASK); + emu_wrptr(sc, ch, EMU_CHAN_MAPB, tmp | EMU_CHAN_MAP_PTI_MASK); } /* emu_memalloc(sc, EMUPAGESIZE); */ @@ -1850,19 +1932,19 @@ */ if (sc->audigy) { - tmp = HCFG_AUTOMUTE | HCFG_JOYENABLE; + tmp = EMU_HCFG_AUTOMUTE | EMU_HCFG_JOYENABLE; if (sc->audigy2) /* Audigy 2 */ - tmp = HCFG_AUDIOENABLE | HCFG_AC3ENABLE_CDSPDIF | - HCFG_AC3ENABLE_GPSPDIF; - emu_wr(sc, HCFG, tmp, 4); + tmp = EMU_HCFG_AUDIOENABLE | EMU_HCFG_AC3ENABLE_CDSPDIF | + EMU_HCFG_AC3ENABLE_GPSPDIF; + emu_wr(sc, EMU_HCFG, tmp, 4); audigy_initefx(sc); /* from ALSA initialization code: */ /* enable audio and disable both audio/digital outputs */ - emu_wr(sc, HCFG, emu_rd(sc, HCFG, 4) | HCFG_AUDIOENABLE, 4); - emu_wr(sc, A_IOCFG, emu_rd(sc, A_IOCFG, 4) & ~A_IOCFG_GPOUT_AD, + emu_wr(sc, EMU_HCFG, emu_rd(sc, EMU_HCFG, 4) | EMU_HCFG_AUDIOENABLE, 4); + emu_wr(sc, EMU_A_IOCFG, emu_rd(sc, EMU_A_IOCFG, 4) & ~EMU_A_IOCFG_GPOUT_AD, 4); if (sc->audigy2) { /* Audigy 2 */ /* Unmute Analog. @@ -1870,27 +1952,27 @@ * init Alice3 I2SOut beyond 48kHz. * So, sequence is important. */ - emu_wr(sc, A_IOCFG, - emu_rd(sc, A_IOCFG, 4) | A_IOCFG_GPOUT_A, 4); + emu_wr(sc, EMU_A_IOCFG, + emu_rd(sc, EMU_A_IOCFG, 4) | EMU_A_IOCFG_GPOUT_A, 4); } } else { /* EMU10K1 initialization code */ - tmp = HCFG_AUDIOENABLE | HCFG_LOCKTANKCACHE_MASK - | HCFG_AUTOMUTE; + tmp = EMU_HCFG_AUDIOENABLE | EMU_HCFG_LOCKTANKCACHE_MASK + | EMU_HCFG_AUTOMUTE; if (sc->rev >= 6) - tmp |= HCFG_JOYENABLE; + tmp |= EMU_HCFG_JOYENABLE; - emu_wr(sc, HCFG, tmp, 4); + emu_wr(sc, EMU_HCFG, tmp, 4); /* TOSLink detection */ sc->tos_link = 0; - tmp = emu_rd(sc, HCFG, 4); - if (tmp & (HCFG_GPINPUT0 | HCFG_GPINPUT1)) { - emu_wr(sc, HCFG, tmp | HCFG_GPOUT1, 4); + tmp = emu_rd(sc, EMU_HCFG, 4); + if (tmp & (EMU_HCFG_GPINPUT0 | EMU_HCFG_GPINPUT1)) { + emu_wr(sc, EMU_HCFG, tmp | EMU_HCFG_GPOUT1, 4); DELAY(50); - if (tmp != (emu_rd(sc, HCFG, 4) & ~HCFG_GPOUT1)) { + if (tmp != (emu_rd(sc, EMU_HCFG, 4) & ~EMU_HCFG_GPOUT1)) { sc->tos_link = 1; - emu_wr(sc, HCFG, tmp, 4); + emu_wr(sc, EMU_HCFG, tmp, 4); } } } @@ -1903,42 +1985,42 @@ { u_int32_t ch; - emu_wr(sc, INTE, 0, 4); + emu_wr(sc, EMU_INTE, 0, 4); for (ch = 0; ch < NUM_G; ch++) - emu_wrptr(sc, ch, DCYSUSV, ENV_OFF); + emu_wrptr(sc, ch, EMU_CHAN_DCYSUSV, ENV_OFF); for (ch = 0; ch < NUM_G; ch++) { - emu_wrptr(sc, ch, VTFT, 0); - emu_wrptr(sc, ch, CVCF, 0); - emu_wrptr(sc, ch, PTRX, 0); - emu_wrptr(sc, ch, CPF, 0); + emu_wrptr(sc, ch, EMU_CHAN_VTFT, 0); + emu_wrptr(sc, ch, EMU_CHAN_CVCF, 0); + emu_wrptr(sc, ch, EMU_CHAN_PTRX, 0); + emu_wrptr(sc, ch, EMU_CHAN_CPF, 0); } if (sc->audigy) { /* stop fx processor */ - emu_wrptr(sc, 0, A_DBG, A_DBG_SINGLE_STEP); + emu_wrptr(sc, 0, EMU_A_DBG, EMU_A_DBG_SINGLE_STEP); } /* disable audio and lock cache */ - emu_wr(sc, HCFG, - HCFG_LOCKSOUNDCACHE | HCFG_LOCKTANKCACHE_MASK | HCFG_MUTEBUTTONENABLE, + emu_wr(sc, EMU_HCFG, + EMU_HCFG_LOCKSOUNDCACHE | EMU_HCFG_LOCKTANKCACHE_MASK | EMU_HCFG_MUTEBUTTONENABLE, 4); - emu_wrptr(sc, 0, PTB, 0); + emu_wrptr(sc, 0, EMU_PTB, 0); /* reset recording buffers */ - emu_wrptr(sc, 0, MICBS, ADCBS_BUFSIZE_NONE); - emu_wrptr(sc, 0, MICBA, 0); - emu_wrptr(sc, 0, FXBS, ADCBS_BUFSIZE_NONE); - emu_wrptr(sc, 0, FXBA, 0); - emu_wrptr(sc, 0, FXWC, 0); - emu_wrptr(sc, 0, ADCBS, ADCBS_BUFSIZE_NONE); - emu_wrptr(sc, 0, ADCBA, 0); - emu_wrptr(sc, 0, TCB, 0); - emu_wrptr(sc, 0, TCBS, 0); + emu_wrptr(sc, 0, EMU_MICBS, EMU_RECBS_BUFSIZE_NONE); + emu_wrptr(sc, 0, EMU_MICBA, 0); + emu_wrptr(sc, 0, EMU_FXBS, EMU_RECBS_BUFSIZE_NONE); + emu_wrptr(sc, 0, EMU_FXBA, 0); + emu_wrptr(sc, 0, EMU_FXWC, 0); + emu_wrptr(sc, 0, EMU_ADCBS, EMU_RECBS_BUFSIZE_NONE); + emu_wrptr(sc, 0, EMU_ADCBA, 0); + emu_wrptr(sc, 0, EMU_TCB, 0); + emu_wrptr(sc, 0, EMU_TCBS, 0); /* disable channel interrupt */ - emu_wrptr(sc, 0, CLIEL, 0); - emu_wrptr(sc, 0, CLIEH, 0); - emu_wrptr(sc, 0, SOLEL, 0); - emu_wrptr(sc, 0, SOLEH, 0); + emu_wrptr(sc, 0, EMU_CLIEL, 0); + emu_wrptr(sc, 0, EMU_CLIEH, 0); + emu_wrptr(sc, 0, EMU_SOLEL, 0); + emu_wrptr(sc, 0, EMU_SOLEH, 0); /* init envelope engine */ if (!SLIST_EMPTY(&sc->mem.blocks)) @@ -1997,7 +2079,7 @@ sc->audigy = sc->type == EMU10K2_PCI_ID || sc->type == EMU10K3_PCI_ID; sc->audigy2 = (sc->audigy && sc->rev == 0x04); sc->nchans = sc->audigy ? 8 : 4; - sc->addrmask = sc->audigy ? A_PTR_ADDRESS_MASK : PTR_ADDRESS_MASK; + sc->addrmask = sc->audigy ? EMU_A_PTR_ADDR_MASK : EMU_PTR_ADDR_MASK; data = pci_read_config(dev, PCIR_COMMAND, 2); data |= (PCIM_CMD_PORTEN | PCIM_CMD_BUSMASTEREN); diff -ruN dev/sound/pci.orig/emu10k1reg.h dev/sound/pci/emu10k1reg.h --- dev/sound/pci.orig/emu10k1reg.h 1970-01-01 00:00:00.000000000 +0000 +++ dev/sound/pci/emu10k1reg.h 2011-01-10 14:46:16.000000000 +0000 @@ -0,0 +1,688 @@ +/* $NetBSD: emuxkireg.h,v 1.8 2008/04/28 20:23:54 martin Exp $ */ + +/*- + * Copyright (c) 2001 The NetBSD Foundation, Inc. + * All rights reserved. + * + * This code is derived from software contributed to The NetBSD Foundation + * by Yannick Montulet. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS + * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +#ifndef _DEV_SOUND_PCI_EMU10K1REG_H_ +#define _DEV_SOUND_PCI_EMU10K1REG_H_ + +/* + * Register values for Creative EMU10000. The register values have been + * taken from GPLed SBLive! header file published by Creative. The comments + * have been stripped to avoid GPL pollution in kernel. The Creative version + * including comments is available in Linux 2.4.* kernel as file + * drivers/sound/emu10k1/8010.h + */ + +/* + * Audigy specific registers contain an '_A_' + * Audigy2 specific registers contain an '_A2_' + */ + +#define EMU_MKSUBREG(sz, idx, reg) (((sz) << 24) | ((idx) << 16) | (reg)) + +#define EMU_PTR 0x00 +#define EMU_PTR_CHNO_MASK 0x0000003f +#define EMU_PTR_ADDR_MASK 0x07ff0000 +#define EMU_A_PTR_ADDR_MASK 0x0fff0000 + +#define EMU_DATA 0x04 + +#define EMU_IPR 0x08 +#define EMU_IPR_RATETRCHANGE 0x01000000 +#define EMU_IPR_FXDSP 0x00800000 +#define EMU_IPR_FORCEINT 0x00400000 +#define EMU_PCIERROR 0x00200000 +#define EMU_IPR_VOLINCR 0x00100000 +#define EMU_IPR_VOLDECR 0x00080000 +#define EMU_IPR_MUTE 0x00040000 +#define EMU_IPR_MICBUFFULL 0x00020000 +#define EMU_IPR_MICBUFHALFFULL 0x00010000 +#define EMU_IPR_ADCBUFFULL 0x00008000 +#define EMU_IPR_ADCBUFHALFFULL 0x00004000 +#define EMU_IPR_EFXBUFFULL 0x00002000 +#define EMU_IPR_EFXBUFHALFFULL 0x00001000 +#define EMU_IPR_GPSPDIFSTCHANGE 0x00000800 +#define EMU_IPR_CDROMSTCHANGE 0x00000400 +#define EMU_IPR_INTERVALTIMER 0x00000200 +#define EMU_IPR_MIDITRANSBUFE 0x00000100 +#define EMU_IPR_MIDIRECVBUFE 0x00000080 +#define EMU_IPR_A_MIDITRANSBUFE2 0x10000000 +#define EMU_IPR_A_MIDIRECBUFE2 0x08000000 +#define EMU_IPR_CHANNELLOOP 0x00000040 +#define EMU_IPR_CHNOMASK 0x0000003f + +#define EMU_INTE 0x0c + +#define EMU_INTE_VSB_MASK 0xc0000000 +#define EMU_INTE_VSB_220 0x00000000 +#define EMU_INTE_VSB_240 0x40000000 +#define EMU_INTE_VSB_260 0x80000000 +#define EMU_INTE_VSB_280 0xc0000000 + +#define EMU_INTE_VMPU_MASK 0x30000000 +#define EMU_INTE_VMPU_300 0x00000000 +#define EMU_INTE_VMPU_310 0x10000000 +#define EMU_INTE_VMPU_320 0x20000000 +#define EMU_INTE_VMPU_330 0x30000000 +#define EMU_INTE_MDMAENABLE 0x08000000 +#define EMU_INTE_SDMAENABLE 0x04000000 +#define EMU_INTE_MPICENABLE 0x02000000 +#define EMU_INTE_SPICENABLE 0x01000000 +#define EMU_INTE_VSBENABLE 0x00800000 +#define EMU_INTE_ADLIBENABLE 0x00400000 +#define EMU_INTE_MPUENABLE 0x00200000 +#define EMU_INTE_FORCEINT 0x00100000 +#define EMU_INTE_MRHANDENABLE 0x00080000 +#define EMU_INTE_SAMPLERATER 0x00002000 +#define EMU_INTE_FXDSPENABLE 0x00001000 +#define EMU_INTE_PCIERRENABLE 0x00000800 +#define EMU_INTE_VOLINCRENABLE 0x00000400 +#define EMU_INTE_VOLDECRENABLE 0x00000200 +#define EMU_INTE_MUTEENABLE 0x00000100 +#define EMU_INTE_MICBUFENABLE 0x00000080 +#define EMU_INTE_ADCBUFENABLE 0x00000040 +#define EMU_INTE_EFXBUFENABLE 0x00000020 +#define EMU_INTE_GPSPDIFENABLE 0x00000010 +#define EMU_INTE_CDSPDIFENABLE 0x00000008 +#define EMU_INTE_INTERTIMERENB 0x00000004 +#define EMU_INTE_MIDITXENABLE 0x00000002 +#define EMU_INTE_MIDIRXENABLE 0x00000001 +#define EMU_INTE_A_MIDITXENABLE2 0x00020000 +#define EMU_INTE_A_MIDIRXENABLE2 0x00010000 + +#define EMU_WC 0x10 +#define EMU_WC_SAMPLECOUNTER_MASK 0x03FFFFC0 +#define EMU_WC_SAMPLECOUNTER EMU_MKSUBREG(20, 6, EMU_WC) +#define EMU_WC_CURRENTCHANNEL 0x0000003F + +#define EMU_HCFG 0x14 +#define EMU_HCFG_LEGACYFUNC_MASK 0xe0000000 +#define EMU_HCFG_LEGACYFUNC_MPU 0x00000000 +#define EMU_HCFG_LEGACYFUNC_SB 0x40000000 +#define EMU_HCFG_LEGACYFUNC_AD 0x60000000 +#define EMU_HCFG_LEGACYFUNC_MPIC 0x80000000 +#define EMU_HCFG_LEGACYFUNC_MDMA 0xa0000000 +#define EMU_HCFG_LEGACYFUNC_SPCI 0xc0000000 +#define EMU_HCFG_LEGACYFUNC_SDMA 0xe0000000 +#define EMU_HCFG_IOCAPTUREADDR 0x1f000000 +#define EMU_HCFG_LEGACYWRITE 0x00800000 +#define EMU_HCFG_LEGACYWORD 0x00400000 +#define EMU_HCFG_LEGACYINT 0x00200000 + +#define EMU_HCFG_CODECFMT_MASK 0x00070000 +#define EMU_HCFG_CODECFMT_AC97 0x00000000 +#define EMU_HCFG_CODECFMT_I2S 0x00010000 +#define EMU_HCFG_GPINPUT0 0x00004000 +#define EMU_HCFG_GPINPUT1 0x00002000 +#define EMU_HCFG_GPOUTPUT_MASK 0x00001c00 +#define EMU_HCFG_JOYENABLE 0x00000200 +#define EMU_HCFG_PHASETRACKENABLE 0x00000100 +#define EMU_HCFG_AC3ENABLE_MASK 0x000000e0 +#define EMU_HCFG_AC3ENABLE_ZVIDEO 0x00000080 +#define EMU_HCFG_AC3ENABLE_CDSPDIF 0x00000040 +#define EMU_HCFG_AC3ENABLE_GPSPDIF 0x00000020 +#define EMU_HCFG_AUTOMUTE 0x00000010 +#define EMU_HCFG_LOCKSOUNDCACHE 0x00000008 +#define EMU_HCFG_LOCKTANKCACHE_MASK 0x00000004 +#define EMU_HCFG_LOCKTANKCACHE EMU_MKSUBREG(1, 2, EMU_HCFG) +#define EMU_HCFG_MUTEBUTTONENABLE 0x00000002 +#define EMU_HCFG_AUDIOENABLE 0x00000001 + +#define EMU_MUDATA 0x18 +#define EMU_MUCMD 0x19 +#define EMU_MUCMD_RESET 0xff +#define EMU_MUCMD_ENTERUARTMODE 0x3f + +#define EMU_MUSTAT EMU_MUCMD +#define EMU_MUSTAT_IRDYN 0x80 +#define EMU_MUSTAT_ORDYN 0x40 + +#define EMU_A_IOCFG 0x18 +#define EMU_A_GPINPUT_MASK 0xff00 +#define EMU_A_GPOUTPUT_MASK 0x00ff +#define EMU_A_IOCFG_GPOUT0 0x0040 +#define EMU_A_IOCFG_GPOUT1 0x0004 + +#define EMU_TIMER 0x1a +#define EMU_TIMER_RATE_MASK 0x000003ff +#define EMU_TIMER_RATE EMU_MKSUBREG(10, 0, EMU_TIMER) + +#define EMU_AC97DATA 0x1c +#define EMU_AC97ADDR 0x1e +#define EMU_AC97ADDR_RDY 0x80 +#define EMU_AC97ADDR_ADDR 0x7f + +#define EMU_A2_PTR 0x20 +#define EMU_A2_DATA 0x24 + +#define EMU_A2_SRCSEL 0x600000 +#define EMU_A2_SRCSEL_ENABLE_SPDIF 0x00000004 +#define EMU_A2_SRCSEL_ENABLE_SRCMULTI 0x00000010 +#define EMU_A2_SRCMULTI 0x6e0000 +#define EMU_A2_SRCMULTI_ENABLE_INPUT 0xff00ff00 + +/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */ + +#define EMU_CHAN_CPF 0x00 + +#define EMU_CHAN_CPF_PITCH_MASK 0xffff0000 +#define EMU_CHAN_CPF_PITCH EMU_MKSUBREG(16, 16, EMU_CHAN_CPF) +#define EMU_CHAN_CPF_STEREO_MASK 0x00008000 +#define EMU_CHAN_CPF_STEREO EMU_MKSUBREG(1, 15, EMU_CHAN_CPF) +#define EMU_CHAN_CPF_STOP_MASK 0x00004000 +#define EMU_CHAN_CPF_FRACADDRESS_MASK 0x00003fff + + +#define EMU_CHAN_PTRX 0x01 +#define EMU_CHAN_PTRX_PITCHTARGET_MASK 0xffff0000 +#define EMU_CHAN_PTRX_PITCHTARGET EMU_MKSUBREG(16, 16, EMU_CHAN_PTRX) +#define EMU_CHAN_PTRX_FXSENDAMOUNT_A_MASK 0x0000ff00 +#define EMU_CHAN_PTRX_FXSENDAMOUNT_A EMU_MKSUBREG(8, 8, EMU_CHAN_PTRX) +#define EMU_CHAN_PTRX_FXSENDAMOUNT_B_MASK 0x000000ff +#define EMU_CHAN_PTRX_FXSENDAMOUNT_B EMU_MKSUBREG(8, 0, EMU_CHAN_PTRX) + +#define EMU_CHAN_CVCF 0x02 +#define EMU_CHAN_CVCF_CURRVOL_MASK 0xffff0000 +#define EMU_CHAN_CVCF_CURRVOL EMU_MKSUBREG(16, 16, EMU_CHAN_CVCF) +#define EMU_CHAN_CVCF_CURRFILTER_MASK 0x0000ffff +#define EMU_CHAN_CVCF_CURRFILTER EMU_MKSUBREG(16, 0, EMU_CHAN_CVCF) + +#define EMU_CHAN_VTFT 0x03 +#define EMU_CHAN_VTFT_VOLUMETARGET_MASK 0xffff0000 +#define EMU_CHAN_VTFT_VOLUMETARGET EMU_MKSUBREG(16, 16, EMU_CHAN_VTFT) +#define EMU_CHAN_VTFT_FILTERTARGET_MASK 0x0000ffff +#define EMU_CHAN_VTFT_FILTERTARGET EMU_MKSUBREG(16, 0, EMU_CHAN_VTFT) + +#define EMU_CHAN_Z1 0x05 +#define EMU_CHAN_Z2 0x04 + +#define EMU_CHAN_PSST 0x06 +#define EMU_CHAN_PSST_FXSENDAMOUNT_C_MASK 0xff000000 +#define EMU_CHAN_PSST_FXSENDAMOUNT_C EMU_MKSUBREG(8, 24, EMU_CHAN_PSST) +#define EMU_CHAN_PSST_LOOPSTARTADDR_MASK 0x00ffffff +#define EMU_CHAN_PSST_LOOPSTARTADDR EMU_MKSUBREG(24, 0, EMU_CHAN_PSST) + +#define EMU_CHAN_DSL 0x07 +#define EMU_CHAN_DSL_FXSENDAMOUNT_D_MASK 0xff000000 +#define EMU_CHAN_DSL_FXSENDAMOUNT_D EMU_MKSUBREG(8, 24, EMU_CHAN_DSL) +#define EMU_CHAN_DSL_LOOPENDADDR_MASK 0x00ffffff +#define EMU_CHAN_DSL_LOOPENDADDR EMU_MKSUBREG(24, 0, EMU_CHAN_DSL) + +#define EMU_CHAN_CCCA 0x08 +#define EMU_CHAN_CCCA_RESONANCE 0xf0000000 +#define EMU_CHAN_CCCA_INTERPROMMASK 0x0e000000 +#define EMU_CHAN_CCCA_INTERPROM_0 0x00000000 +#define EMU_CHAN_CCCA_INTERPROM_1 0x02000000 +#define EMU_CHAN_CCCA_INTERPROM_2 0x04000000 +#define EMU_CHAN_CCCA_INTERPROM_3 0x06000000 +#define EMU_CHAN_CCCA_INTERPROM_4 0x08000000 +#define EMU_CHAN_CCCA_INTERPROM_5 0x0a000000 +#define EMU_CHAN_CCCA_INTERPROM_6 0x0c000000 +#define EMU_CHAN_CCCA_INTERPROM_7 0x0e000000 +#define EMU_CHAN_CCCA_8BITSELECT 0x01000000 +#define EMU_CHAN_CCCA_CURRADDR_MASK 0x00ffffff +#define EMU_CHAN_CCCA_CURRADDR EMU_MKSUBREG(24, 0, EMU_CHAN_CCCA) + +#define EMU_CHAN_CCR 0x09 +#define EMU_CHAN_CCR_CACHEINVALIDSIZE_MASK 0xfe000000 +#define EMU_CHAN_CCR_CACHEINVALIDSIZE EMU_MKSUBREG(7, 25, EMU_CHAN_CCR) +#define EMU_CHAN_CCR_CACHELOOPFLAG 0x01000000 +#define EMU_CHAN_CCR_INTERLEAVEDSAMPLES 0x00800000 +#define EMU_CHAN_CCR_WORDSIZEDSAMPLES 0x00400000 +#define EMU_CHAN_CCR_READADDRESS_MASK 0x003f0000 +#define EMU_CHAN_CCR_READADDRESS EMU_MKSUBREG(6, 16, EMU_CHAN_CCR) +#define EMU_CHAN_CCR_LOOPINVALSIZE 0x0000fe00 +#define EMU_CHAN_CCR_LOOPFLAG 0x00000100 +#define EMU_CHAN_CCR_CACHELOOPADDRHI 0x000000ff + +#define EMU_CHAN_CLP 0x0a +#define EMU_CHAN_CLP_CACHELOOPADDR 0x0000ffff + +#define EMU_CHAN_FXRT 0x0b +#define EMU_CHAN_FXRT_CHANNELA 0x000f0000 +#define EMU_CHAN_FXRT_CHANNELB 0x00f00000 +#define EMU_CHAN_FXRT_CHANNELC 0x0f000000 +#define EMU_CHAN_FXRT_CHANNELD 0xf0000000 + +#define EMU_CHAN_MAPA 0x0c +#define EMU_CHAN_MAPB 0x0d + +#define EMU_CHAN_MAP_PTE_MASK 0xffffe000 +#define EMU_CHAN_MAP_PTI_MASK 0x00001fff + + +#define EMU_CHAN_ENVVOL 0x10 +#define EMU_CHAN_ENVVOL_MASK 0x0000ffff + + +#define EMU_CHAN_ATKHLDV 0x11 +#define EMU_CHAN_ATKHLDV_PHASE0 0x00008000 +#define EMU_CHAN_ATKHLDV_HOLDTIME_MASK 0x00007f00 +#define EMU_CHAN_ATKHLDV_ATTACKTIME_MASK 0x0000007f + + +#define EMU_CHAN_DCYSUSV 0x12 +#define EMU_CHAN_DCYSUSV_PHASE1_MASK 0x00008000 +#define EMU_CHAN_DCYSUSV_SUSTAINLEVEL_MASK 0x00007f00 +#define EMU_CHAN_DCYSUSV_CHANNELENABLE_MASK 0x00000080 +#define EMU_CHAN_DCYSUSV_DECAYTIME_MASK 0x0000007f + + +#define EMU_CHAN_LFOVAL1 0x13 +#define EMU_CHAN_LFOVAL_MASK 0x0000ffff + +#define EMU_CHAN_ENVVAL 0x14 +#define EMU_CHAN_ENVVAL_MASK 0x0000ffff + +#define EMU_CHAN_ATKHLDM 0x15 +#define EMU_CHAN_ATKHLDM_PHASE0 0x00008000 +#define EMU_CHAN_ATKHLDM_HOLDTIME 0x00007f00 +#define EMU_CHAN_ATKHLDM_ATTACKTIME 0x0000007f + +#define EMU_CHAN_DCYSUSM 0x16 +#define EMU_CHAN_DCYSUSM_PHASE1_MASK 0x00008000 +#define EMU_CHAN_DCYSUSM_SUSTAINLEVEL_MASK 0x00007f00 +#define EMU_CHAN_DCYSUSM_DECAYTIME_MASK 0x0000007f + +#define EMU_CHAN_LFOVAL2 0x17 +#define EMU_CHAN_LFOVAL2_MASK 0x0000ffff + +#define EMU_CHAN_IP 0x18 +#define EMU_CHAN_IP_MASK 0x0000ffff +#define EMU_CHAN_IP_UNITY 0x0000e000 + +#define EMU_CHAN_IFATN 0x19 +#define EMU_CHAN_IFATN_FILTERCUTOFF_MASK 0x0000ff00 +#define EMU_CHAN_IFATN_FILTERCUTOFF EMU_MKSUBREG(8, 8, EMU_CHAN_IFATN) +#define EMU_CHAN_IFATN_ATTENUATION_MASK 0x000000ff +#define EMU_CHAN_IFATN_ATTENUATION EMU_MKSUBREG(8, 0, EMU_CHAN_IFATN) + +#define EMU_CHAN_PEFE 0x1a +#define EMU_CHAN_PEFE_PITCHAMOUNT_MASK 0x0000ff00 +#define EMU_CHAN_PEFE_PITCHAMOUNT EMU_MKSUBREG(8, 8, EMU_CHAN_PEFE) +#define EMU_CHAN_PEFE_FILTERAMOUNT_MASK 0x000000ff +#define EMU_CHAN_PEFE_FILTERAMOUNT EMU_MKSUBREG(8, 0, EMU_CHAN_PEFE) + +#define EMU_CHAN_FMMOD 0x1b +#define EMU_CHAN_FMMOD_MODVIBRATO 0x0000ff00 +#define EMU_CHAN_FMMOD_MOFILTER 0x000000ff + +#define EMU_CHAN_TREMFRQ 0x1c +#define EMU_CHAN_TREMFRQ_DEPTH 0x0000ff00 + +#define EMU_CHAN_FM2FRQ2 0x1d +#define EMU_CHAN_FM2FRQ2_DEPTH 0x0000ff00 +#define EMU_CHAN_FM2FRQ2_FREQUENCY 0x000000ff + +#define EMU_CHAN_TEMPENV 0x1e +#define EMU_CHAN_TEMPENV_MASK 0x0000ffff + +#define EMU_CHAN_CD0 0x20 +#define EMU_CHAN_CD1 0x21 +#define EMU_CHAN_CD2 0x22 +#define EMU_CHAN_CD3 0x23 +#define EMU_CHAN_CD4 0x24 +#define EMU_CHAN_CD5 0x25 +#define EMU_CHAN_CD6 0x26 +#define EMU_CHAN_CD7 0x27 +#define EMU_CHAN_CD8 0x28 +#define EMU_CHAN_CD9 0x29 +#define EMU_CHAN_CDA 0x2a +#define EMU_CHAN_CDB 0x2b +#define EMU_CHAN_CDC 0x2c +#define EMU_CHAN_CDD 0x2d +#define EMU_CHAN_CDE 0x2e +#define EMU_CHAN_CDF 0x2f + +/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */ + +#define EMU_PTB 0x40 +#define EMU_PTB_MASK 0xfffff000 + +#define EMU_TCB 0x41 +#define EMU_TCB_MASK 0xfffff000 + +#define EMU_ADCCR 0x42 +#define EMU_ADCCR_RCHANENABLE 0x00000010 +#define EMU_A_ADCCR_RCHANENABLE 0x00000020 +#define EMU_ADCCR_LCHANENABLE 0x00000008 +#define EMU_A_ADCCR_LCHANENABLE 0x00000010 +#define EMU_ADCCR_SAMPLERATE_MASK 0x00000007 +#define EMU_A_ADCCR_SAMPLERATE_MASK 0x0000000f +#define EMU_ADCCR_SAMPLERATE_48 0x00000000 +#define EMU_ADCCR_SAMPLERATE_44 0x00000001 +#define EMU_ADCCR_SAMPLERATE_32 0x00000002 +#define EMU_ADCCR_SAMPLERATE_24 0x00000003 +#define EMU_ADCCR_SAMPLERATE_22 0x00000004 +#define EMU_ADCCR_SAMPLERATE_16 0x00000005 +#define EMU_A_ADCCR_SAMPLERATE_12 0x00000006 +#define EMU_ADCCR_SAMPLERATE_11 0x00000006 +#define EMU_A_ADCCR_SAMPLERATE_11 0x00000007 +#define EMU_ADCCR_SAMPLERATE_8 0x00000007 +#define EMU_A_ADCCR_SAMPLERATE_8 0x00000008 + +#define EMU_FXWC 0x43 +#define EMU_TCBS 0x44 +#define EMU_TCBS_MASK 0x00000007 +#define EMU_TCBS_BUFFSIZE_16K 0x00000000 +#define EMU_TCBS_BUFFSIZE_32K 0x00000001 +#define EMU_TCBS_BUFFSIZE_64K 0x00000002 +#define EMU_TCBS_BUFFSIZE_128K 0x00000003 +#define EMU_TCBS_BUFFSIZE_256K 0x00000004 +#define EMU_TCBS_BUFFSIZE_512K 0x00000005 +#define EMU_TCBS_BUFFSIZE_1024K 0x00000006 +#define EMU_TCBS_BUFFSIZE_2048K 0x00000007 + +#define EMU_MICBA 0x45 +#define EMU_ADCBA 0x46 +#define EMU_FXBA 0x47 +#define EMU_RECBA_MASK 0xfffff000 + +#define EMU_MICBS 0x49 +#define EMU_ADCBS 0x4a +#define EMU_FXBS 0x4b +#define EMU_RECBS_BUFSIZE_NONE 0x00000000 +#define EMU_RECBS_BUFSIZE_384 0x00000001 +#define EMU_RECBS_BUFSIZE_448 0x00000002 +#define EMU_RECBS_BUFSIZE_512 0x00000003 +#define EMU_RECBS_BUFSIZE_640 0x00000004 +#define EMU_RECBS_BUFSIZE_768 0x00000005 +#define EMU_RECBS_BUFSIZE_896 0x00000006 +#define EMU_RECBS_BUFSIZE_1024 0x00000007 +#define EMU_RECBS_BUFSIZE_1280 0x00000008 +#define EMU_RECBS_BUFSIZE_1536 0x00000009 +#define EMU_RECBS_BUFSIZE_1792 0x0000000a +#define EMU_RECBS_BUFSIZE_2048 0x0000000b +#define EMU_RECBS_BUFSIZE_2560 0x0000000c +#define EMU_RECBS_BUFSIZE_3072 0x0000000d +#define EMU_RECBS_BUFSIZE_3584 0x0000000e +#define EMU_RECBS_BUFSIZE_4096 0x0000000f +#define EMU_RECBS_BUFSIZE_5120 0x00000010 +#define EMU_RECBS_BUFSIZE_6144 0x00000011 +#define EMU_RECBS_BUFSIZE_7168 0x00000012 +#define EMU_RECBS_BUFSIZE_8192 0x00000013 +#define EMU_RECBS_BUFSIZE_10240 0x00000014 +#define EMU_RECBS_BUFSIZE_12288 0x00000015 +#define EMU_RECBS_BUFSIZE_14366 0x00000016 +#define EMU_RECBS_BUFSIZE_16384 0x00000017 +#define EMU_RECBS_BUFSIZE_20480 0x00000018 +#define EMU_RECBS_BUFSIZE_24576 0x00000019 +#define EMU_RECBS_BUFSIZE_28672 0x0000001a +#define EMU_RECBS_BUFSIZE_32768 0x0000001b +#define EMU_RECBS_BUFSIZE_40960 0x0000001c +#define EMU_RECBS_BUFSIZE_49152 0x0000001d +#define EMU_RECBS_BUFSIZE_57344 0x0000001e +#define EMU_RECBS_BUFSIZE_65536 0x0000001f + +#define EMU_CDCS 0x50 +#define EMU_GPSCS 0x51 + +#define EMU_DBG 0x52 +#define EMU_DBG_ZC 0x80000000 +#define EMU_DBG_SATURATION_OCCURRED 0x02000000 +#define EMU_DBG_SATURATION_ADDR 0x01ff0000 +#define EMU_DBG_SINGLE_STEP 0x00008000 +#define EMU_DBG_STEP 0x00004000 +#define EMU_DBG_CONDITION_CODE 0x00003e00 +#define EMU_DBG_SINGLE_STEP_ADDR 0x000001ff + +#define EMU_A_DBG 0x53 +#define EMU_A_DBG_SINGLE_STEP 0x00020000 +#define EMU_A_DBG_ZC 0x40000000 +#define EMU_A_DBG_STEP_ADDR 0x000003ff +#define EMU_A_DBG_SATURATION_OCCRD 0x20000000 +#define EMU_A_DBG_SATURATION_ADDR 0x0ffc0000 + +#define EMU_SPCS0 0x54 +#define EMU_SPCS1 0x55 +#define EMU_SPCS2 0x56 +#define EMU_SPCS_CLKACCYMASK 0x30000000 +#define EMU_SPCS_CLKACCY_1000PPM 0x00000000 +#define EMU_SPCS_CLKACCY_50PPM 0x10000000 +#define EMU_SPCS_CLKACCY_VARIABLE 0x20000000 +#define EMU_SPCS_SAMPLERATEMASK 0x0f000000 +#define EMU_SPCS_SAMPLERATE_44 0x00000000 +#define EMU_SPCS_SAMPLERATE_48 0x02000000 +#define EMU_SPCS_SAMPLERATE_32 0x03000000 +#define EMU_SPCS_CHANNELNUMMASK 0x00f00000 +#define EMU_SPCS_CHANNELNUM_UNSPEC 0x00000000 +#define EMU_SPCS_CHANNELNUM_LEFT 0x00100000 +#define EMU_SPCS_CHANNELNUM_RIGHT 0x00200000 +#define EMU_SPCS_SOURCENUMMASK 0x000f0000 +#define EMU_SPCS_SOURCENUM_UNSPEC 0x00000000 +#define EMU_SPCS_GENERATIONSTATUS 0x00008000 +#define EMU_SPCS_CATEGORYCODEMASK 0x00007f00 +#define EMU_SPCS_MODEMASK 0x000000c0 +#define EMU_SPCS_EMPHASISMASK 0x00000038 +#define EMU_SPCS_EMPHASIS_NONE 0x00000000 +#define EMU_SPCS_EMPHASIS_50_15 0x00000008 +#define EMU_SPCS_COPYRIGHT 0x00000004 +#define EMU_SPCS_NOTAUDIODATA 0x00000002 +#define EMU_SPCS_PROFESSIONAL 0x00000001 + +#define EMU_CLIEL 0x58 +#define EMU_CLIEH 0x59 +#define EMU_CLIPL 0x5a +#define EMU_CLIPH 0x5b +#define EMU_SOLEL 0x5c +#define EMU_SOLEH 0x5d + +#define EMU_SPBYPASS 0x5e +#define EMU_SPBYPASS_ENABLE 0x00000001 +#define EMU_SPBYPASS_24_BITS 0x00000f00 + +#define EMU_AC97SLOT 0x5f +#define EMU_AC97SLOT_CENTER 0x00000010 +#define EMU_AC97SLOT_LFE 0x00000020 + +#define EMU_CDSRCS 0x60 +#define EMU_GPSRCS 0x61 +#define EMU_ZVSRCS 0x62 +#define EMU_SRCS_SPDIFLOCKED 0x02000000 +#define EMU_SRCS_RATELOCKED 0x01000000 +#define EMU_SRCS_ESTSAMPLERATE 0x0007ffff + +#define EMU_MICIDX 0x63 +#define EMU_A_MICIDX 0x64 +#define EMU_ADCIDX 0x64 +#define EMU_A_ADCIDX 0x63 +#define EMU_FXIDX 0x65 +#define EMU_RECIDX_MASK 0x0000ffff +#define EMU_RECIDX(idxreg) (0x10000000|(idxreg)) +/* +#define EMU_MICIDX_IDX 0x10000063 +#define EMU_ADCIDX_IDX 0x10000064 +#define EMU_FXIDX_IDX 0x10000065 +*/ + +#define EMU_A_MUDATA1 0x70 +#define EMU_A_MUCMD1 0x71 +#define EMU_A_MUSTAT1 EMU_A_MUCMD1 +#define EMU_A_MUDATA2 0x72 +#define EMU_A_MUCMD2 0x73 +#define EMU_A_MUSTAT2 EMU_A_MUCMD2 +#define EMU_A_FXWC1 0x74 +#define EMU_A_FXWC2 0x75 +#define EMU_A_SPDIF_SAMPLERATE 0x76 +#define EMU_A_SPDIF_48000 0x00000080 +#define EMU_A_SPDIF_44100 0x00000000 +#define EMU_A_SPDIF_96000 0x00000040 +#define EMU_A2_SPDIF_SAMPLERATE EMU_MKSUBREG(3, 9, EMU_A_SPDIF_SAMPLERATE) +#define EMU_A2_SPDIF_MASK 0x00000e00 +#define EMU_A2_SPDIF_UNKNOWN 0x2 + +#define EMU_A_CHAN_FXRT2 0x7c +#define EMU_A_CHAN_FXRT_CHANNELE 0x0000003f +#define EMU_A_CHAN_FXRT_CHANNELF 0x00003f00 +#define EMU_A_CHAN_FXRT_CHANNELG 0x003f0000 +#define EMU_A_CHAN_FXRT_CHANNELH 0x3f000000 +#define EMU_A_CHAN_SENDAMOUNTS 0x7d +#define EMU_A_CHAN_FXSENDAMOUNTS_E_MASK 0xff000000 +#define EMU_A_CHAN_FXSENDAMOUNTS_F_MASK 0x00ff0000 +#define EMU_A_CHAN_FXSENDAMOUNTS_G_MASK 0x0000ff00 +#define EMU_A_CHAN_FXSENDAMOUNTS_H_MASK 0x000000ff +#define EMU_A_CHAN_FXRT1 0x7e +#define EMU_A_CHAN_FXRT_CHANNELA 0x0000003f +#define EMU_A_CHAN_FXRT_CHANNELB 0x00003f00 +#define EMU_A_CHAN_FXRT_CHANNELC 0x003f0000 +#define EMU_A_CHAN_FXRT_CHANNELD 0x3f000000 + +#define EMU_FXGPREGBASE 0x100 +#define EMU_A_FXGPREGBASE 0x400 + +#define EMU_TANKMEMDATAREGBASE 0x200 +#define EMU_TANKMEMDATAREG_MASK 0x000fffff + +#define EMU_TANKMEMADDRREGBASE 0x300 +#define EMU_TANKMEMADDRREG_ADDR_MASK 0x000fffff +#define EMU_TANKMEMADDRREG_CLEAR 0x00800000 +#define EMU_TANKMEMADDRREG_ALIGN 0x00400000 +#define EMU_TANKMEMADDRREG_WRITE 0x00200000 +#define EMU_TANKMEMADDRREG_READ 0x00100000 + +#define EMU_MICROCODEBASE 0x400 +#define EMU_A_MICROCODEBASE 0x600 +#define EMU_DSP_LOWORD_OPX_MASK 0x000ffc00 +#define EMU_DSP_LOWORD_OPY_MASK 0x000003ff +#define EMU_DSP_HIWORD_OPCODE_MASK 0x00f00000 +#define EMU_DSP_HIWORD_RESULT_MASK 0x000ffc00 +#define EMU_DSP_HIWORD_OPA_MASK 0x000003ff +#define EMU_A_DSP_LOWORD_OPX_MASK 0x007ff000 +#define EMU_A_DSP_LOWORD_OPY_MASK 0x000007ff +#define EMU_A_DSP_HIWORD_OPCODE_MASK 0x0f000000 +#define EMU_A_DSP_HIWORD_RESULT_MASK 0x007ff000 +#define EMU_A_DSP_HIWORD_OPA_MASK 0x000007ff + +#define EMU_DSP_OP_MACS 0x0 +#define EMU_DSP_OP_MACS1 0x1 +#define EMU_DSP_OP_MACW 0x2 +#define EMU_DSP_OP_MACW1 0x3 +#define EMU_DSP_OP_MACINTS 0x4 +#define EMU_DSP_OP_MACINTW 0x5 +#define EMU_DSP_OP_ACC3 0x6 +#define EMU_DSP_OP_MACMV 0x7 +#define EMU_DSP_OP_ANDXOR 0x8 +#define EMU_DSP_OP_TSTNEG 0x9 +#define EMU_DSP_OP_LIMIT 0xA +#define EMU_DSP_OP_LIMIT1 0xB +#define EMU_DSP_OP_LOG 0xC +#define EMU_DSP_OP_EXP 0xD +#define EMU_DSP_OP_INTERP 0xE +#define EMU_DSP_OP_SKIP 0xF + + +#define EMU_DSP_FX(num) (num) + +#define EMU_DSP_IOL(base, num) (base + (num << 1)) +#define EMU_DSP_IOR(base, num) (EMU_DSP_IOL(base, num) + 1) + +#define EMU_DSP_INL_BASE 0x010 +#define EMU_DSP_INL(num) (EMU_DSP_IOL(EMU_DSP_INL_BASE, num)) +#define EMU_DSP_INR(num) (EMU_DSP_IOR(EMU_DSP_INL_BASE, num)) +#define EMU_A_DSP_INL_BASE 0x040 +#define EMU_A_DSP_INL(num) (EMU_DSP_IOL(EMU_A_DSP_INL_BASE, num)) +#define EMU_A_DSP_INR(num) (EMU_DSP_IOR(EMU_A_DSP_INL_BASE, num)) +#define EMU_DSP_IN_AC97 0 +#define EMU_DSP_IN_CDSPDIF 1 +#define EMU_DSP_IN_ZOOM 2 +#define EMU_DSP_IN_TOSOPT 3 +#define EMU_DSP_IN_LVDLM1 4 +#define EMU_DSP_IN_LVDCOS 5 +#define EMU_DSP_IN_LVDLM2 6 +#define EMU_DSP_IN_UNKNOWN 7 + +#define EMU_DSP_OUTL_BASE 0x020 +#define EMU_DSP_OUTL(num) (EMU_DSP_IOL(EMU_DSP_OUTL_BASE, num)) +#define EMU_DSP_OUTR(num) (EMU_DSP_IOR(EMU_DSP_OUTL_BASE, num)) +#define EMU_DSP_OUT_A_FRONT 0 +#define EMU_DSP_OUT_D_FRONT 1 +#define EMU_DSP_OUT_D_CENTER 2 +#define EMU_DSP_OUT_DRIVE_HP 3 +#define EMU_DSP_OUT_AD_REAR 4 +#define EMU_DSP_OUT_ADC 5 +#define EMU_DSP_OUTL_MIC 6 + +#define EMU_A_DSP_OUTL_BASE 0x060 +#define EMU_A_DSP_OUTL(num) (EMU_DSP_IOL(EMU_A_DSP_OUTL_BASE, num)) +#define EMU_A_DSP_OUTR(num) (EMU_DSP_IOR(EMU_A_DSP_OUTL_BASE, num)) +#define EMU_A_DSP_OUT_D_FRONT 0 +#define EMU_A_DSP_OUT_D_CENTER 1 +#define EMU_A_DSP_OUT_DRIVE_HP 2 +#define EMU_A_DSP_OUT_DREAR 3 +#define EMU_A_DSP_OUT_A_FRONT 4 +#define EMU_A_DSP_OUT_A_CENTER 5 +#define EMU_A_DSP_OUT_A_REAR 7 +#define EMU_A_DSP_OUT_ADC 11 + +#define EMU_DSP_CST_BASE 0x40 +#define EMU_A_DSP_CST_BASE 0xc0 +#define EMU_DSP_CST(num) (EMU_DSP_CST_BASE + num) +#define EMU_A_DSP_CST(num) (EMU_A_DSP_CST_BASE + num) +/* +00 = 0x00000000 +01 = 0x00000001 +02 = 0x00000002 +03 = 0x00000003 +04 = 0x00000004 +05 = 0x00000008 +06 = 0x00000010 +07 = 0x00000020 +08 = 0x00000100 +09 = 0x00010000 +0A = 0x00080000 +0B = 0x10000000 +0C = 0x20000000 +0D = 0x40000000 +0E = 0x80000000 +0F = 0x7FFFFFFF +10 = 0xFFFFFFFF +11 = 0xFFFFFFFE +12 = 0xC0000000 +13 = 0x4F1BBCDC +14 = 0x5A7EF9DB +15 = 0x00100000 +*/ + +#define EMU_DSP_HWR_ACC 0x056 +#define EMU_DSP_HWR_CCR 0x057 +#define EMU_DSP_HWR_CCR_S 0x04 +#define EMU_DSP_HWR_CCR_Z 0x03 +#define EMU_DSP_HWR_CCR_M 0x02 +#define EMU_DSP_HWR_CCR_N 0x01 +#define EMU_DSP_HWR_CCR_B 0x00 +#define EMU_DSP_HWR_NOISE0 0x058 +#define EMU_DSP_HWR_NOISE1 0x059 +#define EMU_DSP_HWR_INTR 0x05A +#define EMU_DSP_HWR_DBAC 0x05B + +#define EMU_DSP_GPR(num) (EMU_FXGPREGBASE + num) +#define EMU_A_DSP_GPR(num) (EMU_A_FXGPREGBASE + num) + +#endif /* !_DEV_SOUND_PCI_EMU10K1REG_H_ */ diff -ruN dev/sound/pci.orig/emu10kx-midi.c dev/sound/pci/emu10kx-midi.c --- dev/sound/pci.orig/emu10kx-midi.c 2011-01-07 22:17:46.000000000 +0000 +++ dev/sound/pci/emu10kx-midi.c 2011-01-10 20:15:24.000000000 +0000 @@ -50,8 +50,8 @@ #include #include "mpufoi_if.h" +#include #include -#include "emu10k1-alsa%diked.h" struct emu_midi_softc { struct mtx mtx; @@ -176,25 +176,25 @@ if (scp->is_emu10k1) { /* SB Live! - only one MIDI device here */ inte_val = 0; - /* inte_val |= INTE_MIDITXENABLE;*/ - inte_val |= INTE_MIDIRXENABLE; - ipr_val = IPR_MIDITRANSBUFEMPTY; - ipr_val |= IPR_MIDIRECVBUFEMPTY; + /* inte_val |= EMU_INTE_MIDITXENABLE;*/ + inte_val |= EMU_INTE_MIDIRXENABLE; + ipr_val = EMU_IPR_MIDITRANSBUFE; + ipr_val |= EMU_IPR_MIDIRECVBUFE; } else { - if (scp->port == A_MUDATA1) { + if (scp->port == EMU_A_MUDATA1) { /* EXTERNAL MIDI (AudigyDrive) */ inte_val = 0; - /* inte_val |= A_INTE_MIDITXENABLE1;*/ - inte_val |= INTE_MIDIRXENABLE; - ipr_val = IPR_MIDITRANSBUFEMPTY; - ipr_val |= IPR_MIDIRECVBUFEMPTY; + /* inte_val |= A_EMU_INTE_MIDITXENABLE1;*/ + inte_val |= EMU_INTE_MIDIRXENABLE; + ipr_val = EMU_IPR_MIDITRANSBUFE; + ipr_val |= EMU_IPR_MIDIRECVBUFE; } else { /* MIDI hw config port 2 */ inte_val = 0; - /* inte_val |= A_INTE_MIDITXENABLE2;*/ - inte_val |= INTE_A_MIDIRXENABLE2; - ipr_val = IPR_A_MIDITRANSBUFEMPTY2; - ipr_val |= IPR_A_MIDIRECVBUFEMPTY2; + /* inte_val |= A_EMU_INTE_MIDITXENABLE2;*/ + inte_val |= EMU_INTE_A_MIDIRXENABLE2; + ipr_val = EMU_IPR_A_MIDITRANSBUFE2; + ipr_val |= EMU_IPR_A_MIDIRECBUFE2; } } @@ -214,7 +214,7 @@ if (scp->is_emu10k1) emu_enable_ir(scp->card); else { - if (scp->port == A_MUDATA1) + if (scp->port == EMU_A_MUDATA1) emu_enable_ir(scp->card); } diff -ruN dev/sound/pci.orig/emu10kx-pcm.c dev/sound/pci/emu10kx-pcm.c --- dev/sound/pci.orig/emu10kx-pcm.c 2011-01-07 22:17:46.000000000 +0000 +++ dev/sound/pci/emu10kx-pcm.c 2011-01-10 20:15:04.000000000 +0000 @@ -49,8 +49,8 @@ #include "mixer_if.h" +#include #include -#include "emu10k1-alsa%diked.h" struct emu_pcm_pchinfo { int spd; @@ -555,8 +555,8 @@ break; } - emu_wr(sc->card, AC97ADDRESS, regno, 1); - tmp = emu_rd(sc->card, AC97DATA, 2); + emu_wr(sc->card, EMU_AC97ADDR, regno, 1); + tmp = emu_rd(sc->card, EMU_AC97DATA, 2); if (use_ac97) emulated = tmp; @@ -621,8 +621,8 @@ break; } if (write_ac97) { - emu_wr(sc->card, AC97ADDRESS, regno, 1); - emu_wr(sc->card, AC97DATA, data, 2); + emu_wr(sc->card, EMU_AC97ADDR, regno, 1); + emu_wr(sc->card, EMU_AC97DATA, data, 2); } } @@ -658,8 +658,8 @@ struct emu_pcm_info *sc = (struct emu_pcm_info *)devinfo; KASSERT(sc->card != NULL, ("emu_rdcd: no soundcard")); - emu_wr(sc->card, AC97ADDRESS, regno, 1); - rd = emu_rd(sc->card, AC97DATA, 2); + emu_wr(sc->card, EMU_AC97ADDR, regno, 1); + rd = emu_rd(sc->card, EMU_AC97DATA, 2); return (rd); } @@ -669,8 +669,8 @@ struct emu_pcm_info *sc = (struct emu_pcm_info *)devinfo; KASSERT(sc->card != NULL, ("emu_wrcd: no soundcard")); - emu_wr(sc->card, AC97ADDRESS, regno, 1); - emu_wr(sc->card, AC97DATA, data, 2); + emu_wr(sc->card, EMU_AC97ADDR, regno, 1); + emu_wr(sc->card, EMU_AC97DATA, data, 2); return (0); } @@ -870,12 +870,12 @@ ch->blksz = sc->bufsz / 2; /* We rise interrupt for half-full buffer */ ch->fmt = SND_FORMAT(AFMT_U8, 1, 0); ch->spd = 8000; - ch->idxreg = sc->is_emu10k1 ? ADCIDX : A_ADCIDX; - ch->basereg = ADCBA; - ch->sizereg = ADCBS; - ch->setupreg = ADCCR; - ch->irqmask = INTE_ADCBUFENABLE; - ch->iprmask = IPR_ADCBUFFULL | IPR_ADCBUFHALFFULL; + ch->idxreg = sc->is_emu10k1 ? EMU_ADCIDX : EMU_A_ADCIDX; + ch->basereg = EMU_ADCBA; + ch->sizereg = EMU_ADCBS; + ch->setupreg = EMU_ADCCR; + ch->irqmask = EMU_INTE_ADCBUFENABLE; + ch->iprmask = EMU_IPR_ADCBUFFULL | EMU_IPR_ADCBUFHALFFULL; if (sndbuf_alloc(ch->buffer, emu_gettag(sc->card), 0, sc->bufsz) != 0) return (NULL); @@ -953,22 +953,22 @@ switch (sc->bufsz) { case 4096: - sz = ADCBS_BUFSIZE_4096; + sz = EMU_RECBS_BUFSIZE_4096; break; case 8192: - sz = ADCBS_BUFSIZE_8192; + sz = EMU_RECBS_BUFSIZE_8192; break; case 16384: - sz = ADCBS_BUFSIZE_16384; + sz = EMU_RECBS_BUFSIZE_16384; break; case 32768: - sz = ADCBS_BUFSIZE_32768; + sz = EMU_RECBS_BUFSIZE_32768; break; case 65536: - sz = ADCBS_BUFSIZE_65536; + sz = EMU_RECBS_BUFSIZE_65536; break; default: - sz = ADCBS_BUFSIZE_4096; + sz = EMU_RECBS_BUFSIZE_4096; } snd_mtxlock(sc->lock); @@ -976,9 +976,9 @@ case PCMTRIG_START: ch->run = 1; emu_wrptr(sc->card, 0, ch->sizereg, sz); - val = sc->is_emu10k1 ? ADCCR_LCHANENABLE : A_ADCCR_LCHANENABLE; + val = sc->is_emu10k1 ? EMU_ADCCR_LCHANENABLE : EMU_ADCCR_LCHANENABLE; if (AFMT_CHANNEL(ch->fmt) > 1) - val |= sc->is_emu10k1 ? ADCCR_RCHANENABLE : A_ADCCR_RCHANENABLE; + val |= sc->is_emu10k1 ? EMU_ADCCR_RCHANENABLE : EMU_ADCCR_RCHANENABLE; val |= sc->is_emu10k1 ? emu_k1_recval(ch->spd) : emu_k2_recval(ch->spd); emu_wrptr(sc->card, 0, ch->setupreg, 0); emu_wrptr(sc->card, 0, ch->setupreg, val); @@ -1049,11 +1049,11 @@ ch = &(sc->rch_efx); ch->fmt = SND_FORMAT(AFMT_S16_LE, 1, 0); ch->spd = sc->is_emu10k1 ? 48000*32 : 48000 * 64; - ch->idxreg = FXIDX; - ch->basereg = FXBA; - ch->sizereg = FXBS; - ch->irqmask = INTE_EFXBUFENABLE; - ch->iprmask = IPR_EFXBUFFULL | IPR_EFXBUFHALFFULL; + ch->idxreg = EMU_FXIDX; + ch->basereg = EMU_FXBA; + ch->sizereg = EMU_FXBS; + ch->irqmask = EMU_INTE_EFXBUFENABLE; + ch->iprmask = EMU_IPR_EFXBUFFULL | EMU_IPR_EFXBUFHALFFULL; ch->buffer = b; ch->pcm = sc; ch->channel = c; @@ -1113,22 +1113,22 @@ switch (sc->bufsz) { case 4096: - sz = ADCBS_BUFSIZE_4096; + sz = EMU_RECBS_BUFSIZE_4096; break; case 8192: - sz = ADCBS_BUFSIZE_8192; + sz = EMU_RECBS_BUFSIZE_8192; break; case 16384: - sz = ADCBS_BUFSIZE_16384; + sz = EMU_RECBS_BUFSIZE_16384; break; case 32768: - sz = ADCBS_BUFSIZE_32768; + sz = EMU_RECBS_BUFSIZE_32768; break; case 65536: - sz = ADCBS_BUFSIZE_65536; + sz = EMU_RECBS_BUFSIZE_65536; break; default: - sz = ADCBS_BUFSIZE_4096; + sz = EMU_RECBS_BUFSIZE_4096; } snd_mtxlock(sc->lock); @@ -1140,14 +1140,14 @@ /* * SB Live! is limited to 32 mono channels. Audigy * has 64 mono channels. Channels are enabled - * by setting a bit in A_FXWC[1|2] registers. + * by setting a bit in EMU_A_FXWC[1|2] registers. */ /* XXX there is no way to demultiplex this streams for now */ if (sc->is_emu10k1) { - emu_wrptr(sc->card, 0, FXWC, 0xffffffff); + emu_wrptr(sc->card, 0, EMU_FXWC, 0xffffffff); } else { - emu_wrptr(sc->card, 0, A_FXWC1, 0xffffffff); - emu_wrptr(sc->card, 0, A_FXWC2, 0xffffffff); + emu_wrptr(sc->card, 0, EMU_A_FXWC1, 0xffffffff); + emu_wrptr(sc->card, 0, EMU_A_FXWC2, 0xffffffff); } break; case PCMTRIG_STOP: @@ -1155,10 +1155,10 @@ case PCMTRIG_ABORT: ch->run = 0; if (sc->is_emu10k1) { - emu_wrptr(sc->card, 0, FXWC, 0x0); + emu_wrptr(sc->card, 0, EMU_FXWC, 0x0); } else { - emu_wrptr(sc->card, 0, A_FXWC1, 0x0); - emu_wrptr(sc->card, 0, A_FXWC2, 0x0); + emu_wrptr(sc->card, 0, EMU_A_FXWC1, 0x0); + emu_wrptr(sc->card, 0, EMU_A_FXWC2, 0x0); } emu_wrptr(sc->card, 0, ch->sizereg, 0); (void)emu_intr_unregister(sc->card, ch->ihandle); @@ -1238,8 +1238,8 @@ snd_mtxlock(sc->lock); - if (stat & IPR_INTERVALTIMER) { - ack |= IPR_INTERVALTIMER; + if (stat & EMU_IPR_INTERVALTIMER) { + ack |= EMU_IPR_INTERVALTIMER; for (i = 0; i < MAX_CHANNELS; i++) if (sc->pch[i].channel) { if (sc->pch[i].run == 1) { @@ -1262,8 +1262,8 @@ } - if (stat & (IPR_ADCBUFFULL | IPR_ADCBUFHALFFULL)) { - ack |= stat & (IPR_ADCBUFFULL | IPR_ADCBUFHALFFULL); + if (stat & (EMU_IPR_ADCBUFFULL | EMU_IPR_ADCBUFHALFFULL)) { + ack |= stat & (EMU_IPR_ADCBUFFULL | EMU_IPR_ADCBUFHALFFULL); if (sc->rch_adc.channel) { snd_mtxunlock(sc->lock); chn_intr(sc->rch_adc.channel); @@ -1271,8 +1271,8 @@ } } - if (stat & (IPR_EFXBUFFULL | IPR_EFXBUFHALFFULL)) { - ack |= stat & (IPR_EFXBUFFULL | IPR_EFXBUFHALFFULL); + if (stat & (EMU_IPR_EFXBUFFULL | EMU_IPR_EFXBUFHALFFULL)) { + ack |= stat & (EMU_IPR_EFXBUFFULL | EMU_IPR_EFXBUFHALFFULL); if (sc->rch_efx.channel) { snd_mtxunlock(sc->lock); chn_intr(sc->rch_efx.channel); @@ -1450,8 +1450,8 @@ goto bad; } - inte = INTE_INTERVALTIMERENB; - ipr = IPR_INTERVALTIMER; /* Used by playback & ADC */ + inte = EMU_INTE_INTERTIMERENB; + ipr = EMU_IPR_INTERVALTIMER; /* Used by playback & ADC */ sc->ihandle = emu_intr_register(sc->card, inte, ipr, &emu_pcm_intr, sc); if (emu_pcm_init(sc) == -1) { diff -ruN dev/sound/pci.orig/emu10kx.c dev/sound/pci/emu10kx.c --- dev/sound/pci.orig/emu10kx.c 2011-01-07 22:17:46.000000000 +0000 +++ dev/sound/pci/emu10kx.c 2011-01-10 20:14:33.000000000 +0000 @@ -53,6 +53,7 @@ #include #include +#include #include /* hw flags */ @@ -181,7 +182,7 @@ #define A_IN_AUX2_R 0x0d #define A_IN_AUX2 A_IN_AUX2_L -/* Audigiy Outputs */ +/* Audigy Outputs */ #define A_OUT_D_FRONT_L 0x00 #define A_OUT_D_FRONT_R 0x01 #define A_OUT_D_FRONT A_OUT_D_FRONT_L @@ -217,7 +218,20 @@ #define A_OUT_ADC_REC_R 0x17 #define A_OUT_ADC_REC A_OUT_ADC_REC_L -#include "emu10k1-alsa%diked.h" +#define EMU_A_IOCFG_DISABLE_ANALOG 0x0040 /* = 'enable' for Audigy2 (chiprev=4) */ +#define EMU_A_IOCFG_GPOUT2 0x0001 +#define EMU_HCFG_GPOUT0 0x00001000 +#define EMU_HCFG_GPOUT2 0x00000400 +#define EMU_AC97SLOT_REAR_RIGHT 0x01 +#define EMU_AC97SLOT_REAR_LEFT 0x02 + +/* This is the P16V chip: available on the Audigy 2 and Audigy 4 only. */ +#define EMU_DATA2 0x24 +#define EMU_IPR2 0x28 +#define EMU_INTE2 0x2c +#define EMU_IPR3 0x38 +#define EMU_INTE3 0x3c + #include "p16v-alsa%diked.h" #include "p17v-alsa%diked.h" @@ -630,7 +644,7 @@ } } /* - * PTR / DATA interface. Access to EMU10Kx is made + * EMU_PTR / EMU_DATA interface. Access to EMU10Kx is made * via (channel, register) pair. Some registers are channel-specific, * some not. */ @@ -639,11 +653,11 @@ { uint32_t ptr, val, mask, size, offset; - ptr = ((reg << 16) & sc->address_mask) | (chn & PTR_CHANNELNUM_MASK); + ptr = ((reg << 16) & sc->address_mask) | (chn & EMU_PTR_CHNO_MASK); EMU_RWLOCK(); - emu_wr_nolock(sc, PTR, ptr, 4); - val = emu_rd_nolock(sc, DATA, 4); + emu_wr_nolock(sc, EMU_PTR, ptr, 4); + val = emu_rd_nolock(sc, EMU_DATA, 4); EMU_RWUNLOCK(); /* @@ -666,10 +680,10 @@ { uint32_t ptr, mask, size, offset; - ptr = ((reg << 16) & sc->address_mask) | (chn & PTR_CHANNELNUM_MASK); + ptr = ((reg << 16) & sc->address_mask) | (chn & EMU_PTR_CHNO_MASK); EMU_RWLOCK(); - emu_wr_nolock(sc, PTR, ptr, 4); + emu_wr_nolock(sc, EMU_PTR, ptr, 4); /* * XXX Another kind of magic encoding in register number. This can * give you side effect - it will read previous data from register @@ -681,13 +695,13 @@ mask = ((1 << size) - 1) << offset; data <<= offset; data &= mask; - data |= emu_rd_nolock(sc, DATA, 4) & ~mask; + data |= emu_rd_nolock(sc, EMU_DATA, 4) & ~mask; } - emu_wr_nolock(sc, DATA, data, 4); + emu_wr_nolock(sc, EMU_DATA, data, 4); EMU_RWUNLOCK(); } /* - * PTR2 / DATA2 interface. Access to P16v is made + * EMU_A2_PTR / EMU_DATA2 interface. Access to P16v is made * via (channel, register) pair. Some registers are channel-specific, * some not. This interface is supported by CA0102 and CA0108 chips only. */ @@ -698,8 +712,8 @@ /* XXX separate lock? */ EMU_RWLOCK(); - emu_wr_nolock(sc, PTR2, (reg << 16) | chn, 4); - val = emu_rd_nolock(sc, DATA2, 4); + emu_wr_nolock(sc, EMU_A2_PTR, (reg << 16) | chn, 4); + val = emu_rd_nolock(sc, EMU_DATA2, 4); EMU_RWUNLOCK(); @@ -711,8 +725,8 @@ { EMU_RWLOCK(); - emu_wr_nolock(sc, PTR2, (reg << 16) | chn, 4); - emu_wr_nolock(sc, DATA2, data, 4); + emu_wr_nolock(sc, EMU_A2_PTR, (reg << 16) | chn, 4); + emu_wr_nolock(sc, EMU_DATA2, data, 4); EMU_RWUNLOCK(); } /* @@ -737,13 +751,13 @@ /* * Direct hardware register access - * Assume that it is never used to access PTR-based registers and can run unlocked. + * Assume that it is never used to access EMU_PTR-based registers and can run unlocked. */ void emu_wr(struct emu_sc_info *sc, unsigned int regno, uint32_t data, unsigned int size) { - KASSERT(regno != PTR, ("emu_wr: attempt to write to PTR")); - KASSERT(regno != PTR2, ("emu_wr: attempt to write to PTR2")); + KASSERT(regno != EMU_PTR, ("emu_wr: attempt to write to EMU_PTR")); + KASSERT(regno != EMU_A2_PTR, ("emu_wr: attempt to write to EMU_A2_PTR")); emu_wr_nolock(sc, regno, data, size); } @@ -753,8 +767,8 @@ { uint32_t rd; - KASSERT(regno != DATA, ("emu_rd: attempt to read DATA")); - KASSERT(regno != DATA2, ("emu_rd: attempt to read DATA2")); + KASSERT(regno != EMU_DATA, ("emu_rd: attempt to read DATA")); + KASSERT(regno != EMU_DATA2, ("emu_rd: attempt to read DATA2")); rd = emu_rd_nolock(sc, regno, size); return (rd); @@ -770,24 +784,24 @@ uint32_t iocfg; if (sc->is_emu10k2 || sc->is_ca0102) { - iocfg = emu_rd_nolock(sc, A_IOCFG, 2); - emu_wr_nolock(sc, A_IOCFG, iocfg | A_IOCFG_GPOUT2, 2); + iocfg = emu_rd_nolock(sc, EMU_A_IOCFG, 2); + emu_wr_nolock(sc, EMU_A_IOCFG, iocfg | EMU_A_IOCFG_GPOUT2, 2); DELAY(500); - emu_wr_nolock(sc, A_IOCFG, iocfg | A_IOCFG_GPOUT1 | A_IOCFG_GPOUT2, 2); + emu_wr_nolock(sc, EMU_A_IOCFG, iocfg | EMU_A_IOCFG_GPOUT1 | EMU_A_IOCFG_GPOUT2, 2); DELAY(500); - emu_wr_nolock(sc, A_IOCFG, iocfg | A_IOCFG_GPOUT1, 2); + emu_wr_nolock(sc, EMU_A_IOCFG, iocfg | EMU_A_IOCFG_GPOUT1, 2); DELAY(100); - emu_wr_nolock(sc, A_IOCFG, iocfg, 2); + emu_wr_nolock(sc, EMU_A_IOCFG, iocfg, 2); device_printf(sc->dev, "Audigy IR MIDI events enabled.\n"); sc->enable_ir = 1; } if (sc->is_emu10k1) { - iocfg = emu_rd_nolock(sc, HCFG, 4); - emu_wr_nolock(sc, HCFG, iocfg | HCFG_GPOUT2, 4); + iocfg = emu_rd_nolock(sc, EMU_HCFG, 4); + emu_wr_nolock(sc, EMU_HCFG, iocfg | EMU_HCFG_GPOUT2, 4); DELAY(500); - emu_wr_nolock(sc, HCFG, iocfg | HCFG_GPOUT1 | HCFG_GPOUT2, 4); + emu_wr_nolock(sc, EMU_HCFG, iocfg | EMU_INTE_PCIERRENABLE | EMU_HCFG_GPOUT2, 4); DELAY(100); - emu_wr_nolock(sc, HCFG, iocfg, 4); + emu_wr_nolock(sc, EMU_HCFG, iocfg, 4); device_printf(sc->dev, "SB Live! IR MIDI events enabled.\n"); sc->enable_ir = 1; } @@ -835,7 +849,7 @@ sc->timerinterval = sc->timer[i]; /* XXX */ - emu_wr(sc, TIMER, sc->timerinterval & 0x03ff, 2); + emu_wr(sc, EMU_TIMER, sc->timerinterval & 0x03ff, 2); mtx_unlock(&sc->lock); return (timer); @@ -868,16 +882,16 @@ ena_int = 1; } - emu_wr(sc, TIMER, sc->timerinterval & 0x03ff, 2); + emu_wr(sc, EMU_TIMER, sc->timerinterval & 0x03ff, 2); if (ena_int == 1) { - x = emu_rd(sc, INTE, 4); - x |= INTE_INTERVALTIMERENB; - emu_wr(sc, INTE, x, 4); + x = emu_rd(sc, EMU_INTE, 4); + x |= EMU_INTE_INTERTIMERENB; + emu_wr(sc, EMU_INTE, x, 4); } else { - x = emu_rd(sc, INTE, 4); - x &= ~INTE_INTERVALTIMERENB; - emu_wr(sc, INTE, x, 4); + x = emu_rd(sc, EMU_INTE, 4); + x &= ~EMU_INTE_INTERTIMERENB; + emu_wr(sc, EMU_INTE, x, 4); } mtx_unlock(&sc->lock); return (0); @@ -917,9 +931,9 @@ sc->ihandler[i].intr_mask = intr_mask; sc->ihandler[i].softc = isc; sc->ihandler[i].irq_func = func; - x = emu_rd(sc, INTE, 4); + x = emu_rd(sc, EMU_INTE, 4); x |= inte_mask; - emu_wr(sc, INTE, x, 4); + emu_wr(sc, EMU_INTE, x, 4); mtx_unlock(&sc->lock); if (sc->dbg_level > 1) device_printf(sc->dev, "ihandle %d registered\n", i); @@ -946,7 +960,7 @@ return (-1); } - x = emu_rd(sc, INTE, 4); + x = emu_rd(sc, EMU_INTE, 4); x &= ~sc->ihandler[hnumber].inte_mask; sc->ihandler[hnumber].inte_mask = 0; @@ -954,12 +968,12 @@ sc->ihandler[hnumber].softc = NULL; sc->ihandler[hnumber].irq_func = NULL; - /* other interrupt handlers may use this INTE value */ + /* other interrupt handlers may use this EMU_INTE value */ for (i = 0; i < EMU_MAX_IRQ_CONSUMERS; i++) if (sc->ihandler[i].inte_mask != 0) x |= sc->ihandler[i].inte_mask; - emu_wr(sc, INTE, x, 4); + emu_wr(sc, EMU_INTE, x, 4); mtx_unlock(&sc->lock); return (hnumber); @@ -973,11 +987,11 @@ int i; for (;;) { - stat = emu_rd(sc, IPR, 4); + stat = emu_rd(sc, EMU_IPR, 4); ack = 0; if (stat == 0) break; - emu_wr(sc, IPR, stat, 4); + emu_wr(sc, EMU_IPR, stat, 4); for (i = 0; i < EMU_MAX_IRQ_CONSUMERS; i++) { if ((((sc->ihandler[i].intr_mask) & stat) != 0) && (((void *)sc->ihandler[i].irq_func) != NULL)) { @@ -993,13 +1007,13 @@ if ((sc->is_ca0102) || (sc->is_ca0108)) for (;;) { - stat = emu_rd(sc, IPR2, 4); + stat = emu_rd(sc, EMU_IPR2, 4); ack = 0; if (stat == 0) break; - emu_wr(sc, IPR2, stat, 4); + emu_wr(sc, EMU_IPR2, stat, 4); if (sc->dbg_level > 1) - device_printf(sc->dev, "IPR2: %08x\n", stat); + device_printf(sc->dev, "EMU_IPR2: %08x\n", stat); break; /* to avoid infinite loop. shoud be removed * after completion of P16V interface. */ @@ -1007,13 +1021,13 @@ if (sc->is_ca0102) for (;;) { - stat = emu_rd(sc, IPR3, 4); + stat = emu_rd(sc, EMU_IPR3, 4); ack = 0; if (stat == 0) break; - emu_wr(sc, IPR3, stat, 4); + emu_wr(sc, EMU_IPR3, stat, 4); if (sc->dbg_level > 1) - device_printf(sc->dev, "IPR3: %08x\n", stat); + device_printf(sc->dev, "EMU_IPR3: %08x\n", stat); break; /* to avoid infinite loop. should be removed * after completion of S/PDIF interface */ @@ -1374,61 +1388,61 @@ if (v->stereo) { - emu_wrptr(sc, v->vnum, CPF, CPF_STEREO_MASK); + emu_wrptr(sc, v->vnum, EMU_CHAN_CPF, EMU_CHAN_CPF_STEREO_MASK); } else { - emu_wrptr(sc, v->vnum, CPF, 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_CPF, 0); } val = v->stereo ? 28 : 30; val *= v->b16 ? 1 : 2; start = v->sa + val; if (sc->is_emu10k1) { - emu_wrptr(sc, v->vnum, FXRT, ((v->routing[3] << 12) | + emu_wrptr(sc, v->vnum, EMU_CHAN_FXRT, ((v->routing[3] << 12) | (v->routing[2] << 8) | (v->routing[1] << 4) | (v->routing[0] << 0)) << 16); } else { - emu_wrptr(sc, v->vnum, A_FXRT1, (v->routing[3] << 24) | + emu_wrptr(sc, v->vnum, EMU_A_CHAN_FXRT1, (v->routing[3] << 24) | (v->routing[2] << 16) | (v->routing[1] << 8) | (v->routing[0] << 0)); - emu_wrptr(sc, v->vnum, A_FXRT2, (v->routing[7] << 24) | + emu_wrptr(sc, v->vnum, EMU_A_CHAN_FXRT2, (v->routing[7] << 24) | (v->routing[6] << 16) | (v->routing[5] << 8) | (v->routing[4] << 0)); - emu_wrptr(sc, v->vnum, A_SENDAMOUNTS, (v->amounts[7] << 24) | + emu_wrptr(sc, v->vnum, EMU_A_CHAN_SENDAMOUNTS, (v->amounts[7] << 24) | (v->amounts[6] << 26) | (v->amounts[5] << 8) | (v->amounts[4] << 0)); } - emu_wrptr(sc, v->vnum, PTRX, (v->amounts[0] << 8) | (v->amounts[1] << 0)); - emu_wrptr(sc, v->vnum, DSL, v->ea | (v->amounts[3] << 24)); - emu_wrptr(sc, v->vnum, PSST, v->sa | (v->amounts[2] << 24)); - - emu_wrptr(sc, v->vnum, CCCA, start | (v->b16 ? 0 : CCCA_8BITSELECT)); - emu_wrptr(sc, v->vnum, Z1, 0); - emu_wrptr(sc, v->vnum, Z2, 0); - - silent_page = ((uint32_t) (sc->mem.silent_page_addr) << 1) | MAP_PTI_MASK; - emu_wrptr(sc, v->vnum, MAPA, silent_page); - emu_wrptr(sc, v->vnum, MAPB, silent_page); - - emu_wrptr(sc, v->vnum, CVCF, CVCF_CURRENTFILTER_MASK); - emu_wrptr(sc, v->vnum, VTFT, VTFT_FILTERTARGET_MASK); - emu_wrptr(sc, v->vnum, ATKHLDM, 0); - emu_wrptr(sc, v->vnum, DCYSUSM, DCYSUSM_DECAYTIME_MASK); - emu_wrptr(sc, v->vnum, LFOVAL1, 0x8000); - emu_wrptr(sc, v->vnum, LFOVAL2, 0x8000); - emu_wrptr(sc, v->vnum, FMMOD, 0); - emu_wrptr(sc, v->vnum, TREMFRQ, 0); - emu_wrptr(sc, v->vnum, FM2FRQ2, 0); - emu_wrptr(sc, v->vnum, ENVVAL, 0x8000); + emu_wrptr(sc, v->vnum, EMU_CHAN_PTRX, (v->amounts[0] << 8) | (v->amounts[1] << 0)); + emu_wrptr(sc, v->vnum, EMU_CHAN_DSL, v->ea | (v->amounts[3] << 24)); + emu_wrptr(sc, v->vnum, EMU_CHAN_PSST, v->sa | (v->amounts[2] << 24)); + + emu_wrptr(sc, v->vnum, EMU_CHAN_CCCA, start | (v->b16 ? 0 : EMU_CHAN_CCCA_8BITSELECT)); + emu_wrptr(sc, v->vnum, EMU_CHAN_Z1, 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_Z2, 0); + + silent_page = ((uint32_t) (sc->mem.silent_page_addr) << 1) | EMU_CHAN_MAP_PTI_MASK; + emu_wrptr(sc, v->vnum, EMU_CHAN_MAPA, silent_page); + emu_wrptr(sc, v->vnum, EMU_CHAN_MAPB, silent_page); + + emu_wrptr(sc, v->vnum, EMU_CHAN_CVCF, EMU_CHAN_CVCF_CURRFILTER_MASK); + emu_wrptr(sc, v->vnum, EMU_CHAN_VTFT, EMU_CHAN_VTFT_FILTERTARGET_MASK); + emu_wrptr(sc, v->vnum, EMU_CHAN_ATKHLDM, 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_DCYSUSM, EMU_CHAN_DCYSUSM_DECAYTIME_MASK); + emu_wrptr(sc, v->vnum, EMU_CHAN_LFOVAL1, 0x8000); + emu_wrptr(sc, v->vnum, EMU_CHAN_LFOVAL2, 0x8000); + emu_wrptr(sc, v->vnum, EMU_CHAN_FMMOD, 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_TREMFRQ, 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_FM2FRQ2, 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_ENVVAL, 0x8000); - emu_wrptr(sc, v->vnum, ATKHLDV, ATKHLDV_HOLDTIME_MASK | ATKHLDV_ATTACKTIME_MASK); - emu_wrptr(sc, v->vnum, ENVVOL, 0x8000); + emu_wrptr(sc, v->vnum, EMU_CHAN_ATKHLDV, EMU_CHAN_ATKHLDV_HOLDTIME_MASK | EMU_CHAN_ATKHLDV_ATTACKTIME_MASK); + emu_wrptr(sc, v->vnum, EMU_CHAN_ENVVOL, 0x8000); - emu_wrptr(sc, v->vnum, PEFE_FILTERAMOUNT, 0x7f); - emu_wrptr(sc, v->vnum, PEFE_PITCHAMOUNT, 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_PEFE_FILTERAMOUNT, 0x7f); + emu_wrptr(sc, v->vnum, EMU_CHAN_PEFE_PITCHAMOUNT, 0); if ((v->stereo) && (v->slave != NULL)) emu_vwrite(sc, v->slave); } @@ -1438,7 +1452,7 @@ { int reg; - reg = (channel & 0x20) ? SOLEH : SOLEL; + reg = (channel & 0x20) ? EMU_SOLEH : EMU_SOLEL; channel &= 0x1f; reg |= 1 << 24; reg |= channel << 16; @@ -1459,29 +1473,29 @@ ccis *= v->b16 ? 1 : 2; sample = v->b16 ? 0x00000000 : 0x80808080; for (i = 0; i < cs; i++) - emu_wrptr(sc, v->vnum, CD0 + i, sample); - emu_wrptr(sc, v->vnum, CCR_CACHEINVALIDSIZE, 0); - emu_wrptr(sc, v->vnum, CCR_READADDRESS, cra); - emu_wrptr(sc, v->vnum, CCR_CACHEINVALIDSIZE, ccis); - - emu_wrptr(sc, v->vnum, IFATN, 0xff00); - emu_wrptr(sc, v->vnum, VTFT, 0xffffffff); - emu_wrptr(sc, v->vnum, CVCF, 0xffffffff); - emu_wrptr(sc, v->vnum, DCYSUSV, 0x00007f7f); + emu_wrptr(sc, v->vnum, EMU_CHAN_CD0 + i, sample); + emu_wrptr(sc, v->vnum, EMU_CHAN_CCR_CACHEINVALIDSIZE, 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_CCR_READADDRESS, cra); + emu_wrptr(sc, v->vnum, EMU_CHAN_CCR_CACHEINVALIDSIZE, ccis); + + emu_wrptr(sc, v->vnum, EMU_CHAN_IFATN, 0xff00); + emu_wrptr(sc, v->vnum, EMU_CHAN_VTFT, 0xffffffff); + emu_wrptr(sc, v->vnum, EMU_CHAN_CVCF, 0xffffffff); + emu_wrptr(sc, v->vnum, EMU_CHAN_DCYSUSV, 0x00007f7f); emu_vstop(sc, v->vnum, 0); pitch_target = emu_rate_to_linearpitch(v->speed); initial_pitch = emu_rate_to_pitch(v->speed) >> 8; - emu_wrptr(sc, v->vnum, PTRX_PITCHTARGET, pitch_target); - emu_wrptr(sc, v->vnum, CPF_CURRENTPITCH, pitch_target); - emu_wrptr(sc, v->vnum, IP, initial_pitch); + emu_wrptr(sc, v->vnum, EMU_CHAN_PTRX_PITCHTARGET, pitch_target); + emu_wrptr(sc, v->vnum, EMU_CHAN_CPF_PITCH, pitch_target); + emu_wrptr(sc, v->vnum, EMU_CHAN_IP, initial_pitch); } else { - emu_wrptr(sc, v->vnum, PTRX_PITCHTARGET, 0); - emu_wrptr(sc, v->vnum, CPF_CURRENTPITCH, 0); - emu_wrptr(sc, v->vnum, IFATN, 0xffff); - emu_wrptr(sc, v->vnum, VTFT, 0x0000ffff); - emu_wrptr(sc, v->vnum, CVCF, 0x0000ffff); - emu_wrptr(sc, v->vnum, IP, 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_PTRX_PITCHTARGET, 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_CPF_PITCH, 0); + emu_wrptr(sc, v->vnum, EMU_CHAN_IFATN, 0xffff); + emu_wrptr(sc, v->vnum, EMU_CHAN_VTFT, 0x0000ffff); + emu_wrptr(sc, v->vnum, EMU_CHAN_CVCF, 0x0000ffff); + emu_wrptr(sc, v->vnum, EMU_CHAN_IP, 0); emu_vstop(sc, v->vnum, 1); } if ((v->stereo) && (v->slave != NULL)) @@ -1494,7 +1508,7 @@ int s, ptr; s = (v->b16 ? 1 : 0) + (v->stereo ? 1 : 0); - ptr = (emu_rdptr(sc, v->vnum, CCCA_CURRADDR) - (v->start >> s)) << s; + ptr = (emu_rdptr(sc, v->vnum, EMU_CHAN_CCCA_CURRADDR) - (v->start >> s)) << s; return (ptr & ~0x0000001f); } @@ -1694,9 +1708,9 @@ /* stop DSP */ if (sc->is_emu10k1) { - emu_wrptr(sc, 0, DBG, EMU10K1_DBG_SINGLE_STEP); + emu_wrptr(sc, 0, EMU_DBG, EMU_DBG_SINGLE_STEP); } else { - emu_wrptr(sc, 0, A_DBG, A_DBG_SINGLE_STEP); + emu_wrptr(sc, 0, EMU_A_DBG, EMU_A_DBG_SINGLE_STEP); } /* code size is in instructions */ @@ -2162,9 +2176,9 @@ /* start DSP */ if (sc->is_emu10k1) { - emu_wrptr(sc, 0, DBG, 0); + emu_wrptr(sc, 0, EMU_DBG, 0); } else { - emu_wrptr(sc, 0, A_DBG, 0); + emu_wrptr(sc, 0, EMU_A_DBG, 0); } } @@ -2450,24 +2464,24 @@ return; } - hcfg = HCFG_AUDIOENABLE | HCFG_AUTOMUTE; + hcfg = EMU_HCFG_AUDIOENABLE | EMU_HCFG_AUTOMUTE; a_iocfg = 0; if (sc->rev >= 6) - hcfg |= HCFG_JOYENABLE; + hcfg |= EMU_HCFG_JOYENABLE; if (sc->is_emu10k1) - hcfg |= HCFG_LOCKTANKCACHE_MASK; + hcfg |= EMU_HCFG_LOCKTANKCACHE_MASK; else - hcfg |= HCFG_CODECFORMAT_I2S | HCFG_JOYENABLE; + hcfg |= EMU_HCFG_CODECFMT_I2S | EMU_HCFG_JOYENABLE; if (mode == MODE_DIGITAL) { if (sc->broken_digital) { device_printf(sc->dev, "Digital mode is reported as broken on this card.\n"); } - a_iocfg |= A_IOCFG_ENABLE_DIGITAL; - hcfg |= HCFG_GPOUT0; + a_iocfg |= EMU_A_IOCFG_GPOUT1; + hcfg |= EMU_HCFG_GPOUT0; } if (mode == MODE_ANALOG) @@ -2478,12 +2492,12 @@ if ((sc->is_ca0102) || (sc->is_ca0108)) /* - * Setting A_IOCFG_DISABLE_ANALOG will do opposite things + * Setting EMU_A_IOCFG_DISABLE_ANALOG will do opposite things * on diffrerent cards. * "don't disable analog outs" on Audigy 2 (ca0102/ca0108) * "disable analog outs" on Audigy (emu10k2) */ - a_iocfg |= A_IOCFG_DISABLE_ANALOG; + a_iocfg |= EMU_A_IOCFG_DISABLE_ANALOG; if (sc->is_ca0108) a_iocfg |= 0x20; /* XXX */ @@ -2492,12 +2506,12 @@ if (mode == MODE_DIGITAL) emumix_set_gpr(sc, sc->mute_gpr[ANALOGMUTE], 1); - emu_wr(sc, HCFG, hcfg, 4); + emu_wr(sc, EMU_HCFG, hcfg, 4); if ((sc->is_emu10k2) || (sc->is_ca0102) || (sc->is_ca0108)) { - tmp = emu_rd(sc, A_IOCFG, 2); + tmp = emu_rd(sc, EMU_A_IOCFG, 2); tmp = a_iocfg; - emu_wr(sc, A_IOCFG, tmp, 2); + emu_wr(sc, EMU_A_IOCFG, tmp, 2); } /* Unmute if we have changed mode to analog. */ @@ -2523,16 +2537,16 @@ return; } - spcs = SPCS_CLKACCY_1000PPM | SPCS_SAMPLERATE_48 | - SPCS_CHANNELNUM_LEFT | SPCS_SOURCENUM_UNSPEC | - SPCS_GENERATIONSTATUS | 0x00001200 | 0x00000000 | - SPCS_EMPHASIS_NONE | SPCS_COPYRIGHT; + spcs = EMU_SPCS_CLKACCY_1000PPM | EMU_SPCS_SAMPLERATE_48 | + EMU_SPCS_CHANNELNUM_LEFT | EMU_SPCS_SOURCENUM_UNSPEC | + EMU_SPCS_GENERATIONSTATUS | 0x00001200 | 0x00000000 | + EMU_SPCS_EMPHASIS_NONE | EMU_SPCS_COPYRIGHT; mode = SPDIF_MODE_PCM; - emu_wrptr(sc, 0, SPCS0, spcs); - emu_wrptr(sc, 0, SPCS1, spcs); - emu_wrptr(sc, 0, SPCS2, spcs); + emu_wrptr(sc, 0, EMU_SPCS0, spcs); + emu_wrptr(sc, 0, EMU_SPCS1, spcs); + emu_wrptr(sc, 0, EMU_SPCS2, spcs); } #define L2L_POINTS 10 @@ -2635,8 +2649,8 @@ { /* - * XXX May not need this if we have IPR3 handler. - * Is it a real init calls, or IPR3 interrupt acknowledgments? + * XXX May not need this if we have EMU_IPR3 handler. + * Is it a real init calls, or EMU_IPR3 interrupt acknowledgments? * Looks much like "(data << 16) | register". */ emu_wr_cbptr(sc, (0x00d0 << 16) | 0x0000); @@ -2660,42 +2674,42 @@ int i; /* disable audio and lock cache */ - emu_wr(sc, HCFG, HCFG_LOCKSOUNDCACHE | HCFG_LOCKTANKCACHE_MASK | HCFG_MUTEBUTTONENABLE, 4); + emu_wr(sc, EMU_HCFG, EMU_HCFG_LOCKSOUNDCACHE | EMU_HCFG_LOCKTANKCACHE_MASK | EMU_HCFG_MUTEBUTTONENABLE, 4); /* reset recording buffers */ - emu_wrptr(sc, 0, MICBS, ADCBS_BUFSIZE_NONE); - emu_wrptr(sc, 0, MICBA, 0); - emu_wrptr(sc, 0, FXBS, ADCBS_BUFSIZE_NONE); - emu_wrptr(sc, 0, FXBA, 0); - emu_wrptr(sc, 0, ADCBS, ADCBS_BUFSIZE_NONE); - emu_wrptr(sc, 0, ADCBA, 0); + emu_wrptr(sc, 0, EMU_MICBS, EMU_RECBS_BUFSIZE_NONE); + emu_wrptr(sc, 0, EMU_MICBA, 0); + emu_wrptr(sc, 0, EMU_FXBS, EMU_RECBS_BUFSIZE_NONE); + emu_wrptr(sc, 0, EMU_FXBA, 0); + emu_wrptr(sc, 0, EMU_ADCBS, EMU_RECBS_BUFSIZE_NONE); + emu_wrptr(sc, 0, EMU_ADCBA, 0); /* disable channel interrupt */ - emu_wr(sc, INTE, INTE_INTERVALTIMERENB | INTE_SAMPLERATETRACKER | INTE_PCIERRORENABLE, 4); - emu_wrptr(sc, 0, CLIEL, 0); - emu_wrptr(sc, 0, CLIEH, 0); - emu_wrptr(sc, 0, SOLEL, 0); - emu_wrptr(sc, 0, SOLEH, 0); + emu_wr(sc, EMU_INTE, EMU_INTE_INTERTIMERENB | EMU_INTE_SAMPLERATER | EMU_INTE_PCIERRENABLE, 4); + emu_wrptr(sc, 0, EMU_CLIEL, 0); + emu_wrptr(sc, 0, EMU_CLIEH, 0); + emu_wrptr(sc, 0, EMU_SOLEL, 0); + emu_wrptr(sc, 0, EMU_SOLEH, 0); /* disable P16V and S/PDIF interrupts */ if ((sc->is_ca0102) || (sc->is_ca0108)) - emu_wr(sc, INTE2, 0, 4); + emu_wr(sc, EMU_INTE2, 0, 4); if (sc->is_ca0102) - emu_wr(sc, INTE3, 0, 4); + emu_wr(sc, EMU_INTE3, 0, 4); /* init phys inputs and outputs */ ac97slot = 0; if (sc->has_51) - ac97slot = AC97SLOT_CNTR | AC97SLOT_LFE; + ac97slot = EMU_AC97SLOT_CENTER | EMU_AC97SLOT_LFE; if (sc->has_71) - ac97slot = AC97SLOT_CNTR | AC97SLOT_LFE | AC97SLOT_REAR_LEFT | AC97SLOT_REAR_RIGHT; + ac97slot = EMU_AC97SLOT_CENTER | EMU_AC97SLOT_LFE | EMU_AC97SLOT_REAR_LEFT | EMU_AC97SLOT_REAR_RIGHT; if (sc->is_emu10k2) ac97slot |= 0x40; - emu_wrptr(sc, 0, AC97SLOT, ac97slot); + emu_wrptr(sc, 0, EMU_AC97SLOT, ac97slot); if (sc->is_emu10k2) /* XXX for later cards? */ - emu_wrptr(sc, 0, SPBYPASS, 0xf00); /* What will happen if + emu_wrptr(sc, 0, EMU_SPBYPASS, 0xf00); /* What will happen if * we write 1 here? */ if (bus_dma_tag_create( /* parent */ bus_get_dma_tag(sc->dev), @@ -2729,61 +2743,61 @@ sc->mem.ptb_pages[i] = tmp | i; for (ch = 0; ch < NUM_G; ch++) { - emu_wrptr(sc, ch, MAPA, tmp | MAP_PTI_MASK); - emu_wrptr(sc, ch, MAPB, tmp | MAP_PTI_MASK); + emu_wrptr(sc, ch, EMU_CHAN_MAPA, tmp | EMU_CHAN_MAP_PTI_MASK); + emu_wrptr(sc, ch, EMU_CHAN_MAPB, tmp | EMU_CHAN_MAP_PTI_MASK); } - emu_wrptr(sc, 0, PTB, (sc->mem.ptb_pages_addr)); - emu_wrptr(sc, 0, TCB, 0); /* taken from original driver */ - emu_wrptr(sc, 0, TCBS, 0); /* taken from original driver */ + emu_wrptr(sc, 0, EMU_PTB, (sc->mem.ptb_pages_addr)); + emu_wrptr(sc, 0, EMU_TCB, 0); /* taken from original driver */ + emu_wrptr(sc, 0, EMU_TCBS, 0); /* taken from original driver */ /* init envelope engine */ for (ch = 0; ch < NUM_G; ch++) { - emu_wrptr(sc, ch, DCYSUSV, 0); - emu_wrptr(sc, ch, IP, 0); - emu_wrptr(sc, ch, VTFT, 0xffff); - emu_wrptr(sc, ch, CVCF, 0xffff); - emu_wrptr(sc, ch, PTRX, 0); - emu_wrptr(sc, ch, CPF, 0); - emu_wrptr(sc, ch, CCR, 0); - - emu_wrptr(sc, ch, PSST, 0); - emu_wrptr(sc, ch, DSL, 0x10); - emu_wrptr(sc, ch, CCCA, 0); - emu_wrptr(sc, ch, Z1, 0); - emu_wrptr(sc, ch, Z2, 0); - emu_wrptr(sc, ch, FXRT, 0xd01c0000); - - emu_wrptr(sc, ch, ATKHLDM, 0); - emu_wrptr(sc, ch, DCYSUSM, 0); - emu_wrptr(sc, ch, IFATN, 0xffff); - emu_wrptr(sc, ch, PEFE, 0); - emu_wrptr(sc, ch, FMMOD, 0); - emu_wrptr(sc, ch, TREMFRQ, 24); /* 1 Hz */ - emu_wrptr(sc, ch, FM2FRQ2, 24); /* 1 Hz */ - emu_wrptr(sc, ch, TEMPENV, 0); + emu_wrptr(sc, ch, EMU_CHAN_DCYSUSV, 0); + emu_wrptr(sc, ch, EMU_CHAN_IP, 0); + emu_wrptr(sc, ch, EMU_CHAN_VTFT, 0xffff); + emu_wrptr(sc, ch, EMU_CHAN_CVCF, 0xffff); + emu_wrptr(sc, ch, EMU_CHAN_PTRX, 0); + emu_wrptr(sc, ch, EMU_CHAN_CPF, 0); + emu_wrptr(sc, ch, EMU_CHAN_CCR, 0); + + emu_wrptr(sc, ch, EMU_CHAN_PSST, 0); + emu_wrptr(sc, ch, EMU_CHAN_DSL, 0x10); + emu_wrptr(sc, ch, EMU_CHAN_CCCA, 0); + emu_wrptr(sc, ch, EMU_CHAN_Z1, 0); + emu_wrptr(sc, ch, EMU_CHAN_Z2, 0); + emu_wrptr(sc, ch, EMU_CHAN_FXRT, 0xd01c0000); + + emu_wrptr(sc, ch, EMU_CHAN_ATKHLDM, 0); + emu_wrptr(sc, ch, EMU_CHAN_DCYSUSM, 0); + emu_wrptr(sc, ch, EMU_CHAN_IFATN, 0xffff); + emu_wrptr(sc, ch, EMU_CHAN_PEFE, 0); + emu_wrptr(sc, ch, EMU_CHAN_FMMOD, 0); + emu_wrptr(sc, ch, EMU_CHAN_TREMFRQ, 24); /* 1 Hz */ + emu_wrptr(sc, ch, EMU_CHAN_FM2FRQ2, 24); /* 1 Hz */ + emu_wrptr(sc, ch, EMU_CHAN_TEMPENV, 0); /*** these are last so OFF prevents writing ***/ - emu_wrptr(sc, ch, LFOVAL2, 0); - emu_wrptr(sc, ch, LFOVAL1, 0); - emu_wrptr(sc, ch, ATKHLDV, 0); - emu_wrptr(sc, ch, ENVVOL, 0); - emu_wrptr(sc, ch, ENVVAL, 0); + emu_wrptr(sc, ch, EMU_CHAN_LFOVAL2, 0); + emu_wrptr(sc, ch, EMU_CHAN_LFOVAL1, 0); + emu_wrptr(sc, ch, EMU_CHAN_ATKHLDV, 0); + emu_wrptr(sc, ch, EMU_CHAN_ENVVOL, 0); + emu_wrptr(sc, ch, EMU_CHAN_ENVVAL, 0); if ((sc->is_emu10k2) || (sc->is_ca0102) || (sc->is_ca0108)) { emu_wrptr(sc, ch, 0x4c, 0x0); emu_wrptr(sc, ch, 0x4d, 0x0); emu_wrptr(sc, ch, 0x4e, 0x0); emu_wrptr(sc, ch, 0x4f, 0x0); - emu_wrptr(sc, ch, A_FXRT1, 0x3f3f3f3f); - emu_wrptr(sc, ch, A_FXRT2, 0x3f3f3f3f); - emu_wrptr(sc, ch, A_SENDAMOUNTS, 0x0); + emu_wrptr(sc, ch, EMU_A_CHAN_FXRT1, 0x3f3f3f3f); + emu_wrptr(sc, ch, EMU_A_CHAN_FXRT2, 0x3f3f3f3f); + emu_wrptr(sc, ch, EMU_A_CHAN_SENDAMOUNTS, 0x0); } } emumix_set_spdif_mode(sc, SPDIF_MODE_PCM); if ((sc->is_emu10k2) || (sc->is_ca0102) || (sc->is_ca0108)) - emu_wrptr(sc, 0, A_SPDIF_SAMPLERATE, A_SPDIF_48000); + emu_wrptr(sc, 0, EMU_A_SPDIF_SAMPLERATE, EMU_A_SPDIF_48000); /* * CAxxxx cards needs additional setup: @@ -2793,10 +2807,10 @@ */ if ((sc->is_ca0102) || (sc->is_ca0108)) { - spdif_sr = emu_rdptr(sc, 0, A_SPDIF_SAMPLERATE); + spdif_sr = emu_rdptr(sc, 0, EMU_A_SPDIF_SAMPLERATE); spdif_sr &= 0xfffff1ff; - spdif_sr |= A_I2S_CAPTURE_96000; - emu_wrptr(sc, 0, A_SPDIF_SAMPLERATE, spdif_sr); + spdif_sr |= EMU_A_SPDIF_96000; + emu_wrptr(sc, 0, EMU_A_SPDIF_SAMPLERATE, spdif_sr); /* Disable P16v processing */ emu_wr_p16vptr(sc, 0, SRCSel, 0x14); @@ -2808,8 +2822,8 @@ emu_wr_p16vptr(sc, 0, P17V_MIXER_I2S_ENABLE, 0xFF000000); emu_wr_p16vptr(sc, 0, P17V_MIXER_SPDIF_ENABLE, 0xFF000000); - tmp = emu_rd(sc, A_IOCFG, 2); - emu_wr(sc, A_IOCFG, tmp & ~0x8, 2); + tmp = emu_rd(sc, EMU_A_IOCFG, 2); + emu_wr(sc, EMU_A_IOCFG, tmp & ~0x8, 2); } } emu_initefx(sc); @@ -2824,7 +2838,7 @@ emumix_set_mode(sc, def_mode); if (bootverbose) { - tmp = emu_rd(sc, HCFG, 4); + tmp = emu_rd(sc, EMU_HCFG, 4); device_printf(sc->dev, "Card Configuration ( 0x%08x )\n", tmp); device_printf(sc->dev, "Card Configuration ( & 0xff000000 ) : %s%s%s%s%s%s%s%s\n", (tmp & 0x80000000 ? "[Legacy MPIC] " : ""), @@ -2864,7 +2878,7 @@ (tmp & 0x00000001 ? "[AUDIOENABLE]" : " ")); if ((sc->is_emu10k2) || (sc->is_ca0102) || (sc->is_ca0108)) { - tmp = emu_rd(sc, A_IOCFG, 2); + tmp = emu_rd(sc, EMU_A_IOCFG, 2); device_printf(sc->dev, "Audigy Card Configuration ( 0x%04x )\n", tmp); device_printf(sc->dev, "Audigy Card Configuration ( & 0xff00 )"); printf(" : %s%s%s%s%s%s%s%s\n", @@ -2897,36 +2911,36 @@ uint32_t ch; struct emu_memblk *blk; - emu_wr(sc, INTE, 0, 4); + emu_wr(sc, EMU_INTE, 0, 4); for (ch = 0; ch < NUM_G; ch++) - emu_wrptr(sc, ch, DCYSUSV, 0); + emu_wrptr(sc, ch, EMU_CHAN_DCYSUSV, 0); for (ch = 0; ch < NUM_G; ch++) { - emu_wrptr(sc, ch, VTFT, 0); - emu_wrptr(sc, ch, CVCF, 0); - emu_wrptr(sc, ch, PTRX, 0); - emu_wrptr(sc, ch, CPF, 0); + emu_wrptr(sc, ch, EMU_CHAN_VTFT, 0); + emu_wrptr(sc, ch, EMU_CHAN_CVCF, 0); + emu_wrptr(sc, ch, EMU_CHAN_PTRX, 0); + emu_wrptr(sc, ch, EMU_CHAN_CPF, 0); } /* disable audio and lock cache */ - emu_wr(sc, HCFG, HCFG_LOCKSOUNDCACHE | HCFG_LOCKTANKCACHE_MASK | HCFG_MUTEBUTTONENABLE, 4); + emu_wr(sc, EMU_HCFG, EMU_HCFG_LOCKSOUNDCACHE | EMU_HCFG_LOCKTANKCACHE_MASK | EMU_HCFG_MUTEBUTTONENABLE, 4); - emu_wrptr(sc, 0, PTB, 0); + emu_wrptr(sc, 0, EMU_PTB, 0); /* reset recording buffers */ - emu_wrptr(sc, 0, MICBS, ADCBS_BUFSIZE_NONE); - emu_wrptr(sc, 0, MICBA, 0); - emu_wrptr(sc, 0, FXBS, ADCBS_BUFSIZE_NONE); - emu_wrptr(sc, 0, FXBA, 0); - emu_wrptr(sc, 0, FXWC, 0); - emu_wrptr(sc, 0, ADCBS, ADCBS_BUFSIZE_NONE); - emu_wrptr(sc, 0, ADCBA, 0); - emu_wrptr(sc, 0, TCB, 0); - emu_wrptr(sc, 0, TCBS, 0); + emu_wrptr(sc, 0, EMU_MICBS, EMU_RECBS_BUFSIZE_NONE); + emu_wrptr(sc, 0, EMU_MICBA, 0); + emu_wrptr(sc, 0, EMU_FXBS, EMU_RECBS_BUFSIZE_NONE); + emu_wrptr(sc, 0, EMU_FXBA, 0); + emu_wrptr(sc, 0, EMU_FXWC, 0); + emu_wrptr(sc, 0, EMU_ADCBS, EMU_RECBS_BUFSIZE_NONE); + emu_wrptr(sc, 0, EMU_ADCBA, 0); + emu_wrptr(sc, 0, EMU_TCB, 0); + emu_wrptr(sc, 0, EMU_TCBS, 0); /* disable channel interrupt */ - emu_wrptr(sc, 0, CLIEL, 0); - emu_wrptr(sc, 0, CLIEH, 0); - emu_wrptr(sc, 0, SOLEL, 0); - emu_wrptr(sc, 0, SOLEH, 0); + emu_wrptr(sc, 0, EMU_CLIEL, 0); + emu_wrptr(sc, 0, EMU_CLIEH, 0); + emu_wrptr(sc, 0, EMU_SOLEL, 0); + emu_wrptr(sc, 0, EMU_SOLEH, 0); if (!SLIST_EMPTY(&sc->mem.blocks)) device_printf(sc->dev, "warning: memblock list not empty\n"); @@ -3137,9 +3151,9 @@ /* 0xe0...0x100 are unknown */ /* sc->tram_base = 0x200 */ /* sc->tram_addr_base = 0x300 */ - sc->gpr_base = A_FXGPREGBASE; + sc->gpr_base = EMU_A_FXGPREGBASE; sc->num_gprs = 0x200; - sc->code_base = A_MICROCODEBASE; + sc->code_base = EMU_A_MICROCODEBASE; sc->code_size = 0x800 / 2; /* 0x600-0xdff, 2048 words, * 1024 instructions */ @@ -3147,16 +3161,16 @@ sc->num_fxbuses = 16; sc->num_inputs = 8; sc->num_outputs = 16; - sc->address_mask = A_PTR_ADDRESS_MASK; + sc->address_mask = EMU_A_PTR_ADDR_MASK; } if (sc->is_emu10k1) { sc->has_51 = 0; /* We don't support 5.1 sound on SB Live! 5.1 */ sc->opcode_shift = 20; sc->high_operand_shift = 10; - sc->code_base = MICROCODEBASE; + sc->code_base = EMU_MICROCODEBASE; sc->code_size = 0x400 / 2; /* 0x400-0x7ff, 1024 words, * 512 instructions */ - sc->gpr_base = FXGPREGBASE; + sc->gpr_base = EMU_FXGPREGBASE; sc->num_gprs = 0x100; sc->input_base = 0x10; sc->output_base = 0x20; @@ -3171,7 +3185,7 @@ sc->num_fxbuses = 8; sc->num_inputs = 8; sc->num_outputs = 16; - sc->address_mask = PTR_ADDRESS_MASK; + sc->address_mask = EMU_PTR_ADDR_MASK; } if (sc->opcode_shift == 0) goto bad; @@ -3379,7 +3393,7 @@ } midiinfo->card = sc; if (sc->is_emu10k2 || (sc->is_ca0102)) { - midiinfo->port = A_MUDATA1; + midiinfo->port = EMU_A_MUDATA1; midiinfo->portnr = 1; } if (sc->is_emu10k1) { @@ -3405,7 +3419,7 @@ } midiinfo->card = sc; - midiinfo->port = A_MUDATA2; + midiinfo->port = EMU_A_MUDATA2; midiinfo->portnr = 2; func->func = SCF_MIDI; --- modules/sound/driver/emu10k1/Makefile.orig 2011-01-10 09:49:53.000000000 +0000 +++ modules/sound/driver/emu10k1/Makefile 2011-01-10 09:54:56.000000000 +0000 @@ -4,16 +4,8 @@ ${.CURDIR}/../../../../gnu/dev/sound/pci KMOD= snd_emu10k1 -SRCS= device_if.h bus_if.h pci_if.h emu10k1-alsa%diked.h +SRCS= device_if.h bus_if.h pci_if.h emu10k1reg.h SRCS+= mpufoi_if.h SRCS+= emu10k1.c -CLEANFILES+= emu10k1-alsa%diked.h - -emu10k1-alsa%diked.h: emu10k1-alsa.h - grep -v '#include' ${.OODATE} | $(CC) -E -D__KERNEL__ -dM - \ - | awk -F"[ (]" '/define/ \ - { print "#ifndef " $$2 ; print ; print "#endif" }' \ - >${.TARGET} - .include --- modules/sound/driver/emu10kx/Makefile.orig 2011-01-10 09:49:09.000000000 +0000 +++ modules/sound/driver/emu10kx/Makefile 2011-01-10 09:54:53.000000000 +0000 @@ -11,16 +11,11 @@ SRCS+= emu10kx.c SRCS+= emu10kx-pcm.c SRCS+= emu10kx-midi.c +SRCS+= emu10k1reg.h # de-GPLed Makefiles -SRCS+= emu10k1-alsa%diked.h SRCS+= p16v-alsa%diked.h SRCS+= p17v-alsa%diked.h -emu10k1-alsa%diked.h: emu10k1-alsa.h - grep -v '#include' ${.OODATE} | $(CC) -E -D__KERNEL__ -dM - \ - | awk -F"[ (]" '/define/ \ - { print "#ifndef " $$2 ; print ; print "#endif" }' \ - >${.TARGET} p16v-alsa%diked.h: p16v-alsa.h grep -v '#include' ${.OODATE} | $(CC) -E -D__KERNEL__ -dM - \ | awk -F"[ (]" '/define/ \ @@ -32,7 +27,6 @@ { print "#ifndef " $$2 ; print ; print "#endif" }' \ >${.TARGET} -CLEANFILES+= emu10k1-alsa%diked.h CLEANFILES+= p16v-alsa%diked.h CLEANFILES+= p17v-alsa%diked.h >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 11 16:39:21 2011 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 ABDED106566B; Tue, 11 Jan 2011 16:39:21 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 833DF8FC18; Tue, 11 Jan 2011 16:39: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 p0BGdLw4005971; Tue, 11 Jan 2011 16:39:21 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0BGdLVZ005966; Tue, 11 Jan 2011 16:39:21 GMT (envelope-from jh) Date: Tue, 11 Jan 2011 16:39:21 GMT Message-Id: <201101111639.p0BGdLVZ005966@freefall.freebsd.org> To: alex@infobit.ru, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: kern/104755: Making ISO image with k3b hangs 6.2-PRERELEASE 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, 11 Jan 2011 16:39:21 -0000 Synopsis: Making ISO image with k3b hangs 6.2-PRERELEASE State-Changed-From-To: feedback->closed State-Changed-By: jh State-Changed-When: Tue Jan 11 16:39:20 UTC 2011 State-Changed-Why: Submitter can't reproduce anymore. http://www.freebsd.org/cgi/query-pr.cgi?pr=104755 From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 12 00:50:07 2011 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 9B77B106566C for ; Wed, 12 Jan 2011 00:50: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 787598FC12 for ; Wed, 12 Jan 2011 00:50: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 p0C0o7X5036420 for ; Wed, 12 Jan 2011 00:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0C0o7GU036419; Wed, 12 Jan 2011 00:50:07 GMT (envelope-from gnats) Resent-Date: Wed, 12 Jan 2011 00:50:07 GMT Resent-Message-Id: <201101120050.p0C0o7GU036419@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, Markus Hoenicka Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D74E01065673 for ; Wed, 12 Jan 2011 00:42:14 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 594558FC1D for ; Wed, 12 Jan 2011 00:42:14 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0C0gDcq003530 for ; Wed, 12 Jan 2011 00:42:13 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0C0gDtw003529; Wed, 12 Jan 2011 00:42:13 GMT (envelope-from nobody) Message-Id: <201101120042.p0C0gDtw003529@red.freebsd.org> Date: Wed, 12 Jan 2011 00:42:13 GMT From: Markus Hoenicka To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/153917: p5-MARC-Charset-1.31 lacks dependency 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, 12 Jan 2011 00:50:07 -0000 >Number: 153917 >Category: misc >Synopsis: p5-MARC-Charset-1.31 lacks dependency >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 Jan 12 00:50:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Markus Hoenicka >Release: 8.1-RELEASE >Organization: >Environment: FreeBSD wombat.mininet 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Sat Nov 13 20:29:49 CET 2010 root@wombat.mininet:/usr/obj/usr/src/sys/WOMBAT amd64 >Description: p5-MARC-Charset-1.31 fails to execute unless p5-GDBM-1.09 is installed as well. However, the former does not mention the latter as a dependency >How-To-Repeat: On a fresh machine with Perl installed, run: wombat# portinstall textproc/p5-MARC-Charset wombat# perl -e 'use MARC::Charset;' Can't locate GDBM_File.pm in @INC (@INC contains: /usr/local/lib/perl5/5.10.1/BSDPAN /usr/local/lib/perl5/site_perl/5.10.1/mach /usr/local/lib/perl5/site_perl/5.10.1 /usr/local/lib/perl5/5.10.1/mach /usr/local/lib/perl5/5.10.1 .) at /usr/local/lib/perl5/site_perl/5.10.1/MARC/Charset/Table.pm line 37. BEGIN failed--compilation aborted at /usr/local/lib/perl5/site_perl/5.10.1/MARC/Charset/Table.pm line 37. Compilation failed in require at /usr/local/lib/perl5/site_perl/5.10.1/MARC/Charset.pm line 13. BEGIN failed--compilation aborted at /usr/local/lib/perl5/site_perl/5.10.1/MARC/Charset.pm line 13. Compilation failed in require at -e line 1. BEGIN failed--compilation aborted at -e line 1. wombat# portinstall databases/p5-GDBM wombat# perl -e 'use MARC::Charset;' wombat# >Fix: add p5-GDBM as a run-dependency to p5-MARC-Charset >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 12 01:00:17 2011 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 802741065696 for ; Wed, 12 Jan 2011 01: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 38B328FC24 for ; Wed, 12 Jan 2011 01:00: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 p0C10HFc047014 for ; Wed, 12 Jan 2011 01:00:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0C10G5G046998; Wed, 12 Jan 2011 01:00:17 GMT (envelope-from gnats) Resent-Date: Wed, 12 Jan 2011 01:00:17 GMT Resent-Message-Id: <201101120100.p0C10G5G046998@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, Stephen Fisher Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 396761065670 for ; Wed, 12 Jan 2011 00:59:32 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 28CEB8FC0C for ; Wed, 12 Jan 2011 00:59:32 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0C0xVb7013041 for ; Wed, 12 Jan 2011 00:59:31 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0C0xVhm013040; Wed, 12 Jan 2011 00:59:31 GMT (envelope-from nobody) Message-Id: <201101120059.p0C0xVhm013040@red.freebsd.org> Date: Wed, 12 Jan 2011 00:59:31 GMT From: Stephen Fisher To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/153918: Consider compiling OpenPAM with debug logging support 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, 12 Jan 2011 01:00:17 -0000 >Number: 153918 >Category: misc >Synopsis: Consider compiling OpenPAM with debug logging support >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jan 12 01:00:16 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Stephen Fisher >Release: 8.1-RELEASE >Organization: >Environment: FreeBSD xxx 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The man pages for OpenPAM as distributed with the base operating system mention the "debug" option that can be used with pam modules. However, the debug will not work unless the --enable-debug option (not --enable-debugging-symbols) is passed to OpenPAM's configuration script in /usr/src/contrib/openpam. Once this is recompiled (along with the code in /usr/src/lib/libpam/), the debug output shows up as expected in /var/log/debug.log. >How-To-Repeat: Add "debug" to an authentication entry in /etc/pam.d/ such as /etc/pam.d/sshd: auth required pam_unix.so debug no_warn try_first_pass >Fix: Pass "--enable-debug" to configure script in /usr/src/contrib/openpam before building >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 12 03:10:11 2011 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 4F3611065673 for ; Wed, 12 Jan 2011 03:10: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 0F2618FC16 for ; Wed, 12 Jan 2011 03:10: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 p0C3AA7p088320 for ; Wed, 12 Jan 2011 03:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0C3AAHQ088319; Wed, 12 Jan 2011 03:10:10 GMT (envelope-from gnats) Resent-Date: Wed, 12 Jan 2011 03:10:10 GMT Resent-Message-Id: <201101120310.p0C3AAHQ088319@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, "Pedro F. Giffuni" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 891D8106566C for ; Wed, 12 Jan 2011 03:07:00 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 758EC8FC17 for ; Wed, 12 Jan 2011 03:07:00 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0C36x2i042226 for ; Wed, 12 Jan 2011 03:06:59 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0C36x7m042225; Wed, 12 Jan 2011 03:06:59 GMT (envelope-from nobody) Message-Id: <201101120306.p0C36x7m042225@red.freebsd.org> Date: Wed, 12 Jan 2011 03:06:59 GMT From: "Pedro F. Giffuni" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/153920: Replace the GPL'd sound/maestro3 headers with BSD versions from OSS 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, 12 Jan 2011 03:10:11 -0000 >Number: 153920 >Category: kern >Synopsis: Replace the GPL'd sound/maestro3 headers with BSD versions from OSS >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jan 12 03:10:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Pedro F. Giffuni >Release: 8.2-RC1 >Organization: >Environment: FreeBSD mogwai.giffuni.net 8.2-RC1 FreeBSD 8.2-RC1 #0: Thu Dec 23 15:32:35 UTC 2010 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: The headers used by the maestro3 driver were under the GPL, however the definitions and data used in them was also available on the OSS source distribution under a BSD license, in the attic/drv/oss_allegro dir. I have built two new headers based on the legacy driver, trying to keep the same definitions and name of the data structures in the OSS code. I also mentioned the files where the information was obtained. The maestro3.c code then received minor modifications to compile. >How-To-Repeat: maestro3_dsp.h and maestro3_reg.h GPL'd files can now be removed. >Fix: Patch attached with submission follows: diff -ruN dev/sound/pci.emu10k/allegro_code.h dev/sound/pci/allegro_code.h --- dev/sound/pci.emu10k/allegro_code.h 1970-01-01 00:00:00.000000000 +0000 +++ dev/sound/pci/allegro_code.h 2011-01-11 16:38:49.000000000 +0000 @@ -0,0 +1,219 @@ + +/*- + * Copyright (C) 1996-2008, 4Front Technologies + * Copyright (C) 1997-1999 ESS Technology, Inc + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $FreeBSD$ + */ + +/*--------------------------------------------------------------------------- + * This source code, its compiled object code, and its associated data sets + * are copyright (C) 1997-1999 ESS Technology, Inc. This source code and its + * associated data sets are trade secrets of ESS Technology, Inc. + *--------------------------------------------------------------------------- + * DESCRIPTION: DSP binaries + *--------------------------------------------------------------------------- + * AUTHOR: Henry Tang / Hong Kim / Alger Yeung/Don Kim + *--------------------------------------------------------------------------- + * For practical purposes we only include what is necessary for current + * Maestro3 driver. Files used in this header include: + * kernel.dat + * 400m_src.dat + * mini_src_lpf from srcmgr.h + *--------------------------------------------------------------------------- + */ +#ifndef _DEV_SOUND_PCI_ALLEGRO_CODE_H +#define _DEV_SOUND_PCI_ALLEGRO_CODE_H + +/* + * Kernel + */ + +uint16_t gaw_kernel_vect_code[] = { + 0x7980, 0x0030, 0x7980, 0x03B4, 0x7980, 0x03B4, 0x7980, 0x00FB, 0x7980, + 0x00DD, 0x7980, 0x03B4, 0x7980, 0x0332, 0x7980, 0x0287, 0x7980, 0x03B4, + 0x7980, 0x03B4, 0x7980, 0x03B4, 0x7980, 0x03B4, 0x7980, 0x031A, 0x7980, + 0x03B4, 0x7980, 0x022F, 0x7980, 0x03B4, 0x7980, 0x03B4, 0x7980, 0x03B4, + 0x7980, 0x03B4, 0x7980, 0x03B4, 0x7980, 0x0063, 0x7980, 0x006B, 0x7980, + 0x03B4, 0x7980, 0x03B4, 0xBF80, 0x2C7C, 0x8806, 0x8804, 0xBE40, 0xBC20, + 0xAE09, 0x1000, 0xAE0A, 0x0001, 0x6938, 0xEB08, 0x0053, 0x695A, 0xEB08, + 0x00D6, 0x0009, 0x8B88, 0x6980, 0xE388, 0x0036, 0xBE30, 0xBC20, 0x6909, + 0xB801, 0x9009, 0xBE41, 0xBE41, 0x6928, 0xEB88, 0x0078, 0xBE41, 0xBE40, + 0x7980, 0x0038, 0xBE41, 0xBE41, 0x903A, 0x6938, 0xE308, 0x0056, 0x903A, + 0xBE41, 0xBE40, 0xEF00, 0x903A, 0x6939, 0xE308, 0x005E, 0x903A, 0xEF00, + 0x690B, 0x660C, 0xEF8C, 0x690A, 0x660C, 0x620B, 0x6609, 0xEF00, 0x6910, + 0x660F, 0xEF04, 0xE388, 0x0075, 0x690E, 0x660F, 0x6210, 0x660D, 0xEF00, + 0x690E, 0x660D, 0xEF00, 0xAE70, 0x0001, 0xBC20, 0xAE27, 0x0001, 0x6939, + 0xEB08, 0x005D, 0x6926, 0xB801, 0x9026, 0x0026, 0x8B88, 0x6980, 0xE388, + 0x00CB, 0x9028, 0x0D28, 0x4211, 0xE100, 0x007A, 0x4711, 0xE100, 0x00A0, + 0x7A80, 0x0063, 0xB811, 0x660A, 0x6209, 0xE304, 0x007A, 0x0C0B, 0x4005, + 0x100A, 0xBA01, 0x9012, 0x0C12, 0x4002, 0x7980, 0x00AF, 0x7A80, 0x006B, + 0xBE02, 0x620E, 0x660D, 0xBA10, 0xE344, 0x007A, 0x0C10, 0x4005, 0x100E, + 0xBA01, 0x9012, 0x0C12, 0x4002, 0x1003, 0xBA02, 0x9012, 0x0C12, 0x4000, + 0x1003, 0xE388, 0x00BA, 0x1004, 0x7980, 0x00BC, 0x1004, 0xBA01, 0x9012, + 0x0C12, 0x4001, 0x0C05, 0x4003, 0x0C06, 0x4004, 0x1011, 0xBFB0, 0x01FF, + 0x9012, 0x0C12, 0x4006, 0xBC20, 0xEF00, 0xAE26, 0x1028, 0x6970, 0xBFD0, + 0x0001, 0x9070, 0xE388, 0x007A, 0xAE28, 0x0000, 0xEF00, 0xAE70, 0x0300, + 0x0C70, 0xB00C, 0xAE5A, 0x0000, 0xEF00, 0x7A80, 0x038A, 0x697F, 0xB801, + 0x907F, 0x0056, 0x8B88, 0x0CA0, 0xB008, 0xAF71, 0xB000, 0x4E71, 0xE200, + 0x00F3, 0xAE56, 0x1057, 0x0056, 0x0CA0, 0xB008, 0x8056, 0x7980, 0x03A1, + 0x0810, 0xBFA0, 0x1059, 0xE304, 0x03A1, 0x8056, 0x7980, 0x03A1, 0x7A80, + 0x038A, 0xBF01, 0xBE43, 0xBE59, 0x907C, 0x6937, 0xE388, 0x010D, 0xBA01, + 0xE308, 0x010C, 0xAE71, 0x0004, 0x0C71, 0x5000, 0x6936, 0x9037, 0xBF0A, + 0x109E, 0x8B8A, 0xAF80, 0x8014, 0x4C80, 0xBF0A, 0x0560, 0xF500, 0xBF0A, + 0x0520, 0xB900, 0xBB17, 0x90A0, 0x6917, 0xE388, 0x0148, 0x0D17, 0xE100, + 0x0127, 0xBF0C, 0x0578, 0xBF0D, 0x057C, 0x7980, 0x012B, 0xBF0C, 0x0538, + 0xBF0D, 0x053C, 0x6900, 0xE308, 0x0135, 0x8B8C, 0xBE59, 0xBB07, 0x90A0, + 0xBC20, 0x7980, 0x0157, 0x030C, 0x8B8B, 0xB903, 0x8809, 0xBEC6, 0x013E, + 0x69AC, 0x90AB, 0x69AD, 0x90AB, 0x0813, 0x660A, 0xE344, 0x0144, 0x0309, + 0x830C, 0xBC20, 0x7980, 0x0157, 0x6955, 0xE388, 0x0157, 0x7C38, 0xBF0B, + 0x0578, 0xF500, 0xBF0B, 0x0538, 0xB907, 0x8809, 0xBEC6, 0x0156, 0x10AB, + 0x90AA, 0x6974, 0xE388, 0x0163, 0xAE72, 0x0540, 0xF500, 0xAE72, 0x0500, + 0xAE61, 0x103B, 0x7A80, 0x02F6, 0x6978, 0xE388, 0x0182, 0x8B8C, 0xBF0C, + 0x0560, 0xE500, 0x7C40, 0x0814, 0xBA20, 0x8812, 0x733D, 0x7A80, 0x0380, + 0x733E, 0x7A80, 0x0380, 0x8B8C, 0xBF0C, 0x056C, 0xE500, 0x7C40, 0x0814, + 0xBA2C, 0x8812, 0x733F, 0x7A80, 0x0380, 0x7340, 0x7A80, 0x0380, 0x6975, + 0xE388, 0x018E, 0xAE72, 0x0548, 0xF500, 0xAE72, 0x0508, 0xAE61, 0x1041, + 0x7A80, 0x02F6, 0x6979, 0xE388, 0x01AD, 0x8B8C, 0xBF0C, 0x0560, 0xE500, + 0x7C40, 0x0814, 0xBA18, 0x8812, 0x7343, 0x7A80, 0x0380, 0x7344, 0x7A80, + 0x0380, 0x8B8C, 0xBF0C, 0x056C, 0xE500, 0x7C40, 0x0814, 0xBA24, 0x8812, + 0x7345, 0x7A80, 0x0380, 0x7346, 0x7A80, 0x0380, 0x6976, 0xE388, 0x01B9, + 0xAE72, 0x0558, 0xF500, 0xAE72, 0x0518, 0xAE61, 0x1047, 0x7A80, 0x02F6, + 0x697A, 0xE388, 0x01D8, 0x8B8C, 0xBF0C, 0x0560, 0xE500, 0x7C40, 0x0814, + 0xBA08, 0x8812, 0x7349, 0x7A80, 0x0380, 0x734A, 0x7A80, 0x0380, 0x8B8C, + 0xBF0C, 0x056C, 0xE500, 0x7C40, 0x0814, 0xBA14, 0x8812, 0x734B, 0x7A80, + 0x0380, 0x734C, 0x7A80, 0x0380, 0xBC21, 0xAE1C, 0x1090, 0x8B8A, 0xBF0A, + 0x0560, 0xE500, 0x7C40, 0x0812, 0xB804, 0x8813, 0x8B8D, 0xBF0D, 0x056C, + 0xE500, 0x7C40, 0x0815, 0xB804, 0x8811, 0x7A80, 0x034A, 0x8B8A, 0xBF0A, + 0x0560, 0xE500, 0x7C40, 0x731F, 0xB903, 0x8809, 0xBEC6, 0x01F9, 0x548A, + 0xBE03, 0x98A0, 0x7320, 0xB903, 0x8809, 0xBEC6, 0x0201, 0x548A, 0xBE03, + 0x98A0, 0x1F20, 0x2F1F, 0x9826, 0xBC20, 0x6935, 0xE388, 0x03A1, 0x6933, + 0xB801, 0x9033, 0xBFA0, 0x02EE, 0xE308, 0x03A1, 0x9033, 0xBF00, 0x6951, + 0xE388, 0x021F, 0x7334, 0xBE80, 0x5760, 0xBE03, 0x9F7E, 0xBE59, 0x9034, + 0x697E, 0x0D51, 0x9013, 0xBC20, 0x695C, 0xE388, 0x03A1, 0x735E, 0xBE80, + 0x5760, 0xBE03, 0x9F7E, 0xBE59, 0x905E, 0x697E, 0x0D5C, 0x9013, 0x7980, + 0x03A1, 0x7A80, 0x038A, 0xBF01, 0xBE43, 0x6977, 0xE388, 0x024E, 0xAE61, + 0x104D, 0x0061, 0x8B88, 0x6980, 0xE388, 0x024E, 0x9071, 0x0D71, 0x000B, + 0xAFA0, 0x8010, 0xAFA0, 0x8010, 0x0810, 0x660A, 0xE308, 0x0249, 0x0009, + 0x0810, 0x660C, 0xE388, 0x024E, 0x800B, 0xBC20, 0x697B, 0xE388, 0x03A1, + 0xBF0A, 0x109E, 0x8B8A, 0xAF80, 0x8014, 0x4C80, 0xE100, 0x0266, 0x697C, + 0xBF90, 0x0560, 0x9072, 0x0372, 0x697C, 0xBF90, 0x0564, 0x9073, 0x0473, + 0x7980, 0x0270, 0x697C, 0xBF90, 0x0520, 0x9072, 0x0372, 0x697C, 0xBF90, + 0x0524, 0x9073, 0x0473, 0x697C, 0xB801, 0x907C, 0xBF0A, 0x10FD, 0x8B8A, + 0xAF80, 0x8010, 0x734F, 0x548A, 0xBE03, 0x9880, 0xBC21, 0x7326, 0x548B, + 0xBE03, 0x618B, 0x988C, 0xBE03, 0x6180, 0x9880, 0x7980, 0x03A1, 0x7A80, + 0x038A, 0x0D28, 0x4711, 0xE100, 0x02BE, 0xAF12, 0x4006, 0x6912, 0xBFB0, + 0x0C00, 0xE388, 0x02B6, 0xBFA0, 0x0800, 0xE388, 0x02B2, 0x6912, 0xBFB0, + 0x0C00, 0xBFA0, 0x0400, 0xE388, 0x02A3, 0x6909, 0x900B, 0x7980, 0x02A5, + 0xAF0B, 0x4005, 0x6901, 0x9005, 0x6902, 0x9006, 0x4311, 0xE100, 0x02ED, + 0x6911, 0xBFC0, 0x2000, 0x9011, 0x7980, 0x02ED, 0x6909, 0x900B, 0x7980, + 0x02B8, 0xAF0B, 0x4005, 0xAF05, 0x4003, 0xAF06, 0x4004, 0x7980, 0x02ED, + 0xAF12, 0x4006, 0x6912, 0xBFB0, 0x0C00, 0xE388, 0x02E7, 0xBFA0, 0x0800, + 0xE388, 0x02E3, 0x6912, 0xBFB0, 0x0C00, 0xBFA0, 0x0400, 0xE388, 0x02D4, + 0x690D, 0x9010, 0x7980, 0x02D6, 0xAF10, 0x4005, 0x6901, 0x9005, 0x6902, + 0x9006, 0x4311, 0xE100, 0x02ED, 0x6911, 0xBFC0, 0x2000, 0x9011, 0x7980, + 0x02ED, 0x690D, 0x9010, 0x7980, 0x02E9, 0xAF10, 0x4005, 0xAF05, 0x4003, + 0xAF06, 0x4004, 0xBC20, 0x6970, 0x9071, 0x7A80, 0x0078, 0x6971, 0x9070, + 0x7980, 0x03A1, 0xBC20, 0x0361, 0x8B8B, 0x6980, 0xEF88, 0x0272, 0x0372, + 0x7804, 0x9071, 0x0D71, 0x8B8A, 0x000B, 0xB903, 0x8809, 0xBEC6, 0x0309, + 0x69A8, 0x90AB, 0x69A8, 0x90AA, 0x0810, 0x660A, 0xE344, 0x030F, 0x0009, + 0x0810, 0x660C, 0xE388, 0x0314, 0x800B, 0xBC20, 0x6961, 0xB801, 0x9061, + 0x7980, 0x02F7, 0x7A80, 0x038A, 0x5D35, 0x0001, 0x6934, 0xB801, 0x9034, + 0xBF0A, 0x109E, 0x8B8A, 0xAF80, 0x8014, 0x4880, 0xAE72, 0x0550, 0xF500, + 0xAE72, 0x0510, 0xAE61, 0x1051, 0x7A80, 0x02F6, 0x7980, 0x03A1, 0x7A80, + 0x038A, 0x5D35, 0x0002, 0x695E, 0xB801, 0x905E, 0xBF0A, 0x109E, 0x8B8A, + 0xAF80, 0x8014, 0x4780, 0xAE72, 0x0558, 0xF500, 0xAE72, 0x0518, 0xAE61, + 0x105C, 0x7A80, 0x02F6, 0x7980, 0x03A1, 0x001C, 0x8B88, 0x6980, 0xEF88, + 0x901D, 0x0D1D, 0x100F, 0x6610, 0xE38C, 0x0358, 0x690E, 0x6610, 0x620F, + 0x660D, 0xBA0F, 0xE301, 0x037A, 0x0410, 0x8B8A, 0xB903, 0x8809, 0xBEC6, + 0x036C, 0x6A8C, 0x61AA, 0x98AB, 0x6A8C, 0x61AB, 0x98AD, 0x6A8C, 0x61AD, + 0x98A9, 0x6A8C, 0x61A9, 0x98AA, 0x7C04, 0x8B8B, 0x7C04, 0x8B8D, 0x7C04, + 0x8B89, 0x7C04, 0x0814, 0x660E, 0xE308, 0x0379, 0x040D, 0x8410, 0xBC21, + 0x691C, 0xB801, 0x901C, 0x7980, 0x034A, 0xB903, 0x8809, 0x8B8A, 0xBEC6, + 0x0388, 0x54AC, 0xBE03, 0x618C, 0x98AA, 0xEF00, 0xBC20, 0xBE46, 0x0809, + 0x906B, 0x080A, 0x906C, 0x080B, 0x906D, 0x081A, 0x9062, 0x081B, 0x9063, + 0x081E, 0x9064, 0xBE59, 0x881E, 0x8065, 0x8166, 0x8267, 0x8368, 0x8469, + 0x856A, 0xEF00, 0xBC20, 0x696B, 0x8809, 0x696C, 0x880A, 0x696D, 0x880B, + 0x6962, 0x881A, 0x6963, 0x881B, 0x6964, 0x881E, 0x0065, 0x0166, 0x0267, + 0x0368, 0x0469, 0x056A, 0xBE3A, +}; + +/* + * MINI Sample Rate Conversion + */ + +uint16_t gaw_minisrc_code_0400[] = { + 0xBF80, 0x101E, 0x906E, 0x006E, 0x8B88, 0x6980, 0xEF88, 0x906F, 0x0D6F, + 0x6900, 0xEB08, 0x0412, 0xBC20, 0x696E, 0xB801, 0x906E, 0x7980, 0x0403, + 0xB90E, 0x8807, 0xBE43, 0xBF01, 0xBE47, 0xBE41, 0x7A80, 0x002A, 0xBE40, + 0x3029, 0xEFCC, 0xBE41, 0x7A80, 0x0028, 0xBE40, 0x3028, 0xEFCC, 0x6907, + 0xE308, 0x042A, 0x6909, 0x902C, 0x7980, 0x042C, 0x690D, 0x902C, 0x1009, + 0x881A, 0x100A, 0xBA01, 0x881B, 0x100D, 0x881C, 0x100E, 0xBA01, 0x881D, + 0xBF80, 0x00ED, 0x881E, 0x050C, 0x0124, 0xB904, 0x9027, 0x6918, 0xE308, + 0x04B3, 0x902D, 0x6913, 0xBFA0, 0x7598, 0xF704, 0xAE2D, 0x00FF, 0x8B8D, + 0x6919, 0xE308, 0x0463, 0x691A, 0xE308, 0x0456, 0xB907, 0x8809, 0xBEC6, + 0x0453, 0x10A9, 0x90AD, 0x7980, 0x047C, 0xB903, 0x8809, 0xBEC6, 0x0460, + 0x1889, 0x6C22, 0x90AD, 0x10A9, 0x6E23, 0x6C22, 0x90AD, 0x7980, 0x047C, + 0x101A, 0xE308, 0x046F, 0xB903, 0x8809, 0xBEC6, 0x046C, 0x10A9, 0x90A0, + 0x90AD, 0x7980, 0x047C, 0xB901, 0x8809, 0xBEC6, 0x047B, 0x1889, 0x6C22, + 0x90A0, 0x90AD, 0x10A9, 0x6E23, 0x6C22, 0x90A0, 0x90AD, 0x692D, 0xE308, + 0x049C, 0x0124, 0xB703, 0xB902, 0x8818, 0x8B89, 0x022C, 0x108A, 0x7C04, + 0x90A0, 0x692B, 0x881F, 0x7E80, 0x055B, 0x692A, 0x8809, 0x8B89, 0x99A0, + 0x108A, 0x90A0, 0x692B, 0x881F, 0x7E80, 0x055B, 0x692A, 0x8809, 0x8B89, + 0x99AF, 0x7B99, 0x0484, 0x0124, 0x060F, 0x101B, 0x2013, 0x901B, 0xBFA0, + 0x7FFF, 0xE344, 0x04AC, 0x901B, 0x8B89, 0x7A80, 0x051A, 0x6927, 0xBA01, + 0x9027, 0x7A80, 0x0523, 0x6927, 0xE308, 0x049E, 0x7980, 0x050F, 0x0624, + 0x1026, 0x2013, 0x9026, 0xBFA0, 0x7FFF, 0xE304, 0x04C0, 0x8B8D, 0x7A80, + 0x051A, 0x7980, 0x04B4, 0x9026, 0x1013, 0x3026, 0x901B, 0x8B8D, 0x7A80, + 0x051A, 0x7A80, 0x0523, 0x1027, 0xBA01, 0x9027, 0xE308, 0x04B4, 0x0124, + 0x060F, 0x8B89, 0x691A, 0xE308, 0x04EA, 0x6919, 0xE388, 0x04E0, 0xB903, + 0x8809, 0xBEC6, 0x04DD, 0x1FA0, 0x2FAE, 0x98A9, 0x7980, 0x050F, 0xB901, + 0x8818, 0xB907, 0x8809, 0xBEC6, 0x04E7, 0x10EE, 0x90A9, 0x7980, 0x050F, + 0x6919, 0xE308, 0x04FE, 0xB903, 0x8809, 0xBE46, 0xBEC6, 0x04FA, 0x17A0, + 0xBE1E, 0x1FAE, 0xBFBF, 0xFF00, 0xBE13, 0xBFDF, 0x8080, 0x99A9, 0xBE47, + 0x7980, 0x050F, 0xB901, 0x8809, 0xBEC6, 0x050E, 0x16A0, 0x26A0, 0xBFB7, + 0xFF00, 0xBE1E, 0x1EA0, 0x2EAE, 0xBFBF, 0xFF00, 0xBE13, 0xBFDF, 0x8080, + 0x99A9, 0x850C, 0x860F, 0x6907, 0xE388, 0x0516, 0x0D07, 0x8510, 0xBE59, + 0x881E, 0xBE4A, 0xEF00, 0x101E, 0x901C, 0x101F, 0x901D, 0x10A0, 0x901E, + 0x10A0, 0x901F, 0xEF00, 0x101E, 0x301C, 0x9020, 0x731B, 0x5420, 0xBE03, + 0x9825, 0x1025, 0x201C, 0x9025, 0x7325, 0x5414, 0xBE03, 0x8B8E, 0x9880, + 0x692F, 0xE388, 0x0539, 0xBE59, 0xBB07, 0x6180, 0x9880, 0x8BA0, 0x101F, + 0x301D, 0x9021, 0x731B, 0x5421, 0xBE03, 0x982E, 0x102E, 0x201D, 0x902E, + 0x732E, 0x5415, 0xBE03, 0x9880, 0x692F, 0xE388, 0x054F, 0xBE59, 0xBB07, + 0x6180, 0x9880, 0x8BA0, 0x6918, 0xEF08, 0x7325, 0x5416, 0xBE03, 0x98A0, + 0x732E, 0x5417, 0xBE03, 0x98A0, 0xEF00, 0x8BA0, 0xBEC6, 0x056B, 0xBE59, + 0xBB04, 0xAA90, 0xBE04, 0xBE1E, 0x99E0, 0x8BE0, 0x69A0, 0x90D0, 0x69A0, + 0x90D0, 0x081F, 0xB805, 0x881F, 0x8B90, 0x69A0, 0x90D0, 0x69A0, 0x9090, + 0x8BD0, 0x8BD8, 0xBE1F, 0xEF00, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, + 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, + 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, +}; + +uint16_t minisrc_lpf[10] = { + 0X0743, 0X1104, 0X0A4C, 0XF88D, 0X242C, + 0X1023, 0X1AA9, 0X0B60, 0XEFDD, 0X186F +}; + +#endif /* !_DEV_SOUND_PCI_ALLEGRO_CODE_H */ diff -ruN dev/sound/pci.emu10k/allegro_reg.h dev/sound/pci/allegro_reg.h --- dev/sound/pci.emu10k/allegro_reg.h 1970-01-01 00:00:00.000000000 +0000 +++ dev/sound/pci/allegro_reg.h 2011-01-11 16:02:11.000000000 +0000 @@ -0,0 +1,789 @@ +/*- + * Copyright (c) 1996-2008, 4Front Technologies + * Copyright (C) 1992-2000 Don Kim (don.kim@esstech.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHERIN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $FreeBSD$ + */ + +/*--------------------------------------------------------------------------- + * Copyright (C) 1997-1999, ESS Technology, Inc. + * This source code, its compiled object code, and its associated data sets + * are copyright (C) 1997-1999 ESS Technology, Inc. + *--------------------------------------------------------------------------- + * For practical purposes we only include necessary definitions for current + * Maestro3 driver. Files used for this header include: + * hardware.h + * kernel.h and hckernel.h + * srcmgr.h + *--------------------------------------------------------------------------- + */ + +#ifndef _DEV_SOUND_PCI_ALLEGRO_REG_H +#define _DEV_SOUND_PCI_ALLEGRO_REG_H + +/* Allegro PCI configuration registers */ +#define PCI_LEGACY_AUDIO_CTRL 0x40 +#define SOUND_BLASTER_ENABLE 0x00000001 +#define FM_SYNTHESIS_ENABLE 0x00000002 +#define GAME_PORT_ENABLE 0x00000004 +#define MPU401_IO_ENABLE 0x00000008 +#define MPU401_IRQ_ENABLE 0x00000010 +#define ALIAS_10BIT_IO 0x00000020 +#define SB_DMA_MASK 0x000000C0 +#define SB_DMA_0 0x00000040 +#define SB_DMA_1 0x00000040 +#define SB_DMA_R 0x00000080 +#define SB_DMA_3 0x000000C0 +#define SB_IRQ_MASK 0x00000700 +#define SB_IRQ_5 0x00000000 +#define SB_IRQ_7 0x00000100 +#define SB_IRQ_9 0x00000200 +#define SB_IRQ_10 0x00000300 +#define MIDI_IRQ_MASK 0x00003800 +#define SERIAL_IRQ_ENABLE 0x00004000 +#define DISABLE_LEGACY 0x00008000 + +#define PCI_ALLEGRO_CONFIG 0x50 +#define SB_ADDR_240 0x00000004 +#define MPU_ADDR_MASK 0x00000018 +#define MPU_ADDR_330 0x00000000 +#define MPU_ADDR_300 0x00000008 +#define MPU_ADDR_320 0x00000010 +#define MPU_ADDR_340 0x00000018 +#define USE_PCI_TIMING 0x00000040 +#define POSTED_WRITE_ENABLE 0x00000080 +#define DMA_POLICY_MASK 0x00000700 +#define DMA_DDMA 0x00000000 +#define DMA_TDMA 0x00000100 +#define DMA_PCPCI 0x00000200 +#define DMA_WBDMA16 0x00000400 +#define DMA_WBDMA4 0x00000500 +#define DMA_WBDMA2 0x00000600 +#define DMA_WBDMA1 0x00000700 +#define DMA_SAFE_GUARD 0x00000800 +#define HI_PERF_GP_ENABLE 0x00001000 +#define PIC_SNOOP_MODE_0 0x00002000 +#define PIC_SNOOP_MODE_1 0x00004000 +#define SOUNDBLASTER_IRQ_MASK 0x00008000 +#define RING_IN_ENABLE 0x00010000 +#define SPDIF_TEST_MODE 0x00020000 +#define CLK_MULT_MODE_SELECT_2 0x00040000 +#define EEPROM_WRITE_ENABLE 0x00080000 +#define CODEC_DIR_IN 0x00100000 +#define HV_BUTTON_FROM_GD 0x00200000 +#define REDUCED_DEBOUNCE 0x00400000 +#define HV_CTRL_ENABLE 0x00800000 +#define SPDIF_ENABLE 0x01000000 +#define CLK_DIV_SELECT 0x06000000 +#define CLK_DIV_BY_48 0x00000000 +#define CLK_DIV_BY_49 0x02000000 +#define CLK_DIV_BY_50 0x04000000 +#define CLK_DIV_RESERVED 0x06000000 +#define PM_CTRL_ENABLE 0x08000000 +#define CLK_MULT_MODE_SELECT 0x30000000 +#define CLK_MULT_MODE_SHIFT 28 +#define CLK_MULT_MODE_0 0x00000000 +#define CLK_MULT_MODE_1 0x10000000 +#define CLK_MULT_MODE_2 0x20000000 +#define CLK_MULT_MODE_3 0x30000000 +#define INT_CLK_SELECT 0x40000000 +#define INT_CLK_MULT_RESET 0x80000000 + +/* M3 */ +#define INT_CLK_SRC_NOT_PCI 0x00100000 +#define INT_CLK_MULT_ENABLE 0x80000000 + +#define PCI_ACPI_CONTROL 0x54 +#define PCI_ACPI_D0 0x00000000 +#define PCI_ACPI_D1 0xB4F70000 +#define PCI_ACPI_D2 0xB4F7B4F7 + +#define PCI_USER_CONFIG 0x58 +#define EXT_PCI_MASTER_ENABLE 0x00000001 +#define SPDIF_OUT_SELECT 0x00000002 +#define TEST_PIN_DIR_CTRL 0x00000004 +#define AC97_CODEC_TEST 0x00000020 +#define TRI_STATE_BUFFER 0x00000080 +#define IN_CLK_12MHZ_SELECT 0x00000100 +#define MULTI_FUNC_DISABLE 0x00000200 +#define EXT_MASTER_PAIR_SEL 0x00000400 +#define PCI_MASTER_SUPPORT 0x00000800 +#define STOP_CLOCK_ENABLE 0x00001000 +#define EAPD_DRIVE_ENABLE 0x00002000 +#define REQ_TRI_STATE_ENABLE 0x00004000 +#define REQ_LOW_ENABLE 0x00008000 +#define MIDI_1_ENABLE 0x00010000 +#define MIDI_2_ENABLE 0x00020000 +#define SB_AUDIO_SYNC 0x00040000 +#define HV_CTRL_TEST 0x00100000 +#define SOUNDBLASTER_TEST 0x00400000 + +#define PCI_USER_CONFIG_C 0x5C + +#define PCI_DDMA_CTRL 0x60 +#define DDMA_ENABLE 0x00000001 + + +/* Allegro registers */ +#define HOST_INT_CTRL 0x18 +#define SB_INT_ENABLE 0x0001 +#define MPU401_INT_ENABLE 0x0002 +#define ASSP_INT_ENABLE 0x0010 +#define RING_INT_ENABLE 0x0020 +#define HV_INT_ENABLE 0x0040 +#define CLKRUN_GEN_ENABLE 0x0100 +#define HV_CTRL_TO_PME 0x0400 +#define SOFTWARE_RESET_ENABLE 0x8000 + +#define HOST_INT_STATUS 0x1A +#define SB_INT_PENDING 0x01 +#define MPU401_INT_PENDING 0x02 +#define ASSP_INT_PENDING 0x10 +#define RING_INT_PENDING 0x20 +#define HV_INT_PENDING 0x40 + +#define HARDWARE_VOL_CTRL 0x1B +#define SHADOW_MIX_REG_VOICE 0x1C +#define HW_VOL_COUNTER_VOICE 0x1D +#define SHADOW_MIX_REG_MASTER 0x1E +#define HW_VOL_COUNTER_MASTER 0x1F + +#define CODEC_COMMAND 0x30 +#define CODEC_READ_B 0x80 + +#define CODEC_STATUS 0x30 +#define CODEC_BUSY_B 0x01 + +#define CODEC_DATA 0x32 + +/* AC97 registers */ +#ifndef ESS_MAESTRO3 +#define AC97_RESET 0x00 +#endif + +#define AC97_VOL_MUTE_B 0x8000 +#define AC97_VOL_M 0x1F +#define AC97_LEFT_VOL_S 8 + +#define AC97_MASTER_VOL 0x02 +#define AC97_LINE_LEVEL_VOL 0x04 +#define AC97_MASTER_MONO_VOL 0x06 +#define AC97_PC_BEEP_VOL 0x0A +#define AC97_PC_BEEP_VOL_M 0x0F +#define AC97_SROUND_MASTER_VOL 0x38 +#define AC97_PC_BEEP_VOL_S 1 + +#ifndef ESS_MAESTRO3 +#define AC97_PHONE_VOL 0x0C +#define AC97_MIC_VOL 0x0E +#endif +#define AC97_MIC_20DB_ENABLE 0x40 + +#ifndef ESS_MAESTRO3 +#define AC97_LINEIN_VOL 0x10 +#define AC97_CD_VOL 0x12 +#define AC97_VIDEO_VOL 0x14 +#define AC97_AUX_VOL 0x16 +#endif +#define AC97_PCM_OUT_VOL 0x18 +#ifndef ESS_MAESTRO3 +#define AC97_RECORD_SELECT 0x1A +#endif +#define AC97_RECORD_MIC 0x00 +#define AC97_RECORD_CD 0x01 +#define AC97_RECORD_VIDEO 0x02 +#define AC97_RECORD_AUX 0x03 +#define AC97_RECORD_MONO_MUX 0x02 +#define AC97_RECORD_DIGITAL 0x03 +#define AC97_RECORD_LINE 0x04 +#define AC97_RECORD_STEREO 0x05 +#define AC97_RECORD_MONO 0x06 +#define AC97_RECORD_PHONE 0x07 + +#ifndef ESS_MAESTRO3 +#define AC97_RECORD_GAIN 0x1C +#endif +#define AC97_RECORD_VOL_M 0x0F + +#ifndef ESS_MAESTRO3 +#define AC97_GENERAL_PURPOSE 0x20 +#endif +#define AC97_POWER_DOWN_CTRL 0x26 +#define AC97_ADC_READY 0x0001 +#define AC97_DAC_READY 0x0002 +#define AC97_ANALOG_READY 0x0004 +#define AC97_VREF_ON 0x0008 +#define AC97_PR0 0x0100 +#define AC97_PR1 0x0200 +#define AC97_PR2 0x0400 +#define AC97_PR3 0x0800 +#define AC97_PR4 0x1000 + +#define AC97_RESERVED1 0x28 + +#define AC97_VENDOR_TEST 0x5A + +#define AC97_CLOCK_DELAY 0x5C +#define AC97_LINEOUT_MUX_SEL 0x0001 +#define AC97_MONO_MUX_SEL 0x0002 +#define AC97_CLOCK_DELAY_SEL 0x1F +#define AC97_DAC_CDS_SHIFT 6 +#define AC97_ADC_CDS_SHIFT 11 + +#define AC97_MULTI_CHANNEL_SEL 0x74 + +#ifndef ESS_MAESTRO3 +#define AC97_VENDOR_ID1 0x7C +#define AC97_VENDOR_ID2 0x7E +#endif + +#define RING_BUS_CTRL_A 0x36 +#define RAC_PME_ENABLE 0x0100 +#define RAC_SDFS_ENABLE 0x0200 +#define LAC_PME_ENABLE 0x0400 +#define LAC_SDFS_ENABLE 0x0800 +#define SERIAL_AC_LINK_ENABLE 0x1000 +#define IO_SRAM_ENABLE 0x2000 +#define IIS_INPUT_ENABLE 0x8000 + +#define RING_BUS_CTRL_B 0x38 +#define SECOND_CODEC_ID_MASK 0x0003 +#define SPDIF_FUNC_ENABLE 0x0010 +#define SECOND_AC_ENABLE 0x0020 +#define SB_MODULE_INTF_ENABLE 0x0040 +#define SSPE_ENABLE 0x0040 +#define M3I_DOCK_ENABLE 0x0080 + +#define SDO_OUT_DEST_CTRL 0x3A +#define COMMAND_ADDR_OUT 0x0003 +#define PCM_LR_OUT_LOCAL 0x0000 +#define PCM_LR_OUT_REMOTE 0x0004 +#define PCM_LR_OUT_MUTE 0x0008 +#define PCM_LR_OUT_BOTH 0x000C +#define LINE1_DAC_OUT_LOCAL 0x0000 +#define LINE1_DAC_OUT_REMOTE 0x0010 +#define LINE1_DAC_OUT_MUTE 0x0020 +#define LINE1_DAC_OUT_BOTH 0x0030 +#define PCM_CLS_OUT_LOCAL 0x0000 +#define PCM_CLS_OUT_REMOTE 0x0040 +#define PCM_CLS_OUT_MUTE 0x0080 +#define PCM_CLS_OUT_BOTH 0x00C0 +#define PCM_RLF_OUT_LOCAL 0x0000 +#define PCM_RLF_OUT_REMOTE 0x0100 +#define PCM_RLF_OUT_MUTE 0x0200 +#define PCM_RLF_OUT_BOTH 0x0300 +#define LINE2_DAC_OUT_LOCAL 0x0000 +#define LINE2_DAC_OUT_REMOTE 0x0400 +#define LINE2_DAC_OUT_MUTE 0x0800 +#define LINE2_DAC_OUT_BOTH 0x0C00 +#define HANDSET_OUT_LOCAL 0x0000 +#define HANDSET_OUT_REMOTE 0x1000 +#define HANDSET_OUT_MUTE 0x2000 +#define HANDSET_OUT_BOTH 0x3000 +#define IO_CTRL_OUT_LOCAL 0x0000 +#define IO_CTRL_OUT_REMOTE 0x4000 +#define IO_CTRL_OUT_MUTE 0x8000 +#define IO_CTRL_OUT_BOTH 0xC000 + +#define SDO_IN_DEST_CTRL 0x3C +#define STATUS_ADDR_IN 0x0003 +#define PCM_LR_IN_LOCAL 0x0000 +#define PCM_LR_IN_REMOTE 0x0004 +#define PCM_LR_RESERVED 0x0008 +#define PCM_LR_IN_BOTH 0x000C +#define LINE1_ADC_IN_LOCAL 0x0000 +#define LINE1_ADC_IN_REMOTE 0x0010 +#define LINE1_ADC_IN_MUTE 0x0020 +#define MIC_ADC_IN_LOCAL 0x0000 +#define MIC_ADC_IN_REMOTE 0x0040 +#define MIC_ADC_IN_MUTE 0x0080 +#define LINE2_DAC_IN_LOCAL 0x0000 +#define LINE2_DAC_IN_REMOTE 0x0400 +#define LINE2_DAC_IN_MUTE 0x0800 +#define HANDSET_IN_LOCAL 0x0000 +#define HANDSET_IN_REMOTE 0x1000 +#define HANDSET_IN_MUTE 0x2000 +#define IO_STATUS_IN_LOCAL 0x0000 +#define IO_STATUS_IN_REMOTE 0x4000 + +#define SPDIF_IN_CTRL 0x3E +#define SPDIF_IN_ENABLE 0x0001 + +#define GPIO_DATA 0x60 +#define GPIO_DATA_MASK 0x0FFF +#define GPIO_HV_STATUS 0x3000 +#define GPIO_PME_STATUS 0x4000 + +#define GPIO_MASK 0x64 +#define GPIO_DIRECTION 0x68 +#define GPO_PRIMARY_AC97 0x0001 +#define GPI_LINEOUT_SENSE 0x0004 +#define GPO_SECONDARY_AC97 0x0008 +#define GPI_VOL_DOWN 0x0010 +#define GPI_VOL_UP 0x0020 +#define GPI_IIS_CLK 0x0040 +#define GPI_IIS_LRCLK 0x0080 +#define GPI_IIS_DATA 0x0100 +#define GPI_DOCKING_STATUS 0x0100 +#define GPI_HEADPHONE_SENSE 0x0200 +#define GPO_EXT_AMP_SHUTDOWN 0x1000 + +/* M3 */ +#define GPO_M3_EXT_AMP_SHUTDN 0x0002 + +#define ASSP_INDEX_PORT 0x80 +#define ASSP_MEMORY_PORT 0x82 +#define ASSP_DATA_PORT 0x84 + +#define MPU401_DATA_PORT 0x98 +#define MPU401_STATUS_PORT 0x99 + +#define CLK_MULT_DATA_PORT 0x9C + +#define ASSP_CONTROL_A 0xA2 +#define ASSP_0_WS_ENABLE 0x01 +#define ASSP_CTRL_A_RESERVED1 0x02 +#define ASSP_CTRL_A_RESERVED2 0x04 +#define ASSP_CLK_49MHZ_SELECT 0x08 +#define FAST_PLU_ENABLE 0x10 +#define ASSP_CTRL_A_RESERVED3 0x20 +#define DSP_CLK_36MHZ_SELECT 0x40 + +#define ASSP_CONTROL_B 0xA4 +#define RESET_ASSP 0x00 +#define RUN_ASSP 0x01 +#define ENABLE_ASSP_CLOCK 0x00 +#define STOP_ASSP_CLOCK 0x10 +#define RESET_TOGGLE 0x40 + +#define ASSP_CONTROL_C 0xA6 +#define ASSP_HOST_INT_ENABLE 0x01 +#define FM_ADDR_REMAP_DISABLE 0x02 +#define HOST_WRITE_PORT_ENABLE 0x08 + +#define ASSP_HOST_INT_STATUS 0xAC +#define DSP2HOST_REQ_PIORECORD 0x01 +#define DSP2HOST_REQ_I2SRATE 0x02 +#define DSP2HOST_REQ_TIMER 0x04 + +/* + * DSP memory map + */ + +#define REV_A_CODE_MEMORY_BEGIN 0x0000 +#define REV_A_CODE_MEMORY_END 0x0FFF +#define REV_A_CODE_MEMORY_UNIT_LENGTH 0x0040 +#define REV_A_CODE_MEMORY_LENGTH (REV_A_CODE_MEMORY_END - REV_A_CODE_MEMORY_BEGIN + 1) + +#define REV_B_CODE_MEMORY_BEGIN 0x0000 +#define REV_B_CODE_MEMORY_END 0x0BFF +#define REV_B_CODE_MEMORY_UNIT_LENGTH 0x0040 +#define REV_B_CODE_MEMORY_LENGTH (REV_B_CODE_MEMORY_END - REV_B_CODE_MEMORY_BEGIN + 1) + +#if (REV_A_CODE_MEMORY_LENGTH % REV_A_CODE_MEMORY_UNIT_LENGTH) +#error Assumption about code memory unit length failed. +#endif +#if (REV_B_CODE_MEMORY_LENGTH % REV_B_CODE_MEMORY_UNIT_LENGTH) +#error Assumption about code memory unit length failed. +#endif + +#define REV_A_DATA_MEMORY_BEGIN 0x1000 +#define REV_A_DATA_MEMORY_END 0x2FFF +#define REV_A_DATA_MEMORY_UNIT_LENGTH 0x0080 +#define REV_A_DATA_MEMORY_LENGTH (REV_A_DATA_MEMORY_END - REV_A_DATA_MEMORY_BEGIN + 1) + +#define REV_B_DATA_MEMORY_BEGIN 0x1000 +/*#define REV_B_DATA_MEMORY_END 0x23FF */ +#define REV_B_DATA_MEMORY_END 0x2BFF +#define REV_B_DATA_MEMORY_UNIT_LENGTH 0x0080 +#define REV_B_DATA_MEMORY_LENGTH (REV_B_DATA_MEMORY_END - REV_B_DATA_MEMORY_BEGIN + 1) + +#if (REV_A_DATA_MEMORY_LENGTH % REV_A_DATA_MEMORY_UNIT_LENGTH) +#error Assumption about data memory unit length failed. +#endif +#if (REV_B_DATA_MEMORY_LENGTH % REV_B_DATA_MEMORY_UNIT_LENGTH) +#error Assumption about data memory unit length failed. +#endif + +#define CODE_MEMORY_MAP_LENGTH (64 + 1) +#define DATA_MEMORY_MAP_LENGTH (64 + 1) + +#if (CODE_MEMORY_MAP_LENGTH < ((REV_A_CODE_MEMORY_LENGTH / REV_A_CODE_MEMORY_UNIT_LENGTH) + 1)) +#error Code memory map length too short. +#endif +#if (DATA_MEMORY_MAP_LENGTH < ((REV_A_DATA_MEMORY_LENGTH / REV_A_DATA_MEMORY_UNIT_LENGTH) + 1)) +#error Data memory map length too short. +#endif +#if (CODE_MEMORY_MAP_LENGTH < ((REV_B_CODE_MEMORY_LENGTH / REV_B_CODE_MEMORY_UNIT_LENGTH) + 1)) +#error Code memory map length too short. +#endif +#if (DATA_MEMORY_MAP_LENGTH < ((REV_B_DATA_MEMORY_LENGTH / REV_B_DATA_MEMORY_UNIT_LENGTH) + 1)) +#error Data memory map length too short. +#endif + + +/* + * Kernel code memory definition + */ + +#define KCODE_VECTORS_BEGIN 0x0000 +#define KCODE_VECTORS_END 0x002F +#define KCODE_VECTORS_UNIT_LENGTH 0x0002 +#define KCODE_VECTORS_LENGTH (KCODE_VECTORS_END - KCODE_VECTORS_BEGIN + 1) + + +/* + * Kernel data memory definition + */ + +#define KDATA_BASE_ADDR 0x1000 +#define KDATA_BASE_ADDR2 0x1080 + +#define KDATA_TASK0 (KDATA_BASE_ADDR + 0x0000) +#define KDATA_TASK1 (KDATA_BASE_ADDR + 0x0001) +#define KDATA_TASK2 (KDATA_BASE_ADDR + 0x0002) +#define KDATA_TASK3 (KDATA_BASE_ADDR + 0x0003) +#define KDATA_TASK4 (KDATA_BASE_ADDR + 0x0004) +#define KDATA_TASK5 (KDATA_BASE_ADDR + 0x0005) +#define KDATA_TASK6 (KDATA_BASE_ADDR + 0x0006) +#define KDATA_TASK7 (KDATA_BASE_ADDR + 0x0007) +#define KDATA_TASK_ENDMARK (KDATA_BASE_ADDR + 0x0008) + +#define KDATA_CURRENT_TASK (KDATA_BASE_ADDR + 0x0009) +#define KDATA_TASK_SWITCH (KDATA_BASE_ADDR + 0x000A) + +#define KDATA_INSTANCE0_POS3D (KDATA_BASE_ADDR + 0x000B) +#define KDATA_INSTANCE1_POS3D (KDATA_BASE_ADDR + 0x000C) +#define KDATA_INSTANCE2_POS3D (KDATA_BASE_ADDR + 0x000D) +#define KDATA_INSTANCE3_POS3D (KDATA_BASE_ADDR + 0x000E) +#define KDATA_INSTANCE4_POS3D (KDATA_BASE_ADDR + 0x000F) +#define KDATA_INSTANCE5_POS3D (KDATA_BASE_ADDR + 0x0010) +#define KDATA_INSTANCE6_POS3D (KDATA_BASE_ADDR + 0x0011) +#define KDATA_INSTANCE7_POS3D (KDATA_BASE_ADDR + 0x0012) +#define KDATA_INSTANCE8_POS3D (KDATA_BASE_ADDR + 0x0013) +#define KDATA_INSTANCE_POS3D_ENDMARK (KDATA_BASE_ADDR + 0x0014) + +#define KDATA_INSTANCE0_SPKVIRT (KDATA_BASE_ADDR + 0x0015) +#define KDATA_INSTANCE_SPKVIRT_ENDMARK (KDATA_BASE_ADDR + 0x0016) + +#define KDATA_INSTANCE0_SPDIF (KDATA_BASE_ADDR + 0x0017) +#define KDATA_INSTANCE_SPDIF_ENDMARK (KDATA_BASE_ADDR + 0x0018) + +#define KDATA_INSTANCE0_MODEM (KDATA_BASE_ADDR + 0x0019) +#define KDATA_INSTANCE_MODEM_ENDMARK (KDATA_BASE_ADDR + 0x001A) + +#define KDATA_INSTANCE0_SRC (KDATA_BASE_ADDR + 0x001B) +#define KDATA_INSTANCE1_SRC (KDATA_BASE_ADDR + 0x001C) +#define KDATA_INSTANCE_SRC_ENDMARK (KDATA_BASE_ADDR + 0x001D) + +#define KDATA_INSTANCE0_MINISRC (KDATA_BASE_ADDR + 0x001E) +#define KDATA_INSTANCE1_MINISRC (KDATA_BASE_ADDR + 0x001F) +#define KDATA_INSTANCE2_MINISRC (KDATA_BASE_ADDR + 0x0020) +#define KDATA_INSTANCE3_MINISRC (KDATA_BASE_ADDR + 0x0021) +#define KDATA_INSTANCE_MINISRC_ENDMARK (KDATA_BASE_ADDR + 0x0022) + +#define KDATA_INSTANCE0_CPYTHRU (KDATA_BASE_ADDR + 0x0023) +#define KDATA_INSTANCE1_CPYTHRU (KDATA_BASE_ADDR + 0x0024) +#define KDATA_INSTANCE_CPYTHRU_ENDMARK (KDATA_BASE_ADDR + 0x0025) + +#define KDATA_CURRENT_DMA (KDATA_BASE_ADDR + 0x0026) +#define KDATA_DMA_SWITCH (KDATA_BASE_ADDR + 0x0027) +#define KDATA_DMA_ACTIVE (KDATA_BASE_ADDR + 0x0028) + +#define KDATA_DMA_XFER0 (KDATA_BASE_ADDR + 0x0029) +#define KDATA_DMA_XFER1 (KDATA_BASE_ADDR + 0x002A) +#define KDATA_DMA_XFER2 (KDATA_BASE_ADDR + 0x002B) +#define KDATA_DMA_XFER3 (KDATA_BASE_ADDR + 0x002C) +#define KDATA_DMA_XFER4 (KDATA_BASE_ADDR + 0x002D) +#define KDATA_DMA_XFER5 (KDATA_BASE_ADDR + 0x002E) +#define KDATA_DMA_XFER6 (KDATA_BASE_ADDR + 0x002F) +#define KDATA_DMA_XFER7 (KDATA_BASE_ADDR + 0x0030) +#define KDATA_DMA_XFER8 (KDATA_BASE_ADDR + 0x0031) +#define KDATA_DMA_XFER_ENDMARK (KDATA_BASE_ADDR + 0x0032) + +#define KDATA_I2S_SAMPLE_COUNT (KDATA_BASE_ADDR + 0x0033) +#define KDATA_I2S_INT_METER (KDATA_BASE_ADDR + 0x0034) +#define KDATA_I2S_ACTIVE (KDATA_BASE_ADDR + 0x0035) + +#define KDATA_TIMER_COUNT_RELOAD (KDATA_BASE_ADDR + 0x0036) +#define KDATA_TIMER_COUNT_CURRENT (KDATA_BASE_ADDR + 0x0037) + +#define KDATA_HALT_SYNCH_CLIENT (KDATA_BASE_ADDR + 0x0038) +#define KDATA_HALT_SYNCH_DMA (KDATA_BASE_ADDR + 0x0039) +#define KDATA_HALT_ACKNOWLEDGE (KDATA_BASE_ADDR + 0x003A) + +#define KDATA_ADC1_XFER0 (KDATA_BASE_ADDR + 0x003B) +#define KDATA_ADC1_XFER_ENDMARK (KDATA_BASE_ADDR + 0x003C) +#define KDATA_ADC1_LEFT_VOLUME (KDATA_BASE_ADDR + 0x003D) +#define KDATA_ADC1_RIGHT_VOLUME (KDATA_BASE_ADDR + 0x003E) +#define KDATA_ADC1_LEFT_SUR_VOL (KDATA_BASE_ADDR + 0x003F) +#define KDATA_ADC1_RIGHT_SUR_VOL (KDATA_BASE_ADDR + 0x0040) + +#define KDATA_ADC2_XFER0 (KDATA_BASE_ADDR + 0x0041) +#define KDATA_ADC2_XFER_ENDMARK (KDATA_BASE_ADDR + 0x0042) +#define KDATA_ADC2_LEFT_VOLUME (KDATA_BASE_ADDR + 0x0043) +#define KDATA_ADC2_RIGHT_VOLUME (KDATA_BASE_ADDR + 0x0044) +#define KDATA_ADC2_LEFT_SUR_VOL (KDATA_BASE_ADDR + 0x0045) +#define KDATA_ADC2_RIGHT_SUR_VOL (KDATA_BASE_ADDR + 0x0046) + +#define KDATA_CD_XFER0 (KDATA_BASE_ADDR + 0x0047) +#define KDATA_CD_XFER_ENDMARK (KDATA_BASE_ADDR + 0x0048) +#define KDATA_CD_LEFT_VOLUME (KDATA_BASE_ADDR + 0x0049) +#define KDATA_CD_RIGHT_VOLUME (KDATA_BASE_ADDR + 0x004A) +#define KDATA_CD_LEFT_SUR_VOL (KDATA_BASE_ADDR + 0x004B) +#define KDATA_CD_RIGHT_SUR_VOL (KDATA_BASE_ADDR + 0x004C) + +#define KDATA_MIC_XFER0 (KDATA_BASE_ADDR + 0x004D) +#define KDATA_MIC_XFER_ENDMARK (KDATA_BASE_ADDR + 0x004E) +#define KDATA_MIC_VOLUME (KDATA_BASE_ADDR + 0x004F) +#define KDATA_MIC_SUR_VOL (KDATA_BASE_ADDR + 0x0050) + +#define KDATA_I2S_XFER0 (KDATA_BASE_ADDR + 0x0051) +#define KDATA_I2S_XFER_ENDMARK (KDATA_BASE_ADDR + 0x0052) + +#define KDATA_CHI_XFER0 (KDATA_BASE_ADDR + 0x0053) +#define KDATA_CHI_XFER_ENDMARK (KDATA_BASE_ADDR + 0x0054) + +#define KDATA_SPDIF_XFER (KDATA_BASE_ADDR + 0x0055) +#define KDATA_SPDIF_CURRENT_FRAME (KDATA_BASE_ADDR + 0x0056) +#define KDATA_SPDIF_FRAME0 (KDATA_BASE_ADDR + 0x0057) +#define KDATA_SPDIF_FRAME1 (KDATA_BASE_ADDR + 0x0058) +#define KDATA_SPDIF_FRAME2 (KDATA_BASE_ADDR + 0x0059) + +#define KDATA_SPDIF_REQUEST (KDATA_BASE_ADDR + 0x005A) +#define KDATA_SPDIF_TEMP (KDATA_BASE_ADDR + 0x005B) + +/*AY SPDIF IN */ +#define KDATA_SPDIFIN_XFER0 (KDATA_BASE_ADDR + 0x005C) +#define KDATA_SPDIFIN_XFER_ENDMARK (KDATA_BASE_ADDR + 0x005D) +#define KDATA_SPDIFIN_INT_METER (KDATA_BASE_ADDR + 0x005E) + +#define KDATA_DSP_RESET_COUNT (KDATA_BASE_ADDR + 0x005F) +#define KDATA_DEBUG_OUTPUT (KDATA_BASE_ADDR + 0x0060) + +#define KDATA_KERNEL_ISR_LIST (KDATA_BASE_ADDR + 0x0061) + +#define KDATA_KERNEL_ISR_CBSR1 (KDATA_BASE_ADDR + 0x0062) +#define KDATA_KERNEL_ISR_CBER1 (KDATA_BASE_ADDR + 0x0063) +#define KDATA_KERNEL_ISR_CBCR (KDATA_BASE_ADDR + 0x0064) +#define KDATA_KERNEL_ISR_AR0 (KDATA_BASE_ADDR + 0x0065) +#define KDATA_KERNEL_ISR_AR1 (KDATA_BASE_ADDR + 0x0066) +#define KDATA_KERNEL_ISR_AR2 (KDATA_BASE_ADDR + 0x0067) +#define KDATA_KERNEL_ISR_AR3 (KDATA_BASE_ADDR + 0x0068) +#define KDATA_KERNEL_ISR_AR4 (KDATA_BASE_ADDR + 0x0069) +#define KDATA_KERNEL_ISR_AR5 (KDATA_BASE_ADDR + 0x006A) +#define KDATA_KERNEL_ISR_BRCR (KDATA_BASE_ADDR + 0x006B) +#define KDATA_KERNEL_ISR_PASR (KDATA_BASE_ADDR + 0x006C) +#define KDATA_KERNEL_ISR_PAER (KDATA_BASE_ADDR + 0x006D) + +#define KDATA_CLIENT_SCRATCH0 (KDATA_BASE_ADDR + 0x006E) +#define KDATA_CLIENT_SCRATCH1 (KDATA_BASE_ADDR + 0x006F) +#define KDATA_KERNEL_SCRATCH (KDATA_BASE_ADDR + 0x0070) +#define KDATA_KERNEL_ISR_SCRATCH (KDATA_BASE_ADDR + 0x0071) + +#define KDATA_OUEUE_LEFT (KDATA_BASE_ADDR + 0x0072) +#define KDATA_QUEUE_RIGHT (KDATA_BASE_ADDR + 0x0073) + +#define KDATA_ADC1_REQUEST (KDATA_BASE_ADDR + 0x0074) +#define KDATA_ADC2_REQUEST (KDATA_BASE_ADDR + 0x0075) +#define KDATA_CD_REQUEST (KDATA_BASE_ADDR + 0x0076) +#define KDATA_MIC_REQUEST (KDATA_BASE_ADDR + 0x0077) + +#define KDATA_ADC1_MIXER_REQUEST (KDATA_BASE_ADDR + 0x0078) +#define KDATA_ADC2_MIXER_REQUEST (KDATA_BASE_ADDR + 0x0079) +#define KDATA_CD_MIXER_REQUEST (KDATA_BASE_ADDR + 0x007A) +#define KDATA_MIC_MIXER_REQUEST (KDATA_BASE_ADDR + 0x007B) +#define KDATA_MIC_SYNC_COUNTER (KDATA_BASE_ADDR + 0x007C) + +/* + * second segment + */ + +/* smart mixer buffer */ + +#define KDATA_MIXER_WORD0 (KDATA_BASE_ADDR2 + 0x0000) +#define KDATA_MIXER_WORD1 (KDATA_BASE_ADDR2 + 0x0001) +#define KDATA_MIXER_WORD2 (KDATA_BASE_ADDR2 + 0x0002) +#define KDATA_MIXER_WORD3 (KDATA_BASE_ADDR2 + 0x0003) +#define KDATA_MIXER_WORD4 (KDATA_BASE_ADDR2 + 0x0004) +#define KDATA_MIXER_WORD5 (KDATA_BASE_ADDR2 + 0x0005) +#define KDATA_MIXER_WORD6 (KDATA_BASE_ADDR2 + 0x0006) +#define KDATA_MIXER_WORD7 (KDATA_BASE_ADDR2 + 0x0007) +#define KDATA_MIXER_WORD8 (KDATA_BASE_ADDR2 + 0x0008) +#define KDATA_MIXER_WORD9 (KDATA_BASE_ADDR2 + 0x0009) +#define KDATA_MIXER_WORDA (KDATA_BASE_ADDR2 + 0x000A) +#define KDATA_MIXER_WORDB (KDATA_BASE_ADDR2 + 0x000B) +#define KDATA_MIXER_WORDC (KDATA_BASE_ADDR2 + 0x000C) +#define KDATA_MIXER_WORDD (KDATA_BASE_ADDR2 + 0x000D) +#define KDATA_MIXER_WORDE (KDATA_BASE_ADDR2 + 0x000E) +#define KDATA_MIXER_WORDF (KDATA_BASE_ADDR2 + 0x000F) + +#define KDATA_MIXER_XFER0 (KDATA_BASE_ADDR2 + 0x0010) +#define KDATA_MIXER_XFER1 (KDATA_BASE_ADDR2 + 0x0011) +#define KDATA_MIXER_XFER2 (KDATA_BASE_ADDR2 + 0x0012) +#define KDATA_MIXER_XFER3 (KDATA_BASE_ADDR2 + 0x0013) +#define KDATA_MIXER_XFER4 (KDATA_BASE_ADDR2 + 0x0014) +#define KDATA_MIXER_XFER5 (KDATA_BASE_ADDR2 + 0x0015) +#define KDATA_MIXER_XFER6 (KDATA_BASE_ADDR2 + 0x0016) +#define KDATA_MIXER_XFER7 (KDATA_BASE_ADDR2 + 0x0017) +#define KDATA_MIXER_XFER8 (KDATA_BASE_ADDR2 + 0x0018) +#define KDATA_MIXER_XFER9 (KDATA_BASE_ADDR2 + 0x0019) +#define KDATA_MIXER_XFER_ENDMARK (KDATA_BASE_ADDR2 + 0x001A) + +#define KDATA_MIXER_TASK_NUMBER (KDATA_BASE_ADDR2 + 0x001B) +#define KDATA_CURRENT_MIXER (KDATA_BASE_ADDR2 + 0x001C) +#define KDATA_MIXER_ACTIVE (KDATA_BASE_ADDR2 + 0x001D) +#define KDATA_MIXER_BANK_STATUS (KDATA_BASE_ADDR2 + 0x001E) +#define KDATA_DAC_LEFT_VOLUME (KDATA_BASE_ADDR2 + 0x001F) +#define KDATA_DAC_RIGHT_VOLUME (KDATA_BASE_ADDR2 + 0x0020) + +/* + * Client data memory definition + */ + +#define CDATA_INSTANCE_READY 0x00 + +#define CDATA_HOST_SRC_ADDRL 0x01 +#define CDATA_HOST_SRC_ADDRH 0x02 +#define CDATA_HOST_SRC_END_PLUS_1L 0x03 +#define CDATA_HOST_SRC_END_PLUS_1H 0x04 +#define CDATA_HOST_SRC_CURRENTL 0x05 +#define CDATA_HOST_SRC_CURRENTH 0x06 + +#define CDATA_IN_BUF_CONNECT 0x07 +#define CDATA_OUT_BUF_CONNECT 0x08 + +#define CDATA_IN_BUF_BEGIN 0x09 +#define CDATA_IN_BUF_END_PLUS_1 0x0A +#define CDATA_IN_BUF_HEAD 0x0B +#define CDATA_IN_BUF_TAIL 0x0C + +#define CDATA_OUT_BUF_BEGIN 0x0D +#define CDATA_OUT_BUF_END_PLUS_1 0x0E +#define CDATA_OUT_BUF_HEAD 0x0F +#define CDATA_OUT_BUF_TAIL 0x10 + +#define CDATA_DMA_CONTROL 0x11 +#define CDATA_RESERVED 0x12 + +#define CDATA_FREQUENCY 0x13 +#define CDATA_LEFT_VOLUME 0x14 +#define CDATA_RIGHT_VOLUME 0x15 +#define CDATA_LEFT_SUR_VOL 0x16 +#define CDATA_RIGHT_SUR_VOL 0x17 + +/* These are from Allegro hckernel.h */ +#define CDATA_HEADER_LEN 0x18 +#define SRC3_DIRECTION_OFFSET CDATA_HEADER_LEN +#define SRC3_MODE_OFFSET CDATA_HEADER_LEN + 1 +#define SRC3_WORD_LENGTH_OFFSET CDATA_HEADER_LEN + 2 +#define SRC3_PARAMETER_OFFSET CDATA_HEADER_LEN + 3 +#define SRC3_COEFF_ADDR_OFFSET CDATA_HEADER_LEN + 8 +#define SRC3_FILTAP_ADDR_OFFSET CDATA_HEADER_LEN + 10 +#define SRC3_TEMP_INBUF_ADDR_OFFSET CDATA_HEADER_LEN + 16 +#define SRC3_TEMP_OUTBUF_ADDR_OFFSET CDATA_HEADER_LEN + 17 +#define FOR_FUTURE_USE 10 /* for storing temporary variable in future */ + +/* + * DMA control definition + */ + +#define DMACONTROL_BLOCK_MASK 0x000F +#define DMAC_BLOCK0_SELECTOR 0x0000 +#define DMAC_BLOCK1_SELECTOR 0x0001 +#define DMAC_BLOCK2_SELECTOR 0x0002 +#define DMAC_BLOCK3_SELECTOR 0x0003 +#define DMAC_BLOCK4_SELECTOR 0x0004 +#define DMAC_BLOCK5_SELECTOR 0x0005 +#define DMAC_BLOCK6_SELECTOR 0x0006 +#define DMAC_BLOCK7_SELECTOR 0x0007 +#define DMAC_BLOCK8_SELECTOR 0x0008 +#define DMAC_BLOCK9_SELECTOR 0x0009 +#define DMAC_BLOCKA_SELECTOR 0x000A +#define DMAC_BLOCKB_SELECTOR 0x000B +#define DMAC_BLOCKC_SELECTOR 0x000C +#define DMAC_BLOCKD_SELECTOR 0x000D +#define DMAC_BLOCKE_SELECTOR 0x000E +#define DMAC_BLOCKF_SELECTOR 0x000F +#define DMACONTROL_PAGE_MASK 0x00F0 +#define DMAC_PAGE0_SELECTOR 0x0030 +#define DMAC_PAGE1_SELECTOR 0x0020 +#define DMAC_PAGE2_SELECTOR 0x0010 +#define DMAC_PAGE3_SELECTOR 0x0000 +#define DMACONTROL_AUTOREPEAT 0x1000 +#define DMACONTROL_STOPPED 0x2000 +#define DMACONTROL_DIRECTION 0x0100 + +/* + * Kernel/client memory allocation + */ + +#define NUM_UNITS_KERNEL_CODE 16 +#define NUM_UNITS_KERNEL_DATA 2 + +#define NUM_UNITS_KERNEL_CODE_WITH_HSP 16 +#ifdef NT_MODEL +#define NUM_UNITS_KERNEL_DATA_WITH_HSP 5 +#else +#define NUM_UNITS_KERNEL_DATA_WITH_HSP 4 +#endif + +#define NUM_UNITS( BYTES, UNITLEN ) ((((BYTES+1)>>1) + (UNITLEN-1)) / UNITLEN) + +/* + * DSP hardware + */ + +#define DSP_PORT_TIMER_COUNT 0x06 +#define DSP_PORT_MEMORY_INDEX 0x80 +#define DSP_PORT_MEMORY_TYPE 0x82 +#define DSP_PORT_MEMORY_DATA 0x84 +#define DSP_PORT_CONTROL_REG_A 0xA2 +#define DSP_PORT_CONTROL_REG_B 0xA4 +#define DSP_PORT_CONTROL_REG_C 0xA6 + +#define MEMTYPE_INTERNAL_CODE 0x0002 +#define MEMTYPE_INTERNAL_DATA 0x0003 +#define MEMTYPE_MASK 0x0003 + +#define REGB_ENABLE_RESET 0x01 +#define REGB_STOP_CLOCK 0x10 + +#define REGC_DISABLE_FM_MAPPING 0x02 + +#define DP_SHIFT_COUNT 7 + +#define DMA_BLOCK_LENGTH 32 + +/* These are from Allegro srcmgr.h */ +#define MINISRC_BIQUAD_STAGE 2 +#define MINISRC_IN_BUFFER_SIZE ( 0x50 * 2 ) +#define MINISRC_OUT_BUFFER_SIZE ( 0x50 * 2 * 2) +#define MINISRC_TMP_BUFFER_SIZE ( 112 + ( MINISRC_BIQUAD_STAGE * 3 + 4 ) * 2 * 2 ) +#define MINISRC_BIQUAD_STAGE 2 +/* M. SRC LPF coefficient could be changed in the DSP code */ +#define MINISRC_COEF_LOC 0X175 + +#endif /* !_DEV_SOUND_PCI_ALLEGRO_REG_H */ diff -ruN dev/sound/pci.emu10k/emu10k1reg.h dev/sound/pci/emu10k1reg.h --- dev/sound/pci.emu10k/emu10k1reg.h 2011-01-10 17:30:25.000000000 +0000 +++ dev/sound/pci/emu10k1reg.h 2011-01-10 20:27:17.000000000 +0000 @@ -1,3 +1,4 @@ +/* $FreeBSD$ */ /* $NetBSD: emuxkireg.h,v 1.8 2008/04/28 20:23:54 martin Exp $ */ /*- diff -ruN dev/sound/pci.emu10k/maestro3.c dev/sound/pci/maestro3.c --- dev/sound/pci.emu10k/maestro3.c 2011-01-10 17:30:25.000000000 +0000 +++ dev/sound/pci/maestro3.c 2011-01-11 21:48:35.000000000 +0000 @@ -62,11 +62,14 @@ #include #include -#include -#include +#include +#include SND_DECLARE_FILE("$FreeBSD: src/sys/dev/sound/pci/maestro3.c,v 1.36.2.2.4.1 2010/12/21 17:09:25 kensmith Exp $"); +#define NT_MODEL 1 +#define DFT_VOLUME 0x6800 + /* -------------------------------------------------------------------- */ enum {CHANGE=0, CALL=1, INTR=2, BORING=3, NONE=-1}; @@ -376,6 +379,31 @@ int idx, data_bytes, dac_data; int dsp_in_size, dsp_out_size, dsp_in_buf, dsp_out_buf; + struct data_word { + u_int16_t addr, val; + } pv[] = { + {CDATA_LEFT_VOLUME, DFT_VOLUME}, + {CDATA_RIGHT_VOLUME, DFT_VOLUME}, + {SRC3_DIRECTION_OFFSET, 0} , + {SRC3_DIRECTION_OFFSET + 3, 0x0000}, + {SRC3_DIRECTION_OFFSET + 4, 0}, + {SRC3_DIRECTION_OFFSET + 5, 0}, + {SRC3_DIRECTION_OFFSET + 6, 0}, + {SRC3_DIRECTION_OFFSET + 7, 0}, + {SRC3_DIRECTION_OFFSET + 8, 0}, + {SRC3_DIRECTION_OFFSET + 9, 0}, + {SRC3_DIRECTION_OFFSET + 10, 0x8000}, + {SRC3_DIRECTION_OFFSET + 11, 0xFF00}, + {SRC3_DIRECTION_OFFSET + 13, 0}, + {SRC3_DIRECTION_OFFSET + 14, 0}, + {SRC3_DIRECTION_OFFSET + 15, 0}, + {SRC3_DIRECTION_OFFSET + 16, 8}, + {SRC3_DIRECTION_OFFSET + 17, 50*2}, + {SRC3_DIRECTION_OFFSET + 18, MINISRC_BIQUAD_STAGE - 1}, + {SRC3_DIRECTION_OFFSET + 20, 0}, + {SRC3_DIRECTION_OFFSET + 21, 0} + }; + M3_LOCK(sc); idx = sc->pch_cnt; /* dac instance number, no active reuse! */ M3_DEBUG(CHANGE, ("m3_pchan_init(dac=%d)\n", idx)); @@ -729,6 +757,33 @@ int idx, data_bytes, adc_data; int dsp_in_size, dsp_out_size, dsp_in_buf, dsp_out_buf; + struct data_word { + u_int16_t addr, val; + } rv[] = { + {CDATA_LEFT_VOLUME, DFT_VOLUME}, + {CDATA_RIGHT_VOLUME, DFT_VOLUME}, + {SRC3_DIRECTION_OFFSET, 1}, + {SRC3_DIRECTION_OFFSET + 3, 0x0000}, + {SRC3_DIRECTION_OFFSET + 4, 0}, + {SRC3_DIRECTION_OFFSET + 5, 0}, + {SRC3_DIRECTION_OFFSET + 6, 0}, + {SRC3_DIRECTION_OFFSET + 7, 0}, + {SRC3_DIRECTION_OFFSET + 8, 0}, + {SRC3_DIRECTION_OFFSET + 9, 0}, + {SRC3_DIRECTION_OFFSET + 10, 0x8000}, + {SRC3_DIRECTION_OFFSET + 11, 0xFF00}, + {SRC3_DIRECTION_OFFSET + 13, 0}, + {SRC3_DIRECTION_OFFSET + 14, 0}, + {SRC3_DIRECTION_OFFSET + 15, 0}, + {SRC3_DIRECTION_OFFSET + 16, 50}, + {SRC3_DIRECTION_OFFSET + 17, 8}, + {SRC3_DIRECTION_OFFSET + 18, 0}, + {SRC3_DIRECTION_OFFSET + 19, 0}, + {SRC3_DIRECTION_OFFSET + 20, 0}, + {SRC3_DIRECTION_OFFSET + 21, 0}, + {SRC3_DIRECTION_OFFSET + 22, 0xff} + }; + M3_LOCK(sc); idx = sc->rch_cnt; /* adc instance number, no active reuse! */ M3_DEBUG(CHANGE, ("m3_rchan_init(adc=%d)\n", idx)); @@ -1189,25 +1244,25 @@ m3_wr_assp_data(sc, KDATA_CURRENT_DMA, KDATA_DMA_XFER0); /* write kernel into code memory */ - size = sizeof(assp_kernel_image); + size = sizeof(gaw_kernel_vect_code); for(i = 0 ; i < size / 2; i++) { m3_wr_assp_code(sc, REV_B_CODE_MEMORY_BEGIN + i, - assp_kernel_image[i]); + gaw_kernel_vect_code[i]); } /* * We only have this one client and we know that 0x400 is free in * our kernel's mem map, so lets just drop it there. It seems that * the minisrc doesn't need vectors, so we won't bother with them.. */ - size = sizeof(assp_minisrc_image); + size = sizeof(gaw_minisrc_code_0400); for(i = 0 ; i < size / 2; i++) { - m3_wr_assp_code(sc, 0x400 + i, assp_minisrc_image[i]); + m3_wr_assp_code(sc, 0x400 + i, gaw_minisrc_code_0400[i]); } /* write the coefficients for the low pass filter? */ - size = sizeof(minisrc_lpf_image); + size = sizeof(minisrc_lpf); for(i = 0; i < size / 2 ; i++) { m3_wr_assp_code(sc,0x400 + MINISRC_COEF_LOC + i, - minisrc_lpf_image[i]); + minisrc_lpf[i]); } m3_wr_assp_code(sc, 0x400 + MINISRC_COEF_LOC + size, 0x8000); /* the minisrc is the only thing on our task list */ @@ -1215,8 +1270,8 @@ /* init the mixer number */ m3_wr_assp_data(sc, KDATA_MIXER_TASK_NUMBER, 0); /* extreme kernel master volume */ - m3_wr_assp_data(sc, KDATA_DAC_LEFT_VOLUME, ARB_VOLUME); - m3_wr_assp_data(sc, KDATA_DAC_RIGHT_VOLUME, ARB_VOLUME); + m3_wr_assp_data(sc, KDATA_DAC_LEFT_VOLUME, DFT_VOLUME); + m3_wr_assp_data(sc, KDATA_DAC_RIGHT_VOLUME, DFT_VOLUME); m3_amp_enable(sc); --- modules/sound/driver/maestro3/Makefile.orig 2011-01-11 21:35:49.000000000 +0000 +++ modules/sound/driver/maestro3/Makefile 2011-01-11 21:38:24.000000000 +0000 @@ -4,6 +4,7 @@ KMOD= snd_maestro3 SRCS= device_if.h bus_if.h pci_if.h +SRCS+= allegro_code.h allegro_reg.h SRCS+= maestro3.c CFLAGS+= -Wall -DM3_DEBUG_LEVEL=-1 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 12 05:10:15 2011 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 8359710656D6 for ; Wed, 12 Jan 2011 05:10: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 CB5158FC1A for ; Wed, 12 Jan 2011 05:10: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 p0C5AEJ7021761 for ; Wed, 12 Jan 2011 05:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0C5AEf0021759; Wed, 12 Jan 2011 05:10:14 GMT (envelope-from gnats) Date: Wed, 12 Jan 2011 05:10:14 GMT Message-Id: <201101120510.p0C5AEf0021759@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Pedro F. Giffuni" Cc: Subject: Re: kern/153920: Replace the GPL'd sound/maestro3 headers with BSD versions from OSS X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Pedro F. Giffuni" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2011 05:10:15 -0000 The following reply was made to PR kern/153920; it has been noted by GNATS. From: "Pedro F. Giffuni" To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/153920: Replace the GPL'd sound/maestro3 headers with BSD versions from OSS Date: Tue, 11 Jan 2011 21:09:43 -0800 (PST) There is a typo in the maestro3.c patch, but it's not worthy to send a new patch: the correct patch for the new include files is, of course, dev/sound/pci/allegro_*.h (I tested it using "allegro_*.h", and didn't run another test before submitting it, sorry) From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 12 10:20:03 2011 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 7190C1065675 for ; Wed, 12 Jan 2011 10:20: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 3F8888FC1B for ; Wed, 12 Jan 2011 10:20: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 p0CAK3UL001062 for ; Wed, 12 Jan 2011 10: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 p0CAK3g4001060; Wed, 12 Jan 2011 10:20:03 GMT (envelope-from gnats) Resent-Date: Wed, 12 Jan 2011 10:20:03 GMT Resent-Message-Id: <201101121020.p0CAK3g4001060@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, Sergey Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73ACB106567A for ; Wed, 12 Jan 2011 10:15:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 4901F8FC20 for ; Wed, 12 Jan 2011 10:15:34 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0CAFXfh045647 for ; Wed, 12 Jan 2011 10:15:33 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0CAFXbx045646; Wed, 12 Jan 2011 10:15:33 GMT (envelope-from nobody) Message-Id: <201101121015.p0CAFXbx045646@red.freebsd.org> Date: Wed, 12 Jan 2011 10:15:33 GMT From: Sergey To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/153924: Bug is inside rtld (ELF dyn loader 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, 12 Jan 2011 10:20:03 -0000 >Number: 153924 >Category: misc >Synopsis: Bug is inside rtld (ELF dyn loader >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 Jan 12 10:20:02 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Sergey >Release: 7.3 >Organization: Wteam >Environment: all machine version freebsd 7.1 - 8.0 have this bug >Description: fell into my hands a script that allows a normal user to run suid process, the script works on freebsd 7.1 and higher, up to 8.0 would like to know whether there is a patch to close the bug? valid for the version of freebsd 7.3 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 12 10:54:09 2011 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 7A4391065673; Wed, 12 Jan 2011 10:54:09 +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 512468FC28; Wed, 12 Jan 2011 10:54: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 p0CAs9BG046331; Wed, 12 Jan 2011 10:54:09 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0CAs91d046327; Wed, 12 Jan 2011 10:54:09 GMT (envelope-from linimon) Date: Wed, 12 Jan 2011 10:54:09 GMT Message-Id: <201101121054.p0CAs91d046327@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, perl@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/153917: textproc/p5-MARC-Charset 1.31 lacks dependency 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, 12 Jan 2011 10:54:09 -0000 Old Synopsis: p5-MARC-Charset-1.31 lacks dependency New Synopsis: textproc/p5-MARC-Charset 1.31 lacks dependency Responsible-Changed-From-To: freebsd-bugs->perl Responsible-Changed-By: linimon Responsible-Changed-When: Wed Jan 12 10:52:58 UTC 2011 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=153917 From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 12 15:50:13 2011 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 C1B66106566B for ; Wed, 12 Jan 2011 15:50:13 +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 94AF18FC13 for ; Wed, 12 Jan 2011 15:50:13 +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 p0CFoD4f061465 for ; Wed, 12 Jan 2011 15:50:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0CFoDmD061455; Wed, 12 Jan 2011 15:50:13 GMT (envelope-from gnats) Date: Wed, 12 Jan 2011 15:50:13 GMT Message-Id: <201101121550.p0CFoDmD061455@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Pedro F. Giffuni" Cc: Subject: Re: kern/153920: Replace the GPL'd sound/maestro3 headers with BSD versions from OSS X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Pedro F. Giffuni" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2011 15:50:13 -0000 The following reply was made to PR kern/153920; it has been noted by GNATS. From: "Pedro F. Giffuni" To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/153920: Replace the GPL'd sound/maestro3 headers with BSD versions from OSS Date: Wed, 12 Jan 2011 07:43:50 -0800 (PST) --0-1011579751-1294847030=:77902 Content-Type: text/plain; charset=us-ascii Minor update to make naming more consistent. --0-1011579751-1294847030=:77902 Content-Type: text/plain; name="patch-maestro3.txt" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="patch-maestro3.txt" ZGlmZiAtcnVOIGRldi9zb3VuZC9wY2kuZW11MTBrL2FsbGVncm9fY29kZS5o IGRldi9zb3VuZC9wY2kvYWxsZWdyb19jb2RlLmgKLS0tIGRldi9zb3VuZC9w Y2kuZW11MTBrL2FsbGVncm9fY29kZS5oCTE5NzAtMDEtMDEgMDA6MDA6MDAu MDAwMDAwMDAwICswMDAwCisrKyBkZXYvc291bmQvcGNpL2FsbGVncm9fY29k ZS5oCTIwMTEtMDEtMTEgMTY6Mzg6NDkuMDAwMDAwMDAwICswMDAwCkBAIC0w LDAgKzEsMjE5IEBACisKKy8qLQorICogQ29weXJpZ2h0IChDKSAxOTk2LTIw MDgsIDRGcm9udCBUZWNobm9sb2dpZXMKKyAqIENvcHlyaWdodCAoQykgMTk5 Ny0xOTk5IEVTUyBUZWNobm9sb2d5LCBJbmMKKyAqIEFsbCByaWdodHMgcmVz ZXJ2ZWQuCisgKgorICogUmVkaXN0cmlidXRpb24gYW5kIHVzZSBpbiBzb3Vy Y2UgYW5kIGJpbmFyeSBmb3Jtcywgd2l0aCBvciB3aXRob3V0CisgKiBtb2Rp ZmljYXRpb24sIGFyZSBwZXJtaXR0ZWQgcHJvdmlkZWQgdGhhdCB0aGUgZm9s bG93aW5nIGNvbmRpdGlvbnMKKyAqIGFyZSBtZXQ6CisgKiAxLiBSZWRpc3Ry aWJ1dGlvbnMgb2Ygc291cmNlIGNvZGUgbXVzdCByZXRhaW4gdGhlIGFib3Zl IGNvcHlyaWdodAorICogICAgbm90aWNlLCB0aGlzIGxpc3Qgb2YgY29uZGl0 aW9ucyBhbmQgdGhlIGZvbGxvd2luZyBkaXNjbGFpbWVyLgorICogMi4gUmVk aXN0cmlidXRpb25zIGluIGJpbmFyeSBmb3JtIG11c3QgcmVwcm9kdWNlIHRo ZSBhYm92ZSBjb3B5cmlnaHQKKyAqICAgIG5vdGljZSwgdGhpcyBsaXN0IG9m IGNvbmRpdGlvbnMgYW5kIHRoZSBmb2xsb3dpbmcgZGlzY2xhaW1lciBpbiB0 aGUKKyAqICAgIGRvY3VtZW50YXRpb24gYW5kL29yIG90aGVyIG1hdGVyaWFs cyBwcm92aWRlZCB3aXRoIHRoZSBkaXN0cmlidXRpb24uCisgKgorICogVEhJ UyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVUSE9SIEFORCBDT05U UklCVVRPUlMgYGBBUyBJUycnIEFORAorICogQU5ZIEVYUFJFU1MgT1IgSU1Q TElFRCBXQVJSQU5USUVTLCBJTkNMVURJTkcsIEJVVCBOT1QgTElNSVRFRCBU TywgVEhFCisgKiBJTVBMSUVEIFdBUlJBTlRJRVMgT0YgTUVSQ0hBTlRBQklM SVRZIEFORCBGSVRORVNTIEZPUiBBIFBBUlRJQ1VMQVIgUFVSUE9TRQorICog QVJFIERJU0NMQUlNRUQuICBJTiBOTyBFVkVOVCBTSEFMTCBUSEUgQVVUSE9S IE9SIENPTlRSSUJVVE9SUyBCRSBMSUFCTEUKKyAqIEZPUiBBTlkgRElSRUNU LCBJTkRJUkVDVCwgSU5DSURFTlRBTCwgU1BFQ0lBTCwgRVhFTVBMQVJZLCBP UiBDT05TRVFVRU5USUFMCisgKiBEQU1BR0VTIChJTkNMVURJTkcsIEJVVCBO T1QgTElNSVRFRCBUTywgUFJPQ1VSRU1FTlQgT0YgU1VCU1RJVFVURSBHT09E UworICogT1IgU0VSVklDRVM7IExPU1MgT0YgVVNFLCBEQVRBLCBPUiBQUk9G SVRTOyBPUiBCVVNJTkVTUyBJTlRFUlJVUFRJT04pCisgKiBIT1dFVkVSIENB VVNFRCBBTkQgT04gQU5ZIFRIRU9SWSBPRiBMSUFCSUxJVFksIFdIRVRIRVIg SU4gQ09OVFJBQ1QsIFNUUklDVAorICogTElBQklMSVRZLCBPUiBUT1JUIChJ TkNMVURJTkcgTkVHTElHRU5DRSBPUiBPVEhFUldJU0UpIEFSSVNJTkcgSU4g QU5ZIFdBWQorICogT1VUIE9GIFRIRSBVU0UgT0YgVEhJUyBTT0ZUV0FSRSwg RVZFTiBJRiBBRFZJU0VEIE9GIFRIRSBQT1NTSUJJTElUWSBPRgorICogU1VD SCBEQU1BR0UuCisgKgorICogJEZyZWVCU0QkCisgKi8KKworLyotLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0KKyAqIFRoaXMgc291cmNlIGNvZGUs IGl0cyBjb21waWxlZCBvYmplY3QgY29kZSwgYW5kIGl0cyBhc3NvY2lhdGVk IGRhdGEgc2V0cworICogYXJlIGNvcHlyaWdodCAoQykgMTk5Ny0xOTk5IEVT UyBUZWNobm9sb2d5LCBJbmMuIFRoaXMgc291cmNlIGNvZGUgYW5kIGl0cwor ICogYXNzb2NpYXRlZCBkYXRhIHNldHMgYXJlIHRyYWRlIHNlY3JldHMgb2Yg RVNTIFRlY2hub2xvZ3ksIEluYy4KKyAqLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tCisgKiBERVNDUklQVElPTjogRFNQIGJpbmFyaWVzCisgKi0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQorICogQVVUSE9SOiAgSGVu cnkgVGFuZyAvIEhvbmcgS2ltIC8gQWxnZXIgWWV1bmcvRG9uIEtpbQorICot LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0KKyAqIEZvciBwcmFjdGlj YWwgcHVycG9zZXMgd2Ugb25seSBpbmNsdWRlIHdoYXQgaXMgbmVjZXNzYXJ5 IGZvciBjdXJyZW50CisgKiAgTWFlc3RybzMgZHJpdmVyLiBGaWxlcyB1c2Vk IGluIHRoaXMgaGVhZGVyIGluY2x1ZGU6CisgKiAgICBrZXJuZWwuZGF0Cisg KiAgICA0MDBtX3NyYy5kYXQKKyAqICAgIG1pbmlfc3JjX2xwZiBmcm9tIHNy Y21nci5oCisgKi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQorICov CisjaWZuZGVmIF9ERVZfU09VTkRfUENJX0FMTEVHUk9fQ09ERV9ICisjZGVm aW5lIF9ERVZfU09VTkRfUENJX0FMTEVHUk9fQ09ERV9ICisKKy8qCisgKiBL ZXJuZWwKKyAqLworCit1aW50MTZfdCBnYXdfa2VybmVsX3ZlY3RfY29kZVtd ID0geworICAgIDB4Nzk4MCwgMHgwMDMwLCAweDc5ODAsIDB4MDNCNCwgMHg3 OTgwLCAweDAzQjQsIDB4Nzk4MCwgMHgwMEZCLCAweDc5ODAsCisgICAgMHgw MERELCAweDc5ODAsIDB4MDNCNCwgMHg3OTgwLCAweDAzMzIsIDB4Nzk4MCwg MHgwMjg3LCAweDc5ODAsIDB4MDNCNCwKKyAgICAweDc5ODAsIDB4MDNCNCwg MHg3OTgwLCAweDAzQjQsIDB4Nzk4MCwgMHgwM0I0LCAweDc5ODAsIDB4MDMx QSwgMHg3OTgwLAorICAgIDB4MDNCNCwgMHg3OTgwLCAweDAyMkYsIDB4Nzk4 MCwgMHgwM0I0LCAweDc5ODAsIDB4MDNCNCwgMHg3OTgwLCAweDAzQjQsCisg ICAgMHg3OTgwLCAweDAzQjQsIDB4Nzk4MCwgMHgwM0I0LCAweDc5ODAsIDB4 MDA2MywgMHg3OTgwLCAweDAwNkIsIDB4Nzk4MCwKKyAgICAweDAzQjQsIDB4 Nzk4MCwgMHgwM0I0LCAweEJGODAsIDB4MkM3QywgMHg4ODA2LCAweDg4MDQs IDB4QkU0MCwgMHhCQzIwLAorICAgIDB4QUUwOSwgMHgxMDAwLCAweEFFMEEs IDB4MDAwMSwgMHg2OTM4LCAweEVCMDgsIDB4MDA1MywgMHg2OTVBLCAweEVC MDgsCisgICAgMHgwMEQ2LCAweDAwMDksIDB4OEI4OCwgMHg2OTgwLCAweEUz ODgsIDB4MDAzNiwgMHhCRTMwLCAweEJDMjAsIDB4NjkwOSwKKyAgICAweEI4 MDEsIDB4OTAwOSwgMHhCRTQxLCAweEJFNDEsIDB4NjkyOCwgMHhFQjg4LCAw eDAwNzgsIDB4QkU0MSwgMHhCRTQwLAorICAgIDB4Nzk4MCwgMHgwMDM4LCAw eEJFNDEsIDB4QkU0MSwgMHg5MDNBLCAweDY5MzgsIDB4RTMwOCwgMHgwMDU2 LCAweDkwM0EsCisgICAgMHhCRTQxLCAweEJFNDAsIDB4RUYwMCwgMHg5MDNB LCAweDY5MzksIDB4RTMwOCwgMHgwMDVFLCAweDkwM0EsIDB4RUYwMCwKKyAg ICAweDY5MEIsIDB4NjYwQywgMHhFRjhDLCAweDY5MEEsIDB4NjYwQywgMHg2 MjBCLCAweDY2MDksIDB4RUYwMCwgMHg2OTEwLAorICAgIDB4NjYwRiwgMHhF RjA0LCAweEUzODgsIDB4MDA3NSwgMHg2OTBFLCAweDY2MEYsIDB4NjIxMCwg MHg2NjBELCAweEVGMDAsCisgICAgMHg2OTBFLCAweDY2MEQsIDB4RUYwMCwg MHhBRTcwLCAweDAwMDEsIDB4QkMyMCwgMHhBRTI3LCAweDAwMDEsIDB4Njkz OSwKKyAgICAweEVCMDgsIDB4MDA1RCwgMHg2OTI2LCAweEI4MDEsIDB4OTAy NiwgMHgwMDI2LCAweDhCODgsIDB4Njk4MCwgMHhFMzg4LAorICAgIDB4MDBD QiwgMHg5MDI4LCAweDBEMjgsIDB4NDIxMSwgMHhFMTAwLCAweDAwN0EsIDB4 NDcxMSwgMHhFMTAwLCAweDAwQTAsCisgICAgMHg3QTgwLCAweDAwNjMsIDB4 QjgxMSwgMHg2NjBBLCAweDYyMDksIDB4RTMwNCwgMHgwMDdBLCAweDBDMEIs IDB4NDAwNSwKKyAgICAweDEwMEEsIDB4QkEwMSwgMHg5MDEyLCAweDBDMTIs IDB4NDAwMiwgMHg3OTgwLCAweDAwQUYsIDB4N0E4MCwgMHgwMDZCLAorICAg IDB4QkUwMiwgMHg2MjBFLCAweDY2MEQsIDB4QkExMCwgMHhFMzQ0LCAweDAw N0EsIDB4MEMxMCwgMHg0MDA1LCAweDEwMEUsCisgICAgMHhCQTAxLCAweDkw MTIsIDB4MEMxMiwgMHg0MDAyLCAweDEwMDMsIDB4QkEwMiwgMHg5MDEyLCAw eDBDMTIsIDB4NDAwMCwgCisgICAgMHgxMDAzLCAweEUzODgsIDB4MDBCQSwg MHgxMDA0LCAweDc5ODAsIDB4MDBCQywgMHgxMDA0LCAweEJBMDEsIDB4OTAx MiwKKyAgICAweDBDMTIsIDB4NDAwMSwgMHgwQzA1LCAweDQwMDMsIDB4MEMw NiwgMHg0MDA0LCAweDEwMTEsIDB4QkZCMCwgMHgwMUZGLAorICAgIDB4OTAx MiwgMHgwQzEyLCAweDQwMDYsIDB4QkMyMCwgMHhFRjAwLCAweEFFMjYsIDB4 MTAyOCwgMHg2OTcwLCAweEJGRDAsCisgICAgMHgwMDAxLCAweDkwNzAsIDB4 RTM4OCwgMHgwMDdBLCAweEFFMjgsIDB4MDAwMCwgMHhFRjAwLCAweEFFNzAs IDB4MDMwMCwgCisgICAgMHgwQzcwLCAweEIwMEMsIDB4QUU1QSwgMHgwMDAw LCAweEVGMDAsIDB4N0E4MCwgMHgwMzhBLCAweDY5N0YsIDB4QjgwMSwKKyAg ICAweDkwN0YsIDB4MDA1NiwgMHg4Qjg4LCAweDBDQTAsIDB4QjAwOCwgMHhB RjcxLCAweEIwMDAsIDB4NEU3MSwgMHhFMjAwLAorICAgIDB4MDBGMywgMHhB RTU2LCAweDEwNTcsIDB4MDA1NiwgMHgwQ0EwLCAweEIwMDgsIDB4ODA1Niwg MHg3OTgwLCAweDAzQTEsCisgICAgMHgwODEwLCAweEJGQTAsIDB4MTA1OSwg MHhFMzA0LCAweDAzQTEsIDB4ODA1NiwgMHg3OTgwLCAweDAzQTEsIDB4N0E4 MCwKKyAgICAweDAzOEEsIDB4QkYwMSwgMHhCRTQzLCAweEJFNTksIDB4OTA3 QywgMHg2OTM3LCAweEUzODgsIDB4MDEwRCwgMHhCQTAxLAorICAgIDB4RTMw OCwgMHgwMTBDLCAweEFFNzEsIDB4MDAwNCwgMHgwQzcxLCAweDUwMDAsIDB4 NjkzNiwgMHg5MDM3LCAweEJGMEEsCisgICAgMHgxMDlFLCAweDhCOEEsIDB4 QUY4MCwgMHg4MDE0LCAweDRDODAsIDB4QkYwQSwgMHgwNTYwLCAweEY1MDAs IDB4QkYwQSwKKyAgICAweDA1MjAsIDB4QjkwMCwgMHhCQjE3LCAweDkwQTAs IDB4NjkxNywgMHhFMzg4LCAweDAxNDgsIDB4MEQxNywgMHhFMTAwLAorICAg IDB4MDEyNywgMHhCRjBDLCAweDA1NzgsIDB4QkYwRCwgMHgwNTdDLCAweDc5 ODAsIDB4MDEyQiwgMHhCRjBDLCAweDA1MzgsCisgICAgMHhCRjBELCAweDA1 M0MsIDB4NjkwMCwgMHhFMzA4LCAweDAxMzUsIDB4OEI4QywgMHhCRTU5LCAw eEJCMDcsIDB4OTBBMCwKKyAgICAweEJDMjAsIDB4Nzk4MCwgMHgwMTU3LCAw eDAzMEMsIDB4OEI4QiwgMHhCOTAzLCAweDg4MDksIDB4QkVDNiwgMHgwMTNF LAorICAgIDB4NjlBQywgMHg5MEFCLCAweDY5QUQsIDB4OTBBQiwgMHgwODEz LCAweDY2MEEsIDB4RTM0NCwgMHgwMTQ0LCAweDAzMDksCisgICAgMHg4MzBD LCAweEJDMjAsIDB4Nzk4MCwgMHgwMTU3LCAweDY5NTUsIDB4RTM4OCwgMHgw MTU3LCAweDdDMzgsIDB4QkYwQiwKKyAgICAweDA1NzgsIDB4RjUwMCwgMHhC RjBCLCAweDA1MzgsIDB4QjkwNywgMHg4ODA5LCAweEJFQzYsIDB4MDE1Niwg MHgxMEFCLAorICAgIDB4OTBBQSwgMHg2OTc0LCAweEUzODgsIDB4MDE2Mywg MHhBRTcyLCAweDA1NDAsIDB4RjUwMCwgMHhBRTcyLCAweDA1MDAsCisgICAg MHhBRTYxLCAweDEwM0IsIDB4N0E4MCwgMHgwMkY2LCAweDY5NzgsIDB4RTM4 OCwgMHgwMTgyLCAweDhCOEMsIDB4QkYwQywKKyAgICAweDA1NjAsIDB4RTUw MCwgMHg3QzQwLCAweDA4MTQsIDB4QkEyMCwgMHg4ODEyLCAweDczM0QsIDB4 N0E4MCwgMHgwMzgwLAorICAgIDB4NzMzRSwgMHg3QTgwLCAweDAzODAsIDB4 OEI4QywgMHhCRjBDLCAweDA1NkMsIDB4RTUwMCwgMHg3QzQwLCAweDA4MTQs CisgICAgMHhCQTJDLCAweDg4MTIsIDB4NzMzRiwgMHg3QTgwLCAweDAzODAs IDB4NzM0MCwgMHg3QTgwLCAweDAzODAsIDB4Njk3NSwKKyAgICAweEUzODgs IDB4MDE4RSwgMHhBRTcyLCAweDA1NDgsIDB4RjUwMCwgMHhBRTcyLCAweDA1 MDgsIDB4QUU2MSwgMHgxMDQxLAorICAgIDB4N0E4MCwgMHgwMkY2LCAweDY5 NzksIDB4RTM4OCwgMHgwMUFELCAweDhCOEMsIDB4QkYwQywgMHgwNTYwLCAw eEU1MDAsCisgICAgMHg3QzQwLCAweDA4MTQsIDB4QkExOCwgMHg4ODEyLCAw eDczNDMsIDB4N0E4MCwgMHgwMzgwLCAweDczNDQsIDB4N0E4MCwKKyAgICAw eDAzODAsIDB4OEI4QywgMHhCRjBDLCAweDA1NkMsIDB4RTUwMCwgMHg3QzQw LCAweDA4MTQsIDB4QkEyNCwgMHg4ODEyLAorICAgIDB4NzM0NSwgMHg3QTgw LCAweDAzODAsIDB4NzM0NiwgMHg3QTgwLCAweDAzODAsIDB4Njk3NiwgMHhF Mzg4LCAweDAxQjksCisgICAgMHhBRTcyLCAweDA1NTgsIDB4RjUwMCwgMHhB RTcyLCAweDA1MTgsIDB4QUU2MSwgMHgxMDQ3LCAweDdBODAsIDB4MDJGNiwK KyAgICAweDY5N0EsIDB4RTM4OCwgMHgwMUQ4LCAweDhCOEMsIDB4QkYwQywg MHgwNTYwLCAweEU1MDAsIDB4N0M0MCwgMHgwODE0LAorICAgIDB4QkEwOCwg MHg4ODEyLCAweDczNDksIDB4N0E4MCwgMHgwMzgwLCAweDczNEEsIDB4N0E4 MCwgMHgwMzgwLCAweDhCOEMsCisgICAgMHhCRjBDLCAweDA1NkMsIDB4RTUw MCwgMHg3QzQwLCAweDA4MTQsIDB4QkExNCwgMHg4ODEyLCAweDczNEIsIDB4 N0E4MCwKKyAgICAweDAzODAsIDB4NzM0QywgMHg3QTgwLCAweDAzODAsIDB4 QkMyMSwgMHhBRTFDLCAweDEwOTAsIDB4OEI4QSwgMHhCRjBBLAorICAgIDB4 MDU2MCwgMHhFNTAwLCAweDdDNDAsIDB4MDgxMiwgMHhCODA0LCAweDg4MTMs IDB4OEI4RCwgMHhCRjBELCAweDA1NkMsCisgICAgMHhFNTAwLCAweDdDNDAs IDB4MDgxNSwgMHhCODA0LCAweDg4MTEsIDB4N0E4MCwgMHgwMzRBLCAweDhC OEEsIDB4QkYwQSwKKyAgICAweDA1NjAsIDB4RTUwMCwgMHg3QzQwLCAweDcz MUYsIDB4QjkwMywgMHg4ODA5LCAweEJFQzYsIDB4MDFGOSwgMHg1NDhBLCAK KyAgICAweEJFMDMsIDB4OThBMCwgMHg3MzIwLCAweEI5MDMsIDB4ODgwOSwg MHhCRUM2LCAweDAyMDEsIDB4NTQ4QSwgMHhCRTAzLAorICAgIDB4OThBMCwg MHgxRjIwLCAweDJGMUYsIDB4OTgyNiwgMHhCQzIwLCAweDY5MzUsIDB4RTM4 OCwgMHgwM0ExLCAweDY5MzMsCisgICAgMHhCODAxLCAweDkwMzMsIDB4QkZB MCwgMHgwMkVFLCAweEUzMDgsIDB4MDNBMSwgMHg5MDMzLCAweEJGMDAsIDB4 Njk1MSwKKyAgICAweEUzODgsIDB4MDIxRiwgMHg3MzM0LCAweEJFODAsIDB4 NTc2MCwgMHhCRTAzLCAweDlGN0UsIDB4QkU1OSwgMHg5MDM0LAorICAgIDB4 Njk3RSwgMHgwRDUxLCAweDkwMTMsIDB4QkMyMCwgMHg2OTVDLCAweEUzODgs IDB4MDNBMSwgMHg3MzVFLCAweEJFODAsCisgICAgMHg1NzYwLCAweEJFMDMs IDB4OUY3RSwgMHhCRTU5LCAweDkwNUUsIDB4Njk3RSwgMHgwRDVDLCAweDkw MTMsIDB4Nzk4MCwKKyAgICAweDAzQTEsIDB4N0E4MCwgMHgwMzhBLCAweEJG MDEsIDB4QkU0MywgMHg2OTc3LCAweEUzODgsIDB4MDI0RSwgMHhBRTYxLAor ICAgIDB4MTA0RCwgMHgwMDYxLCAweDhCODgsIDB4Njk4MCwgMHhFMzg4LCAw eDAyNEUsIDB4OTA3MSwgMHgwRDcxLCAweDAwMEIsCisgICAgMHhBRkEwLCAw eDgwMTAsIDB4QUZBMCwgMHg4MDEwLCAweDA4MTAsIDB4NjYwQSwgMHhFMzA4 LCAweDAyNDksIDB4MDAwOSwKKyAgICAweDA4MTAsIDB4NjYwQywgMHhFMzg4 LCAweDAyNEUsIDB4ODAwQiwgMHhCQzIwLCAweDY5N0IsIDB4RTM4OCwgMHgw M0ExLAorICAgIDB4QkYwQSwgMHgxMDlFLCAweDhCOEEsIDB4QUY4MCwgMHg4 MDE0LCAweDRDODAsIDB4RTEwMCwgMHgwMjY2LCAweDY5N0MsCisgICAgMHhC RjkwLCAweDA1NjAsIDB4OTA3MiwgMHgwMzcyLCAweDY5N0MsIDB4QkY5MCwg MHgwNTY0LCAweDkwNzMsIDB4MDQ3MywKKyAgICAweDc5ODAsIDB4MDI3MCwg MHg2OTdDLCAweEJGOTAsIDB4MDUyMCwgMHg5MDcyLCAweDAzNzIsIDB4Njk3 QywgMHhCRjkwLAorICAgIDB4MDUyNCwgMHg5MDczLCAweDA0NzMsIDB4Njk3 QywgMHhCODAxLCAweDkwN0MsIDB4QkYwQSwgMHgxMEZELCAweDhCOEEsCisg ICAgMHhBRjgwLCAweDgwMTAsIDB4NzM0RiwgMHg1NDhBLCAweEJFMDMsIDB4 OTg4MCwgMHhCQzIxLCAweDczMjYsIDB4NTQ4QiwKKyAgICAweEJFMDMsIDB4 NjE4QiwgMHg5ODhDLCAweEJFMDMsIDB4NjE4MCwgMHg5ODgwLCAweDc5ODAs IDB4MDNBMSwgMHg3QTgwLAorICAgIDB4MDM4QSwgMHgwRDI4LCAweDQ3MTEs IDB4RTEwMCwgMHgwMkJFLCAweEFGMTIsIDB4NDAwNiwgMHg2OTEyLCAweEJG QjAsCisgICAgMHgwQzAwLCAweEUzODgsIDB4MDJCNiwgMHhCRkEwLCAweDA4 MDAsIDB4RTM4OCwgMHgwMkIyLCAweDY5MTIsIDB4QkZCMCwKKyAgICAweDBD MDAsIDB4QkZBMCwgMHgwNDAwLCAweEUzODgsIDB4MDJBMywgMHg2OTA5LCAw eDkwMEIsIDB4Nzk4MCwgMHgwMkE1LAorICAgIDB4QUYwQiwgMHg0MDA1LCAw eDY5MDEsIDB4OTAwNSwgMHg2OTAyLCAweDkwMDYsIDB4NDMxMSwgMHhFMTAw LCAweDAyRUQsCisgICAgMHg2OTExLCAweEJGQzAsIDB4MjAwMCwgMHg5MDEx LCAweDc5ODAsIDB4MDJFRCwgMHg2OTA5LCAweDkwMEIsIDB4Nzk4MCwKKyAg ICAweDAyQjgsIDB4QUYwQiwgMHg0MDA1LCAweEFGMDUsIDB4NDAwMywgMHhB RjA2LCAweDQwMDQsIDB4Nzk4MCwgMHgwMkVELAorICAgIDB4QUYxMiwgMHg0 MDA2LCAweDY5MTIsIDB4QkZCMCwgMHgwQzAwLCAweEUzODgsIDB4MDJFNywg MHhCRkEwLCAweDA4MDAsCisgICAgMHhFMzg4LCAweDAyRTMsIDB4NjkxMiwg MHhCRkIwLCAweDBDMDAsIDB4QkZBMCwgMHgwNDAwLCAweEUzODgsIDB4MDJE NCwKKyAgICAweDY5MEQsIDB4OTAxMCwgMHg3OTgwLCAweDAyRDYsIDB4QUYx MCwgMHg0MDA1LCAweDY5MDEsIDB4OTAwNSwgMHg2OTAyLAorICAgIDB4OTAw NiwgMHg0MzExLCAweEUxMDAsIDB4MDJFRCwgMHg2OTExLCAweEJGQzAsIDB4 MjAwMCwgMHg5MDExLCAweDc5ODAsCisgICAgMHgwMkVELCAweDY5MEQsIDB4 OTAxMCwgMHg3OTgwLCAweDAyRTksIDB4QUYxMCwgMHg0MDA1LCAweEFGMDUs IDB4NDAwMywKKyAgICAweEFGMDYsIDB4NDAwNCwgMHhCQzIwLCAweDY5NzAs IDB4OTA3MSwgMHg3QTgwLCAweDAwNzgsIDB4Njk3MSwgMHg5MDcwLAorICAg IDB4Nzk4MCwgMHgwM0ExLCAweEJDMjAsIDB4MDM2MSwgMHg4QjhCLCAweDY5 ODAsIDB4RUY4OCwgMHgwMjcyLCAweDAzNzIsCisgICAgMHg3ODA0LCAweDkw NzEsIDB4MEQ3MSwgMHg4QjhBLCAweDAwMEIsIDB4QjkwMywgMHg4ODA5LCAw eEJFQzYsIDB4MDMwOSwKKyAgICAweDY5QTgsIDB4OTBBQiwgMHg2OUE4LCAw eDkwQUEsIDB4MDgxMCwgMHg2NjBBLCAweEUzNDQsIDB4MDMwRiwgMHgwMDA5 LAorICAgIDB4MDgxMCwgMHg2NjBDLCAweEUzODgsIDB4MDMxNCwgMHg4MDBC LCAweEJDMjAsIDB4Njk2MSwgMHhCODAxLCAweDkwNjEsCisgICAgMHg3OTgw LCAweDAyRjcsIDB4N0E4MCwgMHgwMzhBLCAweDVEMzUsIDB4MDAwMSwgMHg2 OTM0LCAweEI4MDEsIDB4OTAzNCwKKyAgICAweEJGMEEsIDB4MTA5RSwgMHg4 QjhBLCAweEFGODAsIDB4ODAxNCwgMHg0ODgwLCAweEFFNzIsIDB4MDU1MCwg MHhGNTAwLAorICAgIDB4QUU3MiwgMHgwNTEwLCAweEFFNjEsIDB4MTA1MSwg MHg3QTgwLCAweDAyRjYsIDB4Nzk4MCwgMHgwM0ExLCAweDdBODAsCisgICAg MHgwMzhBLCAweDVEMzUsIDB4MDAwMiwgMHg2OTVFLCAweEI4MDEsIDB4OTA1 RSwgMHhCRjBBLCAweDEwOUUsIDB4OEI4QSwKKyAgICAweEFGODAsIDB4ODAx NCwgMHg0NzgwLCAweEFFNzIsIDB4MDU1OCwgMHhGNTAwLCAweEFFNzIsIDB4 MDUxOCwgMHhBRTYxLAorICAgIDB4MTA1QywgMHg3QTgwLCAweDAyRjYsIDB4 Nzk4MCwgMHgwM0ExLCAweDAwMUMsIDB4OEI4OCwgMHg2OTgwLCAweEVGODgs CisgICAgMHg5MDFELCAweDBEMUQsIDB4MTAwRiwgMHg2NjEwLCAweEUzOEMs IDB4MDM1OCwgMHg2OTBFLCAweDY2MTAsIDB4NjIwRiwKKyAgICAweDY2MEQs IDB4QkEwRiwgMHhFMzAxLCAweDAzN0EsIDB4MDQxMCwgMHg4QjhBLCAweEI5 MDMsIDB4ODgwOSwgMHhCRUM2LAorICAgIDB4MDM2QywgMHg2QThDLCAweDYx QUEsIDB4OThBQiwgMHg2QThDLCAweDYxQUIsIDB4OThBRCwgMHg2QThDLCAw eDYxQUQsCisgICAgMHg5OEE5LCAweDZBOEMsIDB4NjFBOSwgMHg5OEFBLCAw eDdDMDQsIDB4OEI4QiwgMHg3QzA0LCAweDhCOEQsIDB4N0MwNCwKKyAgICAw eDhCODksIDB4N0MwNCwgMHgwODE0LCAweDY2MEUsIDB4RTMwOCwgMHgwMzc5 LCAweDA0MEQsIDB4ODQxMCwgMHhCQzIxLAorICAgIDB4NjkxQywgMHhCODAx LCAweDkwMUMsIDB4Nzk4MCwgMHgwMzRBLCAweEI5MDMsIDB4ODgwOSwgMHg4 QjhBLCAweEJFQzYsCisgICAgMHgwMzg4LCAweDU0QUMsIDB4QkUwMywgMHg2 MThDLCAweDk4QUEsIDB4RUYwMCwgMHhCQzIwLCAweEJFNDYsIDB4MDgwOSwK KyAgICAweDkwNkIsIDB4MDgwQSwgMHg5MDZDLCAweDA4MEIsIDB4OTA2RCwg MHgwODFBLCAweDkwNjIsIDB4MDgxQiwgMHg5MDYzLAorICAgIDB4MDgxRSwg MHg5MDY0LCAweEJFNTksIDB4ODgxRSwgMHg4MDY1LCAweDgxNjYsIDB4ODI2 NywgMHg4MzY4LCAweDg0NjksCisgICAgMHg4NTZBLCAweEVGMDAsIDB4QkMy MCwgMHg2OTZCLCAweDg4MDksIDB4Njk2QywgMHg4ODBBLCAweDY5NkQsIDB4 ODgwQiwKKyAgICAweDY5NjIsIDB4ODgxQSwgMHg2OTYzLCAweDg4MUIsIDB4 Njk2NCwgMHg4ODFFLCAweDAwNjUsIDB4MDE2NiwgMHgwMjY3LAorICAgIDB4 MDM2OCwgMHgwNDY5LCAweDA1NkEsIDB4QkUzQSwKK307CisKKy8qCisgKiBN SU5JIFNhbXBsZSBSYXRlIENvbnZlcnNpb24KKyAqLworCit1aW50MTZfdCBn YXdfbWluaXNyY19jb2RlXzA0MDBbXSA9IHsKKyAgICAweEJGODAsIDB4MTAx RSwgMHg5MDZFLCAweDAwNkUsIDB4OEI4OCwgMHg2OTgwLCAweEVGODgsIDB4 OTA2RiwgMHgwRDZGLAorICAgIDB4NjkwMCwgMHhFQjA4LCAweDA0MTIsIDB4 QkMyMCwgMHg2OTZFLCAweEI4MDEsIDB4OTA2RSwgMHg3OTgwLCAweDA0MDMs CisgICAgMHhCOTBFLCAweDg4MDcsIDB4QkU0MywgMHhCRjAxLCAweEJFNDcs IDB4QkU0MSwgMHg3QTgwLCAweDAwMkEsIDB4QkU0MCwKKyAgICAweDMwMjks IDB4RUZDQywgMHhCRTQxLCAweDdBODAsIDB4MDAyOCwgMHhCRTQwLCAweDMw MjgsIDB4RUZDQywgMHg2OTA3LAorICAgIDB4RTMwOCwgMHgwNDJBLCAweDY5 MDksIDB4OTAyQywgMHg3OTgwLCAweDA0MkMsIDB4NjkwRCwgMHg5MDJDLCAw eDEwMDksCisgICAgMHg4ODFBLCAweDEwMEEsIDB4QkEwMSwgMHg4ODFCLCAw eDEwMEQsIDB4ODgxQywgMHgxMDBFLCAweEJBMDEsIDB4ODgxRCwKKyAgICAw eEJGODAsIDB4MDBFRCwgMHg4ODFFLCAweDA1MEMsIDB4MDEyNCwgMHhCOTA0 LCAweDkwMjcsIDB4NjkxOCwgMHhFMzA4LAorICAgIDB4MDRCMywgMHg5MDJE LCAweDY5MTMsIDB4QkZBMCwgMHg3NTk4LCAweEY3MDQsIDB4QUUyRCwgMHgw MEZGLCAweDhCOEQsCisgICAgMHg2OTE5LCAweEUzMDgsIDB4MDQ2MywgMHg2 OTFBLCAweEUzMDgsIDB4MDQ1NiwgMHhCOTA3LCAweDg4MDksIDB4QkVDNiwK KyAgICAweDA0NTMsIDB4MTBBOSwgMHg5MEFELCAweDc5ODAsIDB4MDQ3Qywg MHhCOTAzLCAweDg4MDksIDB4QkVDNiwgMHgwNDYwLAorICAgIDB4MTg4OSwg MHg2QzIyLCAweDkwQUQsIDB4MTBBOSwgMHg2RTIzLCAweDZDMjIsIDB4OTBB RCwgMHg3OTgwLCAweDA0N0MsCisgICAgMHgxMDFBLCAweEUzMDgsIDB4MDQ2 RiwgMHhCOTAzLCAweDg4MDksIDB4QkVDNiwgMHgwNDZDLCAweDEwQTksIDB4 OTBBMCwKKyAgICAweDkwQUQsIDB4Nzk4MCwgMHgwNDdDLCAweEI5MDEsIDB4 ODgwOSwgMHhCRUM2LCAweDA0N0IsIDB4MTg4OSwgMHg2QzIyLAorICAgIDB4 OTBBMCwgMHg5MEFELCAweDEwQTksIDB4NkUyMywgMHg2QzIyLCAweDkwQTAs IDB4OTBBRCwgMHg2OTJELCAweEUzMDgsCisgICAgMHgwNDlDLCAweDAxMjQs IDB4QjcwMywgMHhCOTAyLCAweDg4MTgsIDB4OEI4OSwgMHgwMjJDLCAweDEw OEEsIDB4N0MwNCwKKyAgICAweDkwQTAsIDB4NjkyQiwgMHg4ODFGLCAweDdF ODAsIDB4MDU1QiwgMHg2OTJBLCAweDg4MDksIDB4OEI4OSwgMHg5OUEwLAor ICAgIDB4MTA4QSwgMHg5MEEwLCAweDY5MkIsIDB4ODgxRiwgMHg3RTgwLCAw eDA1NUIsIDB4NjkyQSwgMHg4ODA5LCAweDhCODksCisgICAgMHg5OUFGLCAw eDdCOTksIDB4MDQ4NCwgMHgwMTI0LCAweDA2MEYsIDB4MTAxQiwgMHgyMDEz LCAweDkwMUIsIDB4QkZBMCwKKyAgICAweDdGRkYsIDB4RTM0NCwgMHgwNEFD LCAweDkwMUIsIDB4OEI4OSwgMHg3QTgwLCAweDA1MUEsIDB4NjkyNywgMHhC QTAxLAorICAgIDB4OTAyNywgMHg3QTgwLCAweDA1MjMsIDB4NjkyNywgMHhF MzA4LCAweDA0OUUsIDB4Nzk4MCwgMHgwNTBGLCAweDA2MjQsCisgICAgMHgx MDI2LCAweDIwMTMsIDB4OTAyNiwgMHhCRkEwLCAweDdGRkYsIDB4RTMwNCwg MHgwNEMwLCAweDhCOEQsIDB4N0E4MCwKKyAgICAweDA1MUEsIDB4Nzk4MCwg MHgwNEI0LCAweDkwMjYsIDB4MTAxMywgMHgzMDI2LCAweDkwMUIsIDB4OEI4 RCwgMHg3QTgwLAorICAgIDB4MDUxQSwgMHg3QTgwLCAweDA1MjMsIDB4MTAy NywgMHhCQTAxLCAweDkwMjcsIDB4RTMwOCwgMHgwNEI0LCAweDAxMjQsCisg ICAgMHgwNjBGLCAweDhCODksIDB4NjkxQSwgMHhFMzA4LCAweDA0RUEsIDB4 NjkxOSwgMHhFMzg4LCAweDA0RTAsIDB4QjkwMywKKyAgICAweDg4MDksIDB4 QkVDNiwgMHgwNERELCAweDFGQTAsIDB4MkZBRSwgMHg5OEE5LCAweDc5ODAs IDB4MDUwRiwgMHhCOTAxLAorICAgIDB4ODgxOCwgMHhCOTA3LCAweDg4MDks IDB4QkVDNiwgMHgwNEU3LCAweDEwRUUsIDB4OTBBOSwgMHg3OTgwLCAweDA1 MEYsCisgICAgMHg2OTE5LCAweEUzMDgsIDB4MDRGRSwgMHhCOTAzLCAweDg4 MDksIDB4QkU0NiwgMHhCRUM2LCAweDA0RkEsIDB4MTdBMCwKKyAgICAweEJF MUUsIDB4MUZBRSwgMHhCRkJGLCAweEZGMDAsIDB4QkUxMywgMHhCRkRGLCAw eDgwODAsIDB4OTlBOSwgMHhCRTQ3LAorICAgIDB4Nzk4MCwgMHgwNTBGLCAw eEI5MDEsIDB4ODgwOSwgMHhCRUM2LCAweDA1MEUsIDB4MTZBMCwgMHgyNkEw LCAweEJGQjcsCisgICAgMHhGRjAwLCAweEJFMUUsIDB4MUVBMCwgMHgyRUFF LCAweEJGQkYsIDB4RkYwMCwgMHhCRTEzLCAweEJGREYsIDB4ODA4MCwKKyAg ICAweDk5QTksIDB4ODUwQywgMHg4NjBGLCAweDY5MDcsIDB4RTM4OCwgMHgw NTE2LCAweDBEMDcsIDB4ODUxMCwgMHhCRTU5LAorICAgIDB4ODgxRSwgMHhC RTRBLCAweEVGMDAsIDB4MTAxRSwgMHg5MDFDLCAweDEwMUYsIDB4OTAxRCwg MHgxMEEwLCAweDkwMUUsCisgICAgMHgxMEEwLCAweDkwMUYsIDB4RUYwMCwg MHgxMDFFLCAweDMwMUMsIDB4OTAyMCwgMHg3MzFCLCAweDU0MjAsIDB4QkUw MywKKyAgICAweDk4MjUsIDB4MTAyNSwgMHgyMDFDLCAweDkwMjUsIDB4NzMy NSwgMHg1NDE0LCAweEJFMDMsIDB4OEI4RSwgMHg5ODgwLAorICAgIDB4Njky RiwgMHhFMzg4LCAweDA1MzksIDB4QkU1OSwgMHhCQjA3LCAweDYxODAsIDB4 OTg4MCwgMHg4QkEwLCAweDEwMUYsCisgICAgMHgzMDFELCAweDkwMjEsIDB4 NzMxQiwgMHg1NDIxLCAweEJFMDMsIDB4OTgyRSwgMHgxMDJFLCAweDIwMUQs IDB4OTAyRSwKKyAgICAweDczMkUsIDB4NTQxNSwgMHhCRTAzLCAweDk4ODAs IDB4NjkyRiwgMHhFMzg4LCAweDA1NEYsIDB4QkU1OSwgMHhCQjA3LAorICAg IDB4NjE4MCwgMHg5ODgwLCAweDhCQTAsIDB4NjkxOCwgMHhFRjA4LCAweDcz MjUsIDB4NTQxNiwgMHhCRTAzLCAweDk4QTAsCisgICAgMHg3MzJFLCAweDU0 MTcsIDB4QkUwMywgMHg5OEEwLCAweEVGMDAsIDB4OEJBMCwgMHhCRUM2LCAw eDA1NkIsIDB4QkU1OSwKKyAgICAweEJCMDQsIDB4QUE5MCwgMHhCRTA0LCAw eEJFMUUsIDB4OTlFMCwgMHg4QkUwLCAweDY5QTAsIDB4OTBEMCwgMHg2OUEw LCAKKyAgICAweDkwRDAsIDB4MDgxRiwgMHhCODA1LCAweDg4MUYsIDB4OEI5 MCwgMHg2OUEwLCAweDkwRDAsIDB4NjlBMCwgMHg5MDkwLAorICAgIDB4OEJE MCwgMHg4QkQ4LCAweEJFMUYsIDB4RUYwMCwgMHgwMDAwLCAweDAwMDAsIDB4 MDAwMCwgMHgwMDAwLCAweDAwMDAsCisgICAgMHgwMDAwLCAweDAwMDAsIDB4 MDAwMCwgMHgwMDAwLCAweDAwMDAsIDB4MDAwMCwgMHgwMDAwLCAweDAwMDAs IDB4MDAwMCwKKyAgICAweDAwMDAsIDB4MDAwMCwgMHgwMDAwLCAweDAwMDAs IDB4MDAwMCwgMHgwMDAwLAorfTsKKwordWludDE2X3QgbWluaXNyY19scGZb MTBdID0geworCTBYMDc0MywgMFgxMTA0LCAwWDBBNEMsIDBYRjg4RCwgMFgy NDJDLAorCTBYMTAyMywgMFgxQUE5LCAwWDBCNjAsIDBYRUZERCwgMFgxODZG Cit9OworCisjZW5kaWYJLyogIV9ERVZfU09VTkRfUENJX0FMTEVHUk9fQ09E RV9IICovCmRpZmYgLXJ1TiBkZXYvc291bmQvcGNpLmVtdTEway9hbGxlZ3Jv X3JlZy5oIGRldi9zb3VuZC9wY2kvYWxsZWdyb19yZWcuaAotLS0gZGV2L3Nv dW5kL3BjaS5lbXUxMGsvYWxsZWdyb19yZWcuaAkxOTcwLTAxLTAxIDAwOjAw OjAwLjAwMDAwMDAwMCArMDAwMAorKysgZGV2L3NvdW5kL3BjaS9hbGxlZ3Jv X3JlZy5oCTIwMTEtMDEtMTIgMTA6MDM6MjEuMDAwMDAwMDAwICswMDAwCkBA IC0wLDAgKzEsNzg5IEBACisvKi0KKyAqIENvcHlyaWdodCAoYykgMTk5Ni0y MDA4LCA0RnJvbnQgVGVjaG5vbG9naWVzCisgKiBDb3B5cmlnaHQgKEMpIDE5 OTItMjAwMCAgRG9uIEtpbSAoZG9uLmtpbUBlc3N0ZWNoLmNvbSkKKyAqIEFs bCByaWdodHMgcmVzZXJ2ZWQuCisgKgorICogUmVkaXN0cmlidXRpb24gYW5k IHVzZSBpbiBzb3VyY2UgYW5kIGJpbmFyeSBmb3Jtcywgd2l0aCBvciB3aXRo b3V0CisgKiBtb2RpZmljYXRpb24sIGFyZSBwZXJtaXR0ZWQgcHJvdmlkZWQg dGhhdCB0aGUgZm9sbG93aW5nIGNvbmRpdGlvbnMKKyAqIGFyZSBtZXQ6Cisg KiAxLiBSZWRpc3RyaWJ1dGlvbnMgb2Ygc291cmNlIGNvZGUgbXVzdCByZXRh aW4gdGhlIGFib3ZlIGNvcHlyaWdodAorICogICAgbm90aWNlLCB0aGlzIGxp c3Qgb2YgY29uZGl0aW9ucyBhbmQgdGhlIGZvbGxvd2luZyBkaXNjbGFpbWVy LgorICogMi4gUmVkaXN0cmlidXRpb25zIGluIGJpbmFyeSBmb3JtIG11c3Qg cmVwcm9kdWNlIHRoZSBhYm92ZSBjb3B5cmlnaHQKKyAqICAgIG5vdGljZSwg dGhpcyBsaXN0IG9mIGNvbmRpdGlvbnMgYW5kIHRoZSBmb2xsb3dpbmcgZGlz Y2xhaW1lciBpbiB0aGUKKyAqICAgIGRvY3VtZW50YXRpb24gYW5kL29yIG90 aGVyIG1hdGVyaWFscyBwcm92aWRlZCB3aXRoIHRoZSBkaXN0cmlidXRpb24u CisgKgorICogVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQVVU SE9SIEFORCBDT05UUklCVVRPUlMgYGBBUyBJUycnIEFORAorICogQU5ZIEVY UFJFU1MgT1IgSU1QTElFRCBXQVJSQU5USUVTLCBJTkNMVURJTkcsIEJVVCBO T1QgTElNSVRFRCBUTywgVEhFCisgKiBJTVBMSUVEIFdBUlJBTlRJRVMgT0Yg TUVSQ0hBTlRBQklMSVRZIEFORCBGSVRORVNTIEZPUiBBIFBBUlRJQ1VMQVIg UFVSUE9TRQorICogQVJFIERJU0NMQUlNRUQuICBJTiBOTyBFVkVOVCBTSEFM TCBUSEUgQVVUSE9SIE9SIENPTlRSSUJVVE9SUyBCRSBMSUFCTEUKKyAqIEZP UiBBTlkgRElSRUNULCBJTkRJUkVDVCwgSU5DSURFTlRBTCwgU1BFQ0lBTCwg RVhFTVBMQVJZLCBPUiBDT05TRVFVRU5USUFMCisgKiBEQU1BR0VTIChJTkNM VURJTkcsIEJVVCBOT1QgTElNSVRFRCBUTywgUFJPQ1VSRU1FTlQgT0YgU1VC U1RJVFVURSBHT09EUworICogT1IgU0VSVklDRVM7IExPU1MgT0YgVVNFLCBE QVRBLCBPUiBQUk9GSVRTOyBPUiBCVVNJTkVTUyBJTlRFUlJVUFRJT04pCisg KiBIT1dFVkVSIENBVVNFRCBBTkQgT04gQU5ZIFRIRU9SWSBPRiBMSUFCSUxJ VFksIFdIRVRIRVJJTiBDT05UUkFDVCwgU1RSSUNUCisgKiBMSUFCSUxJVFks IE9SIFRPUlQgKElOQ0xVRElORyBORUdMSUdFTkNFIE9SIE9USEVSV0lTRSkg QVJJU0lORyBJTiBBTlkgV0FZCisgKiBPVVQgT0YgVEhFIFVTRSBPRiBUSElT IFNPRlRXQVJFLCBFVkVOIElGIEFEVklTRUQgT0YgVEhFIFBPU1NJQklMSVRZ IE9GCisgKiBTVUNIIERBTUFHRS4KKyAqCisgKiAkRnJlZUJTRCQKKyAqLwor CisvKi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQorICogICAgICAg ICAgICAgIENvcHlyaWdodCAoQykgMTk5Ny0xOTk5LCBFU1MgVGVjaG5vbG9n eSwgSW5jLgorICogVGhpcyBzb3VyY2UgY29kZSwgaXRzIGNvbXBpbGVkIG9i amVjdCBjb2RlLCBhbmQgaXRzIGFzc29jaWF0ZWQgZGF0YSBzZXRzCisgKiBh cmUgY29weXJpZ2h0IChDKSAxOTk3LTE5OTkgRVNTIFRlY2hub2xvZ3ksIElu Yy4KKyAqLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tCisgKiBGb3Ig cHJhY3RpY2FsIHB1cnBvc2VzIHdlIG9ubHkgaW5jbHVkZSBuZWNlc3Nhcnkg ZGVmaW5pdGlvbnMgZm9yIGN1cnJlbnQKKyAqICBNYWVzdHJvMyBkcml2ZXIu IEZpbGVzIHVzZWQgZm9yIHRoaXMgaGVhZGVyIGluY2x1ZGU6CisgKiAgICBo YXJkd2FyZS5oCisgKiAgICBrZXJuZWwuaCBhbmQgaGNrZXJuZWwuaAorICog ICAgc3JjbWdyLmgKKyAqLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t CisgKi8KKworI2lmbmRlZiBfREVWX1NPVU5EX1BDSV9BTExFR1JPX1JFR19I CisjZGVmaW5lIF9ERVZfU09VTkRfUENJX0FMTEVHUk9fUkVHX0gKKworLyog QWxsZWdybyBQQ0kgY29uZmlndXJhdGlvbiByZWdpc3RlcnMgKi8KKyNkZWZp bmUgUENJX0xFR0FDWV9BVURJT19DVFJMICAgMHg0MAorI2RlZmluZSBTT1VO RF9CTEFTVEVSX0VOQUJMRSAgICAweDAwMDAwMDAxCisjZGVmaW5lIEZNX1NZ TlRIRVNJU19FTkFCTEUgICAgIDB4MDAwMDAwMDIKKyNkZWZpbmUgR0FNRV9Q T1JUX0VOQUJMRSAgICAgICAgMHgwMDAwMDAwNAorI2RlZmluZSBNUFU0MDFf SU9fRU5BQkxFICAgICAgICAweDAwMDAwMDA4CisjZGVmaW5lIE1QVTQwMV9J UlFfRU5BQkxFICAgICAgIDB4MDAwMDAwMTAKKyNkZWZpbmUgQUxJQVNfMTBC SVRfSU8gICAgICAgICAgMHgwMDAwMDAyMAorI2RlZmluZSBTQl9ETUFfTUFT SyAgICAgICAgICAgICAweDAwMDAwMEMwCisjZGVmaW5lIFNCX0RNQV8wICAg ICAgICAgICAgICAgIDB4MDAwMDAwNDAKKyNkZWZpbmUgU0JfRE1BXzEgICAg ICAgICAgICAgICAgMHgwMDAwMDA0MAorI2RlZmluZSBTQl9ETUFfUiAgICAg ICAgICAgICAgICAweDAwMDAwMDgwCisjZGVmaW5lIFNCX0RNQV8zICAgICAg ICAgICAgICAgIDB4MDAwMDAwQzAKKyNkZWZpbmUgU0JfSVJRX01BU0sgICAg ICAgICAgICAgMHgwMDAwMDcwMAorI2RlZmluZSBTQl9JUlFfNSAgICAgICAg ICAgICAgICAweDAwMDAwMDAwCisjZGVmaW5lIFNCX0lSUV83ICAgICAgICAg ICAgICAgIDB4MDAwMDAxMDAKKyNkZWZpbmUgU0JfSVJRXzkgICAgICAgICAg ICAgICAgMHgwMDAwMDIwMAorI2RlZmluZSBTQl9JUlFfMTAgICAgICAgICAg ICAgICAweDAwMDAwMzAwCisjZGVmaW5lIE1JRElfSVJRX01BU0sgICAgICAg ICAgIDB4MDAwMDM4MDAKKyNkZWZpbmUgU0VSSUFMX0lSUV9FTkFCTEUgICAg ICAgMHgwMDAwNDAwMAorI2RlZmluZSBESVNBQkxFX0xFR0FDWSAgICAgICAg ICAweDAwMDA4MDAwCisKKyNkZWZpbmUgUENJX0FMTEVHUk9fQ09ORklHICAg ICAgMHg1MAorI2RlZmluZSBTQl9BRERSXzI0MCAgICAgICAgICAgICAweDAw MDAwMDA0CisjZGVmaW5lIE1QVV9BRERSX01BU0sgICAgICAgICAgIDB4MDAw MDAwMTgKKyNkZWZpbmUgTVBVX0FERFJfMzMwICAgICAgICAgICAgMHgwMDAw MDAwMAorI2RlZmluZSBNUFVfQUREUl8zMDAgICAgICAgICAgICAweDAwMDAw MDA4CisjZGVmaW5lIE1QVV9BRERSXzMyMCAgICAgICAgICAgIDB4MDAwMDAw MTAKKyNkZWZpbmUgTVBVX0FERFJfMzQwICAgICAgICAgICAgMHgwMDAwMDAx OAorI2RlZmluZSBVU0VfUENJX1RJTUlORyAgICAgICAgICAweDAwMDAwMDQw CisjZGVmaW5lIFBPU1RFRF9XUklURV9FTkFCTEUgICAgIDB4MDAwMDAwODAK KyNkZWZpbmUgRE1BX1BPTElDWV9NQVNLICAgICAgICAgMHgwMDAwMDcwMAor I2RlZmluZSBETUFfRERNQSAgICAgICAgICAgICAgICAweDAwMDAwMDAwCisj ZGVmaW5lIERNQV9URE1BICAgICAgICAgICAgICAgIDB4MDAwMDAxMDAKKyNk ZWZpbmUgRE1BX1BDUENJICAgICAgICAgICAgICAgMHgwMDAwMDIwMAorI2Rl ZmluZSBETUFfV0JETUExNiAgICAgICAgICAgICAweDAwMDAwNDAwCisjZGVm aW5lIERNQV9XQkRNQTQgICAgICAgICAgICAgIDB4MDAwMDA1MDAKKyNkZWZp bmUgRE1BX1dCRE1BMiAgICAgICAgICAgICAgMHgwMDAwMDYwMAorI2RlZmlu ZSBETUFfV0JETUExICAgICAgICAgICAgICAweDAwMDAwNzAwCisjZGVmaW5l IERNQV9TQUZFX0dVQVJEICAgICAgICAgIDB4MDAwMDA4MDAKKyNkZWZpbmUg SElfUEVSRl9HUF9FTkFCTEUgICAgICAgMHgwMDAwMTAwMAorI2RlZmluZSBQ SUNfU05PT1BfTU9ERV8wICAgICAgICAweDAwMDAyMDAwCisjZGVmaW5lIFBJ Q19TTk9PUF9NT0RFXzEgICAgICAgIDB4MDAwMDQwMDAKKyNkZWZpbmUgU09V TkRCTEFTVEVSX0lSUV9NQVNLICAgMHgwMDAwODAwMAorI2RlZmluZSBSSU5H X0lOX0VOQUJMRSAgICAgICAgICAweDAwMDEwMDAwCisjZGVmaW5lIFNQRElG X1RFU1RfTU9ERSAgICAgICAgIDB4MDAwMjAwMDAKKyNkZWZpbmUgQ0xLX01V TFRfTU9ERV9TRUxFQ1RfMiAgMHgwMDA0MDAwMAorI2RlZmluZSBFRVBST01f V1JJVEVfRU5BQkxFICAgICAweDAwMDgwMDAwCisjZGVmaW5lIENPREVDX0RJ Ul9JTiAgICAgICAgICAgIDB4MDAxMDAwMDAKKyNkZWZpbmUgSFZfQlVUVE9O X0ZST01fR0QgICAgICAgMHgwMDIwMDAwMAorI2RlZmluZSBSRURVQ0VEX0RF Qk9VTkNFICAgICAgICAweDAwNDAwMDAwCisjZGVmaW5lIEhWX0NUUkxfRU5B QkxFICAgICAgICAgIDB4MDA4MDAwMDAKKyNkZWZpbmUgU1BESUZfRU5BQkxF ICAgICAgICAgICAgMHgwMTAwMDAwMAorI2RlZmluZSBDTEtfRElWX1NFTEVD VCAgICAgICAgICAweDA2MDAwMDAwCisjZGVmaW5lIENMS19ESVZfQllfNDgg ICAgICAgICAgIDB4MDAwMDAwMDAKKyNkZWZpbmUgQ0xLX0RJVl9CWV80OSAg ICAgICAgICAgMHgwMjAwMDAwMAorI2RlZmluZSBDTEtfRElWX0JZXzUwICAg ICAgICAgICAweDA0MDAwMDAwCisjZGVmaW5lIENMS19ESVZfUkVTRVJWRUQg ICAgICAgIDB4MDYwMDAwMDAKKyNkZWZpbmUgUE1fQ1RSTF9FTkFCTEUgICAg ICAgICAgMHgwODAwMDAwMAorI2RlZmluZSBDTEtfTVVMVF9NT0RFX1NFTEVD VCAgICAweDMwMDAwMDAwCisjZGVmaW5lIENMS19NVUxUX01PREVfU0hJRlQg ICAgIDI4CisjZGVmaW5lIENMS19NVUxUX01PREVfMCAgICAgICAgIDB4MDAw MDAwMDAKKyNkZWZpbmUgQ0xLX01VTFRfTU9ERV8xICAgICAgICAgMHgxMDAw MDAwMAorI2RlZmluZSBDTEtfTVVMVF9NT0RFXzIgICAgICAgICAweDIwMDAw MDAwCisjZGVmaW5lIENMS19NVUxUX01PREVfMyAgICAgICAgIDB4MzAwMDAw MDAKKyNkZWZpbmUgSU5UX0NMS19TRUxFQ1QgICAgICAgICAgMHg0MDAwMDAw MAorI2RlZmluZSBJTlRfQ0xLX01VTFRfUkVTRVQgICAgICAweDgwMDAwMDAw CisKKy8qIE0zICovCisjZGVmaW5lIElOVF9DTEtfU1JDX05PVF9QQ0kgICAg IDB4MDAxMDAwMDAKKyNkZWZpbmUgSU5UX0NMS19NVUxUX0VOQUJMRSAgICAg MHg4MDAwMDAwMAorCisjZGVmaW5lIFBDSV9BQ1BJX0NPTlRST0wgICAgICAg IDB4NTQKKyNkZWZpbmUgUENJX0FDUElfRDAgICAgICAgICAgICAgMHgwMDAw MDAwMAorI2RlZmluZSBQQ0lfQUNQSV9EMSAgICAgICAgICAgICAweEI0Rjcw MDAwCisjZGVmaW5lIFBDSV9BQ1BJX0QyICAgICAgICAgICAgIDB4QjRGN0I0 RjcKKworI2RlZmluZSBQQ0lfVVNFUl9DT05GSUcgICAgICAgICAweDU4Cisj ZGVmaW5lIEVYVF9QQ0lfTUFTVEVSX0VOQUJMRSAgIDB4MDAwMDAwMDEKKyNk ZWZpbmUgU1BESUZfT1VUX1NFTEVDVCAgICAgICAgMHgwMDAwMDAwMgorI2Rl ZmluZSBURVNUX1BJTl9ESVJfQ1RSTCAgICAgICAweDAwMDAwMDA0CisjZGVm aW5lIEFDOTdfQ09ERUNfVEVTVCAgICAgICAgIDB4MDAwMDAwMjAKKyNkZWZp bmUgVFJJX1NUQVRFX0JVRkZFUiAgICAgICAgMHgwMDAwMDA4MAorI2RlZmlu ZSBJTl9DTEtfMTJNSFpfU0VMRUNUICAgICAweDAwMDAwMTAwCisjZGVmaW5l IE1VTFRJX0ZVTkNfRElTQUJMRSAgICAgIDB4MDAwMDAyMDAKKyNkZWZpbmUg RVhUX01BU1RFUl9QQUlSX1NFTCAgICAgMHgwMDAwMDQwMAorI2RlZmluZSBQ Q0lfTUFTVEVSX1NVUFBPUlQgICAgICAweDAwMDAwODAwCisjZGVmaW5lIFNU T1BfQ0xPQ0tfRU5BQkxFICAgICAgIDB4MDAwMDEwMDAKKyNkZWZpbmUgRUFQ RF9EUklWRV9FTkFCTEUgICAgICAgMHgwMDAwMjAwMAorI2RlZmluZSBSRVFf VFJJX1NUQVRFX0VOQUJMRSAgICAweDAwMDA0MDAwCisjZGVmaW5lIFJFUV9M T1dfRU5BQkxFICAgICAgICAgIDB4MDAwMDgwMDAKKyNkZWZpbmUgTUlESV8x X0VOQUJMRSAgICAgICAgICAgMHgwMDAxMDAwMAorI2RlZmluZSBNSURJXzJf RU5BQkxFICAgICAgICAgICAweDAwMDIwMDAwCisjZGVmaW5lIFNCX0FVRElP X1NZTkMgICAgICAgICAgIDB4MDAwNDAwMDAKKyNkZWZpbmUgSFZfQ1RSTF9U RVNUICAgICAgICAgICAgMHgwMDEwMDAwMAorI2RlZmluZSBTT1VOREJMQVNU RVJfVEVTVCAgICAgICAweDAwNDAwMDAwCisKKyNkZWZpbmUgUENJX1VTRVJf Q09ORklHX0MgICAgICAgMHg1QworCisjZGVmaW5lIFBDSV9ERE1BX0NUUkwg ICAgICAgICAgIDB4NjAKKyNkZWZpbmUgRERNQV9FTkFCTEUgICAgICAgICAg ICAgMHgwMDAwMDAwMQorCisKKy8qIEFsbGVncm8gcmVnaXN0ZXJzICovCisj ZGVmaW5lIEhPU1RfSU5UX0NUUkwgICAgICAgICAgIDB4MTgKKyNkZWZpbmUg U0JfSU5UX0VOQUJMRSAgICAgICAgICAgMHgwMDAxCisjZGVmaW5lIE1QVTQw MV9JTlRfRU5BQkxFICAgICAgIDB4MDAwMgorI2RlZmluZSBBU1NQX0lOVF9F TkFCTEUgICAgICAgICAweDAwMTAKKyNkZWZpbmUgUklOR19JTlRfRU5BQkxF ICAgICAgICAgMHgwMDIwCisjZGVmaW5lIEhWX0lOVF9FTkFCTEUgICAgICAg ICAgIDB4MDA0MAorI2RlZmluZSBDTEtSVU5fR0VOX0VOQUJMRSAgICAgICAw eDAxMDAKKyNkZWZpbmUgSFZfQ1RSTF9UT19QTUUgICAgICAgICAgMHgwNDAw CisjZGVmaW5lIFNPRlRXQVJFX1JFU0VUX0VOQUJMRSAgIDB4ODAwMAorCisj ZGVmaW5lIEhPU1RfSU5UX1NUQVRVUyAgICAgICAgIDB4MUEKKyNkZWZpbmUg U0JfSU5UX1BFTkRJTkcgICAgICAgICAgMHgwMQorI2RlZmluZSBNUFU0MDFf SU5UX1BFTkRJTkcgICAgICAweDAyCisjZGVmaW5lIEFTU1BfSU5UX1BFTkRJ TkcgICAgICAgIDB4MTAKKyNkZWZpbmUgUklOR19JTlRfUEVORElORyAgICAg ICAgMHgyMAorI2RlZmluZSBIVl9JTlRfUEVORElORyAgICAgICAgICAweDQw CisKKyNkZWZpbmUgSEFSRFdBUkVfVk9MX0NUUkwgICAgICAgMHgxQgorI2Rl ZmluZSBTSEFET1dfTUlYX1JFR19WT0lDRSAgICAweDFDCisjZGVmaW5lIEhX X1ZPTF9DT1VOVEVSX1ZPSUNFICAgIDB4MUQKKyNkZWZpbmUgU0hBRE9XX01J WF9SRUdfTUFTVEVSICAgMHgxRQorI2RlZmluZSBIV19WT0xfQ09VTlRFUl9N QVNURVIgICAweDFGCisKKyNkZWZpbmUgQ09ERUNfQ09NTUFORCAgICAgICAg ICAgMHgzMAorI2RlZmluZSBDT0RFQ19SRUFEX0IgICAgICAgICAgICAweDgw CisKKyNkZWZpbmUgQ09ERUNfU1RBVFVTICAgICAgICAgICAgMHgzMAorI2Rl ZmluZSBDT0RFQ19CVVNZX0IgICAgICAgICAgICAweDAxCisKKyNkZWZpbmUg Q09ERUNfREFUQSAgICAgICAgICAgICAgMHgzMgorCisvKiBBQzk3IHJlZ2lz dGVycyAqLworI2lmbmRlZiBNM19NT0RFTAorI2RlZmluZSBBQzk3X1JFU0VU ICAgICAgICAgICAgICAweDAwCisjZW5kaWYKKworI2RlZmluZSBBQzk3X1ZP TF9NVVRFX0IgICAgICAgICAweDgwMDAKKyNkZWZpbmUgQUM5N19WT0xfTSAg ICAgICAgICAgICAgMHgxRgorI2RlZmluZSBBQzk3X0xFRlRfVk9MX1MgICAg ICAgICA4CisKKyNkZWZpbmUgQUM5N19NQVNURVJfVk9MICAgICAgICAgMHgw MgorI2RlZmluZSBBQzk3X0xJTkVfTEVWRUxfVk9MICAgICAweDA0CisjZGVm aW5lIEFDOTdfTUFTVEVSX01PTk9fVk9MICAgIDB4MDYKKyNkZWZpbmUgQUM5 N19QQ19CRUVQX1ZPTCAgICAgICAgMHgwQQorI2RlZmluZSBBQzk3X1BDX0JF RVBfVk9MX00gICAgICAweDBGCisjZGVmaW5lIEFDOTdfU1JPVU5EX01BU1RF Ul9WT0wgIDB4MzgKKyNkZWZpbmUgQUM5N19QQ19CRUVQX1ZPTF9TICAgICAg MQorCisjaWZuZGVmIE0zX01PREVMCisjZGVmaW5lIEFDOTdfUEhPTkVfVk9M ICAgICAgICAgIDB4MEMKKyNkZWZpbmUgQUM5N19NSUNfVk9MICAgICAgICAg ICAgMHgwRQorI2VuZGlmCisjZGVmaW5lIEFDOTdfTUlDXzIwREJfRU5BQkxF ICAgIDB4NDAKKworI2lmbmRlZiBNM19NT0RFTAorI2RlZmluZSBBQzk3X0xJ TkVJTl9WT0wgICAgICAgICAweDEwCisjZGVmaW5lIEFDOTdfQ0RfVk9MICAg ICAgICAgICAgIDB4MTIKKyNkZWZpbmUgQUM5N19WSURFT19WT0wgICAgICAg ICAgMHgxNAorI2RlZmluZSBBQzk3X0FVWF9WT0wgICAgICAgICAgICAweDE2 CisjZW5kaWYKKyNkZWZpbmUgQUM5N19QQ01fT1VUX1ZPTCAgICAgICAgMHgx OAorI2lmbmRlZiBNM19NT0RFTAorI2RlZmluZSBBQzk3X1JFQ09SRF9TRUxF Q1QgICAgICAweDFBCisjZW5kaWYKKyNkZWZpbmUgQUM5N19SRUNPUkRfTUlD ICAgICAgICAgMHgwMAorI2RlZmluZSBBQzk3X1JFQ09SRF9DRCAgICAgICAg ICAweDAxCisjZGVmaW5lIEFDOTdfUkVDT1JEX1ZJREVPICAgICAgIDB4MDIK KyNkZWZpbmUgQUM5N19SRUNPUkRfQVVYICAgICAgICAgMHgwMworI2RlZmlu ZSBBQzk3X1JFQ09SRF9NT05PX01VWCAgICAweDAyCisjZGVmaW5lIEFDOTdf UkVDT1JEX0RJR0lUQUwgICAgIDB4MDMKKyNkZWZpbmUgQUM5N19SRUNPUkRf TElORSAgICAgICAgMHgwNAorI2RlZmluZSBBQzk3X1JFQ09SRF9TVEVSRU8g ICAgICAweDA1CisjZGVmaW5lIEFDOTdfUkVDT1JEX01PTk8gICAgICAgIDB4 MDYKKyNkZWZpbmUgQUM5N19SRUNPUkRfUEhPTkUgICAgICAgMHgwNworCisj aWZuZGVmIE0zX01PREVMCisjZGVmaW5lIEFDOTdfUkVDT1JEX0dBSU4gICAg ICAgIDB4MUMKKyNlbmRpZgorI2RlZmluZSBBQzk3X1JFQ09SRF9WT0xfTSAg ICAgICAweDBGCisKKyNpZm5kZWYgTTNfTU9ERUwKKyNkZWZpbmUgQUM5N19H RU5FUkFMX1BVUlBPU0UgICAgMHgyMAorI2VuZGlmCisjZGVmaW5lIEFDOTdf UE9XRVJfRE9XTl9DVFJMICAgIDB4MjYKKyNkZWZpbmUgQUM5N19BRENfUkVB RFkgICAgICAgICAgMHgwMDAxCisjZGVmaW5lIEFDOTdfREFDX1JFQURZICAg ICAgICAgIDB4MDAwMgorI2RlZmluZSBBQzk3X0FOQUxPR19SRUFEWSAgICAg ICAweDAwMDQKKyNkZWZpbmUgQUM5N19WUkVGX09OICAgICAgICAgICAgMHgw MDA4CisjZGVmaW5lIEFDOTdfUFIwICAgICAgICAgICAgICAgIDB4MDEwMAor I2RlZmluZSBBQzk3X1BSMSAgICAgICAgICAgICAgICAweDAyMDAKKyNkZWZp bmUgQUM5N19QUjIgICAgICAgICAgICAgICAgMHgwNDAwCisjZGVmaW5lIEFD OTdfUFIzICAgICAgICAgICAgICAgIDB4MDgwMAorI2RlZmluZSBBQzk3X1BS NCAgICAgICAgICAgICAgICAweDEwMDAKKworI2RlZmluZSBBQzk3X1JFU0VS VkVEMSAgICAgICAgICAweDI4CisKKyNkZWZpbmUgQUM5N19WRU5ET1JfVEVT VCAgICAgICAgMHg1QQorCisjZGVmaW5lIEFDOTdfQ0xPQ0tfREVMQVkgICAg ICAgIDB4NUMKKyNkZWZpbmUgQUM5N19MSU5FT1VUX01VWF9TRUwgICAgMHgw MDAxCisjZGVmaW5lIEFDOTdfTU9OT19NVVhfU0VMICAgICAgIDB4MDAwMgor I2RlZmluZSBBQzk3X0NMT0NLX0RFTEFZX1NFTCAgICAweDFGCisjZGVmaW5l IEFDOTdfREFDX0NEU19TSElGVCAgICAgIDYKKyNkZWZpbmUgQUM5N19BRENf Q0RTX1NISUZUICAgICAgMTEKKworI2RlZmluZSBBQzk3X01VTFRJX0NIQU5O RUxfU0VMICAweDc0CisKKyNpZm5kZWYgTTNfTU9ERUwKKyNkZWZpbmUgQUM5 N19WRU5ET1JfSUQxICAgICAgICAgMHg3QworI2RlZmluZSBBQzk3X1ZFTkRP Ul9JRDIgICAgICAgICAweDdFCisjZW5kaWYKKworI2RlZmluZSBSSU5HX0JV U19DVFJMX0EgICAgICAgICAweDM2CisjZGVmaW5lIFJBQ19QTUVfRU5BQkxF ICAgICAgICAgIDB4MDEwMAorI2RlZmluZSBSQUNfU0RGU19FTkFCTEUgICAg ICAgICAweDAyMDAKKyNkZWZpbmUgTEFDX1BNRV9FTkFCTEUgICAgICAgICAg MHgwNDAwCisjZGVmaW5lIExBQ19TREZTX0VOQUJMRSAgICAgICAgIDB4MDgw MAorI2RlZmluZSBTRVJJQUxfQUNfTElOS19FTkFCTEUgICAweDEwMDAKKyNk ZWZpbmUgSU9fU1JBTV9FTkFCTEUgICAgICAgICAgMHgyMDAwCisjZGVmaW5l IElJU19JTlBVVF9FTkFCTEUgICAgICAgIDB4ODAwMAorCisjZGVmaW5lIFJJ TkdfQlVTX0NUUkxfQiAgICAgICAgIDB4MzgKKyNkZWZpbmUgU0VDT05EX0NP REVDX0lEX01BU0sgICAgMHgwMDAzCisjZGVmaW5lIFNQRElGX0ZVTkNfRU5B QkxFICAgICAgIDB4MDAxMAorI2RlZmluZSBTRUNPTkRfQUNfRU5BQkxFICAg ICAgICAweDAwMjAKKyNkZWZpbmUgU0JfTU9EVUxFX0lOVEZfRU5BQkxFICAg MHgwMDQwCisjZGVmaW5lIFNTUEVfRU5BQkxFICAgICAgICAgICAgIDB4MDA0 MAorI2RlZmluZSBNM0lfRE9DS19FTkFCTEUgICAgICAgICAweDAwODAKKwor I2RlZmluZSBTRE9fT1VUX0RFU1RfQ1RSTCAgICAgICAweDNBCisjZGVmaW5l IENPTU1BTkRfQUREUl9PVVQgICAgICAgIDB4MDAwMworI2RlZmluZSBQQ01f TFJfT1VUX0xPQ0FMICAgICAgICAweDAwMDAKKyNkZWZpbmUgUENNX0xSX09V VF9SRU1PVEUgICAgICAgMHgwMDA0CisjZGVmaW5lIFBDTV9MUl9PVVRfTVVU RSAgICAgICAgIDB4MDAwOAorI2RlZmluZSBQQ01fTFJfT1VUX0JPVEggICAg ICAgICAweDAwMEMKKyNkZWZpbmUgTElORTFfREFDX09VVF9MT0NBTCAgICAg MHgwMDAwCisjZGVmaW5lIExJTkUxX0RBQ19PVVRfUkVNT1RFICAgIDB4MDAx MAorI2RlZmluZSBMSU5FMV9EQUNfT1VUX01VVEUgICAgICAweDAwMjAKKyNk ZWZpbmUgTElORTFfREFDX09VVF9CT1RIICAgICAgMHgwMDMwCisjZGVmaW5l IFBDTV9DTFNfT1VUX0xPQ0FMICAgICAgIDB4MDAwMAorI2RlZmluZSBQQ01f Q0xTX09VVF9SRU1PVEUgICAgICAweDAwNDAKKyNkZWZpbmUgUENNX0NMU19P VVRfTVVURSAgICAgICAgMHgwMDgwCisjZGVmaW5lIFBDTV9DTFNfT1VUX0JP VEggICAgICAgIDB4MDBDMAorI2RlZmluZSBQQ01fUkxGX09VVF9MT0NBTCAg ICAgICAweDAwMDAKKyNkZWZpbmUgUENNX1JMRl9PVVRfUkVNT1RFICAgICAg MHgwMTAwCisjZGVmaW5lIFBDTV9STEZfT1VUX01VVEUgICAgICAgIDB4MDIw MAorI2RlZmluZSBQQ01fUkxGX09VVF9CT1RIICAgICAgICAweDAzMDAKKyNk ZWZpbmUgTElORTJfREFDX09VVF9MT0NBTCAgICAgMHgwMDAwCisjZGVmaW5l IExJTkUyX0RBQ19PVVRfUkVNT1RFICAgIDB4MDQwMAorI2RlZmluZSBMSU5F Ml9EQUNfT1VUX01VVEUgICAgICAweDA4MDAKKyNkZWZpbmUgTElORTJfREFD X09VVF9CT1RIICAgICAgMHgwQzAwCisjZGVmaW5lIEhBTkRTRVRfT1VUX0xP Q0FMICAgICAgIDB4MDAwMAorI2RlZmluZSBIQU5EU0VUX09VVF9SRU1PVEUg ICAgICAweDEwMDAKKyNkZWZpbmUgSEFORFNFVF9PVVRfTVVURSAgICAgICAg MHgyMDAwCisjZGVmaW5lIEhBTkRTRVRfT1VUX0JPVEggICAgICAgIDB4MzAw MAorI2RlZmluZSBJT19DVFJMX09VVF9MT0NBTCAgICAgICAweDAwMDAKKyNk ZWZpbmUgSU9fQ1RSTF9PVVRfUkVNT1RFICAgICAgMHg0MDAwCisjZGVmaW5l IElPX0NUUkxfT1VUX01VVEUgICAgICAgIDB4ODAwMAorI2RlZmluZSBJT19D VFJMX09VVF9CT1RIICAgICAgICAweEMwMDAKKworI2RlZmluZSBTRE9fSU5f REVTVF9DVFJMICAgICAgICAweDNDCisjZGVmaW5lIFNUQVRVU19BRERSX0lO ICAgICAgICAgIDB4MDAwMworI2RlZmluZSBQQ01fTFJfSU5fTE9DQUwgICAg ICAgICAweDAwMDAKKyNkZWZpbmUgUENNX0xSX0lOX1JFTU9URSAgICAgICAg MHgwMDA0CisjZGVmaW5lIFBDTV9MUl9SRVNFUlZFRCAgICAgICAgIDB4MDAw OAorI2RlZmluZSBQQ01fTFJfSU5fQk9USCAgICAgICAgICAweDAwMEMKKyNk ZWZpbmUgTElORTFfQURDX0lOX0xPQ0FMICAgICAgMHgwMDAwCisjZGVmaW5l IExJTkUxX0FEQ19JTl9SRU1PVEUgICAgIDB4MDAxMAorI2RlZmluZSBMSU5F MV9BRENfSU5fTVVURSAgICAgICAweDAwMjAKKyNkZWZpbmUgTUlDX0FEQ19J Tl9MT0NBTCAgICAgICAgMHgwMDAwCisjZGVmaW5lIE1JQ19BRENfSU5fUkVN T1RFICAgICAgIDB4MDA0MAorI2RlZmluZSBNSUNfQURDX0lOX01VVEUgICAg ICAgICAweDAwODAKKyNkZWZpbmUgTElORTJfREFDX0lOX0xPQ0FMICAgICAg MHgwMDAwCisjZGVmaW5lIExJTkUyX0RBQ19JTl9SRU1PVEUgICAgIDB4MDQw MAorI2RlZmluZSBMSU5FMl9EQUNfSU5fTVVURSAgICAgICAweDA4MDAKKyNk ZWZpbmUgSEFORFNFVF9JTl9MT0NBTCAgICAgICAgMHgwMDAwCisjZGVmaW5l IEhBTkRTRVRfSU5fUkVNT1RFICAgICAgIDB4MTAwMAorI2RlZmluZSBIQU5E U0VUX0lOX01VVEUgICAgICAgICAweDIwMDAKKyNkZWZpbmUgSU9fU1RBVFVT X0lOX0xPQ0FMICAgICAgMHgwMDAwCisjZGVmaW5lIElPX1NUQVRVU19JTl9S RU1PVEUgICAgIDB4NDAwMAorCisjZGVmaW5lIFNQRElGX0lOX0NUUkwgICAg ICAgICAgIDB4M0UKKyNkZWZpbmUgU1BESUZfSU5fRU5BQkxFICAgICAgICAg MHgwMDAxCisKKyNkZWZpbmUgR1BJT19EQVRBICAgICAgICAgICAgICAgMHg2 MAorI2RlZmluZSBHUElPX0RBVEFfTUFTSyAgICAgICAgICAweDBGRkYKKyNk ZWZpbmUgR1BJT19IVl9TVEFUVVMgICAgICAgICAgMHgzMDAwCisjZGVmaW5l IEdQSU9fUE1FX1NUQVRVUyAgICAgICAgIDB4NDAwMAorCisjZGVmaW5lIEdQ SU9fTUFTSyAgICAgICAgICAgICAgIDB4NjQKKyNkZWZpbmUgR1BJT19ESVJF Q1RJT04gICAgICAgICAgMHg2OAorI2RlZmluZSBHUE9fUFJJTUFSWV9BQzk3 ICAgICAgICAweDAwMDEKKyNkZWZpbmUgR1BJX0xJTkVPVVRfU0VOU0UgICAg ICAgMHgwMDA0CisjZGVmaW5lIEdQT19TRUNPTkRBUllfQUM5NyAgICAgIDB4 MDAwOAorI2RlZmluZSBHUElfVk9MX0RPV04gICAgICAgICAgICAweDAwMTAK KyNkZWZpbmUgR1BJX1ZPTF9VUCAgICAgICAgICAgICAgMHgwMDIwCisjZGVm aW5lIEdQSV9JSVNfQ0xLICAgICAgICAgICAgIDB4MDA0MAorI2RlZmluZSBH UElfSUlTX0xSQ0xLICAgICAgICAgICAweDAwODAKKyNkZWZpbmUgR1BJX0lJ U19EQVRBICAgICAgICAgICAgMHgwMTAwCisjZGVmaW5lIEdQSV9ET0NLSU5H X1NUQVRVUyAgICAgIDB4MDEwMAorI2RlZmluZSBHUElfSEVBRFBIT05FX1NF TlNFICAgICAweDAyMDAKKyNkZWZpbmUgR1BPX0VYVF9BTVBfU0hVVERPV04g ICAgMHgxMDAwCisKKy8qIE0zICovCisjZGVmaW5lIEdQT19NM19FWFRfQU1Q X1NIVVRETiAgIDB4MDAwMgorCisjZGVmaW5lIEFTU1BfSU5ERVhfUE9SVCAg ICAgICAgIDB4ODAKKyNkZWZpbmUgQVNTUF9NRU1PUllfUE9SVCAgICAgICAg MHg4MgorI2RlZmluZSBBU1NQX0RBVEFfUE9SVCAgICAgICAgICAweDg0CisK KyNkZWZpbmUgTVBVNDAxX0RBVEFfUE9SVCAgICAgICAgMHg5OAorI2RlZmlu ZSBNUFU0MDFfU1RBVFVTX1BPUlQgICAgICAweDk5CisKKyNkZWZpbmUgQ0xL X01VTFRfREFUQV9QT1JUICAgICAgMHg5QworCisjZGVmaW5lIEFTU1BfQ09O VFJPTF9BICAgICAgICAgIDB4QTIKKyNkZWZpbmUgQVNTUF8wX1dTX0VOQUJM RSAgICAgICAgMHgwMQorI2RlZmluZSBBU1NQX0NUUkxfQV9SRVNFUlZFRDEg ICAweDAyCisjZGVmaW5lIEFTU1BfQ1RSTF9BX1JFU0VSVkVEMiAgIDB4MDQK KyNkZWZpbmUgQVNTUF9DTEtfNDlNSFpfU0VMRUNUICAgMHgwOAorI2RlZmlu ZSBGQVNUX1BMVV9FTkFCTEUgICAgICAgICAweDEwCisjZGVmaW5lIEFTU1Bf Q1RSTF9BX1JFU0VSVkVEMyAgIDB4MjAKKyNkZWZpbmUgRFNQX0NMS18zNk1I Wl9TRUxFQ1QgICAgMHg0MAorCisjZGVmaW5lIEFTU1BfQ09OVFJPTF9CICAg ICAgICAgIDB4QTQKKyNkZWZpbmUgUkVTRVRfQVNTUCAgICAgICAgICAgICAg MHgwMAorI2RlZmluZSBSVU5fQVNTUCAgICAgICAgICAgICAgICAweDAxCisj ZGVmaW5lIEVOQUJMRV9BU1NQX0NMT0NLICAgICAgIDB4MDAKKyNkZWZpbmUg U1RPUF9BU1NQX0NMT0NLICAgICAgICAgMHgxMAorI2RlZmluZSBSRVNFVF9U T0dHTEUgICAgICAgICAgICAweDQwCisKKyNkZWZpbmUgQVNTUF9DT05UUk9M X0MgICAgICAgICAgMHhBNgorI2RlZmluZSBBU1NQX0hPU1RfSU5UX0VOQUJM RSAgICAweDAxCisjZGVmaW5lIEZNX0FERFJfUkVNQVBfRElTQUJMRSAgIDB4 MDIKKyNkZWZpbmUgSE9TVF9XUklURV9QT1JUX0VOQUJMRSAgMHgwOAorCisj ZGVmaW5lIEFTU1BfSE9TVF9JTlRfU1RBVFVTICAgIDB4QUMKKyNkZWZpbmUg RFNQMkhPU1RfUkVRX1BJT1JFQ09SRCAgMHgwMQorI2RlZmluZSBEU1AySE9T VF9SRVFfSTJTUkFURSAgICAweDAyCisjZGVmaW5lIERTUDJIT1NUX1JFUV9U SU1FUiAgICAgIDB4MDQKKworLyoKKyAqIERTUCBtZW1vcnkgbWFwCisgKi8K KworI2RlZmluZSBSRVZfQV9DT0RFX01FTU9SWV9CRUdJTiAgICAgICAgIDB4 MDAwMAorI2RlZmluZSBSRVZfQV9DT0RFX01FTU9SWV9FTkQgICAgICAgICAg IDB4MEZGRgorI2RlZmluZSBSRVZfQV9DT0RFX01FTU9SWV9VTklUX0xFTkdU SCAgIDB4MDA0MAorI2RlZmluZSBSRVZfQV9DT0RFX01FTU9SWV9MRU5HVEgg ICAgICAgIChSRVZfQV9DT0RFX01FTU9SWV9FTkQgLSBSRVZfQV9DT0RFX01F TU9SWV9CRUdJTiArIDEpCisKKyNkZWZpbmUgUkVWX0JfQ09ERV9NRU1PUllf QkVHSU4gICAgICAgICAweDAwMDAKKyNkZWZpbmUgUkVWX0JfQ09ERV9NRU1P UllfRU5EICAgICAgICAgICAweDBCRkYKKyNkZWZpbmUgUkVWX0JfQ09ERV9N RU1PUllfVU5JVF9MRU5HVEggICAweDAwNDAKKyNkZWZpbmUgUkVWX0JfQ09E RV9NRU1PUllfTEVOR1RIICAgICAgICAoUkVWX0JfQ09ERV9NRU1PUllfRU5E IC0gUkVWX0JfQ09ERV9NRU1PUllfQkVHSU4gKyAxKQorCisjaWYgKFJFVl9B X0NPREVfTUVNT1JZX0xFTkdUSCAlIFJFVl9BX0NPREVfTUVNT1JZX1VOSVRf TEVOR1RIKQorI2Vycm9yIEFzc3VtcHRpb24gYWJvdXQgY29kZSBtZW1vcnkg dW5pdCBsZW5ndGggZmFpbGVkLgorI2VuZGlmCisjaWYgKFJFVl9CX0NPREVf TUVNT1JZX0xFTkdUSCAlIFJFVl9CX0NPREVfTUVNT1JZX1VOSVRfTEVOR1RI KQorI2Vycm9yIEFzc3VtcHRpb24gYWJvdXQgY29kZSBtZW1vcnkgdW5pdCBs ZW5ndGggZmFpbGVkLgorI2VuZGlmCisKKyNkZWZpbmUgUkVWX0FfREFUQV9N RU1PUllfQkVHSU4gICAgICAgICAweDEwMDAKKyNkZWZpbmUgUkVWX0FfREFU QV9NRU1PUllfRU5EICAgICAgICAgICAweDJGRkYKKyNkZWZpbmUgUkVWX0Ff REFUQV9NRU1PUllfVU5JVF9MRU5HVEggICAweDAwODAKKyNkZWZpbmUgUkVW X0FfREFUQV9NRU1PUllfTEVOR1RIICAgICAgICAoUkVWX0FfREFUQV9NRU1P UllfRU5EIC0gUkVWX0FfREFUQV9NRU1PUllfQkVHSU4gKyAxKQorCisjZGVm aW5lIFJFVl9CX0RBVEFfTUVNT1JZX0JFR0lOICAgICAgICAgMHgxMDAwCisv KiNkZWZpbmUgUkVWX0JfREFUQV9NRU1PUllfRU5EICAgICAgICAgICAweDIz RkYgKi8KKyNkZWZpbmUgUkVWX0JfREFUQV9NRU1PUllfRU5EICAgICAgICAg ICAweDJCRkYKKyNkZWZpbmUgUkVWX0JfREFUQV9NRU1PUllfVU5JVF9MRU5H VEggICAweDAwODAKKyNkZWZpbmUgUkVWX0JfREFUQV9NRU1PUllfTEVOR1RI ICAgICAgICAoUkVWX0JfREFUQV9NRU1PUllfRU5EIC0gUkVWX0JfREFUQV9N RU1PUllfQkVHSU4gKyAxKQorCisjaWYgKFJFVl9BX0RBVEFfTUVNT1JZX0xF TkdUSCAlIFJFVl9BX0RBVEFfTUVNT1JZX1VOSVRfTEVOR1RIKQorI2Vycm9y IEFzc3VtcHRpb24gYWJvdXQgZGF0YSBtZW1vcnkgdW5pdCBsZW5ndGggZmFp bGVkLgorI2VuZGlmCisjaWYgKFJFVl9CX0RBVEFfTUVNT1JZX0xFTkdUSCAl IFJFVl9CX0RBVEFfTUVNT1JZX1VOSVRfTEVOR1RIKQorI2Vycm9yIEFzc3Vt cHRpb24gYWJvdXQgZGF0YSBtZW1vcnkgdW5pdCBsZW5ndGggZmFpbGVkLgor I2VuZGlmCisKKyNkZWZpbmUgQ09ERV9NRU1PUllfTUFQX0xFTkdUSCAgICAg ICAgICAoNjQgKyAxKQorI2RlZmluZSBEQVRBX01FTU9SWV9NQVBfTEVOR1RI ICAgICAgICAgICg2NCArIDEpCisKKyNpZiAoQ09ERV9NRU1PUllfTUFQX0xF TkdUSCA8ICgoUkVWX0FfQ09ERV9NRU1PUllfTEVOR1RIIC8gUkVWX0FfQ09E RV9NRU1PUllfVU5JVF9MRU5HVEgpICsgMSkpCisjZXJyb3IgQ29kZSBtZW1v cnkgbWFwIGxlbmd0aCB0b28gc2hvcnQuCisjZW5kaWYKKyNpZiAoREFUQV9N RU1PUllfTUFQX0xFTkdUSCA8ICgoUkVWX0FfREFUQV9NRU1PUllfTEVOR1RI IC8gUkVWX0FfREFUQV9NRU1PUllfVU5JVF9MRU5HVEgpICsgMSkpCisjZXJy b3IgRGF0YSBtZW1vcnkgbWFwIGxlbmd0aCB0b28gc2hvcnQuCisjZW5kaWYK KyNpZiAoQ09ERV9NRU1PUllfTUFQX0xFTkdUSCA8ICgoUkVWX0JfQ09ERV9N RU1PUllfTEVOR1RIIC8gUkVWX0JfQ09ERV9NRU1PUllfVU5JVF9MRU5HVEgp ICsgMSkpCisjZXJyb3IgQ29kZSBtZW1vcnkgbWFwIGxlbmd0aCB0b28gc2hv cnQuCisjZW5kaWYKKyNpZiAoREFUQV9NRU1PUllfTUFQX0xFTkdUSCA8ICgo UkVWX0JfREFUQV9NRU1PUllfTEVOR1RIIC8gUkVWX0JfREFUQV9NRU1PUllf VU5JVF9MRU5HVEgpICsgMSkpCisjZXJyb3IgRGF0YSBtZW1vcnkgbWFwIGxl bmd0aCB0b28gc2hvcnQuCisjZW5kaWYKKworCisvKgorICogS2VybmVsIGNv ZGUgbWVtb3J5IGRlZmluaXRpb24KKyAqLworCisjZGVmaW5lIEtDT0RFX1ZF Q1RPUlNfQkVHSU4gICAgICAgICAgICAgMHgwMDAwCisjZGVmaW5lIEtDT0RF X1ZFQ1RPUlNfRU5EICAgICAgICAgICAgICAgMHgwMDJGCisjZGVmaW5lIEtD T0RFX1ZFQ1RPUlNfVU5JVF9MRU5HVEggICAgICAgMHgwMDAyCisjZGVmaW5l IEtDT0RFX1ZFQ1RPUlNfTEVOR1RIICAgICAgICAgICAgKEtDT0RFX1ZFQ1RP UlNfRU5EIC0gS0NPREVfVkVDVE9SU19CRUdJTiArIDEpCisKKworLyoKKyAq IEtlcm5lbCBkYXRhIG1lbW9yeSBkZWZpbml0aW9uCisgKi8KKworI2RlZmlu ZSBLREFUQV9CQVNFX0FERFIgICAgICAgICAgICAgICAgIDB4MTAwMAorI2Rl ZmluZSBLREFUQV9CQVNFX0FERFIyICAgICAgICAgICAgICAgIDB4MTA4MAor CisjZGVmaW5lIEtEQVRBX1RBU0swICAgICAgICAgICAgICAgICAgICAgKEtE QVRBX0JBU0VfQUREUiArIDB4MDAwMCkKKyNkZWZpbmUgS0RBVEFfVEFTSzEg ICAgICAgICAgICAgICAgICAgICAoS0RBVEFfQkFTRV9BRERSICsgMHgwMDAx KQorI2RlZmluZSBLREFUQV9UQVNLMiAgICAgICAgICAgICAgICAgICAgIChL REFUQV9CQVNFX0FERFIgKyAweDAwMDIpCisjZGVmaW5lIEtEQVRBX1RBU0sz ICAgICAgICAgICAgICAgICAgICAgKEtEQVRBX0JBU0VfQUREUiArIDB4MDAw MykKKyNkZWZpbmUgS0RBVEFfVEFTSzQgICAgICAgICAgICAgICAgICAgICAo S0RBVEFfQkFTRV9BRERSICsgMHgwMDA0KQorI2RlZmluZSBLREFUQV9UQVNL NSAgICAgICAgICAgICAgICAgICAgIChLREFUQV9CQVNFX0FERFIgKyAweDAw MDUpCisjZGVmaW5lIEtEQVRBX1RBU0s2ICAgICAgICAgICAgICAgICAgICAg KEtEQVRBX0JBU0VfQUREUiArIDB4MDAwNikKKyNkZWZpbmUgS0RBVEFfVEFT SzcgICAgICAgICAgICAgICAgICAgICAoS0RBVEFfQkFTRV9BRERSICsgMHgw MDA3KQorI2RlZmluZSBLREFUQV9UQVNLX0VORE1BUksgICAgICAgICAgICAg IChLREFUQV9CQVNFX0FERFIgKyAweDAwMDgpCisKKyNkZWZpbmUgS0RBVEFf Q1VSUkVOVF9UQVNLICAgICAgICAgICAgICAoS0RBVEFfQkFTRV9BRERSICsg MHgwMDA5KQorI2RlZmluZSBLREFUQV9UQVNLX1NXSVRDSCAgICAgICAgICAg ICAgIChLREFUQV9CQVNFX0FERFIgKyAweDAwMEEpCisKKyNkZWZpbmUgS0RB VEFfSU5TVEFOQ0UwX1BPUzNEICAgICAgICAgICAoS0RBVEFfQkFTRV9BRERS ICsgMHgwMDBCKQorI2RlZmluZSBLREFUQV9JTlNUQU5DRTFfUE9TM0QgICAg ICAgICAgIChLREFUQV9CQVNFX0FERFIgKyAweDAwMEMpCisjZGVmaW5lIEtE QVRBX0lOU1RBTkNFMl9QT1MzRCAgICAgICAgICAgKEtEQVRBX0JBU0VfQURE UiArIDB4MDAwRCkKKyNkZWZpbmUgS0RBVEFfSU5TVEFOQ0UzX1BPUzNEICAg ICAgICAgICAoS0RBVEFfQkFTRV9BRERSICsgMHgwMDBFKQorI2RlZmluZSBL REFUQV9JTlNUQU5DRTRfUE9TM0QgICAgICAgICAgIChLREFUQV9CQVNFX0FE RFIgKyAweDAwMEYpCisjZGVmaW5lIEtEQVRBX0lOU1RBTkNFNV9QT1MzRCAg ICAgICAgICAgKEtEQVRBX0JBU0VfQUREUiArIDB4MDAxMCkKKyNkZWZpbmUg S0RBVEFfSU5TVEFOQ0U2X1BPUzNEICAgICAgICAgICAoS0RBVEFfQkFTRV9B RERSICsgMHgwMDExKQorI2RlZmluZSBLREFUQV9JTlNUQU5DRTdfUE9TM0Qg ICAgICAgICAgIChLREFUQV9CQVNFX0FERFIgKyAweDAwMTIpCisjZGVmaW5l IEtEQVRBX0lOU1RBTkNFOF9QT1MzRCAgICAgICAgICAgKEtEQVRBX0JBU0Vf QUREUiArIDB4MDAxMykKKyNkZWZpbmUgS0RBVEFfSU5TVEFOQ0VfUE9TM0Rf RU5ETUFSSyAgICAoS0RBVEFfQkFTRV9BRERSICsgMHgwMDE0KQorCisjZGVm aW5lIEtEQVRBX0lOU1RBTkNFMF9TUEtWSVJUICAgICAgICAgKEtEQVRBX0JB U0VfQUREUiArIDB4MDAxNSkKKyNkZWZpbmUgS0RBVEFfSU5TVEFOQ0VfU1BL VklSVF9FTkRNQVJLICAoS0RBVEFfQkFTRV9BRERSICsgMHgwMDE2KQorCisj ZGVmaW5lIEtEQVRBX0lOU1RBTkNFMF9TUERJRiAgICAgICAgICAgKEtEQVRB X0JBU0VfQUREUiArIDB4MDAxNykKKyNkZWZpbmUgS0RBVEFfSU5TVEFOQ0Vf U1BESUZfRU5ETUFSSyAgICAoS0RBVEFfQkFTRV9BRERSICsgMHgwMDE4KQor CisjZGVmaW5lIEtEQVRBX0lOU1RBTkNFMF9NT0RFTSAgICAgICAgICAgKEtE QVRBX0JBU0VfQUREUiArIDB4MDAxOSkKKyNkZWZpbmUgS0RBVEFfSU5TVEFO Q0VfTU9ERU1fRU5ETUFSSyAgICAoS0RBVEFfQkFTRV9BRERSICsgMHgwMDFB KQorCisjZGVmaW5lIEtEQVRBX0lOU1RBTkNFMF9TUkMgICAgICAgICAgICAg KEtEQVRBX0JBU0VfQUREUiArIDB4MDAxQikKKyNkZWZpbmUgS0RBVEFfSU5T VEFOQ0UxX1NSQyAgICAgICAgICAgICAoS0RBVEFfQkFTRV9BRERSICsgMHgw MDFDKQorI2RlZmluZSBLREFUQV9JTlNUQU5DRV9TUkNfRU5ETUFSSyAgICAg IChLREFUQV9CQVNFX0FERFIgKyAweDAwMUQpCisKKyNkZWZpbmUgS0RBVEFf SU5TVEFOQ0UwX01JTklTUkMgICAgICAgICAoS0RBVEFfQkFTRV9BRERSICsg MHgwMDFFKQorI2RlZmluZSBLREFUQV9JTlNUQU5DRTFfTUlOSVNSQyAgICAg ICAgIChLREFUQV9CQVNFX0FERFIgKyAweDAwMUYpCisjZGVmaW5lIEtEQVRB X0lOU1RBTkNFMl9NSU5JU1JDICAgICAgICAgKEtEQVRBX0JBU0VfQUREUiAr IDB4MDAyMCkKKyNkZWZpbmUgS0RBVEFfSU5TVEFOQ0UzX01JTklTUkMgICAg ICAgICAoS0RBVEFfQkFTRV9BRERSICsgMHgwMDIxKQorI2RlZmluZSBLREFU QV9JTlNUQU5DRV9NSU5JU1JDX0VORE1BUksgIChLREFUQV9CQVNFX0FERFIg KyAweDAwMjIpCisKKyNkZWZpbmUgS0RBVEFfSU5TVEFOQ0UwX0NQWVRIUlUg ICAgICAgICAoS0RBVEFfQkFTRV9BRERSICsgMHgwMDIzKQorI2RlZmluZSBL REFUQV9JTlNUQU5DRTFfQ1BZVEhSVSAgICAgICAgIChLREFUQV9CQVNFX0FE RFIgKyAweDAwMjQpCisjZGVmaW5lIEtEQVRBX0lOU1RBTkNFX0NQWVRIUlVf RU5ETUFSSyAgKEtEQVRBX0JBU0VfQUREUiArIDB4MDAyNSkKKworI2RlZmlu ZSBLREFUQV9DVVJSRU5UX0RNQSAgICAgICAgICAgICAgIChLREFUQV9CQVNF X0FERFIgKyAweDAwMjYpCisjZGVmaW5lIEtEQVRBX0RNQV9TV0lUQ0ggICAg ICAgICAgICAgICAgKEtEQVRBX0JBU0VfQUREUiArIDB4MDAyNykKKyNkZWZp bmUgS0RBVEFfRE1BX0FDVElWRSAgICAgICAgICAgICAgICAoS0RBVEFfQkFT RV9BRERSICsgMHgwMDI4KQorCisjZGVmaW5lIEtEQVRBX0RNQV9YRkVSMCAg ICAgICAgICAgICAgICAgKEtEQVRBX0JBU0VfQUREUiArIDB4MDAyOSkKKyNk ZWZpbmUgS0RBVEFfRE1BX1hGRVIxICAgICAgICAgICAgICAgICAoS0RBVEFf QkFTRV9BRERSICsgMHgwMDJBKQorI2RlZmluZSBLREFUQV9ETUFfWEZFUjIg ICAgICAgICAgICAgICAgIChLREFUQV9CQVNFX0FERFIgKyAweDAwMkIpCisj ZGVmaW5lIEtEQVRBX0RNQV9YRkVSMyAgICAgICAgICAgICAgICAgKEtEQVRB X0JBU0VfQUREUiArIDB4MDAyQykKKyNkZWZpbmUgS0RBVEFfRE1BX1hGRVI0 ICAgICAgICAgICAgICAgICAoS0RBVEFfQkFTRV9BRERSICsgMHgwMDJEKQor I2RlZmluZSBLREFUQV9ETUFfWEZFUjUgICAgICAgICAgICAgICAgIChLREFU QV9CQVNFX0FERFIgKyAweDAwMkUpCisjZGVmaW5lIEtEQVRBX0RNQV9YRkVS NiAgICAgICAgICAgICAgICAgKEtEQVRBX0JBU0VfQUREUiArIDB4MDAyRikK KyNkZWZpbmUgS0RBVEFfRE1BX1hGRVI3ICAgICAgICAgICAgICAgICAoS0RB VEFfQkFTRV9BRERSICsgMHgwMDMwKQorI2RlZmluZSBLREFUQV9ETUFfWEZF UjggICAgICAgICAgICAgICAgIChLREFUQV9CQVNFX0FERFIgKyAweDAwMzEp CisjZGVmaW5lIEtEQVRBX0RNQV9YRkVSX0VORE1BUksgICAgICAgICAgKEtE QVRBX0JBU0VfQUREUiArIDB4MDAzMikKKworI2RlZmluZSBLREFUQV9JMlNf U0FNUExFX0NPVU5UICAgICAgICAgIChLREFUQV9CQVNFX0FERFIgKyAweDAw MzMpCisjZGVmaW5lIEtEQVRBX0kyU19JTlRfTUVURVIgICAgICAgICAgICAg KEtEQVRBX0JBU0VfQUREUiArIDB4MDAzNCkKKyNkZWZpbmUgS0RBVEFfSTJT X0FDVElWRSAgICAgICAgICAgICAgICAoS0RBVEFfQkFTRV9BRERSICsgMHgw MDM1KQorCisjZGVmaW5lIEtEQVRBX1RJTUVSX0NPVU5UX1JFTE9BRCAgICAg ICAgKEtEQVRBX0JBU0VfQUREUiArIDB4MDAzNikKKyNkZWZpbmUgS0RBVEFf VElNRVJfQ09VTlRfQ1VSUkVOVCAgICAgICAoS0RBVEFfQkFTRV9BRERSICsg MHgwMDM3KQorCisjZGVmaW5lIEtEQVRBX0hBTFRfU1lOQ0hfQ0xJRU5UICAg ICAgICAgKEtEQVRBX0JBU0VfQUREUiArIDB4MDAzOCkKKyNkZWZpbmUgS0RB VEFfSEFMVF9TWU5DSF9ETUEgICAgICAgICAgICAoS0RBVEFfQkFTRV9BRERS ICsgMHgwMDM5KQorI2RlZmluZSBLREFUQV9IQUxUX0FDS05PV0xFREdFICAg ICAgICAgIChLREFUQV9CQVNFX0FERFIgKyAweDAwM0EpCisKKyNkZWZpbmUg S0RBVEFfQURDMV9YRkVSMCAgICAgICAgICAgICAgICAoS0RBVEFfQkFTRV9B RERSICsgMHgwMDNCKQorI2RlZmluZSBLREFUQV9BREMxX1hGRVJfRU5ETUFS SyAgICAgICAgIChLREFUQV9CQVNFX0FERFIgKyAweDAwM0MpCisjZGVmaW5l IEtEQVRBX0FEQzFfTEVGVF9WT0xVTUUJCShLREFUQV9CQVNFX0FERFIgKyAw eDAwM0QpCisjZGVmaW5lIEtEQVRBX0FEQzFfUklHSFRfVk9MVU1FICAJKEtE QVRBX0JBU0VfQUREUiArIDB4MDAzRSkKKyNkZWZpbmUgS0RBVEFfQURDMV9M RUZUX1NVUl9WT0wJCShLREFUQV9CQVNFX0FERFIgKyAweDAwM0YpCisjZGVm aW5lIEtEQVRBX0FEQzFfUklHSFRfU1VSX1ZPTAkoS0RBVEFfQkFTRV9BRERS ICsgMHgwMDQwKQorCisjZGVmaW5lIEtEQVRBX0FEQzJfWEZFUjAgICAgICAg ICAgICAgICAgKEtEQVRBX0JBU0VfQUREUiArIDB4MDA0MSkKKyNkZWZpbmUg S0RBVEFfQURDMl9YRkVSX0VORE1BUksgICAgICAgICAoS0RBVEFfQkFTRV9B RERSICsgMHgwMDQyKQorI2RlZmluZSBLREFUQV9BREMyX0xFRlRfVk9MVU1F CQkoS0RBVEFfQkFTRV9BRERSICsgMHgwMDQzKQorI2RlZmluZSBLREFUQV9B REMyX1JJR0hUX1ZPTFVNRQkJKEtEQVRBX0JBU0VfQUREUiArIDB4MDA0NCkK KyNkZWZpbmUgS0RBVEFfQURDMl9MRUZUX1NVUl9WT0wJCShLREFUQV9CQVNF X0FERFIgKyAweDAwNDUpCisjZGVmaW5lIEtEQVRBX0FEQzJfUklHSFRfU1VS X1ZPTAkoS0RBVEFfQkFTRV9BRERSICsgMHgwMDQ2KQorCisjZGVmaW5lIEtE QVRBX0NEX1hGRVIwCQkJKEtEQVRBX0JBU0VfQUREUiArIDB4MDA0NykKKyNk ZWZpbmUgS0RBVEFfQ0RfWEZFUl9FTkRNQVJLCQkoS0RBVEFfQkFTRV9BRERS ICsgMHgwMDQ4KQorI2RlZmluZSBLREFUQV9DRF9MRUZUX1ZPTFVNRQkJKEtE QVRBX0JBU0VfQUREUiArIDB4MDA0OSkKKyNkZWZpbmUgS0RBVEFfQ0RfUklH SFRfVk9MVU1FCQkoS0RBVEFfQkFTRV9BRERSICsgMHgwMDRBKQorI2RlZmlu ZSBLREFUQV9DRF9MRUZUX1NVUl9WT0wJCShLREFUQV9CQVNFX0FERFIgKyAw eDAwNEIpCisjZGVmaW5lIEtEQVRBX0NEX1JJR0hUX1NVUl9WT0wJCShLREFU QV9CQVNFX0FERFIgKyAweDAwNEMpCisKKyNkZWZpbmUgS0RBVEFfTUlDX1hG RVIwCQkJKEtEQVRBX0JBU0VfQUREUiArIDB4MDA0RCkKKyNkZWZpbmUgS0RB VEFfTUlDX1hGRVJfRU5ETUFSSwkJKEtEQVRBX0JBU0VfQUREUiArIDB4MDA0 RSkKKyNkZWZpbmUgS0RBVEFfTUlDX1ZPTFVNRQkJKEtEQVRBX0JBU0VfQURE UiArIDB4MDA0RikKKyNkZWZpbmUgS0RBVEFfTUlDX1NVUl9WT0wJCShLREFU QV9CQVNFX0FERFIgKyAweDAwNTApCisKKyNkZWZpbmUgS0RBVEFfSTJTX1hG RVIwICAgICAgICAgICAgICAgICAoS0RBVEFfQkFTRV9BRERSICsgMHgwMDUx KQorI2RlZmluZSBLREFUQV9JMlNfWEZFUl9FTkRNQVJLICAgICAgICAgIChL REFUQV9CQVNFX0FERFIgKyAweDAwNTIpCisKKyNkZWZpbmUgS0RBVEFfQ0hJ X1hGRVIwICAgICAgICAgICAgICAgICAoS0RBVEFfQkFTRV9BRERSICsgMHgw MDUzKQorI2RlZmluZSBLREFUQV9DSElfWEZFUl9FTkRNQVJLICAgICAgICAg IChLREFUQV9CQVNFX0FERFIgKyAweDAwNTQpCisKKyNkZWZpbmUgS0RBVEFf U1BESUZfWEZFUiAgICAgICAgICAgICAgICAoS0RBVEFfQkFTRV9BRERSICsg MHgwMDU1KQorI2RlZmluZSBLREFUQV9TUERJRl9DVVJSRU5UX0ZSQU1FICAg ICAgIChLREFUQV9CQVNFX0FERFIgKyAweDAwNTYpCisjZGVmaW5lIEtEQVRB X1NQRElGX0ZSQU1FMCAgICAgICAgICAgICAgKEtEQVRBX0JBU0VfQUREUiAr IDB4MDA1NykKKyNkZWZpbmUgS0RBVEFfU1BESUZfRlJBTUUxICAgICAgICAg ICAgICAoS0RBVEFfQkFTRV9BRERSICsgMHgwMDU4KQorI2RlZmluZSBLREFU QV9TUERJRl9GUkFNRTIgICAgICAgICAgICAgIChLREFUQV9CQVNFX0FERFIg KyAweDAwNTkpCisKKyNkZWZpbmUgS0RBVEFfU1BESUZfUkVRVUVTVCAgICAg ICAgICAgICAoS0RBVEFfQkFTRV9BRERSICsgMHgwMDVBKQorI2RlZmluZSBL REFUQV9TUERJRl9URU1QICAgICAgICAgICAgICAgIChLREFUQV9CQVNFX0FE RFIgKyAweDAwNUIpCisKKy8qQVkgU1BESUYgSU4gKi8KKyNkZWZpbmUgS0RB VEFfU1BESUZJTl9YRkVSMCAgICAgICAgICAgICAoS0RBVEFfQkFTRV9BRERS ICsgMHgwMDVDKQorI2RlZmluZSBLREFUQV9TUERJRklOX1hGRVJfRU5ETUFS SyAgICAgIChLREFUQV9CQVNFX0FERFIgKyAweDAwNUQpCisjZGVmaW5lIEtE QVRBX1NQRElGSU5fSU5UX01FVEVSICAgICAgICAgKEtEQVRBX0JBU0VfQURE UiArIDB4MDA1RSkKKworI2RlZmluZSBLREFUQV9EU1BfUkVTRVRfQ09VTlQg ICAgICAgICAgIChLREFUQV9CQVNFX0FERFIgKyAweDAwNUYpCisjZGVmaW5l IEtEQVRBX0RFQlVHX09VVFBVVCAgICAgICAgICAgICAgKEtEQVRBX0JBU0Vf QUREUiArIDB4MDA2MCkKKworI2RlZmluZSBLREFUQV9LRVJORUxfSVNSX0xJ U1QgICAgICAgICAgIChLREFUQV9CQVNFX0FERFIgKyAweDAwNjEpCisKKyNk ZWZpbmUgS0RBVEFfS0VSTkVMX0lTUl9DQlNSMSAgICAgICAgICAoS0RBVEFf QkFTRV9BRERSICsgMHgwMDYyKQorI2RlZmluZSBLREFUQV9LRVJORUxfSVNS X0NCRVIxICAgICAgICAgIChLREFUQV9CQVNFX0FERFIgKyAweDAwNjMpCisj ZGVmaW5lIEtEQVRBX0tFUk5FTF9JU1JfQ0JDUiAgICAgICAgICAgKEtEQVRB X0JBU0VfQUREUiArIDB4MDA2NCkKKyNkZWZpbmUgS0RBVEFfS0VSTkVMX0lT Ul9BUjAgICAgICAgICAgICAoS0RBVEFfQkFTRV9BRERSICsgMHgwMDY1KQor I2RlZmluZSBLREFUQV9LRVJORUxfSVNSX0FSMSAgICAgICAgICAgIChLREFU QV9CQVNFX0FERFIgKyAweDAwNjYpCisjZGVmaW5lIEtEQVRBX0tFUk5FTF9J U1JfQVIyICAgICAgICAgICAgKEtEQVRBX0JBU0VfQUREUiArIDB4MDA2NykK KyNkZWZpbmUgS0RBVEFfS0VSTkVMX0lTUl9BUjMgICAgICAgICAgICAoS0RB VEFfQkFTRV9BRERSICsgMHgwMDY4KQorI2RlZmluZSBLREFUQV9LRVJORUxf SVNSX0FSNCAgICAgICAgICAgIChLREFUQV9CQVNFX0FERFIgKyAweDAwNjkp CisjZGVmaW5lIEtEQVRBX0tFUk5FTF9JU1JfQVI1ICAgICAgICAgICAgKEtE QVRBX0JBU0VfQUREUiArIDB4MDA2QSkKKyNkZWZpbmUgS0RBVEFfS0VSTkVM X0lTUl9CUkNSICAgICAgICAgICAoS0RBVEFfQkFTRV9BRERSICsgMHgwMDZC KQorI2RlZmluZSBLREFUQV9LRVJORUxfSVNSX1BBU1IgICAgICAgICAgIChL REFUQV9CQVNFX0FERFIgKyAweDAwNkMpCisjZGVmaW5lIEtEQVRBX0tFUk5F TF9JU1JfUEFFUiAgICAgICAgICAgKEtEQVRBX0JBU0VfQUREUiArIDB4MDA2 RCkKKworI2RlZmluZSBLREFUQV9DTElFTlRfU0NSQVRDSDAgICAgICAgICAg IChLREFUQV9CQVNFX0FERFIgKyAweDAwNkUpCisjZGVmaW5lIEtEQVRBX0NM SUVOVF9TQ1JBVENIMSAgICAgICAgICAgKEtEQVRBX0JBU0VfQUREUiArIDB4 MDA2RikKKyNkZWZpbmUgS0RBVEFfS0VSTkVMX1NDUkFUQ0ggICAgICAgICAg ICAoS0RBVEFfQkFTRV9BRERSICsgMHgwMDcwKQorI2RlZmluZSBLREFUQV9L RVJORUxfSVNSX1NDUkFUQ0ggICAgICAgIChLREFUQV9CQVNFX0FERFIgKyAw eDAwNzEpCisKKyNkZWZpbmUgS0RBVEFfT1VFVUVfTEVGVCAgICAgICAgICAg ICAgICAoS0RBVEFfQkFTRV9BRERSICsgMHgwMDcyKQorI2RlZmluZSBLREFU QV9RVUVVRV9SSUdIVCAgICAgICAgICAgICAgIChLREFUQV9CQVNFX0FERFIg KyAweDAwNzMpCisKKyNkZWZpbmUgS0RBVEFfQURDMV9SRVFVRVNUICAgICAg ICAgICAgICAoS0RBVEFfQkFTRV9BRERSICsgMHgwMDc0KQorI2RlZmluZSBL REFUQV9BREMyX1JFUVVFU1QgICAgICAgICAgICAgIChLREFUQV9CQVNFX0FE RFIgKyAweDAwNzUpCisjZGVmaW5lIEtEQVRBX0NEX1JFUVVFU1QJCShLREFU QV9CQVNFX0FERFIgKyAweDAwNzYpCisjZGVmaW5lIEtEQVRBX01JQ19SRVFV RVNUCQkoS0RBVEFfQkFTRV9BRERSICsgMHgwMDc3KQorCisjZGVmaW5lIEtE QVRBX0FEQzFfTUlYRVJfUkVRVUVTVCAgICAgICAgKEtEQVRBX0JBU0VfQURE UiArIDB4MDA3OCkKKyNkZWZpbmUgS0RBVEFfQURDMl9NSVhFUl9SRVFVRVNU ICAgICAgICAoS0RBVEFfQkFTRV9BRERSICsgMHgwMDc5KQorI2RlZmluZSBL REFUQV9DRF9NSVhFUl9SRVFVRVNUCQkoS0RBVEFfQkFTRV9BRERSICsgMHgw MDdBKQorI2RlZmluZSBLREFUQV9NSUNfTUlYRVJfUkVRVUVTVAkJKEtEQVRB X0JBU0VfQUREUiArIDB4MDA3QikKKyNkZWZpbmUgS0RBVEFfTUlDX1NZTkNf Q09VTlRFUgkJKEtEQVRBX0JBU0VfQUREUiArIDB4MDA3QykKKworLyoKKyAq IHNlY29uZCBzZWdtZW50CisgKi8KKworLyogc21hcnQgbWl4ZXIgYnVmZmVy ICovCisKKyNkZWZpbmUgS0RBVEFfTUlYRVJfV09SRDAgICAgICAgICAgICAg ICAoS0RBVEFfQkFTRV9BRERSMiArIDB4MDAwMCkKKyNkZWZpbmUgS0RBVEFf TUlYRVJfV09SRDEgICAgICAgICAgICAgICAoS0RBVEFfQkFTRV9BRERSMiAr IDB4MDAwMSkKKyNkZWZpbmUgS0RBVEFfTUlYRVJfV09SRDIgICAgICAgICAg ICAgICAoS0RBVEFfQkFTRV9BRERSMiArIDB4MDAwMikKKyNkZWZpbmUgS0RB VEFfTUlYRVJfV09SRDMgICAgICAgICAgICAgICAoS0RBVEFfQkFTRV9BRERS MiArIDB4MDAwMykKKyNkZWZpbmUgS0RBVEFfTUlYRVJfV09SRDQgICAgICAg ICAgICAgICAoS0RBVEFfQkFTRV9BRERSMiArIDB4MDAwNCkKKyNkZWZpbmUg S0RBVEFfTUlYRVJfV09SRDUgICAgICAgICAgICAgICAoS0RBVEFfQkFTRV9B RERSMiArIDB4MDAwNSkKKyNkZWZpbmUgS0RBVEFfTUlYRVJfV09SRDYgICAg ICAgICAgICAgICAoS0RBVEFfQkFTRV9BRERSMiArIDB4MDAwNikKKyNkZWZp bmUgS0RBVEFfTUlYRVJfV09SRDcgICAgICAgICAgICAgICAoS0RBVEFfQkFT RV9BRERSMiArIDB4MDAwNykKKyNkZWZpbmUgS0RBVEFfTUlYRVJfV09SRDgg ICAgICAgICAgICAgICAoS0RBVEFfQkFTRV9BRERSMiArIDB4MDAwOCkKKyNk ZWZpbmUgS0RBVEFfTUlYRVJfV09SRDkgICAgICAgICAgICAgICAoS0RBVEFf QkFTRV9BRERSMiArIDB4MDAwOSkKKyNkZWZpbmUgS0RBVEFfTUlYRVJfV09S REEgICAgICAgICAgICAgICAoS0RBVEFfQkFTRV9BRERSMiArIDB4MDAwQSkK KyNkZWZpbmUgS0RBVEFfTUlYRVJfV09SREIgICAgICAgICAgICAgICAoS0RB VEFfQkFTRV9BRERSMiArIDB4MDAwQikKKyNkZWZpbmUgS0RBVEFfTUlYRVJf V09SREMgICAgICAgICAgICAgICAoS0RBVEFfQkFTRV9BRERSMiArIDB4MDAw QykKKyNkZWZpbmUgS0RBVEFfTUlYRVJfV09SREQgICAgICAgICAgICAgICAo S0RBVEFfQkFTRV9BRERSMiArIDB4MDAwRCkKKyNkZWZpbmUgS0RBVEFfTUlY RVJfV09SREUgICAgICAgICAgICAgICAoS0RBVEFfQkFTRV9BRERSMiArIDB4 MDAwRSkKKyNkZWZpbmUgS0RBVEFfTUlYRVJfV09SREYgICAgICAgICAgICAg ICAoS0RBVEFfQkFTRV9BRERSMiArIDB4MDAwRikKKworI2RlZmluZSBLREFU QV9NSVhFUl9YRkVSMCAgICAgICAgICAgICAgIChLREFUQV9CQVNFX0FERFIy ICsgMHgwMDEwKQorI2RlZmluZSBLREFUQV9NSVhFUl9YRkVSMSAgICAgICAg ICAgICAgIChLREFUQV9CQVNFX0FERFIyICsgMHgwMDExKQorI2RlZmluZSBL REFUQV9NSVhFUl9YRkVSMiAgICAgICAgICAgICAgIChLREFUQV9CQVNFX0FE RFIyICsgMHgwMDEyKQorI2RlZmluZSBLREFUQV9NSVhFUl9YRkVSMyAgICAg ICAgICAgICAgIChLREFUQV9CQVNFX0FERFIyICsgMHgwMDEzKQorI2RlZmlu ZSBLREFUQV9NSVhFUl9YRkVSNCAgICAgICAgICAgICAgIChLREFUQV9CQVNF X0FERFIyICsgMHgwMDE0KQorI2RlZmluZSBLREFUQV9NSVhFUl9YRkVSNSAg ICAgICAgICAgICAgIChLREFUQV9CQVNFX0FERFIyICsgMHgwMDE1KQorI2Rl ZmluZSBLREFUQV9NSVhFUl9YRkVSNiAgICAgICAgICAgICAgIChLREFUQV9C QVNFX0FERFIyICsgMHgwMDE2KQorI2RlZmluZSBLREFUQV9NSVhFUl9YRkVS NyAgICAgICAgICAgICAgIChLREFUQV9CQVNFX0FERFIyICsgMHgwMDE3KQor I2RlZmluZSBLREFUQV9NSVhFUl9YRkVSOCAgICAgICAgICAgICAgIChLREFU QV9CQVNFX0FERFIyICsgMHgwMDE4KQorI2RlZmluZSBLREFUQV9NSVhFUl9Y RkVSOSAgICAgICAgICAgICAgIChLREFUQV9CQVNFX0FERFIyICsgMHgwMDE5 KQorI2RlZmluZSBLREFUQV9NSVhFUl9YRkVSX0VORE1BUksgICAgICAgIChL REFUQV9CQVNFX0FERFIyICsgMHgwMDFBKQorCisjZGVmaW5lIEtEQVRBX01J WEVSX1RBU0tfTlVNQkVSICAgICAgICAgKEtEQVRBX0JBU0VfQUREUjIgKyAw eDAwMUIpCisjZGVmaW5lIEtEQVRBX0NVUlJFTlRfTUlYRVIgICAgICAgICAg ICAgKEtEQVRBX0JBU0VfQUREUjIgKyAweDAwMUMpCisjZGVmaW5lIEtEQVRB X01JWEVSX0FDVElWRSAgICAgICAgICAgICAgKEtEQVRBX0JBU0VfQUREUjIg KyAweDAwMUQpCisjZGVmaW5lIEtEQVRBX01JWEVSX0JBTktfU1RBVFVTICAg ICAgICAgKEtEQVRBX0JBU0VfQUREUjIgKyAweDAwMUUpCisjZGVmaW5lIEtE QVRBX0RBQ19MRUZUX1ZPTFVNRQkgICAgICAgIChLREFUQV9CQVNFX0FERFIy ICsgMHgwMDFGKQorI2RlZmluZSBLREFUQV9EQUNfUklHSFRfVk9MVU1FICAg ICAgICAgIChLREFUQV9CQVNFX0FERFIyICsgMHgwMDIwKQorCisvKgorICog Q2xpZW50IGRhdGEgbWVtb3J5IGRlZmluaXRpb24KKyAqLworCisjZGVmaW5l IENEQVRBX0lOU1RBTkNFX1JFQURZICAgICAgICAgICAgMHgwMAorCisjZGVm aW5lIENEQVRBX0hPU1RfU1JDX0FERFJMICAgICAgICAgICAgMHgwMQorI2Rl ZmluZSBDREFUQV9IT1NUX1NSQ19BRERSSCAgICAgICAgICAgIDB4MDIKKyNk ZWZpbmUgQ0RBVEFfSE9TVF9TUkNfRU5EX1BMVVNfMUwgICAgICAweDAzCisj ZGVmaW5lIENEQVRBX0hPU1RfU1JDX0VORF9QTFVTXzFIICAgICAgMHgwNAor I2RlZmluZSBDREFUQV9IT1NUX1NSQ19DVVJSRU5UTCAgICAgICAgIDB4MDUK KyNkZWZpbmUgQ0RBVEFfSE9TVF9TUkNfQ1VSUkVOVEggICAgICAgICAweDA2 CisKKyNkZWZpbmUgQ0RBVEFfSU5fQlVGX0NPTk5FQ1QgICAgICAgICAgICAw eDA3CisjZGVmaW5lIENEQVRBX09VVF9CVUZfQ09OTkVDVCAgICAgICAgICAg MHgwOAorCisjZGVmaW5lIENEQVRBX0lOX0JVRl9CRUdJTiAgICAgICAgICAg ICAgMHgwOQorI2RlZmluZSBDREFUQV9JTl9CVUZfRU5EX1BMVVNfMSAgICAg ICAgIDB4MEEKKyNkZWZpbmUgQ0RBVEFfSU5fQlVGX0hFQUQgICAgICAgICAg ICAgICAweDBCCisjZGVmaW5lIENEQVRBX0lOX0JVRl9UQUlMICAgICAgICAg ICAgICAgMHgwQworCisjZGVmaW5lIENEQVRBX09VVF9CVUZfQkVHSU4gICAg ICAgICAgICAgMHgwRAorI2RlZmluZSBDREFUQV9PVVRfQlVGX0VORF9QTFVT XzEgICAgICAgIDB4MEUKKyNkZWZpbmUgQ0RBVEFfT1VUX0JVRl9IRUFEICAg ICAgICAgICAgICAweDBGCisjZGVmaW5lIENEQVRBX09VVF9CVUZfVEFJTCAg ICAgICAgICAgICAgMHgxMAorCisjZGVmaW5lIENEQVRBX0RNQV9DT05UUk9M ICAgICAgICAgICAgICAgMHgxMQorI2RlZmluZSBDREFUQV9SRVNFUlZFRCAg ICAgICAgICAgICAgICAgIDB4MTIKKworI2RlZmluZSBDREFUQV9GUkVRVUVO Q1kgICAgICAgICAgICAgICAgIDB4MTMKKyNkZWZpbmUgQ0RBVEFfTEVGVF9W T0xVTUUgICAgICAgICAgICAgICAweDE0CisjZGVmaW5lIENEQVRBX1JJR0hU X1ZPTFVNRSAgICAgICAgICAgICAgMHgxNQorI2RlZmluZSBDREFUQV9MRUZU X1NVUl9WT0wgICAgICAgICAgICAgIDB4MTYKKyNkZWZpbmUgQ0RBVEFfUklH SFRfU1VSX1ZPTCAgICAgICAgICAgICAweDE3CisKKy8qIFRoZXNlIGFyZSBm cm9tIEFsbGVncm8gaGNrZXJuZWwuaCAqLworI2RlZmluZSBDREFUQV9IRUFE RVJfTEVOICAgICAgICAgICAgICAgIDB4MTgKKyNkZWZpbmUgU1JDM19ESVJF Q1RJT05fT0ZGU0VUICAgICAgICAgICBDREFUQV9IRUFERVJfTEVOCisjZGVm aW5lIFNSQzNfTU9ERV9PRkZTRVQgICAgICAgICAgICAgICAgQ0RBVEFfSEVB REVSX0xFTiArIDEKKyNkZWZpbmUgU1JDM19XT1JEX0xFTkdUSF9PRkZTRVQg ICAgICAgICBDREFUQV9IRUFERVJfTEVOICsgMgorI2RlZmluZSBTUkMzX1BB UkFNRVRFUl9PRkZTRVQgICAgICAgICAgIENEQVRBX0hFQURFUl9MRU4gKyAz CisjZGVmaW5lIFNSQzNfQ09FRkZfQUREUl9PRkZTRVQgICAgICAgICAgQ0RB VEFfSEVBREVSX0xFTiArIDgKKyNkZWZpbmUgU1JDM19GSUxUQVBfQUREUl9P RkZTRVQgICAgICAgICBDREFUQV9IRUFERVJfTEVOICsgMTAKKyNkZWZpbmUg U1JDM19URU1QX0lOQlVGX0FERFJfT0ZGU0VUICAgICBDREFUQV9IRUFERVJf TEVOICsgMTYKKyNkZWZpbmUgU1JDM19URU1QX09VVEJVRl9BRERSX09GRlNF VCAgICBDREFUQV9IRUFERVJfTEVOICsgMTcKKyNkZWZpbmUgRk9SX0ZVVFVS RV9VU0UgICAgICAgICAgICAgICAgICAxMAkvKiBmb3Igc3RvcmluZyB0ZW1w b3JhcnkgdmFyaWFibGUgaW4gZnV0dXJlICovCisKKy8qCisgKiBETUEgY29u dHJvbCBkZWZpbml0aW9uCisgKi8KKworI2RlZmluZSBETUFDT05UUk9MX0JM T0NLX01BU0sgICAgICAgICAgIDB4MDAwRgorI2RlZmluZSAgRE1BQ19CTE9D SzBfU0VMRUNUT1IgICAgICAgICAgIDB4MDAwMAorI2RlZmluZSAgRE1BQ19C TE9DSzFfU0VMRUNUT1IgICAgICAgICAgIDB4MDAwMQorI2RlZmluZSAgRE1B Q19CTE9DSzJfU0VMRUNUT1IgICAgICAgICAgIDB4MDAwMgorI2RlZmluZSAg RE1BQ19CTE9DSzNfU0VMRUNUT1IgICAgICAgICAgIDB4MDAwMworI2RlZmlu ZSAgRE1BQ19CTE9DSzRfU0VMRUNUT1IgICAgICAgICAgIDB4MDAwNAorI2Rl ZmluZSAgRE1BQ19CTE9DSzVfU0VMRUNUT1IgICAgICAgICAgIDB4MDAwNQor I2RlZmluZSAgRE1BQ19CTE9DSzZfU0VMRUNUT1IgICAgICAgICAgIDB4MDAw NgorI2RlZmluZSAgRE1BQ19CTE9DSzdfU0VMRUNUT1IgICAgICAgICAgIDB4 MDAwNworI2RlZmluZSAgRE1BQ19CTE9DSzhfU0VMRUNUT1IgICAgICAgICAg IDB4MDAwOAorI2RlZmluZSAgRE1BQ19CTE9DSzlfU0VMRUNUT1IgICAgICAg ICAgIDB4MDAwOQorI2RlZmluZSAgRE1BQ19CTE9DS0FfU0VMRUNUT1IgICAg ICAgICAgIDB4MDAwQQorI2RlZmluZSAgRE1BQ19CTE9DS0JfU0VMRUNUT1Ig ICAgICAgICAgIDB4MDAwQgorI2RlZmluZSAgRE1BQ19CTE9DS0NfU0VMRUNU T1IgICAgICAgICAgIDB4MDAwQworI2RlZmluZSAgRE1BQ19CTE9DS0RfU0VM RUNUT1IgICAgICAgICAgIDB4MDAwRAorI2RlZmluZSAgRE1BQ19CTE9DS0Vf U0VMRUNUT1IgICAgICAgICAgIDB4MDAwRQorI2RlZmluZSAgRE1BQ19CTE9D S0ZfU0VMRUNUT1IgICAgICAgICAgIDB4MDAwRgorI2RlZmluZSBETUFDT05U Uk9MX1BBR0VfTUFTSyAgICAgICAgICAgIDB4MDBGMAorI2RlZmluZSAgRE1B Q19QQUdFMF9TRUxFQ1RPUiAgICAgICAgICAgIDB4MDAzMAorI2RlZmluZSAg RE1BQ19QQUdFMV9TRUxFQ1RPUiAgICAgICAgICAgIDB4MDAyMAorI2RlZmlu ZSAgRE1BQ19QQUdFMl9TRUxFQ1RPUiAgICAgICAgICAgIDB4MDAxMAorI2Rl ZmluZSAgRE1BQ19QQUdFM19TRUxFQ1RPUiAgICAgICAgICAgIDB4MDAwMAor I2RlZmluZSBETUFDT05UUk9MX0FVVE9SRVBFQVQgICAgICAgICAgIDB4MTAw MAorI2RlZmluZSBETUFDT05UUk9MX1NUT1BQRUQgICAgICAgICAgICAgIDB4 MjAwMAorI2RlZmluZSBETUFDT05UUk9MX0RJUkVDVElPTiAgICAgICAgICAg IDB4MDEwMAorCisvKgorICogS2VybmVsL2NsaWVudCBtZW1vcnkgYWxsb2Nh dGlvbgorICovCisKKyNkZWZpbmUgTlVNX1VOSVRTX0tFUk5FTF9DT0RFICAg ICAgICAgIDE2CisjZGVmaW5lIE5VTV9VTklUU19LRVJORUxfREFUQSAgICAg ICAgICAgMgorCisjZGVmaW5lIE5VTV9VTklUU19LRVJORUxfQ09ERV9XSVRI X0hTUCAxNgorI2lmZGVmIE0zX01PREVMCisjZGVmaW5lIE5VTV9VTklUU19L RVJORUxfREFUQV9XSVRIX0hTUCAgNQorI2Vsc2UKKyNkZWZpbmUgTlVNX1VO SVRTX0tFUk5FTF9EQVRBX1dJVEhfSFNQICA0CisjZW5kaWYKKworI2RlZmlu ZSBOVU1fVU5JVFMoIEJZVEVTLCBVTklUTEVOICkgICAgKCgoKEJZVEVTKzEp Pj4xKSArIChVTklUTEVOLTEpKSAvIFVOSVRMRU4pCisKKy8qCisgKiBEU1Ag aGFyZHdhcmUKKyAqLworCisjZGVmaW5lIERTUF9QT1JUX1RJTUVSX0NPVU5U ICAgICAgICAgICAgMHgwNgorI2RlZmluZSBEU1BfUE9SVF9NRU1PUllfSU5E RVggICAgICAgICAgIDB4ODAKKyNkZWZpbmUgRFNQX1BPUlRfTUVNT1JZX1RZ UEUgICAgICAgICAgICAweDgyCisjZGVmaW5lIERTUF9QT1JUX01FTU9SWV9E QVRBICAgICAgICAgICAgMHg4NAorI2RlZmluZSBEU1BfUE9SVF9DT05UUk9M X1JFR19BICAgICAgICAgIDB4QTIKKyNkZWZpbmUgRFNQX1BPUlRfQ09OVFJP TF9SRUdfQiAgICAgICAgICAweEE0CisjZGVmaW5lIERTUF9QT1JUX0NPTlRS T0xfUkVHX0MgICAgICAgICAgMHhBNgorCisjZGVmaW5lIE1FTVRZUEVfSU5U RVJOQUxfQ09ERSAgICAgICAgICAgMHgwMDAyCisjZGVmaW5lIE1FTVRZUEVf SU5URVJOQUxfREFUQSAgICAgICAgICAgMHgwMDAzCisjZGVmaW5lIE1FTVRZ UEVfTUFTSyAgICAgICAgICAgICAgICAgICAgMHgwMDAzCisKKyNkZWZpbmUg UkVHQl9FTkFCTEVfUkVTRVQgICAgICAgICAgICAgICAweDAxCisjZGVmaW5l IFJFR0JfU1RPUF9DTE9DSyAgICAgICAgICAgICAgICAgMHgxMAorCisjZGVm aW5lIFJFR0NfRElTQUJMRV9GTV9NQVBQSU5HICAgICAgICAgMHgwMgorCisj ZGVmaW5lIERQX1NISUZUX0NPVU5UICAgICAgICAgICAgICAgICAgNworCisj ZGVmaW5lIERNQV9CTE9DS19MRU5HVEggICAgICAgICAgICAgICAgMzIKKwor LyogVGhlc2UgYXJlIGZyb20gQWxsZWdybyBzcmNtZ3IuaCAqLworI2RlZmlu ZSBNSU5JU1JDX0JJUVVBRF9TVEFHRSAgICAyCisjZGVmaW5lIE1JTklTUkNf SU5fQlVGRkVSX1NJWkUgICAoIDB4NTAgKiAyICkKKyNkZWZpbmUgTUlOSVNS Q19PVVRfQlVGRkVSX1NJWkUgICggMHg1MCAqIDIgKiAyKQorI2RlZmluZSBN SU5JU1JDX1RNUF9CVUZGRVJfU0laRSAgKCAxMTIgKyAoIE1JTklTUkNfQklR VUFEX1NUQUdFICogMyArIDQgKSAqIDIgKiAyICkKKyNkZWZpbmUgTUlOSVNS Q19CSVFVQURfU1RBR0UgICAgMgorLyogTS4gU1JDIExQRiBjb2VmZmljaWVu dCBjb3VsZCBiZSBjaGFuZ2VkIGluIHRoZSBEU1AgY29kZSAqLworI2RlZmlu ZSBNSU5JU1JDX0NPRUZfTE9DICAgICAgICAgIDBYMTc1CisKKyNlbmRpZgkv KiAhX0RFVl9TT1VORF9QQ0lfQUxMRUdST19SRUdfSCAqLwpkaWZmIC1ydU4g ZGV2L3NvdW5kL3BjaS5lbXUxMGsvZW11MTBrMXJlZy5oIGRldi9zb3VuZC9w Y2kvZW11MTBrMXJlZy5oCi0tLSBkZXYvc291bmQvcGNpLmVtdTEway9lbXUx MGsxcmVnLmgJMjAxMS0wMS0xMCAxNzozMDoyNS4wMDAwMDAwMDAgKzAwMDAK KysrIGRldi9zb3VuZC9wY2kvZW11MTBrMXJlZy5oCTIwMTEtMDEtMTAgMjA6 Mjc6MTcuMDAwMDAwMDAwICswMDAwCkBAIC0xLDMgKzEsNCBAQAorLyogJEZy ZWVCU0QkICovCiAvKgkkTmV0QlNEOiBlbXV4a2lyZWcuaCx2IDEuOCAyMDA4 LzA0LzI4IDIwOjIzOjU0IG1hcnRpbiBFeHAgJAkqLwogCiAvKi0KZGlmZiAt cnVOIGRldi9zb3VuZC9wY2kuZW11MTBrL21hZXN0cm8zLmMgZGV2L3NvdW5k L3BjaS9tYWVzdHJvMy5jCi0tLSBkZXYvc291bmQvcGNpLmVtdTEway9tYWVz dHJvMy5jCTIwMTEtMDEtMTAgMTc6MzA6MjUuMDAwMDAwMDAwICswMDAwCisr KyBkZXYvc291bmQvcGNpL21hZXN0cm8zLmMJMjAxMS0wMS0xMiAxMDowMTo0 NC4wMDAwMDAwMDAgKzAwMDAKQEAgLTYyLDggKzYyLDEwIEBACiAjaW5jbHVk ZSA8ZGV2L3BjaS9wY2lyZWcuaD4KICNpbmNsdWRlIDxkZXYvcGNpL3BjaXZh ci5oPgogCi0jaW5jbHVkZSA8Z251L2Rldi9zb3VuZC9wY2kvbWFlc3RybzNf cmVnLmg+Ci0jaW5jbHVkZSA8Z251L2Rldi9zb3VuZC9wY2kvbWFlc3RybzNf ZHNwLmg+CisjZGVmaW5lIE0zX01PREVMIDEKKworI2luY2x1ZGUgPGRldi9z b3VuZC9wY2kvYWxsZWdyb19yZWcuaD4KKyNpbmNsdWRlIDxkZXYvc291bmQv cGNpL2FsbGVncm9fY29kZS5oPgogCiBTTkRfREVDTEFSRV9GSUxFKCIkRnJl ZUJTRDogc3JjL3N5cy9kZXYvc291bmQvcGNpL21hZXN0cm8zLmMsdiAxLjM2 LjIuMi40LjEgMjAxMC8xMi8yMSAxNzowOToyNSBrZW5zbWl0aCBFeHAgJCIp OwogCkBAIC05Niw2ICs5OCw3IEBACiAjZGVmaW5lIE0zX1BDSEFOUyA0IC8q IGNyZWF0ZSAvZGV2L2RzcDAuWzAtTl0gdG8gdXNlIG1vcmUgdGhhbiBvbmUg Ki8KICNkZWZpbmUgTTNfUkNIQU5TIDEKICNkZWZpbmUgTTNfTUFYQUREUiAo KDEgPDwgMjcpIC0gMSkKKyNkZWZpbmUgTTNfREVGQVVMVF9WT0wgMHg2ODAw CiAKIHN0cnVjdCBzY19pbmZvOwogCkBAIC0zNzYsNiArMzc5LDMxIEBACiAJ aW50IGlkeCwgZGF0YV9ieXRlcywgZGFjX2RhdGE7CiAJaW50IGRzcF9pbl9z aXplLCBkc3Bfb3V0X3NpemUsIGRzcF9pbl9idWYsIGRzcF9vdXRfYnVmOwog CisJc3RydWN0IGRhdGFfd29yZCB7CisJICAgIHVfaW50MTZfdCBhZGRyLCB2 YWw7CisJfSBwdltdID0geworCSAgICB7Q0RBVEFfTEVGVF9WT0xVTUUsIE0z X0RFRkFVTFRfVk9MfSwKKwkgICAge0NEQVRBX1JJR0hUX1ZPTFVNRSwgTTNf REVGQVVMVF9WT0x9LAorCSAgICB7U1JDM19ESVJFQ1RJT05fT0ZGU0VULCAw fSAsCisJICAgIHtTUkMzX0RJUkVDVElPTl9PRkZTRVQgKyAzLCAweDAwMDB9 LAorCSAgICB7U1JDM19ESVJFQ1RJT05fT0ZGU0VUICsgNCwgMH0sCisJICAg IHtTUkMzX0RJUkVDVElPTl9PRkZTRVQgKyA1LCAwfSwKKwkgICAge1NSQzNf RElSRUNUSU9OX09GRlNFVCArIDYsIDB9LAorCSAgICB7U1JDM19ESVJFQ1RJ T05fT0ZGU0VUICsgNywgMH0sCisJICAgIHtTUkMzX0RJUkVDVElPTl9PRkZT RVQgKyA4LCAwfSwKKwkgICAge1NSQzNfRElSRUNUSU9OX09GRlNFVCArIDks IDB9LAorCSAgICB7U1JDM19ESVJFQ1RJT05fT0ZGU0VUICsgMTAsIDB4ODAw MH0sCisJICAgIHtTUkMzX0RJUkVDVElPTl9PRkZTRVQgKyAxMSwgMHhGRjAw fSwKKwkgICAge1NSQzNfRElSRUNUSU9OX09GRlNFVCArIDEzLCAwfSwKKwkg ICAge1NSQzNfRElSRUNUSU9OX09GRlNFVCArIDE0LCAwfSwKKwkgICAge1NS QzNfRElSRUNUSU9OX09GRlNFVCArIDE1LCAwfSwKKwkgICAge1NSQzNfRElS RUNUSU9OX09GRlNFVCArIDE2LCA4fSwKKwkgICAge1NSQzNfRElSRUNUSU9O X09GRlNFVCArIDE3LCA1MCoyfSwKKwkgICAge1NSQzNfRElSRUNUSU9OX09G RlNFVCArIDE4LCBNSU5JU1JDX0JJUVVBRF9TVEFHRSAtIDF9LAorCSAgICB7 U1JDM19ESVJFQ1RJT05fT0ZGU0VUICsgMjAsIDB9LAorCSAgICB7U1JDM19E SVJFQ1RJT05fT0ZGU0VUICsgMjEsIDB9CisJfTsKKwogCU0zX0xPQ0soc2Mp OwogCWlkeCA9IHNjLT5wY2hfY250OyAvKiBkYWMgaW5zdGFuY2UgbnVtYmVy LCBubyBhY3RpdmUgcmV1c2UhICovCiAgICAgICAgIE0zX0RFQlVHKENIQU5H RSwgKCJtM19wY2hhbl9pbml0KGRhYz0lZClcbiIsIGlkeCkpOwpAQCAtNzI5 LDYgKzc1NywzMyBAQAogCWludCBpZHgsIGRhdGFfYnl0ZXMsIGFkY19kYXRh OwogCWludCBkc3BfaW5fc2l6ZSwgZHNwX291dF9zaXplLCBkc3BfaW5fYnVm LCBkc3Bfb3V0X2J1ZjsgCiAKKwlzdHJ1Y3QgZGF0YV93b3JkIHsKKwl1X2lu dDE2X3QgYWRkciwgdmFsOworCX0gcnZbXSA9IHsKKwkgICAge0NEQVRBX0xF RlRfVk9MVU1FLCBNM19ERUZBVUxUX1ZPTH0sCisJICAgIHtDREFUQV9SSUdI VF9WT0xVTUUsIE0zX0RFRkFVTFRfVk9MfSwKKwkgICAge1NSQzNfRElSRUNU SU9OX09GRlNFVCwgMX0sCisJICAgIHtTUkMzX0RJUkVDVElPTl9PRkZTRVQg KyAzLCAweDAwMDB9LAorCSAgICB7U1JDM19ESVJFQ1RJT05fT0ZGU0VUICsg NCwgMH0sCisJICAgIHtTUkMzX0RJUkVDVElPTl9PRkZTRVQgKyA1LCAwfSwK KwkgICAge1NSQzNfRElSRUNUSU9OX09GRlNFVCArIDYsIDB9LAorCSAgICB7 U1JDM19ESVJFQ1RJT05fT0ZGU0VUICsgNywgMH0sCisJICAgIHtTUkMzX0RJ UkVDVElPTl9PRkZTRVQgKyA4LCAwfSwKKwkgICAge1NSQzNfRElSRUNUSU9O X09GRlNFVCArIDksIDB9LAorCSAgICB7U1JDM19ESVJFQ1RJT05fT0ZGU0VU ICsgMTAsIDB4ODAwMH0sCisJICAgIHtTUkMzX0RJUkVDVElPTl9PRkZTRVQg KyAxMSwgMHhGRjAwfSwKKwkgICAge1NSQzNfRElSRUNUSU9OX09GRlNFVCAr IDEzLCAwfSwKKwkgICAge1NSQzNfRElSRUNUSU9OX09GRlNFVCArIDE0LCAw fSwKKwkgICAge1NSQzNfRElSRUNUSU9OX09GRlNFVCArIDE1LCAwfSwKKwkg ICAge1NSQzNfRElSRUNUSU9OX09GRlNFVCArIDE2LCA1MH0sCisJICAgIHtT UkMzX0RJUkVDVElPTl9PRkZTRVQgKyAxNywgOH0sCisJICAgIHtTUkMzX0RJ UkVDVElPTl9PRkZTRVQgKyAxOCwgMH0sCisJICAgIHtTUkMzX0RJUkVDVElP Tl9PRkZTRVQgKyAxOSwgMH0sCisJICAgIHtTUkMzX0RJUkVDVElPTl9PRkZT RVQgKyAyMCwgMH0sCisJICAgIHtTUkMzX0RJUkVDVElPTl9PRkZTRVQgKyAy MSwgMH0sCisJICAgIHtTUkMzX0RJUkVDVElPTl9PRkZTRVQgKyAyMiwgMHhm Zn0KKwl9OworCiAJTTNfTE9DSyhzYyk7CiAJaWR4ID0gc2MtPnJjaF9jbnQ7 IC8qIGFkYyBpbnN0YW5jZSBudW1iZXIsIG5vIGFjdGl2ZSByZXVzZSEgKi8K ICAgICAgICAgTTNfREVCVUcoQ0hBTkdFLCAoIm0zX3JjaGFuX2luaXQoYWRj PSVkKVxuIiwgaWR4KSk7CkBAIC0xMTg5LDI1ICsxMjQ0LDI1IEBACiAJbTNf d3JfYXNzcF9kYXRhKHNjLCBLREFUQV9DVVJSRU5UX0RNQSwKIAkJCUtEQVRB X0RNQV9YRkVSMCk7CiAJLyogd3JpdGUga2VybmVsIGludG8gY29kZSBtZW1v cnkgKi8KLQlzaXplID0gc2l6ZW9mKGFzc3Bfa2VybmVsX2ltYWdlKTsKKwlz aXplID0gc2l6ZW9mKGdhd19rZXJuZWxfdmVjdF9jb2RlKTsKIAlmb3IoaSA9 IDAgOyBpIDwgc2l6ZSAvIDI7IGkrKykgewogCQltM193cl9hc3NwX2NvZGUo c2MsIFJFVl9CX0NPREVfTUVNT1JZX0JFR0lOICsgaSwKLQkJCQlhc3NwX2tl cm5lbF9pbWFnZVtpXSk7CisJCQkJZ2F3X2tlcm5lbF92ZWN0X2NvZGVbaV0p OwogCX0KIAkvKgogCSAqIFdlIG9ubHkgaGF2ZSB0aGlzIG9uZSBjbGllbnQg YW5kIHdlIGtub3cgdGhhdCAweDQwMCBpcyBmcmVlIGluCiAJICogb3VyIGtl cm5lbCdzIG1lbSBtYXAsIHNvIGxldHMganVzdCBkcm9wIGl0IHRoZXJlLiAg SXQgc2VlbXMgdGhhdAogCSAqIHRoZSBtaW5pc3JjIGRvZXNuJ3QgbmVlZCB2 ZWN0b3JzLCBzbyB3ZSB3b24ndCBib3RoZXIgd2l0aCB0aGVtLi4KIAkgKi8K LQlzaXplID0gc2l6ZW9mKGFzc3BfbWluaXNyY19pbWFnZSk7CisJc2l6ZSA9 IHNpemVvZihnYXdfbWluaXNyY19jb2RlXzA0MDApOwogCWZvcihpID0gMCA7 IGkgPCBzaXplIC8gMjsgaSsrKSB7Ci0JCW0zX3dyX2Fzc3BfY29kZShzYywg MHg0MDAgKyBpLCBhc3NwX21pbmlzcmNfaW1hZ2VbaV0pOworCQltM193cl9h c3NwX2NvZGUoc2MsIDB4NDAwICsgaSwgZ2F3X21pbmlzcmNfY29kZV8wNDAw W2ldKTsKIAl9CiAJLyogd3JpdGUgdGhlIGNvZWZmaWNpZW50cyBmb3IgdGhl IGxvdyBwYXNzIGZpbHRlcj8gKi8KLQlzaXplID0gc2l6ZW9mKG1pbmlzcmNf bHBmX2ltYWdlKTsKKwlzaXplID0gc2l6ZW9mKG1pbmlzcmNfbHBmKTsKIAlm b3IoaSA9IDA7IGkgPCBzaXplIC8gMiA7IGkrKykgewogCQltM193cl9hc3Nw X2NvZGUoc2MsMHg0MDAgKyBNSU5JU1JDX0NPRUZfTE9DICsgaSwKLQkJCQlt aW5pc3JjX2xwZl9pbWFnZVtpXSk7CisJCQkJbWluaXNyY19scGZbaV0pOwog CX0KIAltM193cl9hc3NwX2NvZGUoc2MsIDB4NDAwICsgTUlOSVNSQ19DT0VG X0xPQyArIHNpemUsIDB4ODAwMCk7CiAJLyogdGhlIG1pbmlzcmMgaXMgdGhl IG9ubHkgdGhpbmcgb24gb3VyIHRhc2sgbGlzdCAqLwpAQCAtMTIxNSw4ICsx MjcwLDggQEAKIAkvKiBpbml0IHRoZSBtaXhlciBudW1iZXIgKi8KIAltM193 cl9hc3NwX2RhdGEoc2MsIEtEQVRBX01JWEVSX1RBU0tfTlVNQkVSLCAwKTsK IAkvKiBleHRyZW1lIGtlcm5lbCBtYXN0ZXIgdm9sdW1lICovCi0JbTNfd3Jf YXNzcF9kYXRhKHNjLCBLREFUQV9EQUNfTEVGVF9WT0xVTUUsIEFSQl9WT0xV TUUpOwotCW0zX3dyX2Fzc3BfZGF0YShzYywgS0RBVEFfREFDX1JJR0hUX1ZP TFVNRSwgQVJCX1ZPTFVNRSk7CisJbTNfd3JfYXNzcF9kYXRhKHNjLCBLREFU QV9EQUNfTEVGVF9WT0xVTUUsIE0zX0RFRkFVTFRfVk9MKTsKKwltM193cl9h c3NwX2RhdGEoc2MsIEtEQVRBX0RBQ19SSUdIVF9WT0xVTUUsIE0zX0RFRkFV TFRfVk9MKTsKIAogCW0zX2FtcF9lbmFibGUoc2MpOwogCi0tLSBtb2R1bGVz L3NvdW5kL2RyaXZlci9tYWVzdHJvMy9NYWtlZmlsZS5vcmlnCTIwMTEtMDEt MTEgMjE6MzU6NDkuMDAwMDAwMDAwICswMDAwCisrKyBtb2R1bGVzL3NvdW5k L2RyaXZlci9tYWVzdHJvMy9NYWtlZmlsZQkyMDExLTAxLTExIDIxOjM4OjI0 LjAwMDAwMDAwMCArMDAwMApAQCAtNCw2ICs0LDcgQEAKIAogS01PRD0Jc25k X21hZXN0cm8zCiBTUkNTPQlkZXZpY2VfaWYuaCBidXNfaWYuaCBwY2lfaWYu aAorU1JDUys9CWFsbGVncm9fY29kZS5oIGFsbGVncm9fcmVnLmgKIFNSQ1Mr PQltYWVzdHJvMy5jCiAKIENGTEFHUys9IC1XYWxsIC1ETTNfREVCVUdfTEVW RUw9LTEK --0-1011579751-1294847030=:77902-- From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 12 17:35:47 2011 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 14ACC1065670; Wed, 12 Jan 2011 17:35:47 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DF80E8FC12; Wed, 12 Jan 2011 17:35:46 +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 p0CHZkFf078636; Wed, 12 Jan 2011 17:35:46 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0CHZkEa078632; Wed, 12 Jan 2011 17:35:46 GMT (envelope-from jh) Date: Wed, 12 Jan 2011 17:35:46 GMT Message-Id: <201101121735.p0CHZkEa078632@freefall.freebsd.org> To: akukula@gmail.com, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: kern/88047: [asr] [panic] 6.0-RC1 reboots with SMP and asr 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, 12 Jan 2011 17:35:47 -0000 Synopsis: [asr] [panic] 6.0-RC1 reboots with SMP and asr State-Changed-From-To: feedback->closed State-Changed-By: jh State-Changed-When: Wed Jan 12 17:35:46 UTC 2011 State-Changed-Why: Submitter can't reproduce anymore. http://www.freebsd.org/cgi/query-pr.cgi?pr=88047 From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 12 18:01:53 2011 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 B1FA7106564A; Wed, 12 Jan 2011 18:01:53 +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 87E3A8FC15; Wed, 12 Jan 2011 18:01:53 +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 p0CI1r8D010605; Wed, 12 Jan 2011 18:01:53 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0CI1r31010601; Wed, 12 Jan 2011 18:01:53 GMT (envelope-from linimon) Date: Wed, 12 Jan 2011 18:01:53 GMT Message-Id: <201101121801.p0CI1r31010601@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, des@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/153748: [libfetch] [patch] in ftp_request: closing of the connection happens too earlier 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, 12 Jan 2011 18:01:53 -0000 Synopsis: [libfetch] [patch] in ftp_request: closing of the connection happens too earlier Responsible-Changed-From-To: freebsd-bugs->des Responsible-Changed-By: linimon Responsible-Changed-When: Wed Jan 12 18:01:30 UTC 2011 Responsible-Changed-Why: Over to maintainer. OTOH maintainer says he has a different patch in the works. http://www.freebsd.org/cgi/query-pr.cgi?pr=153748 From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 12 19:40:05 2011 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 98743106566C for ; Wed, 12 Jan 2011 19:40: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 57D038FC12 for ; Wed, 12 Jan 2011 19:40: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 p0CJe5qx010783 for ; Wed, 12 Jan 2011 19:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0CJe5qp010782; Wed, 12 Jan 2011 19:40:05 GMT (envelope-from gnats) Resent-Date: Wed, 12 Jan 2011 19:40:05 GMT Resent-Message-Id: <201101121940.p0CJe5qp010782@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, Andrew Boyer Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A2E01065674 for ; Wed, 12 Jan 2011 19:32:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 69CBB8FC12 for ; Wed, 12 Jan 2011 19:32:34 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0CJWYha023881 for ; Wed, 12 Jan 2011 19:32:34 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0CJWYAl023880; Wed, 12 Jan 2011 19:32:34 GMT (envelope-from nobody) Message-Id: <201101121932.p0CJWYAl023880@red.freebsd.org> Date: Wed, 12 Jan 2011 19:32:34 GMT From: Andrew Boyer To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/153936: [ixgbe] [patch] MPRC workaround incorrectly applied to 82599 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, 12 Jan 2011 19:40:05 -0000 >Number: 153936 >Category: kern >Synopsis: [ixgbe] [patch] MPRC workaround incorrectly applied to 82599 >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 Jan 12 19:40:04 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Andrew Boyer >Release: -current >Organization: Avere Systems >Environment: N/A >Description: ixgbe_update_stats_counters() used a workaround for the MPC register described in the Intel 82598 sightings list. This workaround (subtracting bprc from mprc) is always used, even on 82599 hardware where it is not applicable. The result is an incorrect (sometimes negative) multicast packets received count on 82599 interfaces. >How-To-Repeat: "sysctl dev.ix.0" on an 82599 controller, soon after boot: dev.ix.0.mac_stats.good_pkts_rcvd: 97 dev.ix.0.mac_stats.mcast_pkts_rcvd: -64 dev.ix.0.mac_stats.bcast_pkts_rcvd: 79 >Fix: Make this conditional on the MAC type: /* * Workaround: mprc hardware is incorrectly counting * broadcasts, so for now we subtract those. */ bprc = IXGBE_READ_REG(hw, IXGBE_BPRC); adapter->stats.bprc += bprc; adapter->stats.mprc += IXGBE_READ_REG(hw, IXGBE_MPRC); adapter->stats.mprc -= bprc; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 12 20:20:05 2011 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 37E3B1065675 for ; Wed, 12 Jan 2011 20:20: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 E55D98FC0C for ; Wed, 12 Jan 2011 20: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 p0CKK4Yt056738 for ; Wed, 12 Jan 2011 20:20:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0CKK433056737; Wed, 12 Jan 2011 20:20:04 GMT (envelope-from gnats) Resent-Date: Wed, 12 Jan 2011 20:20:04 GMT Resent-Message-Id: <201101122020.p0CKK433056737@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, Juergen Lock Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4B72F1065674; Wed, 12 Jan 2011 20:16:05 +0000 (UTC) (envelope-from nox@jelal.kn-bremen.de) Received: from smtp.kn-bremen.de (gelbbaer.kn-bremen.de [78.46.108.116]) by mx1.freebsd.org (Postfix) with ESMTP id 9B0338FC17; Wed, 12 Jan 2011 20:16:03 +0000 (UTC) Received: by smtp.kn-bremen.de (Postfix, from userid 10) id 5B0CA1E000C6; Wed, 12 Jan 2011 20:58:11 +0100 (CET) Received: from triton8.kn-bremen.de (noident@localhost [127.0.0.1]) by triton8.kn-bremen.de (8.14.4/8.14.3) with ESMTP id p0CJu024078590; Wed, 12 Jan 2011 20:56:00 +0100 (CET) (envelope-from nox@triton8.kn-bremen.de) Received: (from nox@localhost) by triton8.kn-bremen.de (8.14.4/8.14.3/Submit) id p0CJtx5B078589; Wed, 12 Jan 2011 20:55:59 +0100 (CET) (envelope-from nox) Message-Id: <201101121955.p0CJtx5B078589@triton8.kn-bremen.de> Date: Wed, 12 Jan 2011 20:55:59 +0100 (CET) From: Juergen Lock To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: freebsd-net@FreeBSD.org, moonlightakkiy@yahoo.ca Subject: kern/153938: [run] [panic] [patch] Workaround for use-after-free panic X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Juergen Lock List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2011 20:20:05 -0000 >Number: 153938 >Category: kern >Synopsis: [run] [panic] [patch] Workaround for use-after-free panic >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jan 12 20:20:04 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Juergen Lock >Release: FreeBSD 8.1-RC2 amd64 >Organization: me? organized?? >Environment: System: FreeBSD triton8.kn-bremen.de 8.1-RC2 FreeBSD 8.1-RC2 #9: Wed Sep 1 21:53:36 CEST 2010 nox@triton8.kn-bremen.de:/usr/obj/data2v/home/nox/src-r81/src/sys/TRITON8U amd64 Yes this is an older stable/8 checkout but if_run(4) is checked out from head. >Description: Running the nic in hostap mode with wpa2 I once every few weeks got the following crash: #0 doadump () at pcpu.h:223 223 pcpu.h: No such file or directory. in pcpu.h (kgdb) bt #0 doadump () at pcpu.h:223 #1 0xffffffff805f0719 in boot (howto=260) at /data2v/home/nox/src-r81/src/sys/kern/kern_shutdown.c:416 #2 0xffffffff805f0b6c in panic (fmt=Variable "fmt" is not available. ) at /data2v/home/nox/src-r81/src/sys/kern/kern_shutdown.c:590 #3 0xffffffff808e4e0d in trap_fatal (frame=0xc, eva=Variable "eva" is not available. ) at /data2v/home/nox/src-r81/src/sys/amd64/amd64/trap.c:777 #4 0xffffffff808e51f4 in trap_pfault (frame=0xffffff80ec121aa0, usermode=0) at /data2v/home/nox/src-r81/src/sys/amd64/amd64/trap.c:693 #5 0xffffffff808e5a7e in trap (frame=0xffffff80ec121aa0) at /data2v/home/nox/src-r81/src/sys/amd64/amd64/trap.c:451 #6 0xffffffff808ca953 in calltrap () at /data2v/home/nox/src-r81/src/sys/amd64/amd64/exception.S:223 #7 0xffffffff81072ac6 in run_drain_fifo (arg=Variable "arg" is not available. ) at /data2v/home/nox/src-r81/src/sys/modules/usb/run/../../../dev/usb/wlan/if_run.c:2245 #8 0xffffffff81072bc3 in run_ratectl_cb (arg=Variable "arg" is not available. ) at /data2v/home/nox/src-r81/src/sys/modules/usb/run/../../../dev/usb/wlan/if_run.c:2210 #9 0xffffffff8062e543 in taskqueue_run (queue=0xffffff0005f42380) at /data2v/home/nox/src-r81/src/sys/kern/subr_taskqueue.c:239 #10 0xffffffff8062e7c6 in taskqueue_thread_loop (arg=Variable "arg" is not available. ) at /data2v/home/nox/src-r81/src/sys/kern/subr_taskqueue.c:360 ---Type to continue, or q to quit--- #11 0xffffffff805c64a8 in fork_exit ( callout=0xffffffff8062e780 , arg=0xffffff8000b130b8, frame=0xffffff80ec121c80) at /data2v/home/nox/src-r81/src/sys/kern/kern_fork.c:844 #12 0xffffffff808cae2e in fork_trampoline () at /data2v/home/nox/src-r81/src/sys/amd64/amd64/exception.S:562 #13 0x0000000000000000 in ?? () #14 0x0000000000000000 in ?? () #15 0x0000000000000000 in ?? () #16 0x0000000000000000 in ?? () #17 0x0000000000000000 in ?? () #18 0x0000000000000000 in ?? () #19 0x0000000000000000 in ?? () #20 0x0000000000000000 in ?? () #21 0x0000000000000000 in ?? () #22 0x0000000000000000 in ?? () #23 0x0000000000000000 in ?? () #24 0x0000000000000000 in ?? () #25 0x0000000000000000 in ?? () #26 0x0000000000000000 in ?? () #27 0x0000000000000000 in ?? () #28 0x0000000000000000 in ?? () #29 0x0000000000000000 in ?? () ---Type to continue, or q to quit--- #30 0x0000000000000000 in ?? () #31 0x0000000000000000 in ?? () #32 0x0000000000000000 in ?? () #33 0x0000000000000000 in ?? () #34 0x0000000000000000 in ?? () #35 0x0000000000000000 in ?? () #36 0x0000000000000000 in ?? () #37 0x0000000000f37000 in ?? () #38 0x0000000000000000 in ?? () #39 0xffffff00078c47c0 in ?? () #40 0xffffffff80cac9c0 in affinity () #41 0xffffff00018837c0 in ?? () #42 0xffffff80ec121710 in ?? () #43 0xffffff80ec1216c8 in ?? () #44 0xffffff00078c47c0 in ?? () #45 0xffffffff8061471a in sched_switch (td=0xffffff8000b130b8, newtd=0xffffffff8062e780, flags=Variable "flags" is not available. ) at /data2v/home/nox/src-r81/src/sys/kern/sched_ule.c:1844 Previous frame inner to this frame (corrupt stack?) (kgdb) fr 7 #7 0xffffffff81072ac6 in run_drain_fifo (arg=Variable "arg" is not available. ) at /data2v/home/nox/src-r81/src/sys/modules/usb/run/../../../dev/usb/wlan/if_run.c:2245 2245 ni = sc->sc_ni[wcid]; (kgdb) p wcid $1 = 1 '\001' (kgdb) p sc->sc_ni $2 = {0x0, 0xffffff8001676000, 0x0 } (kgdb) p sc->sc_ni[1] $3 = (struct ieee80211_node *) 0xffffff8001676000 (kgdb) p *sc->sc_ni[1] Cannot access memory at address 0xffffff8001676000 (kgdb) up #8 0xffffffff81072bc3 in run_ratectl_cb (arg=Variable "arg" is not available. ) at /data2v/home/nox/src-r81/src/sys/modules/usb/run/../../../dev/usb/wlan/if_run.c:2210 2210 run_drain_fifo(sc); (kgdb) p sc->sc_ni $4 = {0x0, 0xffffff8001676000, 0x0 } (kgdb) l run_drain_fifo 2216 usb_callout_reset(&sc->ratectl_ch, hz, run_ratectl_to, sc); 2217 } 2218 2219 static void 2220 run_drain_fifo(void *arg) 2221 { 2222 struct run_softc *sc = arg; 2223 struct ifnet *ifp = sc->sc_ifp; 2224 struct ieee80211_node *ni = sc->sc_ni[0]; /* make compiler happy */ 2225 uint32_t stat; (kgdb) l 2226 int retrycnt = 0; 2227 uint8_t wcid, mcs, pid; 2228 2229 RUN_LOCK_ASSERT(sc, MA_OWNED); 2230 2231 for (;;) { 2232 /* drain Tx status FIFO (maxsize = 16) */ 2233 run_read(sc, RT2860_TX_STAT_FIFO, &stat); 2234 DPRINTFN(4, "tx stat 0x%08x\n", stat); 2235 if (!(stat & RT2860_TXQ_VLD)) (kgdb) 2236 break; 2237 2238 wcid = (stat >> RT2860_TXQ_WCID_SHIFT) & 0xff; 2239 2240 /* if no ACK was requested, no feedback is available */ 2241 if (!(stat & RT2860_TXQ_ACKREQ) || wcid > RT2870_WCID_MAX || 2242 wcid == 0) 2243 continue; 2244 2245 ni = sc->sc_ni[wcid]; (kgdb) 2246 if (ni->ni_rctls == NULL) 2247 continue; 2248 2249 /* update per-STA AMRR stats */ 2250 if (stat & RT2860_TXQ_OK) { 2251 /* 2252 * Check if there were retries, ie if the Tx 2253 * success rate is different from the requested 2254 * rate. Note that it works only because we do 2255 * not allow rate fallback from OFDM to CCK. (kgdb) 2256 */ 2257 mcs = (stat >> RT2860_TXQ_MCS_SHIFT) & 0x7f; 2258 pid = (stat >> RT2860_TXQ_PID_SHIFT) & 0xf; 2259 if (mcs + 1 != pid) 2260 retrycnt = 1; 2261 ieee80211_ratectl_tx_complete(ni->ni_vap, ni, 2262 IEEE80211_RATECTL_TX_SUCCESS, 2263 &retrycnt, NULL); 2264 } else { 2265 retrycnt = 1; (kgdb) 2266 ieee80211_ratectl_tx_complete(ni->ni_vap, ni, 2267 IEEE80211_RATECTL_TX_FAILURE, 2268 &retrycnt, NULL); 2269 ifp->if_oerrors++; 2270 } 2271 } 2272 DPRINTFN(3, "count=%d\n", sc->fifo_cnt); 2273 2274 sc->fifo_cnt = 0; 2275 } (kgdb) up #9 0xffffffff8062e543 in taskqueue_run (queue=0xffffff0005f42380) at /data2v/home/nox/src-r81/src/sys/kern/subr_taskqueue.c:239 239 task->ta_func(task->ta_context, pending); (kgdb) p task $5 = (struct task *) 0xffffff8000a8be38 (kgdb) p *task $6 = {ta_link = {stqe_next = 0x0}, ta_pending = 0, ta_priority = 0, ta_func = 0xffffffff81072b60 , ta_context = 0xffffff8000a89000} (kgdb) l run_ratectl_cb 2184 } 2185 2186 /* ARGSUSED */ 2187 static void 2188 run_ratectl_cb(void *arg, int pending) 2189 { 2190 struct run_softc *sc = arg; 2191 struct ieee80211com *ic = sc->sc_ifp->if_l2com; 2192 struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps); 2193 (kgdb) down #8 0xffffffff81072bc3 in run_ratectl_cb (arg=Variable "arg" is not available. ) at /data2v/home/nox/src-r81/src/sys/modules/usb/run/../../../dev/usb/wlan/if_run.c:2210 2210 run_drain_fifo(sc); (kgdb) l run_ratectl_cb 2184 } 2185 2186 /* ARGSUSED */ 2187 static void 2188 run_ratectl_cb(void *arg, int pending) 2189 { 2190 struct run_softc *sc = arg; 2191 struct ieee80211com *ic = sc->sc_ifp->if_l2com; 2192 struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps); 2193 (kgdb) l 2194 if (vap == NULL) 2195 return; 2196 2197 if (sc->rvp_cnt <= 1 && vap->iv_opmode == IEEE80211_M_STA) 2198 run_iter_func(sc, vap->iv_bss); 2199 else { 2200 /* 2201 * run_reset_livelock() doesn't do anything with AMRR, 2202 * but Ralink wants us to call it every 1 sec. So, we 2203 * piggyback here rather than creating another callout. (kgdb) p sc->rvp_cnt $7 = 1 '\001' (kgdb) l 2204 * Livelock may occur only in HOSTAP or IBSS mode 2205 * (when h/w is sending beacons). 2206 */ 2207 RUN_LOCK(sc); 2208 run_reset_livelock(sc); 2209 /* just in case, there are some stats to drain */ 2210 run_drain_fifo(sc); 2211 RUN_UNLOCK(sc); 2212 ieee80211_iterate_nodes(&ic->ic_sta, run_iter_func, sc); 2213 } (kgdb) down #7 0xffffffff81072ac6 in run_drain_fifo (arg=Variable "arg" is not available. ) at /data2v/home/nox/src-r81/src/sys/modules/usb/run/../../../dev/usb/wlan/if_run.c:2245 2245 ni = sc->sc_ni[wcid]; (kgdb) up #8 0xffffffff81072bc3 in run_ratectl_cb (arg=Variable "arg" is not available. ) at /data2v/home/nox/src-r81/src/sys/modules/usb/run/../../../dev/usb/wlan/if_run.c:2210 2210 run_drain_fifo(sc); (kgdb) l 2205 * (when h/w is sending beacons). 2206 */ 2207 RUN_LOCK(sc); 2208 run_reset_livelock(sc); 2209 /* just in case, there are some stats to drain */ 2210 run_drain_fifo(sc); 2211 RUN_UNLOCK(sc); 2212 ieee80211_iterate_nodes(&ic->ic_sta, run_iter_func, sc); 2213 } 2214 (kgdb) l 2215 if(sc->ratectl_run != RUN_RATECTL_OFF) 2216 usb_callout_reset(&sc->ratectl_ch, hz, run_ratectl_to, sc); 2217 } 2218 2219 static void 2220 run_drain_fifo(void *arg) 2221 { 2222 struct run_softc *sc = arg; 2223 struct ifnet *ifp = sc->sc_ifp; 2224 struct ieee80211_node *ni = sc->sc_ni[0]; /* make compiler happy */ (kgdb) 2225 uint32_t stat; 2226 int retrycnt = 0; 2227 uint8_t wcid, mcs, pid; 2228 2229 RUN_LOCK_ASSERT(sc, MA_OWNED); 2230 2231 for (;;) { 2232 /* drain Tx status FIFO (maxsize = 16) */ 2233 run_read(sc, RT2860_TX_STAT_FIFO, &stat); 2234 DPRINTFN(4, "tx stat 0x%08x\n", stat); (kgdb) p sc->fifo_cnt $8 = 1 '\001' (kgdb) l 2235 if (!(stat & RT2860_TXQ_VLD)) 2236 break; 2237 2238 wcid = (stat >> RT2860_TXQ_WCID_SHIFT) & 0xff; 2239 2240 /* if no ACK was requested, no feedback is available */ 2241 if (!(stat & RT2860_TXQ_ACKREQ) || wcid > RT2870_WCID_MAX || 2242 wcid == 0) 2243 continue; 2244 (kgdb) l 2245 ni = sc->sc_ni[wcid]; 2246 if (ni->ni_rctls == NULL) 2247 continue; 2248 2249 /* update per-STA AMRR stats */ 2250 if (stat & RT2860_TXQ_OK) { 2251 /* 2252 * Check if there were retries, ie if the Tx 2253 * success rate is different from the requested 2254 * rate. Note that it works only because we do (kgdb) p vap->iv_opmode Variable "vap" is not available. (kgdb) p ic->ic_vaps $9 = {tqh_first = 0xffffff0007800000, tqh_last = 0xffffff0007800048} (kgdb) p ic->ic_vaps->tqh_first $10 = (struct ieee80211vap *) 0xffffff0007800000 (kgdb) p ic->ic_vaps->tqh_first->iv_opmode $11 = IEEE80211_M_HOSTAP (kgdb) p ic->ic_vaps->tqh_last->iv_opmode Cannot access memory at address 0x2f0 (kgdb) p ic->ic_vaps->tqh_last $12 = (struct ieee80211vap **) 0xffffff0007800048 (kgdb) p *ic->ic_vaps->tqh_last $13 = (struct ieee80211vap *) 0x0 (kgdb) q Script done on Tue Jan 4 09:23:48 2011 >How-To-Repeat: Setup if_run(4) in hostap mode, wait a few weeks... (I only have one smartphone using the wifi, maybe if you have a bigger network it'll happen more often?) >Fix: I don't really know the wifi code so the following patch is likely not the `proper' fix (and it also still has diagnostic code that shouldn't be committed as is), but at least it fixed the panic for me, I just finally got the run0: drain_fifo ni=NULL wcid=1 message I added for the condition that previously caused the panic, and the nic kept working. (The panic happened when sc->sc_ni[wcid] was accessed by run_drain_fifo() after it had been free'd, so I hooked into ic->ic_node_cleanup to set it to NULL before it gets free'd and added a check for NULL with the above message to run_drain_fifo().) Index: src/sys/dev/usb/wlan/if_run.c =================================================================== RCS file: /home/scvs/src/sys/dev/usb/wlan/if_run.c,v retrieving revision 1.17 diff -u -p -r1.17 if_run.c --- src/sys/dev/usb/wlan/if_run.c 6 Nov 2010 18:17:20 -0000 1.17 +++ src/sys/dev/usb/wlan/if_run.c 7 Jan 2011 00:58:35 -0000 @@ -341,6 +341,7 @@ static const char *run_get_rf(int); static int run_read_eeprom(struct run_softc *); static struct ieee80211_node *run_node_alloc(struct ieee80211vap *, const uint8_t mac[IEEE80211_ADDR_LEN]); +static void run_node_cleanup(struct ieee80211_node *ni); static int run_media_change(struct ifnet *); static int run_newstate(struct ieee80211vap *, enum ieee80211_state, int); static int run_wme_update(struct ieee80211com *); @@ -673,6 +674,8 @@ run_attach(device_t self) ic->ic_scan_end = run_scan_end; ic->ic_set_channel = run_set_channel; ic->ic_node_alloc = run_node_alloc; + sc->sc_node_cleanup = ic->ic_node_cleanup; + ic->ic_node_cleanup = run_node_cleanup; ic->ic_newassoc = run_newassoc; //ic->ic_updateslot = run_updateslot; ic->ic_update_mcast = run_update_mcast; @@ -2243,7 +2246,14 @@ run_drain_fifo(void *arg) continue; ni = sc->sc_ni[wcid]; - if (ni->ni_rctls == NULL) +#if 1 + static struct ieee80211_node *lastni; + if (ni == NULL && lastni) + device_printf(sc->sc_dev, "drain_fifo ni=NULL wcid=%d\n", + wcid); + lastni = ni; +#endif + if (ni == NULL || ni->ni_rctls == NULL) continue; /* update per-STA AMRR stats */ @@ -2373,10 +2383,12 @@ run_newassoc(struct ieee80211_node *ni, ieee80211_runtask(ic, &sc->cmdq_task); } - DPRINTF("new assoc isnew=%d associd=%x addr=%s\n", - isnew, ni->ni_associd, ether_sprintf(ni->ni_macaddr)); + //DPRINTF("new assoc isnew=%d associd=%x addr=%s\n", + device_printf(sc->sc_dev, "new assoc isnew=%d associd=%x addr=%s ni=%p\n", + isnew, ni->ni_associd, ether_sprintf(ni->ni_macaddr), ni); ieee80211_ratectl_node_init(ni); + rn->wcid = wcid; sc->sc_ni[wcid] = ni; for (i = 0; i < rs->rs_nrates; i++) { @@ -2412,6 +2424,39 @@ run_newassoc(struct ieee80211_node *ni, usb_callout_reset(&sc->ratectl_ch, hz, run_ratectl_to, sc); } +static void +run_node_cleanup(struct ieee80211_node *ni) +{ + struct run_node *rn = (void *)ni; + struct ieee80211vap *vap = ni->ni_vap; + struct ieee80211com *ic = vap->iv_ic; + struct run_softc *sc = ic->ic_ifp->if_softc; + uint8_t wcid = RUN_AID2WCID(ni->ni_associd); + + if (wcid == 0) + wcid = rn->wcid; + if (wcid > RT2870_WCID_MAX) { + device_printf(sc->sc_dev, "wcid=%d out of range\n", wcid); + sc->sc_node_cleanup(ni); + return; + } + + //DPRINTF("node_cleanup wcid=%d addr=%s\n", + device_printf(sc->sc_dev, "node_cleanup wcid=%d addr=%s ni=%p\n", + wcid, ether_sprintf(vap->iv_opmode == IEEE80211_M_STA ? + vap->iv_myaddr : ni->ni_macaddr), ni); + + if (wcid > 0 && sc->sc_ni[wcid]) { + if (sc->sc_ni[wcid] != ni) { + device_printf(sc->sc_dev, "node_cleanup sc->sc_ni[wcid] %p != ni\n", + sc->sc_ni[wcid]); + } else { + sc->sc_ni[wcid] = NULL; + } + } + sc->sc_node_cleanup(ni); +} + /* * Return the Rx chain with the highest RSSI for a given frame. */ Index: src/sys/dev/usb/wlan/if_runvar.h =================================================================== RCS file: /home/scvs/src/sys/dev/usb/wlan/if_runvar.h,v retrieving revision 1.6 diff -u -p -r1.6 if_runvar.h --- src/sys/dev/usb/wlan/if_runvar.h 14 Jun 2010 00:40:23 -0000 1.6 +++ src/sys/dev/usb/wlan/if_runvar.h 4 Jan 2011 08:48:13 -0000 @@ -106,6 +106,7 @@ struct run_node { uint8_t amrr_ridx; uint8_t mgt_ridx; uint8_t fix_ridx; + uint8_t wcid; }; struct run_cmdq { @@ -164,6 +165,8 @@ struct run_softc { int (*sc_srom_read)(struct run_softc *, uint16_t, uint16_t *); + void (*sc_node_cleanup)(struct ieee80211_node *); + uint16_t mac_ver; uint16_t mac_rev; uint8_t rf_rev; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 12 22:24:56 2011 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 111211065695; Wed, 12 Jan 2011 22:24:56 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DCD398FC1E; Wed, 12 Jan 2011 22:24:55 +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 p0CMOtrZ004335; Wed, 12 Jan 2011 22:24:55 GMT (envelope-from yongari@freefall.freebsd.org) Received: (from yongari@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0CMOtTY004331; Wed, 12 Jan 2011 22:24:55 GMT (envelope-from yongari) Date: Wed, 12 Jan 2011 22:24:55 GMT Message-Id: <201101122224.p0CMOtTY004331@freefall.freebsd.org> To: yongari@FreeBSD.org, freebsd-bugs@FreeBSD.org, yongari@FreeBSD.org From: yongari@FreeBSD.org Cc: Subject: Re: kern/153769: mutex alc0 not owned 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, 12 Jan 2011 22:24:56 -0000 Synopsis: mutex alc0 not owned Responsible-Changed-From-To: freebsd-bugs->yongari Responsible-Changed-By: yongari Responsible-Changed-When: Wed Jan 12 22:24:35 UTC 2011 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=153769 From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 13 04:40:11 2011 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 73C2A1065674 for ; Thu, 13 Jan 2011 04:40: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 500FA8FC17 for ; Thu, 13 Jan 2011 04:40: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 p0D4eBnA010951 for ; Thu, 13 Jan 2011 04:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0D4eBb8010950; Thu, 13 Jan 2011 04:40:11 GMT (envelope-from gnats) Resent-Date: Thu, 13 Jan 2011 04:40:11 GMT Resent-Message-Id: <201101130440.p0D4eBb8010950@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, Pedro Giffuni Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C4109106564A for ; Thu, 13 Jan 2011 04:37:15 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id B21898FC08 for ; Thu, 13 Jan 2011 04:37:15 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0D4bF5g048295 for ; Thu, 13 Jan 2011 04:37:15 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0D4bFgb048294; Thu, 13 Jan 2011 04:37:15 GMT (envelope-from nobody) Message-Id: <201101130437.p0D4bFgb048294@red.freebsd.org> Date: Thu, 13 Jan 2011 04:37:15 GMT From: Pedro Giffuni To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: gnu/153945: Update sort with 15 upstream 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: Thu, 13 Jan 2011 04:40:11 -0000 >Number: 153945 >Category: gnu >Synopsis: Update sort with 15 upstream patches >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Jan 13 04:40:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Pedro Giffuni >Release: 8.2-RC1 >Organization: >Environment: FreeBSD mogwai.giffuni.net 8.2-RC1 FreeBSD 8.2-RC1 #0: Thu Dec 23 15:32:35 UTC 2010 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: Updating GNU sort is very difficult, not only because there are local changes, but because the coreutils keeps a basic library that is usually very linux-centric. For the time being I just went to the coreutils git repository and tracked the sequence of commits that applied cleanly to our base sort. This is not as correct as taking the last GPLv2 release and redoing our changes but it's very practical way of doing it. feel free to prove me wrong ;). Hopefully I caught all the critical fixes and performance improvements so that we can through this under the rug for a while ... >How-To-Repeat: Here is a small log of the changes, with their dates: Date: Tue, 7 Sep 2004 05:09:24 +0000 Subject: [PATCH] (main): Emulate Solaris 8 and 9 "sort -y", so that "sort -y abc" is like "sort abc" whereas "sort -y 100" is like plain "sort". Date: Tue, 21 Sep 2004 22:13:13 +0000 Subject: [PATCH] Don't include "long-options.h". Date: Fri, 5 Nov 2004 23:02:09 +0000 Subject: [PATCH] (inittables, sort_buffer_size, getmonth, mergefps, first_same_file, merge, sort, main): Use size_t for indexes into arrays. This fixes some unlikely havoc-wreaking bugs (e.g., more than INT_MAX temporary files). Date: Sat, 6 Nov 2004 22:37:02 +0000 Subject: [PATCH] (xfclose): Don't close stdout here (just flush it), since close_stdout now closes stdout unconditionally. Date: Sat, 6 Nov 2004 23:46:47 +0000 Subject: [PATCH] (first_same_file): Remove. Move most of the code to.... (avoid_trashing_input): New function. (merge): Avoid some silly merges, e.g., copying a single file to a temporary file when there are exactly 17 input files to merge. Take a count of temporary files rather than a max_merge arg. All uses changed. Date: Sun, 7 Nov 2004 07:05:38 +0000 Subject: [PATCH] (merge): Remove declarations of now-unused variables. Date: Mon, 14 Feb 2005 18:04:22 +0000 Subject: [PATCH] (mergefps): Use binary search rather than linear one when comparing new line to lines already in main memory. Date: Sun, 6 Mar 2005 16:31:51 +0000 Subject: [PATCH] Remove `register' keyword. Date: Mon, 28 Mar 2005 18:09:51 +0000 Subject: [PATCH] (long_options, mergefps): Use NULL, not `0'. Date: Sat, 9 Apr 2005 04:57:37 +0000 Subject: [PATCH] (SA_NOCLDSTOP): Define to 0 if not defined. All uses changed. (siginterrupt) [! HAVE_SIGINTERRUPT]: New macro. (main) [! SA_NOCLDSTOP]: Use it. Date: Tue, 26 Apr 2005 16:42:51 +0000 Subject: [PATCH] Remove posixver.h and its uses. (short_options): New constant, which always supports -y arg. (COMMON_SHORT_OPTIONS): Remove. Date: Mon, 13 Nov 2006 15:06:15 +0100 Subject: [PATCH] * src/sort.c (main): Plug a tiny memory leak. Move declaration of local "minus" down to be nearer point of use. Date: Wed, 13 Dec 2006 22:03:54 +0100 Subject: [PATCH] Remove some arbitrary restrictions on size fields, so that commands like "sort -k 18446744073709551616" no longer fail merely because 18446744073709551616 doesn't fit in uintmax_t. The trick is that these fields can all be treated as effectively infinity; their exact values don't matter, since no internal buffer can be that long. Date: Fri, 19 Jan 2007 23:03:18 +0100 Subject: [PATCH] * src/sort.c (cleanup): Clear temphead at the end. (exit_cleanup): New function. (main): Don't invoke atexit until we're ready. Invoke it with exit_cleanup, not with cleanup and close_stdout, to avoid a race condition with cleanup and signal handling. More details: http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/9508 >Fix: Patch attached. Patch attached with submission follows: --- sort.c.orig 2011-01-12 22:37:22.000000000 +0000 +++ sort.c 2011-01-12 22:35:25.000000000 +0000 @@ -1,6 +1,6 @@ /* $FreeBSD: src/contrib/gnu-sort/src/sort.c,v 1.4.34.1 2010/12/21 17:10:29 kensmith Exp $ */ /* sort - sort lines of text (with all kinds of options). - Copyright (C) 88, 1991-2004 Free Software Foundation, Inc. + Copyright (C) 1988, 1991-2005 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -53,7 +53,6 @@ #include "error.h" #include "hard-locale.h" #include "inttostr.h" -#include "long-options.h" #include "physmem.h" #include "posixver.h" #include "quote.h" @@ -89,9 +88,15 @@ # include #endif +/* Use SA_NOCLDSTOP as a proxy for whether the sigaction machinery is + present. */ #ifndef SA_NOCLDSTOP +# define SA_NOCLDSTOP 0 # define sigprocmask(How, Set, Oset) /* empty */ # define sigset_t int +# if ! HAVE_SIGINTERRUPT +# define siginterrupt(sig, flag) /* empty */ +# endif #endif #ifndef STDC_HEADERS @@ -401,7 +406,7 @@ exit (status); } -#define COMMON_SHORT_OPTIONS "-bcdfgik:mMno:rsS:t:T:uz" +static char const short_options[] = "-bcdfgik:mMno:rsS:t:T:uy:z"; static struct option const long_options[] = { @@ -425,7 +430,7 @@ {"zero-terminated", no_argument, NULL, 'z'}, {GETOPT_HELP_OPTION_DECL}, {GETOPT_VERSION_OPTION_DECL}, - {0, 0, 0, 0}, + {NULL, 0, NULL, 0}, }; /* The set of signals that are caught. */ @@ -488,6 +493,25 @@ for (node = temphead; node; node = node->next) unlink (node->name); + temphead = NULL; +} + +/* Cleanup actions to take when exiting. */ + +static void +exit_cleanup (void) +{ + if (temphead) + { + /* Clean up any remaining temporary files in a critical section so + that a signal handler does not try to clean them too. */ + sigset_t oldset; + sigprocmask (SIG_BLOCK, &caught_signals, &oldset); + cleanup (); + sigprocmask (SIG_SETMASK, &oldset, NULL); + } + + close_stdout (); } /* Report MESSAGE for FILE, then clean up and exit. @@ -576,6 +600,12 @@ if (feof (fp)) clearerr (fp); } + else if (fp == stdout) + { + /* Don't close stdout just yet. close_stdout does that. */ + if (fflush (fp) != 0) + die (_("fflush failed"), file); + } else { if (fclose (fp) != 0) @@ -636,7 +666,7 @@ static void inittables_uni (void) { - int i; + size_t i; for (i = 0; i < UCHAR_LIM; ++i) { @@ -840,8 +870,8 @@ not specified by the user, use a default. */ static size_t -sort_buffer_size (FILE *const *fps, int nfps, - char *const *files, int nfiles, +sort_buffer_size (FILE *const *fps, size_t nfps, + char *const *files, size_t nfiles, size_t line_bytes) { /* A bound on the input size. If zero, the bound hasn't been @@ -855,7 +885,7 @@ This extra room might be needed when preparing to read EOF. */ size_t size = worst_case_per_input_byte + 1; - int i; + size_t i; for (i = 0; i < nfiles; i++) { @@ -942,10 +972,10 @@ static char * begfield_uni (const struct line *line, const struct keyfield *key) { - register char *ptr = line->text, *lim = ptr + line->length - 1; - register size_t sword = key->sword; - register size_t schar = key->schar; - register size_t remaining_bytes; + char *ptr = line->text, *lim = ptr + line->length - 1; + size_t sword = key->sword; + size_t schar = key->schar; + size_t remaining_bytes; /* The leading field separator itself is included in a field when -t is absent. */ @@ -1046,9 +1076,9 @@ static char * limfield_uni (const struct line *line, const struct keyfield *key) { - register char *ptr = line->text, *lim = ptr + line->length - 1; - register size_t eword = key->eword, echar = key->echar; - register size_t remaining_bytes; + char *ptr = line->text, *lim = ptr + line->length - 1; + size_t eword = key->eword, echar = key->echar; + size_t remaining_bytes; /* Move PTR past EWORD fields or to one past the last byte on LINE, whichever comes first. If there are more than EWORD fields, leave @@ -1250,7 +1280,7 @@ Return true if some input was read. */ static bool -fillbuf (struct buffer *buf, register FILE *fp, char const *file) +fillbuf (struct buffer *buf, FILE *fp, char const *file) { struct keyfield const *key = keylist; char eol = eolchar; @@ -1315,7 +1345,7 @@ if (key) { /* Precompute the position of the first key for - efficiency. */ + efficiency. */ line->keylim = (key->eword == SIZE_MAX ? p : limfield (line, key)); @@ -1401,7 +1431,7 @@ return 0 */ static int -fraccompare (register const char *a, register const char *b) +fraccompare (const char *a, const char *b) { if (*a == decimal_point && *b == decimal_point) { @@ -1438,7 +1468,7 @@ hideously fast. */ static int -numcompare (register const char *a, register const char *b) +numcompare (const char *a, const char *b) { char tmpa; char tmpb; @@ -1785,17 +1815,17 @@ /* For the first iteration only, the key positions have been precomputed for us. */ - register char *texta = a->keybeg; - register char *textb = b->keybeg; - register char *lima = a->keylim; - register char *limb = b->keylim; + char *texta = a->keybeg; + char *textb = b->keybeg; + char *lima = a->keylim; + char *limb = b->keylim; int diff; for (;;) { - register char const *translate = key->translate; - register bool const *ignore = key->ignore; + char const *translate = key->translate; + bool const *ignore = key->ignore; /* Find the lengths. */ size_t lena = lima <= texta ? 0 : lima - texta; @@ -1814,12 +1844,14 @@ else if (key->month) diff = getmonth (texta, lena) - getmonth (textb, lenb); /* Sorting like this may become slow, so in a simple locale the user - can select a faster sort that is similar to ascii sort */ + can select a faster sort that is similar to ascii sort. */ else if (HAVE_SETLOCALE && hard_LC_COLLATE) { if (ignore || translate) { - char *copy_a = alloca (lena + 1 + lenb + 1); + char buf[4000]; + size_t size = lena + 1 + lenb + 1; + char *copy_a = (size <= sizeof buf ? buf : xmalloc (size)); char *copy_b = copy_a + lena + 1; size_t new_len_a, new_len_b, i; @@ -1845,6 +1877,9 @@ } diff = xmemcoll (copy_a, new_len_a, copy_b, new_len_b); + + if (sizeof buf < size) + free (copy_a); } else if (lena == 0) diff = - NONZERO (lenb); @@ -2119,7 +2154,7 @@ depending on whether A compares less than, equal to, or greater than B. */ static int -compare (register const struct line *a, register const struct line *b) +compare (const struct line *a, const struct line *b) { int diff; size_t alen, blen; @@ -2130,7 +2165,6 @@ if (keylist) { diff = keycompare (a, b); - alloca (0); if (diff | unique | stable) return diff; } @@ -2243,8 +2277,7 @@ file has not been opened yet (or written to, if standard output). */ static void -mergefps (char **files, register int nfiles, - FILE *ofp, const char *output_file) +mergefps (char **files, size_t nfiles, FILE *ofp, char const *output_file) { FILE *fps[NMERGE]; /* Input streams for each file. */ struct buffer buffer[NMERGE]; /* Input buffers for each file. */ @@ -2254,10 +2287,12 @@ size_t savealloc = 0; /* Size allocated for the saved line. */ struct line const *cur[NMERGE]; /* Current line in each line table. */ struct line const *base[NMERGE]; /* Base of each line table. */ - int ord[NMERGE]; /* Table representing a permutation of fps, + size_t ord[NMERGE]; /* Table representing a permutation of fps, such that cur[ord[0]] is the smallest line and will be next output. */ - register int i, j, t; + size_t i; + size_t j; + size_t t; struct keyfield const *key = keylist; saved.text = NULL; @@ -2309,7 +2344,7 @@ { if (savedline && compare (savedline, smallest)) { - savedline = 0; + savedline = NULL; write_bytes (saved.text, saved.length, ofp, output_file); } if (!savedline) @@ -2354,7 +2389,7 @@ } else { - /* We reached EOF on fps[ord[0]]. */ + /* We reached EOF on fps[ord[0]]. */ for (i = 1; i < nfiles; ++i) if (ord[i] > ord[0]) --ord[i]; @@ -2377,20 +2412,31 @@ } /* The new line just read in may be larger than other lines - already in core; push it back in the queue until we encounter - a line larger than it. */ - for (i = 1; i < nfiles; ++i) - { - t = compare (cur[ord[0]], cur[ord[i]]); - if (!t) - t = ord[0] - ord[i]; - if (t < 0) - break; - } - t = ord[0]; - for (j = 1; j < i; ++j) - ord[j - 1] = ord[j]; - ord[i - 1] = t; + already in main memory; push it back in the queue until we + encounter a line larger than it. Optimize for the common + case where the new line is smallest. */ + { + size_t lo = 1; + size_t hi = nfiles; + size_t probe = lo; + size_t ord0 = ord[0]; + size_t count_of_smaller_lines; + + while (lo < hi) + { + int cmp = compare (cur[ord0], cur[ord[probe]]); + if (cmp < 0 || (cmp == 0 && ord0 < ord[probe])) + hi = probe; + else + lo = probe + 1; + probe = (lo + hi) / 2; + } + + count_of_smaller_lines = lo - 1; + for (j = 0; j < count_of_smaller_lines; j++) + ord[j] = ord[j + 1]; + ord[count_of_smaller_lines] = ord0; + } } if (unique && savedline) @@ -2508,8 +2554,12 @@ } } -/* Return the index of the first of NFILES FILES that is the same file - as OUTFILE. If none can be the same, return NFILES. +/* Scan through FILES[N_TEMP_FILES .. NFILES-1] looking for a file that is + the same as OUTFILE. If found, merge the found instances (and perhaps + some other files) into a temporary file so that it can in turn be + merged into OUTFILE without destroying OUTFILE before it is completely + read. Return the new value of NFILES, which differs from the old if + some merging occurred. This test ensures that an otherwise-erroneous use like "sort -m -o FILE ... FILE ..." copies FILE before writing to it. @@ -2521,77 +2571,121 @@ Catching these obscure cases would slow down performance in common cases. */ -static int -first_same_file (char * const *files, int nfiles, char const *outfile) +static size_t +avoid_trashing_input (char **files, size_t n_temp_files, size_t nfiles, + char const *outfile) { - int i; + size_t i; bool got_outstat = false; - struct stat instat, outstat; + struct stat outstat; - for (i = 0; i < nfiles; i++) + for (i = n_temp_files; i < nfiles; i++) { bool standard_input = STREQ (files[i], "-"); + bool same; + struct stat instat; if (outfile && STREQ (outfile, files[i]) && ! standard_input) - return i; - - if (! got_outstat) + same = true; + else { - got_outstat = true; - if ((outfile - ? stat (outfile, &outstat) - : fstat (STDOUT_FILENO, &outstat)) - != 0) - return nfiles; - } - - if (((standard_input - ? fstat (STDIN_FILENO, &instat) - : stat (files[i], &instat)) - == 0) - && SAME_INODE (instat, outstat)) - return i; + if (! got_outstat) + { + if ((outfile + ? stat (outfile, &outstat) + : fstat (STDOUT_FILENO, &outstat)) + != 0) + break; + got_outstat = true; + } + + same = (((standard_input + ? fstat (STDIN_FILENO, &instat) + : stat (files[i], &instat)) + == 0) + && SAME_INODE (instat, outstat)); + } + + if (same) + { + FILE *tftp; + char *temp = create_temp_file (&tftp); + mergefps (&files[i], nfiles - i, tftp, temp); + files[i] = temp; + return i + 1; + } } return nfiles; } -/* Merge NFILES FILES onto OUTPUT_FILE. However, merge at most - MAX_MERGE input files directly onto OUTPUT_FILE. MAX_MERGE cannot - exceed NMERGE. A null OUTPUT_FILE stands for standard output. */ +/* Merge the input FILES. N_TEMP_FILES is the number of files at the + start of FILES that are temporary; it is zero at the top level. + NFILES is the total number of files. Put the output in + OUTPUT_FILE; a null OUTPUT_FILE stands for standard output. */ static void -merge (char **files, int nfiles, int max_merge, char const *output_file) +merge (char **files, size_t n_temp_files, size_t nfiles, + char const *output_file) { - while (max_merge < nfiles) + while (NMERGE < nfiles) { - FILE *tfp; - int i, t = 0; - char *temp; - for (i = 0; i < nfiles / NMERGE; ++i) - { - temp = create_temp_file (&tfp); - mergefps (&files[i * NMERGE], NMERGE, tfp, temp); - files[t++] = temp; - } - temp = create_temp_file (&tfp); - mergefps (&files[i * NMERGE], nfiles % NMERGE, tfp, temp); - files[t++] = temp; - nfiles = t; - if (nfiles == 1) - break; + /* Number of input files processed so far. */ + size_t in; + + /* Number of output files generated so far. */ + size_t out; + + /* nfiles % NMERGE; this counts input files that are left over + after all full-sized merges have been done. */ + size_t remainder; + + /* Number of easily-available slots at the next loop iteration. */ + size_t cheap_slots; + + /* Do as many NMERGE-size merges as possible. */ + for (out = in = 0; out < nfiles / NMERGE; out++, in += NMERGE) + { + FILE *tfp; + char *temp = create_temp_file (&tfp); + mergefps (&files[in], NMERGE, tfp, temp); + files[out] = temp; + } + + remainder = nfiles - in; + cheap_slots = NMERGE - out % NMERGE; + + if (cheap_slots < remainder) + { + /* So many files remain that they can't all be put into the last + NMERGE-sized output window. Do one more merge. Merge as few + files as possible, to avoid needless I/O. */ + size_t n_shortmerge = remainder - cheap_slots + 1; + FILE *tfp; + char *temp = create_temp_file (&tfp); + mergefps (&files[in], n_shortmerge, tfp, temp); + files[out++] = temp; + in += n_shortmerge; + } + + /* Put the remaining input files into the last NMERGE-sized output + window, so they will be merged in the next pass. */ + memmove(&files[out], &files[in], (nfiles - in) * sizeof *files); + n_temp_files = out + (in < n_temp_files ? n_temp_files - in : 0); + nfiles -= in - out; } + nfiles = avoid_trashing_input (files, n_temp_files, nfiles, output_file); mergefps (files, nfiles, NULL, output_file); } /* Sort NFILES FILES onto OUTPUT_FILE. */ static void -sort (char * const *files, int nfiles, char const *output_file) +sort (char * const *files, size_t nfiles, char const *output_file) { struct buffer buf; - int n_temp_files = 0; + size_t n_temp_files = 0; bool output_file_created = false; buf.alloc = 0; @@ -2668,12 +2762,12 @@ if (! output_file_created) { - int i = n_temp_files; + size_t i = n_temp_files; struct tempnode *node; char **tempfiles = xnmalloc (n_temp_files, sizeof *tempfiles); for (node = temphead; i > 0; node = node->next) tempfiles[--i] = node->name; - merge (tempfiles, n_temp_files, NMERGE, output_file); + merge (tempfiles, n_temp_files, n_temp_files, output_file); free (tempfiles); } } @@ -2705,7 +2799,8 @@ /* Parse the leading integer in STRING and store the resulting value (which must fit into size_t) into *VAL. Return the address of the - suffix after the integer. If MSGID is NULL, return NULL after + suffix after the integer. If the value is too large, silently + substitute SIZE_MAX. If MSGID is NULL, return NULL after failure; otherwise, report MSGID and exit on failure. */ static char const * @@ -2724,10 +2819,8 @@ /* Fall through. */ case LONGINT_OVERFLOW: case LONGINT_OVERFLOW | LONGINT_INVALID_SUFFIX_CHAR: - if (msgid) - error (SORT_FAILURE, 0, _("%s: count `%.*s' too large"), - _(msgid), (int) (suffix - string), string); - return NULL; + *val = SIZE_MAX; + break; case LONGINT_INVALID: if (msgid) @@ -2744,9 +2837,8 @@ static void sighandler (int sig) { -#ifndef SA_NOCLDSTOP - signal (sig, SIG_IGN); -#endif + if (! SA_NOCLDSTOP) + signal (sig, SIG_IGN); cleanup (); @@ -2760,8 +2852,7 @@ BLANKTYPE is the kind of blanks that 'b' should skip. */ static char * -set_ordering (register const char *s, struct keyfield *key, - enum blanktype blanktype) +set_ordering (const char *s, struct keyfield *key, enum blanktype blanktype) { while (*s) { @@ -2822,13 +2913,10 @@ int c = 0; bool checkonly = false; bool mergeonly = false; - int nfiles = 0; + size_t nfiles = 0; bool posixly_correct = (getenv ("POSIXLY_CORRECT") != NULL); bool obsolete_usage = (posix2_version () < 200112); - char const *short_options = (obsolete_usage - ? COMMON_SHORT_OPTIONS "y::" - : COMMON_SHORT_OPTIONS "y:"); - char *minus = "-", **files; + char **files; char const *outfile = NULL; initialize_main (&argc, &argv); @@ -2837,10 +2925,7 @@ bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); - atexit (cleanup); - initialize_exit_failure (SORT_FAILURE); - atexit (close_stdout); hard_LC_COLLATE = hard_locale (LC_COLLATE); #if HAVE_NL_LANGINFO @@ -2894,11 +2979,11 @@ inittables (); { - int i; + size_t i; static int const sig[] = { SIGHUP, SIGINT, SIGPIPE, SIGTERM }; enum { nsigs = sizeof sig / sizeof sig[0] }; -#ifdef SA_NOCLDSTOP +#if SA_NOCLDSTOP struct sigaction act; sigemptyset (&caught_signals); @@ -2919,10 +3004,16 @@ #else for (i = 0; i < nsigs; i++) if (signal (sig[i], SIG_IGN) != SIG_IGN) - signal (sig[i], sighandler); + { + signal (sig[i], sighandler); + siginterrupt (sig[i], 1); + } #endif } + /* The signal mask is known, so it is safe to invoke exit_cleanup. */ + atexit (exit_cleanup); + gkey.sword = gkey.eword = SIZE_MAX; gkey.ignore = NULL; gkey.translate = NULL; @@ -2934,9 +3025,9 @@ for (;;) { /* Parse an operand as a file after "--" was seen; or if - pedantic and a file was seen, unless the POSIX version - predates 1003.1-2001 and -c was not seen and the operand is - "-o FILE" or "-oFILE". */ + pedantic and a file was seen, unless the POSIX version + predates 1003.1-2001 and -c was not seen and the operand is + "-o FILE" or "-oFILE". */ if (c == -1 || (posixly_correct && nfiles != 0 @@ -3155,9 +3246,23 @@ break; case 'y': - /* Accept and ignore e.g. -y0 for compatibility with Solaris - 2.x through Solaris 7. -y is marked as obsolete starting - with Solaris 8. */ + /* Accept and ignore e.g. -y0 for compatibility with Solaris 2.x + through Solaris 7. It is also accepted by many non-Solaris + "sort" implementations, e.g., AIX 5.2, HP-UX 11i v2, IRIX 6.5. + -y is marked as obsolete starting with Solaris 8 (1999), but is + still accepted as of Solaris 10 prerelease (2004). + + Solaris 2.5.1 "sort -y 100" reads the input file "100", but + emulate Solaris 8 and 9 "sort -y 100" which ignores the "100", + and which in general ignores the argument after "-y" if it + consists entirely of digits (it can even be empty). */ + if (optarg == argv[optind - 1]) + { + char const *p; + for (p = optarg; ISDIGIT (*p); p++) + continue; + optind -= (*p != '\0'); + } break; case 'z': @@ -3204,7 +3309,9 @@ if (nfiles == 0) { + static char *minus = "-"; nfiles = 1; + free (files); files = − } @@ -3223,10 +3330,7 @@ } if (mergeonly) - { - int max_merge = first_same_file (files, MIN (nfiles, NMERGE), outfile); - merge (files, nfiles, max_merge, outfile); - } + merge (files, 0, nfiles, outfile); else sort (files, nfiles, outfile); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 13 08:50:07 2011 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 B93761065670 for ; Thu, 13 Jan 2011 08:50: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 7CC0C8FC19 for ; Thu, 13 Jan 2011 08:50: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 p0D8o78j011335 for ; Thu, 13 Jan 2011 08:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0D8o7RS011334; Thu, 13 Jan 2011 08:50:07 GMT (envelope-from gnats) Resent-Date: Thu, 13 Jan 2011 08:50:07 GMT Resent-Message-Id: <201101130850.p0D8o7RS011334@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, Pavel Polyakov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0CBC91065670 for ; Thu, 13 Jan 2011 08:46:06 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id F0F8B8FC08 for ; Thu, 13 Jan 2011 08:46:05 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0D8k5Wp014512 for ; Thu, 13 Jan 2011 08:46:05 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0D8k5UD014511; Thu, 13 Jan 2011 08:46:05 GMT (envelope-from nobody) Message-Id: <201101130846.p0D8k5UD014511@red.freebsd.org> Date: Thu, 13 Jan 2011 08:46:05 GMT From: Pavel Polyakov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/153948: panic after "ifconfig age0 up" in r216925 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, 13 Jan 2011 08:50:07 -0000 >Number: 153948 >Category: kern >Synopsis: panic after "ifconfig age0 up" in r216925 >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jan 13 08:50:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Pavel Polyakov >Release: 9.0-CURRENT Revision: 217222 >Organization: >Environment: FreeBSD pp.fss.sunpp 9.0-CURRENT FreeBSD 9.0-CURRENT #2 r217222: Mon Jan 10 15:49:36 EET 2011 root@:/usr/obj/usr/src/sys/WORK8SMP amd64 >Description: panic after "ifconfig age0 up" + ~3 seconds panic: lock (sleep mutex) age0 not locked @ sys/dev/age/if_age.c:1714 Problem appeared after this change r216925 | jhb | 2011-01-03 20:28:30 +0200 Downgrading sys/dev/age to the previous revision (r213893 | marius | 2010-10-15 17:52:11 +0300) and recompiling sys/modules/age "solves" this problem - age(4) works like before last commit ---- Problem proved to appear on amd64 r217222 and i386 r217258. age0@pci0:2:0:0: class=0x020000 card=0x82261043 chip=0x10481969 rev=0xb0 hdr=0x00 vendor = 'Attansic (Now owned by Atheros)' device = 'Gigabit Ethernet 10/100/1000 Base-T Controller (Atheros L1)' class = network subclass = ethernet >How-To-Repeat: ifconfig age0 up Using 9.0-C since r216925 >Fix: downgrade sys/dev/age to r213893 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 13 10:03:34 2011 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 68D1F106567A; Thu, 13 Jan 2011 10:03:34 +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 016408FC13; Thu, 13 Jan 2011 10:03:34 +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 p0DA3XkZ097694; Thu, 13 Jan 2011 10:03:33 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0DA3X8M097690; Thu, 13 Jan 2011 10:03:33 GMT (envelope-from linimon) Date: Thu, 13 Jan 2011 10:03:33 GMT Message-Id: <201101131003.p0DA3X8M097690@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/153901: [sound] [patch] Replace the GPL'd emu10k1-alsa.h with emuxkireg.h from NetBSD 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, 13 Jan 2011 10:03:34 -0000 Synopsis: [sound] [patch] Replace the GPL'd emu10k1-alsa.h with emuxkireg.h from NetBSD Responsible-Changed-From-To: freebsd-bugs->freebsd-multimedia Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jan 13 10:03:21 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=153901 From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 13 10:03:54 2011 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 4FB771065675; Thu, 13 Jan 2011 10:03:54 +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 261B78FC13; Thu, 13 Jan 2011 10:03: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 p0DA3sdj097783; Thu, 13 Jan 2011 10:03:54 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0DA3s2B097779; Thu, 13 Jan 2011 10:03:54 GMT (envelope-from linimon) Date: Thu, 13 Jan 2011 10:03:54 GMT Message-Id: <201101131003.p0DA3s2B097779@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/153920: [sound] [patch] Replace the GPL'd sound/maestro3 headers with BSD versions from OSS 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, 13 Jan 2011 10:03:54 -0000 Synopsis: [sound] [patch] Replace the GPL'd sound/maestro3 headers with BSD versions from OSS Responsible-Changed-From-To: freebsd-bugs->freebsd-multimedia Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jan 13 10:03:40 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=153920 From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 13 10:06:26 2011 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 84A9F106566C; Thu, 13 Jan 2011 10:06: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 5B6148FC0A; Thu, 13 Jan 2011 10:06: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 p0DA6QZd098206; Thu, 13 Jan 2011 10:06:26 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0DA6QC0098202; Thu, 13 Jan 2011 10:06:26 GMT (envelope-from linimon) Date: Thu, 13 Jan 2011 10:06:26 GMT Message-Id: <201101131006.p0DA6QC0098202@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-net@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/153936: [ixgbe] [patch] MPRC workaround incorrectly applied to 82599 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, 13 Jan 2011 10:06:26 -0000 Synopsis: [ixgbe] [patch] MPRC workaround incorrectly applied to 82599 Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jan 13 10:06:05 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=153936 From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 13 10:07:57 2011 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 6EDE51065675; Thu, 13 Jan 2011 10:07: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 45CE38FC17; Thu, 13 Jan 2011 10:07: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 p0DA7vQk098362; Thu, 13 Jan 2011 10:07:57 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0DA7vqO098358; Thu, 13 Jan 2011 10:07:57 GMT (envelope-from linimon) Date: Thu, 13 Jan 2011 10:07:57 GMT Message-Id: <201101131007.p0DA7vqO098358@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-net@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/153938: [run] [panic] [patch] Workaround for use-after-free 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: Thu, 13 Jan 2011 10:07:57 -0000 Synopsis: [run] [panic] [patch] Workaround for use-after-free panic Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jan 13 10:07:38 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=153938 From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 13 10:50:10 2011 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 62A25106564A for ; Thu, 13 Jan 2011 10:50: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 37C798FC0A for ; Thu, 13 Jan 2011 10:50: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 p0DAo9Wa040479 for ; Thu, 13 Jan 2011 10:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0DAo94I040478; Thu, 13 Jan 2011 10:50:09 GMT (envelope-from gnats) Date: Thu, 13 Jan 2011 10:50:09 GMT Message-Id: <201101131050.p0DAo94I040478@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Dominic Fandrey Cc: Subject: Re: bin/127276: [patch] ldd(1) invokes linux yes X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dominic Fandrey List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2011 10:50:10 -0000 The following reply was made to PR bin/127276; it has been noted by GNATS. From: Dominic Fandrey To: bug-followup@FreeBSD.org, kamikaze@bsdforen.de Cc: Subject: Re: bin/127276: [patch] ldd(1) invokes linux yes Date: Thu, 13 Jan 2011 11:44:06 +0100 I tested the patch, prior to the test: > ldd /compat/linux/usr/bin/yes y y y y y y ... After I applied the patch: > ldd /compat/linux/usr/bin/yes /compat/linux/usr/bin/yes: libc.so.6 => /lib/libc.so.6 (0x28075000) /lib/ld-linux.so.2 (0x2804f000) Apparently it returns libraries from the /compat/linux perspective. > ldd /compat/linux/lib/ld-linux.so.2 ldd: /compat/linux/lib/ld-linux.so.2: not a FreeBSD ELF shared object The behaviour caused by the patch is comprehensible and a vast improvement over the old behaviour in my opinion, so I'm all for it. At some point the manual page of ldd should be updated to describe the new behaviour. If the patch is committed, I volunteer to make the changes. Because the patch was mangled by Gnats, I resubmit it here. I did not make any changes apart from the header to trigger the usual patch detection magic. Regards diff -u ldd.c.old ldd.c --- ldd.c.old 2009-09-19 21:45:17.000000000 +0900 +++ ldd.c 2010-05-04 11:48:42.000000000 +0900 @@ -65,7 +65,7 @@ #endif static int is_executable(const char *fname, int fd, int *is_shlib, - int *type); + int *osabi, int *type); static void usage(void); #define TYPE_UNKNOWN 0 @@ -177,14 +177,14 @@ rval = 0; for (; argc > 0; argc--, argv++) { - int fd, status, is_shlib, rv, type; + int fd, status, is_shlib, rv, type, osabi; if ((fd = open(*argv, O_RDONLY, 0)) < 0) { warn("%s", *argv); rval |= 1; continue; } - rv = is_executable(*argv, fd, &is_shlib, &type); + rv = is_executable(*argv, fd, &is_shlib, &osabi, &type); close(fd); if (rv == 0) { rval |= 1; @@ -197,6 +197,8 @@ break; #if __ELF_WORD_SIZE > 32 && defined(ELF32_SUPPORTED) case TYPE_ELF32: + if (osabi != ELFOSABI_FREEBSD) + break; rval |= execldd32(*argv, fmt1, fmt2, aflag, vflag); continue; #endif @@ -267,7 +269,7 @@ } static int -is_executable(const char *fname, int fd, int *is_shlib, int *type) +is_executable(const char *fname, int fd, int *is_shlib, int *osabi, int *type) { union { struct exec aout; @@ -300,6 +302,8 @@ return (1); } + *osabi = hdr.elf.e_ident[EI_OSABI]; + #if __ELF_WORD_SIZE > 32 && defined(ELF32_SUPPORTED) if ((size_t)n >= sizeof(hdr.elf32) && IS_ELF(hdr.elf32) && hdr.elf32.e_ident[EI_CLASS] == ELFCLASS32) { From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 13 13:05:21 2011 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 CCD22106567A; Thu, 13 Jan 2011 13:05:21 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A38618FC18; Thu, 13 Jan 2011 13:05: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 p0DD5L4A096067; Thu, 13 Jan 2011 13:05:21 GMT (envelope-from jhb@freefall.freebsd.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0DD5LNL096063; Thu, 13 Jan 2011 13:05:21 GMT (envelope-from jhb) Date: Thu, 13 Jan 2011 13:05:21 GMT Message-Id: <201101131305.p0DD5LNL096063@freefall.freebsd.org> To: bsd@kobyla.org, jhb@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jhb@FreeBSD.org Cc: Subject: Re: kern/153948: [panic] panic after "ifconfig age0 up" in r216925 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, 13 Jan 2011 13:05:21 -0000 Synopsis: [panic] panic after "ifconfig age0 up" in r216925 State-Changed-From-To: open->closed State-Changed-By: jhb State-Changed-When: Thu Jan 13 13:04:59 UTC 2011 State-Changed-Why: Ooops, should be fixed now. http://www.freebsd.org/cgi/query-pr.cgi?pr=153948 From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 13 13:10:10 2011 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 CC82D106566B for ; Thu, 13 Jan 2011 13:10: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 A1C398FC15 for ; Thu, 13 Jan 2011 13:10: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 p0DDAAqX096232 for ; Thu, 13 Jan 2011 13:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0DDAAcn096231; Thu, 13 Jan 2011 13:10:10 GMT (envelope-from gnats) Date: Thu, 13 Jan 2011 13:10:10 GMT Message-Id: <201101131310.p0DDAAcn096231@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: kern/153948: 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, 13 Jan 2011 13:10:10 -0000 The following reply was made to PR kern/153948; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/153948: commit references a PR Date: Thu, 13 Jan 2011 13:04:55 +0000 (UTC) Author: jhb Date: Thu Jan 13 13:04:49 2011 New Revision: 217349 URL: http://svn.freebsd.org/changeset/base/217349 Log: Forgot to remove unlock of the driver lock from age_start_locked() when converting it to a locked variant. PR: kern/153948 Modified: head/sys/dev/age/if_age.c Modified: head/sys/dev/age/if_age.c ============================================================================== --- head/sys/dev/age/if_age.c Thu Jan 13 12:26:39 2011 (r217348) +++ head/sys/dev/age/if_age.c Thu Jan 13 13:04:49 2011 (r217349) @@ -1760,8 +1760,6 @@ age_start_locked(struct ifnet *ifp) /* Set a timeout in case the chip goes out to lunch. */ sc->age_watchdog_timer = AGE_TX_TIMEOUT; } - - AGE_UNLOCK(sc); } static void _______________________________________________ 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 Jan 13 14:30:11 2011 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 119171065695 for ; Thu, 13 Jan 2011 14: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 C77068FC0C for ; Thu, 13 Jan 2011 14:30: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 p0DEUA5W080388 for ; Thu, 13 Jan 2011 14:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0DEUAJZ080386; Thu, 13 Jan 2011 14:30:10 GMT (envelope-from gnats) Resent-Date: Thu, 13 Jan 2011 14:30:10 GMT Resent-Message-Id: <201101131430.p0DEUAJZ080386@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, Steinar Haug Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 44ACD1065670 for ; Thu, 13 Jan 2011 14:23:31 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 1957E8FC18 for ; Thu, 13 Jan 2011 14:23:31 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0DENUoE097813 for ; Thu, 13 Jan 2011 14:23:30 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0DENUNu097802; Thu, 13 Jan 2011 14:23:30 GMT (envelope-from nobody) Message-Id: <201101131423.p0DENUNu097802@red.freebsd.org> Date: Thu, 13 Jan 2011 14:23:30 GMT From: Steinar Haug To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/153951: Intel 10GBase-LR Ethernet card detected as 10GBase-SR 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, 13 Jan 2011 14:30:11 -0000 >Number: 153951 >Category: kern >Synopsis: Intel 10GBase-LR Ethernet card detected as 10GBase-SR >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 Jan 13 14:30:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Steinar Haug >Release: 8.2-RC1 >Organization: Nethelp Consulting >Environment: FreeBSD sniffy.lab.ventelo.net 8.2-RC1 FreeBSD 8.2-RC1 #0: Thu Jan 13 14:41:42 CET 2011 sthaug@sniffy.lab.ventelo.net:/usr/src/sys/amd64/compile/GENERIC amd64 >Description: I have a server with an Intel X520-LR1 Ethernet card, which is a 10GBase-LR card: http://ark.intel.com/Product.aspx?id=41164 The card contains the Intel 82599ES controller: http://ark.intel.com/Product.aspx?id=41282 pciconf -lv shows: ix0@pci0:28:0:0: class=0x020000 card=0x00068086 chip=0x10fb8086 rev=0x01 hdr=0x00 vendor = 'Intel Corporation' class = network subclass = ethernet where /sys/dev/ixgbe/ixgbe_type.h has the PCI ID definition: #define IXGBE_DEV_ID_82599_SFP 0x10FB The problem is that this card is shown by ifconfig as a 10GBase-SR card: % ifconfig ix0 ix0: flags=8843 metric 0 mtu 1500 options=1bb ether 00:1b:21:7c:7b:94 media: Ethernet autoselect (10Gbase-SR ) status: active I believe this is due to the following code in /sys/dev/ixgbe/ixgbe.c line 423, routine ixgbe_attach(): case IXGBE_DEV_ID_82599_SFP: adapter->optics = IFM_10G_SR; I'm looking at version 1.17.2.12.2.1, from 8.2-RC1, but I see this code is the same in version 1.45, from HEAD: http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/dev/ixgbe/ixgbe.c?rev=1.45;content-type=text/plain >How-To-Repeat: Insert Intel X520-LR1 Ethernet card into server, compile kernel with ixgbe driver, reboot, type ifconfig, look at the values for the detected ixN card. >Fix: Fix pasted in so space/tabs won't be correct: --- ixgbe.c.orig 2010-12-21 18:09:25.000000000 +0100 +++ ixgbe.c 2011-01-13 14:31:14.000000000 +0100 @@ -421,7 +421,7 @@ adapter->optics = IFM_10G_LR; break; case IXGBE_DEV_ID_82599_SFP: - adapter->optics = IFM_10G_SR; + adapter->optics = IFM_10G_LR; ixgbe_num_segs = IXGBE_82599_SCATTER; break; case IXGBE_DEV_ID_82598_DA_DUAL_PORT : >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 13 18:30:11 2011 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 044FC1065696 for ; Thu, 13 Jan 2011 18:30: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 B5E9E8FC17 for ; Thu, 13 Jan 2011 18:30: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 p0DIUAAZ035766 for ; Thu, 13 Jan 2011 18:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0DIUAuG035763; Thu, 13 Jan 2011 18:30:10 GMT (envelope-from gnats) Resent-Date: Thu, 13 Jan 2011 18:30:10 GMT Resent-Message-Id: <201101131830.p0DIUAuG035763@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, "Pedro F. Giffuni" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CCA5910656A5 for ; Thu, 13 Jan 2011 18:21:42 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id BC1358FC1E for ; Thu, 13 Jan 2011 18:21:42 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0DILgxr066232 for ; Thu, 13 Jan 2011 18:21:42 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0DILg3P066231; Thu, 13 Jan 2011 18:21:42 GMT (envelope-from nobody) Message-Id: <201101131821.p0DILg3P066231@red.freebsd.org> Date: Thu, 13 Jan 2011 18:21:42 GMT From: "Pedro F. Giffuni" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: gnu/153959: Minor mips-specific gcc update 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, 13 Jan 2011 18:30:11 -0000 >Number: 153959 >Category: gnu >Synopsis: Minor mips-specific gcc update >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Jan 13 18:30:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Pedro F. Giffuni >Release: 8.2-RC1 >Organization: >Environment: Non-relevant ... this only applies to MIPS platform. >Description: While I was looking for some GPLv2 updates for GCC (submitted as gnu/153298), I noticed this MIPS specific change that was committed upstream before the GPLv3 switch: ______ 2007-08-20 Adam Nemet * config/mips/predicates.md (const_call_insn_operand): Invoke SYMBOL_REF_LONG_CALL_P only on SYMBOL_REFs. http://gcc.gnu.org/viewcvs/branches/gcc-4_2-branch/gcc/config/mips/predicates.md?r1=117923&r2=127658&pathrev=127959 ______ I have no idea of the relevance of the issue and I don't have a MIPS platform to try this so I didn't include it in the patchset, but it is to be the expected behavior in upstream gcc, so I believe it should be committed. >How-To-Repeat: >Fix: The following patch applies cleanly to base gcc. Patch attached with submission follows: --- gcc/config/mips/predicates.md 2006/10/21 02:41:38 117923 +++ gcc/config/mips/predicates.md 2007/08/21 00:50:59 127658 @@ -116,7 +116,9 @@ /* If -mlong-calls, force all calls to use register addressing. Also, if this function has the long_call attribute, we must use register addressing. */ - return !TARGET_LONG_CALLS && !SYMBOL_REF_LONG_CALL_P (op); + return (!TARGET_LONG_CALLS + && !(GET_CODE (op) == SYMBOL_REF + && SYMBOL_REF_LONG_CALL_P (op))); case SYMBOL_GOT_GLOBAL: /* Without explicit relocs, there is no special syntax for >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 13 19:20:09 2011 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 9777F1065679 for ; Thu, 13 Jan 2011 19:20: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 5AD478FC29 for ; Thu, 13 Jan 2011 19: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 p0DJK917089849 for ; Thu, 13 Jan 2011 19: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 p0DJK964089848; Thu, 13 Jan 2011 19:20:09 GMT (envelope-from gnats) Resent-Date: Thu, 13 Jan 2011 19:20:09 GMT Resent-Message-Id: <201101131920.p0DJK964089848@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, Tobias Reber Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A758D10656A3 for ; Thu, 13 Jan 2011 19:13:59 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 7CB578FC26 for ; Thu, 13 Jan 2011 19:13:59 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0DJDxk5004731 for ; Thu, 13 Jan 2011 19:13:59 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0DJDwpS004730; Thu, 13 Jan 2011 19:13:59 GMT (envelope-from nobody) Message-Id: <201101131913.p0DJDwpS004730@red.freebsd.org> Date: Thu, 13 Jan 2011 19:13:59 GMT From: Tobias Reber To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/153961: WOL does not work with nfe on 1000BaseT 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, 13 Jan 2011 19:20:09 -0000 >Number: 153961 >Category: kern >Synopsis: WOL does not work with nfe on 1000BaseT >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 Jan 13 19:20:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Tobias Reber >Release: 8.2-RC1 >Organization: >Environment: >Description: WOL does not work if the interface is connected to a 1000BaseT link. In nfe_setlinkspeed only the media types 10BaseT and 100BaseT are checked on line 3321 >How-To-Repeat: Connect a system with nfe(4) to a1Gbps line and try WOL >Fix: Insert case IFM_1000T: after line 3321 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 13 21:40:13 2011 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 ACC51106566B for ; Thu, 13 Jan 2011 21:40:13 +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 955DE8FC14 for ; Thu, 13 Jan 2011 21:40:13 +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 p0DLeDxD038996 for ; Thu, 13 Jan 2011 21:40:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0DLeDC4038995; Thu, 13 Jan 2011 21:40:13 GMT (envelope-from gnats) Date: Thu, 13 Jan 2011 21:40:13 GMT Message-Id: <201101132140.p0DLeDC4038995@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: sthaug@nethelp.no Cc: Subject: Re: kern/153951: Intel 10GBase-LR Ethernet card detected as 10GBase-SR X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sthaug@nethelp.no List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2011 21:40:13 -0000 The following reply was made to PR kern/153951; it has been noted by GNATS. From: sthaug@nethelp.no To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/153951: Intel 10GBase-LR Ethernet card detected as 10GBase-SR Date: Thu, 13 Jan 2011 22:08:09 +0100 (CET) Checking some more I find that the same Intel 82599ES controller based card is also available in 10GBase-SR versions - it simply depends on the type of SFP+ used in the card. See for instance http://ark.intel.com/Product.aspx?id=39773 http://ark.intel.com/Product.aspx?id=39774 Thus the *correct* solution to my problem is probably to retrieve the optics type from the SFP+, instead of setting it statically in the driver. Until such a solution is available, my 1-line patch works for me... Steinar Haug, Nethelp consulting, sthaug@nethelp.no From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 00:43:00 2011 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 9D92F106566B; Fri, 14 Jan 2011 00:43:00 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 73A698FC0A; Fri, 14 Jan 2011 00:43: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 p0E0h0IT041487; Fri, 14 Jan 2011 00:43:00 GMT (envelope-from yongari@freefall.freebsd.org) Received: (from yongari@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0E0h0Xu041483; Fri, 14 Jan 2011 00:43:00 GMT (envelope-from yongari) Date: Fri, 14 Jan 2011 00:43:00 GMT Message-Id: <201101140043.p0E0h0Xu041483@freefall.freebsd.org> To: t.reber@gmx.net, yongari@FreeBSD.org, freebsd-bugs@FreeBSD.org, yongari@FreeBSD.org From: yongari@FreeBSD.org Cc: Subject: Re: kern/153961: WOL does not work with nfe on 1000BaseT 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, 14 Jan 2011 00:43:00 -0000 Synopsis: WOL does not work with nfe on 1000BaseT State-Changed-From-To: open->closed State-Changed-By: yongari State-Changed-When: Fri Jan 14 00:42:21 UTC 2011 State-Changed-Why: This is *INTENTIONAL* one to protect hardware from over-current damage as well as saving more power. This is no reason to make WOL work on 1000baseT link. When system is up from sleep or S3 via WOL, 1000baseT link would be established again. Responsible-Changed-From-To: freebsd-bugs->yongari Responsible-Changed-By: yongari Responsible-Changed-When: Fri Jan 14 00:42:21 UTC 2011 Responsible-Changed-Why: Track. http://www.freebsd.org/cgi/query-pr.cgi?pr=153961 From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 01:23:51 2011 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 C5FE01065673; Fri, 14 Jan 2011 01:23:51 +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 9BA068FC16; Fri, 14 Jan 2011 01:23:51 +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 p0E1NpKb085252; Fri, 14 Jan 2011 01:23:51 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0E1Npk3085248; Fri, 14 Jan 2011 01:23:51 GMT (envelope-from linimon) Date: Fri, 14 Jan 2011 01:23:51 GMT Message-Id: <201101140123.p0E1Npk3085248@freefall.freebsd.org> To: moonlightakkiy@yahoo.ca, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/153964: Re: [run] [panic] [patch] Workaround for use-after-free 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, 14 Jan 2011 01:23:51 -0000 Synopsis: Re: [run] [panic] [patch] Workaround for use-after-free panic State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Fri Jan 14 01:23:05 UTC 2011 State-Changed-Why: Misfiled followup to kern/153938; content migrated. Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Fri Jan 14 01:23:05 UTC 2011 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=153964 From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 01:27:55 2011 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 BED991065695; Fri, 14 Jan 2011 01:27:55 +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 94EAE8FC1A; Fri, 14 Jan 2011 01:27:55 +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 p0E1Rt0Q085476; Fri, 14 Jan 2011 01:27:55 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0E1RtYM085472; Fri, 14 Jan 2011 01:27:55 GMT (envelope-from linimon) Date: Fri, 14 Jan 2011 01:27:55 GMT Message-Id: <201101140127.p0E1RtYM085472@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-net@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/153951: [ixgbe] Intel 10GBase-LR Ethernet card detected as 10GBase-SR 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, 14 Jan 2011 01:27:55 -0000 Old Synopsis: Intel 10GBase-LR Ethernet card detected as 10GBase-SR New Synopsis: [ixgbe] Intel 10GBase-LR Ethernet card detected as 10GBase-SR Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Fri Jan 14 01:27:27 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=153951 From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 07:50:12 2011 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 AF7A21065679 for ; Fri, 14 Jan 2011 07:50: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 848288FC16 for ; Fri, 14 Jan 2011 07:50: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 p0E7oCGh021345 for ; Fri, 14 Jan 2011 07:50:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0E7oCBL021344; Fri, 14 Jan 2011 07:50:12 GMT (envelope-from gnats) Date: Fri, 14 Jan 2011 07:50:12 GMT Message-Id: <201101140750.p0E7oCBL021344@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Colin Percival Cc: Subject: Re: kern/153924: [rtld] Bug is inside rtld (ELF dyn loader) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Colin Percival List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2011 07:50:12 -0000 The following reply was made to PR kern/153924; it has been noted by GNATS. From: Colin Percival To: bug-followup@FreeBSD.org, admin@werewolf.in.ua Cc: Subject: Re: kern/153924: [rtld] Bug is inside rtld (ELF dyn loader) Date: Thu, 13 Jan 2011 23:46:44 -0800 Tell us what the bug is, and we'll tell you if there's a patch. -- Colin Percival Security Officer, FreeBSD | freebsd.org | The power to serve Founder / author, Tarsnap | tarsnap.com | Online backups for the truly paranoid From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 09:10:11 2011 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 A9604106564A for ; Fri, 14 Jan 2011 09:10: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 7DEB58FC1E for ; Fri, 14 Jan 2011 09:10: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 p0E9ABX7012576 for ; Fri, 14 Jan 2011 09:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0E9ABdr012575; Fri, 14 Jan 2011 09:10:11 GMT (envelope-from gnats) Date: Fri, 14 Jan 2011 09:10:11 GMT Message-Id: <201101140910.p0E9ABdr012575@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Jaakko Heinonen Cc: Subject: Re: bin/153142: [zfs] ls -l outputs `ls: ./.zfs: Operation not supported' X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jaakko Heinonen List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2011 09:10:11 -0000 The following reply was made to PR bin/153142; it has been noted by GNATS. From: Jaakko Heinonen To: Hiroshi Fujishima Cc: Bruce Cran , bug-followup@FreeBSD.org, trasz@FreeBSD.org Subject: Re: bin/153142: [zfs] ls -l outputs `ls: ./.zfs: Operation not supported' Date: Fri, 14 Jan 2011 11:00:50 +0200 Hi, On 2010-12-14, Hiroshi Fujishima wrote: > >Description: > 1. filesystem is zfs > 2. snapdir property is visible > 3. top directory of file system has .a file. > > with above condition, ls -l outputs `ls: ./.zfs: Operation not supported' > > >How-To-Repeat: > backup8y# zfs create -o mountpoint=/test -o snapdir=visible tank/test > backup8y# ls -l /test > total 0 > dr-xr-xr-x 3 root wheel 3 Dec 14 15:46 .zfs > backup8y# touch /test/.a > backup8y# ls -l /test > total 1 > -rw-r--r-- 1 root wheel 0 Dec 14 15:46 .a > ls: /test/.zfs: Operation not supported > dr-xr-xr-x 3 root wheel 3 Dec 14 15:46 .zfs ls(1) detects from the first file in the listing if the file system supports ACLs and assumes that all files on the same file system support ACLs. The ".zfs" directory is special and doesn't support ACLs. Thus ls(1) prints an error message for acl_get_link_np(3) failure. Also, if the ".zfs" directory is the first entry of a listing, ls(1) assumes that files on the same file system don't have ACLs and doesn't print '+' after mode. -- Jaakko From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 09:40:11 2011 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 CFB08106566C for ; Fri, 14 Jan 2011 09:40: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 A383C8FC14 for ; Fri, 14 Jan 2011 09:40: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 p0E9eBd8035491 for ; Fri, 14 Jan 2011 09:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0E9eBE9035490; Fri, 14 Jan 2011 09:40:11 GMT (envelope-from gnats) Date: Fri, 14 Jan 2011 09:40:11 GMT Message-Id: <201101140940.p0E9eBE9035490@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: =?iso-8859-2?Q?Edward_Tomasz_Napiera=B3a?= Cc: Subject: Re: bin/153142: [zfs] ls -l outputs `ls: ./.zfs: Operation not supported' X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: =?iso-8859-2?Q?Edward_Tomasz_Napiera=B3a?= List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2011 09:40:11 -0000 The following reply was made to PR bin/153142; it has been noted by GNATS. From: =?iso-8859-2?Q?Edward_Tomasz_Napiera=B3a?= To: Jaakko Heinonen Cc: Hiroshi Fujishima , Bruce Cran , bug-followup@FreeBSD.org Subject: Re: bin/153142: [zfs] ls -l outputs `ls: ./.zfs: Operation not supported' Date: Fri, 14 Jan 2011 10:07:02 +0100 Wiadomo=B6=E6 napisana przez Jaakko Heinonen w dniu 2011-01-14, o godz. = 10:00: > On 2010-12-14, Hiroshi Fujishima wrote: >>> Description: >> 1. filesystem is zfs >> 2. snapdir property is visible >> 3. top directory of file system has .a file. >>=20 >> with above condition, ls -l outputs `ls: ./.zfs: Operation not = supported' >>=20 >>> How-To-Repeat: >> backup8y# zfs create -o mountpoint=3D/test -o snapdir=3Dvisible = tank/test >> backup8y# ls -l /test >> total 0 >> dr-xr-xr-x 3 root wheel 3 Dec 14 15:46 .zfs >> backup8y# touch /test/.a >> backup8y# ls -l /test >> total 1 >> -rw-r--r-- 1 root wheel 0 Dec 14 15:46 .a >> ls: /test/.zfs: Operation not supported >> dr-xr-xr-x 3 root wheel 3 Dec 14 15:46 .zfs >=20 > ls(1) detects from the first file in the listing if the file system > supports ACLs and assumes that all files on the same file system = support > ACLs. The ".zfs" directory is special and doesn't support ACLs. Thus > ls(1) prints an error message for acl_get_link_np(3) failure. >=20 > Also, if the ".zfs" directory is the first entry of a listing, ls(1) > assumes that files on the same file system don't have ACLs and doesn't > print '+' after mode. I guess the easiest way to fix this would be to add "dummy" ACL support for ".zfs" directory - that is, to zfsctl_ops_root[], if I'm reading = this correctly. -- If you cut off my head, what would I say? Me and my head, or me and my = body? From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 13:31:17 2011 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 BED98106566B; Fri, 14 Jan 2011 13:31:17 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 94EF98FC0C; Fri, 14 Jan 2011 13:31: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 p0EDVHDD074888; Fri, 14 Jan 2011 13:31:17 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0EDVHwp074861; Fri, 14 Jan 2011 13:31:17 GMT (envelope-from jh) Date: Fri, 14 Jan 2011 13:31:17 GMT Message-Id: <201101141331.p0EDVHwp074861@freefall.freebsd.org> To: aurelien@aurel32.net, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org, jh@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: kern/150206: [libc] [patch] nmount(2): can't switch root partition to rw using mount flags 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, 14 Jan 2011 13:31:17 -0000 Synopsis: [libc] [patch] nmount(2): can't switch root partition to rw using mount flags State-Changed-From-To: open->feedback State-Changed-By: jh State-Changed-When: Fri Jan 14 12:31:47 UTC 2011 State-Changed-Why: Could you try if the patch linked in the message at http://docs.freebsd.org/cgi/mid.cgi?20110114122454.GA4805 solves your problem? Responsible-Changed-From-To: freebsd-bugs->jh Responsible-Changed-By: jh Responsible-Changed-When: Fri Jan 14 12:31:47 UTC 2011 Responsible-Changed-Why: Track. http://www.freebsd.org/cgi/query-pr.cgi?pr=150206 From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 13:42:27 2011 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 121F910656B6; Fri, 14 Jan 2011 13:42:27 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D71368FC08; Fri, 14 Jan 2011 13:42: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 p0EDgQKB088137; Fri, 14 Jan 2011 13:42:26 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0EDgQB3088133; Fri, 14 Jan 2011 13:42:26 GMT (envelope-from jh) Date: Fri, 14 Jan 2011 13:42:26 GMT Message-Id: <201101141342.p0EDgQB3088133@freefall.freebsd.org> To: imitheos@hotmail.com, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: kern/100516: [atapicam] atapicam with ITE IT8212F crashes the system 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, 14 Jan 2011 13:42:27 -0000 Synopsis: [atapicam] atapicam with ITE IT8212F crashes the system State-Changed-From-To: open->feedback State-Changed-By: jh State-Changed-When: Fri Jan 14 13:42:26 UTC 2011 State-Changed-Why: Can you still reproduce this on a supported release? http://www.freebsd.org/cgi/query-pr.cgi?pr=100516 From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 13:43:45 2011 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 74A0C1065674; Fri, 14 Jan 2011 13:43:45 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4BF9E8FC19; Fri, 14 Jan 2011 13:43: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 p0EDhj19088245; Fri, 14 Jan 2011 13:43:45 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0EDhiS0088241; Fri, 14 Jan 2011 13:43:44 GMT (envelope-from jh) Date: Fri, 14 Jan 2011 13:43:44 GMT Message-Id: <201101141343.p0EDhiS0088241@freefall.freebsd.org> To: bmeyer@mesoft.com.au, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: kern/108651: [hang] option PREEMPTION causes machine hangs on TYAN 2462 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, 14 Jan 2011 13:43:45 -0000 Synopsis: [hang] option PREEMPTION causes machine hangs on TYAN 2462 State-Changed-From-To: open->feedback State-Changed-By: jh State-Changed-When: Fri Jan 14 13:43:43 UTC 2011 State-Changed-Why: Can you still reproduce this on a supported release? http://www.freebsd.org/cgi/query-pr.cgi?pr=108651 From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 13:44:58 2011 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 DF2C21065673; Fri, 14 Jan 2011 13:44:58 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B67A18FC0A; Fri, 14 Jan 2011 13:44: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 p0EDiwnD088361; Fri, 14 Jan 2011 13:44:58 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0EDiwWK088357; Fri, 14 Jan 2011 13:44:58 GMT (envelope-from jh) Date: Fri, 14 Jan 2011 13:44:58 GMT Message-Id: <201101141344.p0EDiwWK088357@freefall.freebsd.org> To: vlarick@arcor.de, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: kern/114111: [nfs] System crashes while writing on NFS-mounted share 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, 14 Jan 2011 13:44:59 -0000 Synopsis: [nfs] System crashes while writing on NFS-mounted share State-Changed-From-To: open->feedback State-Changed-By: jh State-Changed-When: Fri Jan 14 13:44:57 UTC 2011 State-Changed-Why: Can you still reproduce this on a supported release? http://www.freebsd.org/cgi/query-pr.cgi?pr=114111 From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 13:45:50 2011 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 1390F106566B; Fri, 14 Jan 2011 13:45:50 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DF1B18FC14; Fri, 14 Jan 2011 13:45:49 +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 p0EDjnx0088590; Fri, 14 Jan 2011 13:45:49 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0EDjnR4088586; Fri, 14 Jan 2011 13:45:49 GMT (envelope-from jh) Date: Fri, 14 Jan 2011 13:45:49 GMT Message-Id: <201101141345.p0EDjnR4088586@freefall.freebsd.org> To: yuri@tsoft.com, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: kern/35377: process gets unkillable (-9) in "ttywai" 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: Fri, 14 Jan 2011 13:45:50 -0000 Synopsis: process gets unkillable (-9) in "ttywai" state State-Changed-From-To: open->feedback State-Changed-By: jh State-Changed-When: Fri Jan 14 13:45:49 UTC 2011 State-Changed-Why: Can you still reproduce this on a supported release? http://www.freebsd.org/cgi/query-pr.cgi?pr=35377 From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 13:49:18 2011 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 D92831065696; Fri, 14 Jan 2011 13:49:18 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AFAE18FC18; Fri, 14 Jan 2011 13:49: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 p0EDnIle089172; Fri, 14 Jan 2011 13:49:18 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0EDnHQq089166; Fri, 14 Jan 2011 13:49:17 GMT (envelope-from jh) Date: Fri, 14 Jan 2011 13:49:17 GMT Message-Id: <201101141349.p0EDnHQq089166@freefall.freebsd.org> To: barness@paynet.co.ke, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: kern/109809: [shutdown] CPU hits 100% when issuing the halt command (in a VM and also when running on native hardware) 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, 14 Jan 2011 13:49:18 -0000 Synopsis: [shutdown] CPU hits 100% when issuing the halt command (in a VM and also when running on native hardware) State-Changed-From-To: open->feedback State-Changed-By: jh State-Changed-When: Fri Jan 14 13:49:17 UTC 2011 State-Changed-Why: Can you still reproduce this on a supported release? http://www.freebsd.org/cgi/query-pr.cgi?pr=109809 From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 13:51:08 2011 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 9C3D71065670; Fri, 14 Jan 2011 13:51:08 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 735298FC0C; Fri, 14 Jan 2011 13:51: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 p0EDp8RG097158; Fri, 14 Jan 2011 13:51:08 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0EDp7LG097070; Fri, 14 Jan 2011 13:51:07 GMT (envelope-from jh) Date: Fri, 14 Jan 2011 13:51:07 GMT Message-Id: <201101141351.p0EDp7LG097070@freefall.freebsd.org> To: wildman@file.pp.ru, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: kern/119259: [panic] kernel panic on asus c90s laptop after first (?) power on 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, 14 Jan 2011 13:51:08 -0000 Synopsis: [panic] kernel panic on asus c90s laptop after first (?) power on State-Changed-From-To: open->feedback State-Changed-By: jh State-Changed-When: Fri Jan 14 13:51:07 UTC 2011 State-Changed-Why: Can you still reproduce this on a supported release? http://www.freebsd.org/cgi/query-pr.cgi?pr=119259 From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 13:53:46 2011 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 3B7281065698; Fri, 14 Jan 2011 13:53:46 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 12D698FC13; Fri, 14 Jan 2011 13:53:46 +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 p0EDrjv1098763; Fri, 14 Jan 2011 13:53:45 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0EDrj1f098759; Fri, 14 Jan 2011 13:53:45 GMT (envelope-from jh) Date: Fri, 14 Jan 2011 13:53:45 GMT Message-Id: <201101141353.p0EDrj1f098759@freefall.freebsd.org> To: olivas@digiflux.org, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: kern/52445: [mfs] panic when mounting floppy on MFS filesystem 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, 14 Jan 2011 13:53:46 -0000 Synopsis: [mfs] panic when mounting floppy on MFS filesystem State-Changed-From-To: feedback->closed State-Changed-By: jh State-Changed-When: Fri Jan 14 13:53:45 UTC 2011 State-Changed-Why: Feedback timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=52445 From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 13:54:37 2011 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 8B7311065672; Fri, 14 Jan 2011 13:54:37 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 629778FC1C; Fri, 14 Jan 2011 13:54: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 p0EDsbQm098926; Fri, 14 Jan 2011 13:54:37 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0EDsaCx098922; Fri, 14 Jan 2011 13:54:36 GMT (envelope-from jh) Date: Fri, 14 Jan 2011 13:54:36 GMT Message-Id: <201101141354.p0EDsaCx098922@freefall.freebsd.org> To: vkushnir@i.kiev.ua, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: kern/101734: [ata] -CURRENT cannot see SATA drive on ASUS A8N-SLI (nForce 4) 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, 14 Jan 2011 13:54:37 -0000 Synopsis: [ata] -CURRENT cannot see SATA drive on ASUS A8N-SLI (nForce 4) State-Changed-From-To: feedback->closed State-Changed-By: jh State-Changed-When: Fri Jan 14 13:54:36 UTC 2011 State-Changed-Why: Feedback timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=101734 From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 13:55:19 2011 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 831A71065670; Fri, 14 Jan 2011 13:55:19 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 028F58FC17; Fri, 14 Jan 2011 13:55: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 p0EDt5JQ099054; Fri, 14 Jan 2011 13:55:05 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0EDt5Rh099050; Fri, 14 Jan 2011 13:55:05 GMT (envelope-from jh) Date: Fri, 14 Jan 2011 13:55:05 GMT Message-Id: <201101141355.p0EDt5Rh099050@freefall.freebsd.org> To: jboisvert@gmail.com, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: kern/102784: [keyboard] system crashes when using hardware function keys 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, 14 Jan 2011 13:55:19 -0000 Synopsis: [keyboard] system crashes when using hardware function keys State-Changed-From-To: feedback->closed State-Changed-By: jh State-Changed-When: Fri Jan 14 13:55:05 UTC 2011 State-Changed-Why: Feedback timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=102784 From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 13:55:38 2011 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 669E0106566C; Fri, 14 Jan 2011 13:55:38 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AA62C8FC40; Fri, 14 Jan 2011 13:55: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 p0EDtZlc099199; Fri, 14 Jan 2011 13:55:35 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0EDtZkL099195; Fri, 14 Jan 2011 13:55:35 GMT (envelope-from jh) Date: Fri, 14 Jan 2011 13:55:35 GMT Message-Id: <201101141355.p0EDtZkL099195@freefall.freebsd.org> To: tim@config.com, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: kern/107342: [dri] Radeon dri breaks system 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, 14 Jan 2011 13:55:38 -0000 Synopsis: [dri] Radeon dri breaks system State-Changed-From-To: feedback->closed State-Changed-By: jh State-Changed-When: Fri Jan 14 13:55:35 UTC 2011 State-Changed-Why: Feedback timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=107342 From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 14:12:04 2011 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 88F2C1065670; Fri, 14 Jan 2011 14:12:04 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 60D9E8FC0C; Fri, 14 Jan 2011 14:12: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 p0EEC4VT021537; Fri, 14 Jan 2011 14:12:04 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0EEC4nk021533; Fri, 14 Jan 2011 14:12:04 GMT (envelope-from jh) Date: Fri, 14 Jan 2011 14:12:04 GMT Message-Id: <201101141412.p0EEC4nk021533@freefall.freebsd.org> To: imitheos@hotmail.com, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: kern/100516: [atapicam] atapicam with ITE IT8212F crashes the system 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, 14 Jan 2011 14:12:04 -0000 Synopsis: [atapicam] atapicam with ITE IT8212F crashes the system State-Changed-From-To: feedback->closed State-Changed-By: jh State-Changed-When: Fri Jan 14 14:12:04 UTC 2011 State-Changed-Why: Submitter can't reproduce anymore. http://www.freebsd.org/cgi/query-pr.cgi?pr=100516 From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 14:12:47 2011 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 B08511065672; Fri, 14 Jan 2011 14:12:47 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 784288FC2C; Fri, 14 Jan 2011 14:12: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 p0EEClGj021701; Fri, 14 Jan 2011 14:12:47 GMT (envelope-from jh@freefall.freebsd.org) Received: (from jh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0EEClh7021697; Fri, 14 Jan 2011 14:12:47 GMT (envelope-from jh) Date: Fri, 14 Jan 2011 14:12:47 GMT Message-Id: <201101141412.p0EEClh7021697@freefall.freebsd.org> To: wildman@file.pp.ru, jh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jh@FreeBSD.org Cc: Subject: Re: kern/119259: [panic] kernel panic on asus c90s laptop after first (?) power on 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, 14 Jan 2011 14:12:47 -0000 Synopsis: [panic] kernel panic on asus c90s laptop after first (?) power on State-Changed-From-To: feedback->closed State-Changed-By: jh State-Changed-When: Fri Jan 14 14:12:47 UTC 2011 State-Changed-Why: Submitter can't reproduce anymore. http://www.freebsd.org/cgi/query-pr.cgi?pr=119259 From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 14:19:47 2011 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 4EF39106566B for ; Fri, 14 Jan 2011 14:19:47 +0000 (UTC) (envelope-from imitheos@hotmail.com) Received: from snt0-omc1-s23.snt0.hotmail.com (snt0-omc1-s23.snt0.hotmail.com [65.55.90.34]) by mx1.freebsd.org (Postfix) with ESMTP id 24A408FC13 for ; Fri, 14 Jan 2011 14:19:46 +0000 (UTC) Received: from SNT107-W7 ([65.55.90.9]) by snt0-omc1-s23.snt0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4675); Fri, 14 Jan 2011 06:07:46 -0800 Message-ID: X-Originating-IP: [188.4.240.202] From: Imi theos To: , Date: Fri, 14 Jan 2011 16:07:46 +0200 Importance: Normal In-Reply-To: <201101141342.p0EDgQB3088133@freefall.freebsd.org> References: <201101141342.p0EDgQB3088133@freefall.freebsd.org> MIME-Version: 1.0 X-OriginalArrivalTime: 14 Jan 2011 14:07:46.0108 (UTC) FILETIME=[6B239FC0:01CBB3F4] Content-Type: text/plain; charset="iso-8859-7" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: RE: kern/100516: [atapicam] atapicam with ITE IT8212F crashes the system 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, 14 Jan 2011 14:19:47 -0000 > Subject: Re: kern/100516: [atapicam] atapicam with ITE IT8212F crashes th= e system > Can you still reproduce this on a supported release? Hello That motherboard doesn't work anymore=2C so i can't test it. Thank you. = From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 18:50:11 2011 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 503A11065679 for ; Fri, 14 Jan 2011 18:50: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 133638FC0C for ; Fri, 14 Jan 2011 18:50: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 p0EIoAFN010161 for ; Fri, 14 Jan 2011 18:50:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0EIoAim010160; Fri, 14 Jan 2011 18:50:10 GMT (envelope-from gnats) Resent-Date: Fri, 14 Jan 2011 18:50:10 GMT Resent-Message-Id: <201101141850.p0EIoAim010160@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, Eitan Adler Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5F7861065672 for ; Fri, 14 Jan 2011 18:49:52 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 4E7CC8FC1F for ; Fri, 14 Jan 2011 18:49:52 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0EInqgf011614 for ; Fri, 14 Jan 2011 18:49:52 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0EInqFx011613; Fri, 14 Jan 2011 18:49:52 GMT (envelope-from nobody) Message-Id: <201101141849.p0EInqFx011613@red.freebsd.org> Date: Fri, 14 Jan 2011 18:49:52 GMT From: Eitan Adler To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/153993: [patch] have libpkg report which package is casuing pkgdep warnings 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, 14 Jan 2011 18:50:11 -0000 >Number: 153993 >Category: bin >Synopsis: [patch] have libpkg report which package is casuing pkgdep warnings >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jan 14 18:50:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Eitan Adler >Release: >Organization: >Environment: >Description: change the line emitted from the pkg_* tools from pkg_version: corrupted record (pkgdep line without argument), ignoring to something like pkg_version: corrupted record: pkgdep line without argument (in xterm-267), ignoring >How-To-Repeat: >Fix: Index: plist.c =================================================================== --- plist.c (revision 216884) +++ plist.c (working copy) @@ -286,7 +286,8 @@ if (*cp == '\0') { cp = NULL; if (cmd == PLIST_PKGDEP) { - warnx("corrupted record (pkgdep line without argument), ignoring"); + warnx("corrupted record: pkgdep line without argument (in %s), ignoring", + (pkg->name == NULL) ? "???" : pkg->name); cmd = FAIL; } goto bottom; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 19:30:11 2011 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 BF8A410656DE for ; Fri, 14 Jan 2011 19: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 827AA8FC0A for ; Fri, 14 Jan 2011 19: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 p0EJUBR2052722 for ; Fri, 14 Jan 2011 19: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 p0EJUBdQ052718; Fri, 14 Jan 2011 19:30:11 GMT (envelope-from gnats) Resent-Date: Fri, 14 Jan 2011 19:30:11 GMT Resent-Message-Id: <201101141930.p0EJUBdQ052718@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, Eitan Adler Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 815E51065670 for ; Fri, 14 Jan 2011 19:28:41 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 70C4B8FC0A for ; Fri, 14 Jan 2011 19:28:41 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0EJSfcj039682 for ; Fri, 14 Jan 2011 19:28:41 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0EJSfoj039681; Fri, 14 Jan 2011 19:28:41 GMT (envelope-from nobody) Message-Id: <201101141928.p0EJSfoj039681@red.freebsd.org> Date: Fri, 14 Jan 2011 19:28:41 GMT From: Eitan Adler To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/153995: [patch] update ROADMAP.txt 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, 14 Jan 2011 19:30:11 -0000 >Number: 153995 >Category: misc >Synopsis: [patch] update ROADMAP.txt >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 Jan 14 19:30:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Eitan Adler >Release: >Organization: >Environment: >Description: Just some housekeeping - update ROADMAP.txt to include the latest changes. >How-To-Repeat: >Fix: Index: ROADMAP.txt =================================================================== --- ROADMAP.txt (revision 217412) +++ ROADMAP.txt (working copy) @@ -47,6 +47,7 @@ stable/5/ stable/6/ stable/7/ + stable/8/ Releases: release/2.0/ (branched from head/) @@ -96,6 +97,8 @@ release/6.2.0/ release/6.3.0/ release/7.0.0/ + release/8.0.0/ + release/8.1.0/ Release Engineering / Errata branches: releng/ALPHA_2_0 (branched from head/) @@ -121,6 +124,9 @@ releng/6.2 (branched from stable/6/) releng/6.3 (branched from stable/6/) releng/7.0 (branched from stable/7/) + releng/8.0 (branched from stable/8/) + releng/8.1 (branched from stable/8/) + releng/8.2 (branched from stable/8/) Vendor layout: vendor/$vendor - roots for a given vendor import >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 20:10:12 2011 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 EF63A106566C for ; Fri, 14 Jan 2011 20:10: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 DE3A98FC13 for ; Fri, 14 Jan 2011 20:10: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 p0EKACuK095781 for ; Fri, 14 Jan 2011 20:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0EKACw2095780; Fri, 14 Jan 2011 20:10:12 GMT (envelope-from gnats) Date: Fri, 14 Jan 2011 20:10:12 GMT Message-Id: <201101142010.p0EKACw2095780@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Eitan Adler Cc: Subject: Re: misc/153995: [patch] update ROADMAP.txt X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Eitan Adler List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2011 20:10:13 -0000 The following reply was made to PR misc/153995; it has been noted by GNATS. From: Eitan Adler To: bug-followup@freebsd.org, lists@eitanadler.com Cc: Subject: Re: misc/153995: [patch] update ROADMAP.txt Date: Fri, 14 Jan 2011 14:37:14 -0500 I forgot about the 7.x set. IMHO I don't really think we need to keep a listing of all the branches in this file and perhaps they should just be removed (and remove the general information) Index: ROADMAP.txt =================================================================== --- ROADMAP.txt (revision 217412) +++ ROADMAP.txt (working copy) @@ -47,6 +47,7 @@ stable/5/ stable/6/ stable/7/ + stable/8/ Releases: release/2.0/ (branched from head/) @@ -96,6 +97,11 @@ release/6.2.0/ release/6.3.0/ release/7.0.0/ + release/7.1.0/ + release/7.2.0/ + release/7.3.0/ + release/8.0.0/ + release/8.1.0/ Release Engineering / Errata branches: releng/ALPHA_2_0 (branched from head/) @@ -121,6 +127,13 @@ releng/6.2 (branched from stable/6/) releng/6.3 (branched from stable/6/) releng/7.0 (branched from stable/7/) + releng/7.1 (branched from stable/7/) + releng/7.2 (branched from stable/7/) + releng/7.3 (branched from stable/7/) + releng/7.4 (branched from stable/7/) + releng/8.0 (branched from stable/8/) + releng/8.1 (branched from stable/8/) + releng/8.2 (branched from stable/8/) Vendor layout: vendor/$vendor - roots for a given vendor import -- Eitan Adler From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 20:10:15 2011 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 01BB2106566B for ; Fri, 14 Jan 2011 20:10: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 CA6438FC15 for ; Fri, 14 Jan 2011 20:10: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 p0EKAEWS095789 for ; Fri, 14 Jan 2011 20:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0EKAEjs095788; Fri, 14 Jan 2011 20:10:14 GMT (envelope-from gnats) Date: Fri, 14 Jan 2011 20:10:14 GMT Message-Id: <201101142010.p0EKAEjs095788@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Eitan Adler Cc: Subject: Re: misc/153995: [patch] update ROADMAP.txt X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Eitan Adler List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2011 20:10:15 -0000 The following reply was made to PR misc/153995; it has been noted by GNATS. From: Eitan Adler To: bug-followup@freebsd.org Cc: Subject: Re: misc/153995: [patch] update ROADMAP.txt Date: Fri, 14 Jan 2011 14:39:41 -0500 Sorry, and *leave* the general information. On Fri, Jan 14, 2011 at 2:37 PM, Eitan Adler wrote: > I forgot about the 7.x set. > IMHO I don't really think we need to keep a listing of all the > branches in this file and perhaps they should just be removed (and > remove the general information) > > Index: ROADMAP.txt > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- ROADMAP.txt (revision 217412) > +++ ROADMAP.txt (working copy) > @@ -47,6 +47,7 @@ > =C2=A0 stable/5/ > =C2=A0 stable/6/ > =C2=A0 stable/7/ > + =C2=A0stable/8/ > > =C2=A0Releases: > =C2=A0 release/2.0/ =C2=A0 =C2=A0 (branched from head/) > @@ -96,6 +97,11 @@ > =C2=A0 release/6.2.0/ > =C2=A0 release/6.3.0/ > =C2=A0 release/7.0.0/ > + =C2=A0release/7.1.0/ > + =C2=A0release/7.2.0/ > + =C2=A0release/7.3.0/ > + =C2=A0release/8.0.0/ > + =C2=A0release/8.1.0/ > > =C2=A0Release Engineering / Errata branches: > =C2=A0 releng/ALPHA_2_0 (branched from head/) > @@ -121,6 +127,13 @@ > =C2=A0 releng/6.2 =C2=A0 =C2=A0 =C2=A0 (branched from stable/6/) > =C2=A0 releng/6.3 =C2=A0 =C2=A0 =C2=A0 (branched from stable/6/) > =C2=A0 releng/7.0 =C2=A0 =C2=A0 =C2=A0 (branched from stable/7/) > + =C2=A0releng/7.1 =C2=A0 =C2=A0 =C2=A0 (branched from stable/7/) > + =C2=A0releng/7.2 =C2=A0 =C2=A0 =C2=A0 (branched from stable/7/) > + =C2=A0releng/7.3 =C2=A0 =C2=A0 =C2=A0 (branched from stable/7/) > + =C2=A0releng/7.4 =C2=A0 =C2=A0 =C2=A0 (branched from stable/7/) > + =C2=A0releng/8.0 =C2=A0 =C2=A0 =C2=A0 (branched from stable/8/) > + =C2=A0releng/8.1 =C2=A0 =C2=A0 =C2=A0 (branched from stable/8/) > + =C2=A0releng/8.2 =C2=A0 =C2=A0 =C2=A0 (branched from stable/8/) > > =C2=A0Vendor layout: > =C2=A0 vendor/$vendor - roots for a given vendor import > > > -- > Eitan Adler > --=20 Eitan Adler From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 14 21:00:22 2011 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 00DBD10656AC for ; Fri, 14 Jan 2011 21:00:22 +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 89F128FC1D for ; Fri, 14 Jan 2011 21:00:20 +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 p0EL0Kxv047984 for ; Fri, 14 Jan 2011 21:00:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0EL0KnB047980; Fri, 14 Jan 2011 21:00:20 GMT (envelope-from gnats) Resent-Date: Fri, 14 Jan 2011 21:00:20 GMT Resent-Message-Id: <201101142100.p0EL0KnB047980@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, alexander naumochkin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A5CBF1065674 for ; Fri, 14 Jan 2011 20:58:21 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 7B25A8FC08 for ; Fri, 14 Jan 2011 20:58:21 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0EKwLXn097054 for ; Fri, 14 Jan 2011 20:58:21 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0EKwLkh097053; Fri, 14 Jan 2011 20:58:21 GMT (envelope-from nobody) Message-Id: <201101142058.p0EKwLkh097053@red.freebsd.org> Date: Fri, 14 Jan 2011 20:58:21 GMT From: alexander naumochkin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/153996: zfs root mount error while kernel is not located in /boot/kernel 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, 14 Jan 2011 21:00:22 -0000 >Number: 153996 >Category: kern >Synopsis: zfs root mount error while kernel is not located in /boot/kernel >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 Jan 14 21:00:20 UTC 2011 >Closed-Date: >Last-Modified: >Originator: alexander naumochkin >Release: 8.2-PRERELEASE (SNAP-20110110) i386 >Organization: >Environment: FreeBSD zombie.prio.ru 8.2-PRERELEASE FreeBSD 8.2-PRERELEASE #0: Tue Jan 11 01:17:21 MSK 2011 root@zombie.prio.ru:/usr/obj/usr/src/sys/GCAM i386 >Description: If the kernel is not located in default directory (/boot/kernel), it fails to mount zfs root during startup regardless of using vfs.root.mountfrom="zfs:zroot" or /etc/fstab record. I use FreeBSD on GPT ZFS Root. [ash@zombie ~]$ gpart show => 34 156301421 ada0 GPT (75G) 34 128 1 freebsd-boot (64K) 162 3145728 2 freebsd-swap (1.5G) 3145890 153155565 3 freebsd-zfs (73G) => 34 156301421 ada1 GPT (75G) 34 128 1 freebsd-boot (64K) 162 3145728 2 freebsd-swap (1.5G) 3145890 153155565 3 freebsd-zfs (73G) [ash@zombie ~]$ gpart show -l => 34 156301421 ada0 GPT (75G) 34 128 1 (null) (64K) 162 3145728 2 swap0 (1.5G) 3145890 153155565 3 disk0 (73G) => 34 156301421 ada1 GPT (75G) 34 128 1 (null) (64K) 162 3145728 2 swap1 (1.5G) 3145890 153155565 3 disk1 (73G) [ash@zombie ~]$ zpool status pool: zroot state: ONLINE scrub: none requested config: NAME STATE READ WRITE CKSUM zroot ONLINE 0 0 0 mirror ONLINE 0 0 0 gpt/disk1 ONLINE 0 0 0 gpt/disk0 ONLINE 0 0 0 >How-To-Repeat: #cd /usr/src #make installkernel KODIR=/boot/GCAM #shutdown -r now Select 6 (loader prompt) from boot menu and enter: OK unload kernel OK load /boot/GCAM/kernel OK set module_path=/boot/GCAM OK load opensolaris OK load zfs OK boot kernel starts, detects hardware, but at "Trying to mount root from zfs:zroot" stops with "MOUNT ROOT ERROR:" Entering zfs:zroot at mountroot> prompt not helps. >Fix: Boot from LiveCD, mount zroot, rename /boot/GCAM to /boot/kernel, reboot :) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 15 01:40:08 2011 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 2A1481065670 for ; Sat, 15 Jan 2011 01:40: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 E62B98FC0C for ; Sat, 15 Jan 2011 01: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 p0F1e7oE049572 for ; Sat, 15 Jan 2011 01: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 p0F1e7j2049571; Sat, 15 Jan 2011 01:40:07 GMT (envelope-from gnats) Resent-Date: Sat, 15 Jan 2011 01:40:07 GMT Resent-Message-Id: <201101150140.p0F1e7j2049571@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, Stefan `Sec` Zehl Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E1C6A106564A for ; Sat, 15 Jan 2011 01:33:37 +0000 (UTC) (envelope-from sec@42.org) Received: from ice.42.org (v6.42.org [IPv6:2001:608:9::1]) by mx1.freebsd.org (Postfix) with ESMTP id 9CDC98FC08 for ; Sat, 15 Jan 2011 01:33:37 +0000 (UTC) Received: by ice.42.org (Postfix, from userid 1000) id A314E2845B; Sat, 15 Jan 2011 02:33:36 +0100 (CET) Message-Id: <20110115013336.A314E2845B@ice.42.org> Date: Sat, 15 Jan 2011 02:33:36 +0100 (CET) From: Stefan `Sec` Zehl To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/154006: tcp "window probe" bug on 64bit X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Stefan `Sec` Zehl List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2011 01:40:08 -0000 >Number: 154006 >Category: kern >Synopsis: tcp "window probe" bug on 64bit >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 Jan 15 01:40:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Stefan `Sec` Zehl >Release: FreeBSD 8.1-STABLE amd64 >Organization: >Environment: System: FreeBSD ice 8.1-STABLE FreeBSD 8.1-STABLE #15: Mon Oct 25 12:20:38 CEST 2010 root@ice:/usr/obj/usr/src/sys/ICE amd64 As far as I can tell, the offending code is in all FreeBSD versions, not just 8-STABLE >Description: On amd64 the PERSIST timer does not get started (and consecquently executed) for tcp connections stalled on a 0-size receive window. This means that no single-byte probe packet is sent, so connections might hang indefinitely. This is due to a missing (long) conversion in tcp_output.c around line 562 where "adv" is calculated. After this patch, amd64 behaves the same way as i386 again. >How-To-Repeat: connect to a certain broken host which advertises window size 0 in the SYN|ACK handshake packet, but increases window size after the 3-way handshake >Fix: --- src/sys/netinet/tcp_output.c 2010-09-20 17:49:17.000000000 +0200 +++ src/sys/netinet/tcp_output.c 2011-01-14 19:30:46.000000000 +0100 @@ -571,7 +559,7 @@ * TCP_MAXWIN << tp->rcv_scale. */ long adv = min(recwin, (long)TCP_MAXWIN << tp->rcv_scale) - - (tp->rcv_adv - tp->rcv_nxt); + (long) (tp->rcv_adv - tp->rcv_nxt); if (adv >= (long) (2 * tp->t_maxseg)) goto send; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 15 02:00:24 2011 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 76A86106566C for ; Sat, 15 Jan 2011 02:00:24 +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 62BD18FC15 for ; Sat, 15 Jan 2011 02:00:22 +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 p0F20MOj069049 for ; Sat, 15 Jan 2011 02:00:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0F20MxQ069030; Sat, 15 Jan 2011 02:00:22 GMT (envelope-from gnats) Resent-Date: Sat, 15 Jan 2011 02:00:22 GMT Resent-Message-Id: <201101150200.p0F20MxQ069030@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, Jakub Guzik Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5EC77106564A for ; Sat, 15 Jan 2011 01:50:51 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 349F48FC16 for ; Sat, 15 Jan 2011 01:50:51 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0F1opP4031286 for ; Sat, 15 Jan 2011 01:50:51 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0F1oodg031285; Sat, 15 Jan 2011 01:50:51 GMT (envelope-from nobody) Message-Id: <201101150150.p0F1oodg031285@red.freebsd.org> Date: Sat, 15 Jan 2011 01:50:51 GMT From: Jakub Guzik To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/154007: Atheros ar9287 card does not get recognized. 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, 15 Jan 2011 02:00:24 -0000 >Number: 154007 >Category: misc >Synopsis: Atheros ar9287 card does not get recognized. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jan 15 02:00:21 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Jakub Guzik >Release: 8.2-RC1 >Organization: >Environment: >Description: Atheros ar9287 card does not get recognized in freebsd 8.2-RC1. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 15 05:31:40 2011 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 0D2CA1065673; Sat, 15 Jan 2011 05:31:40 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from mail05.syd.optusnet.com.au (mail05.syd.optusnet.com.au [211.29.132.186]) by mx1.freebsd.org (Postfix) with ESMTP id 6DCEA8FC0A; Sat, 15 Jan 2011 05:31:39 +0000 (UTC) Received: from c122-106-165-206.carlnfd1.nsw.optusnet.com.au (c122-106-165-206.carlnfd1.nsw.optusnet.com.au [122.106.165.206]) by mail05.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id p0F5VAbG024545 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 15 Jan 2011 16:31:12 +1100 Date: Sat, 15 Jan 2011 16:31:10 +1100 (EST) From: Bruce Evans X-X-Sender: bde@besplex.bde.org To: Stefan `Sec` Zehl In-Reply-To: <20110115013336.A314E2845B@ice.42.org> Message-ID: <20110115143903.K16210@besplex.bde.org> References: <20110115013336.A314E2845B@ice.42.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-bugs@FreeBSD.org, FreeBSD-gnats-submit@FreeBSD.org Subject: Re: kern/154006: tcp "window probe" bug on 64bit 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, 15 Jan 2011 05:31:40 -0000 On Sat, 15 Jan 2011, Stefan `Sec` Zehl wrote: >> Description: > > On amd64 the PERSIST timer does not get started (and consecquently executed) > for tcp connections stalled on a 0-size receive window. This means that no > single-byte probe packet is sent, so connections might hang indefinitely. > > This is due to a missing (long) conversion in tcp_output.c around line 562 > where "adv" is calculated. > > After this patch, amd64 behaves the same way as i386 again. >> Fix: > > --- src/sys/netinet/tcp_output.c 2010-09-20 17:49:17.000000000 +0200 > +++ src/sys/netinet/tcp_output.c 2011-01-14 19:30:46.000000000 +0100 > @@ -571,7 +559,7 @@ > * TCP_MAXWIN << tp->rcv_scale. > */ > long adv = min(recwin, (long)TCP_MAXWIN << tp->rcv_scale) - > - (tp->rcv_adv - tp->rcv_nxt); > + (long) (tp->rcv_adv - tp->rcv_nxt); > > if (adv >= (long) (2 * tp->t_maxseg)) > goto send; > Many other type errors are visible in this patch: - min() takes 'unsigned int' args, but is passed 'signed long' args: - recwin has type long. This is smaller )same size but smaller max) than 'unsigned int' on 32-bit arches, and larger on 64-bit arches - TCP_MAXWIN has type int (except on 16-bit arches, which are not supported and are no longer permitted by POSIX). Then we explicitly make its type incompatible with min() by casting to long. The 16-bit arches don't matter, except they are responsible for many of the type errors here. recvwin is long and TCP_WIN is cast to long since plain int was not long enough on 16-bit arches. Hopefully both of min()'s parameters are non-negative and <= UINT_MAX. Then nothing bad happens when min() converts them to u_int. The result of min() has type u_int. - rcv_adv has type tcp_seq. Seems correct - tcp_seq has type u_int32_t. Seems correct, except for its old spelling. The spelling is not so old that it is u_long (to support the 16-bit arches), but it hasn't caught up with C99 yet. - rcv_next has type u_int32_t. Seems logically incorrect -- should be tcp_seq. - (tp->rcv_adv - tp->rcv_nxt) has type [ the default promotion of { tcp_seq, u_int32_t } ]. This is u_int on all supported arches. Apparently, the value of this should always be positive, since the cast doesn't change this on 64-bit arches. However, the cast might break this on 32-bit arches (it breaks the value whenever it exceeds 0x80000000, if that can happen, since longs are smaller than u_int's on 32-bit arches. - the type of the expression for the rvalue is [ the default promotion of { u_int, u_int } ] in the old version, and the same with the last u_int replaced by long in the patched version. It is most natural to subtract u_int's here, like the old version did -- everything in sight is (except for all the type errors) a sequence number or a difference of sequence numbers; the differences are always taken mod 2**32 and are non-negative, but must be careful if the difference should really be negative. The SEQ_LT() family of macros can be used to determine if differences should be negative (this family is further towards losing 16-bitness -- it casts to int instead of to long). Unfortunately there is no SEQ_DIFF() macro to simplify easy cases of taking differences. I think there are scattered casts for this as here. So casting to long is not good. It gives another type error to analyse, and works accidentally. Futher analysis: without the patch: long adv = x - y; where x has type u_int and y had type u_int. The difference always has type u_int; if x is sequentially less than y, then the difference should be negative, but its type forces it to be positive. We should use SEQ_FOO() if this is possible, or we can use delicate conversions if we do only 2 pages of analysis per line to justify the delicacies (not too bad if there is a macro for this). - On 32-bit arches, long is smaller than u_int, so the assignment overflows if the difference should have been negative. The behaviour is undefined, but on normal 2's complement arches, it is benign and fixes up the sign error. - On 64-bit arches, long is larger than u_int, so the difference remains nonnegative when it should have been negative, and is normally huge (something like 0U - 1U = 0xFFFFFFFF). The huge value is near UINT_MAX. LONG_MAX is much larger, so the assignment doesn't overflow and the value remains near UINT_MAX. With the patch: long adv = x - (long)y; where x has type u_int and (long)y had type long: - On 32-bit arches, long is smaller than u_int, so (long)y may overflow; overflow gives undefined behaviour which happens to be benign. Then the binary promotions apply. Although I have been describing long as being smaller than u_int on 32-bit arches, in the C type system it is logically larger, so the binary promotions promote x to long too, and leave (long)y unchanged. "Promotion" of x is really demotion, so it may overflow beningly just like for y. I think the difference doesn't overflow, and even if it does then the result is the same as before, since everything will be done in 32-bit registers using the same code as before. - On 64-bit arches: long is larger than u_int, so (long)y doesn't change the value of y. The binary promotions then promote x to long without changing its value, and don't change (long)y's type or value. Both terms remain nonnegative. (long)y can still be garbage -- something like 0xFFFFFFFF when it should be -1. I think this causes problems, but much smaller than before. Oops, the above may be wrong about y possibly wanting to be negative. Things are not quite as complicated if this sequence cannot occur: - if this can occur, then (x - (long)y) is a large negative number when it should be a small positive number (not much larger than x). This doesn't seem to be what causes the main problem. - the main problem is just when x < y. Then (x - y) gives a huge unsigned int value (which bogusly assigning to a long doesn't fix up for the 64-bit case). But (x - (long)y) gives a negative value when x < y, without additional type errors or overflows on either 32-bit or 64-bit arches provideded x and y are not very large. Better fixes: (A) explicitly convert to int instead implicitly converting to long: long adv = (int) min(recwin, (long)TCP_MAXWIN << tp->rcv_scale) - (tp->rcv_adv - tp->rcv_nxt); or more complete fixes for type errors (beware of things needing to remaining bogusly long): /* Also change recwin to int32_t. */ int adv = imin(recwin, TCP_MAXWIN << tp->rcv_scale) - (int)(tp->rcv_adv - tp->rcv_nxt); This doesn't fix some style bugs: - nested declaration. - initialization in declaration tcp code already uses scattered conversions like this a bit too much. E.g., in tcp_input.c, there is one imax() very like the above imin(). This seems to be the only one involving the window, however; it initializes `win' which already has type int, but some other window variables have type u_int... Later code in tcp_output uses bogus casts to long and larger code instead: % if (recwin < (long)(tp->rcv_adv - tp->rcv_nxt)) % recwin = (long)(tp->rcv_adv - tp->rcv_nxt); % if (recwin > (long)TCP_MAXWIN << tp->rcv_scale) % recwin = (long)TCP_MAXWIN << tp->rcv_scale; % ... % if (recwin > 0 && SEQ_GT(tp->rcv_nxt + recwin, tp->rcv_adv)) % tp->rcv_adv = tp->rcv_nxt + recwin; Note that the first statement avoids using the technically incorrect SEQ_FOO() although its internals are better (cast to int instead of long). It uses cases essentially like yours. Then further analysis is simpler because everything is converted to long. The second starement is similar to the first half of the broken expression. Large code using if's and else's and tests (x >= y) before subtracting y from x is much easier to get right than 1 complicated 1-statement expression like the broken one. It takes these (x >= y) tests to make code with mixed types obviously correct. But I prefer small fast code with ints for everything, since type analyis is too hard. (B) Use SEQ_FOO(). This can be used for the difference of the sequence numbers, but using it on the final difference is not quite right since neither x nor y is a sequence number. In practice SEQ_LT(x, y) will work. (C) Put (A) or (B) in a macro. It can depend on benign overflow, or test values if necessary. All this macro is about is subtracting 2 seqence values, or possibly differences of and bounds of sequence values, with a result that is negative iff that is needed, and a type that is signed iff a negative value makes sense or can be handled by the caller (int should do for the signed cases, else the type should remain tcp_seq or its promotion). Using ints for tcp_seq is technically invalid since they overflow at value INT_MAX. Bruce From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 15 05:40:07 2011 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 63012106564A for ; Sat, 15 Jan 2011 05: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 2EACA8FC12 for ; Sat, 15 Jan 2011 05: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 p0F5e6VY010399 for ; Sat, 15 Jan 2011 05:40:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0F5e6qN010398; Sat, 15 Jan 2011 05:40:06 GMT (envelope-from gnats) Date: Sat, 15 Jan 2011 05:40:06 GMT Message-Id: <201101150540.p0F5e6qN010398@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Bruce Evans Cc: Subject: Re: kern/154006: tcp "window probe" bug on 64bit X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Bruce Evans List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2011 05:40:07 -0000 The following reply was made to PR kern/154006; it has been noted by GNATS. From: Bruce Evans To: Stefan `Sec` Zehl Cc: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/154006: tcp "window probe" bug on 64bit Date: Sat, 15 Jan 2011 16:31:10 +1100 (EST) On Sat, 15 Jan 2011, Stefan `Sec` Zehl wrote: >> Description: > > On amd64 the PERSIST timer does not get started (and consecquently executed) > for tcp connections stalled on a 0-size receive window. This means that no > single-byte probe packet is sent, so connections might hang indefinitely. > > This is due to a missing (long) conversion in tcp_output.c around line 562 > where "adv" is calculated. > > After this patch, amd64 behaves the same way as i386 again. >> Fix: > > --- src/sys/netinet/tcp_output.c 2010-09-20 17:49:17.000000000 +0200 > +++ src/sys/netinet/tcp_output.c 2011-01-14 19:30:46.000000000 +0100 > @@ -571,7 +559,7 @@ > * TCP_MAXWIN << tp->rcv_scale. > */ > long adv = min(recwin, (long)TCP_MAXWIN << tp->rcv_scale) - > - (tp->rcv_adv - tp->rcv_nxt); > + (long) (tp->rcv_adv - tp->rcv_nxt); > > if (adv >= (long) (2 * tp->t_maxseg)) > goto send; > Many other type errors are visible in this patch: - min() takes 'unsigned int' args, but is passed 'signed long' args: - recwin has type long. This is smaller )same size but smaller max) than 'unsigned int' on 32-bit arches, and larger on 64-bit arches - TCP_MAXWIN has type int (except on 16-bit arches, which are not supported and are no longer permitted by POSIX). Then we explicitly make its type incompatible with min() by casting to long. The 16-bit arches don't matter, except they are responsible for many of the type errors here. recvwin is long and TCP_WIN is cast to long since plain int was not long enough on 16-bit arches. Hopefully both of min()'s parameters are non-negative and <= UINT_MAX. Then nothing bad happens when min() converts them to u_int. The result of min() has type u_int. - rcv_adv has type tcp_seq. Seems correct - tcp_seq has type u_int32_t. Seems correct, except for its old spelling. The spelling is not so old that it is u_long (to support the 16-bit arches), but it hasn't caught up with C99 yet. - rcv_next has type u_int32_t. Seems logically incorrect -- should be tcp_seq. - (tp->rcv_adv - tp->rcv_nxt) has type [ the default promotion of { tcp_seq, u_int32_t } ]. This is u_int on all supported arches. Apparently, the value of this should always be positive, since the cast doesn't change this on 64-bit arches. However, the cast might break this on 32-bit arches (it breaks the value whenever it exceeds 0x80000000, if that can happen, since longs are smaller than u_int's on 32-bit arches. - the type of the expression for the rvalue is [ the default promotion of { u_int, u_int } ] in the old version, and the same with the last u_int replaced by long in the patched version. It is most natural to subtract u_int's here, like the old version did -- everything in sight is (except for all the type errors) a sequence number or a difference of sequence numbers; the differences are always taken mod 2**32 and are non-negative, but must be careful if the difference should really be negative. The SEQ_LT() family of macros can be used to determine if differences should be negative (this family is further towards losing 16-bitness -- it casts to int instead of to long). Unfortunately there is no SEQ_DIFF() macro to simplify easy cases of taking differences. I think there are scattered casts for this as here. So casting to long is not good. It gives another type error to analyse, and works accidentally. Futher analysis: without the patch: long adv = x - y; where x has type u_int and y had type u_int. The difference always has type u_int; if x is sequentially less than y, then the difference should be negative, but its type forces it to be positive. We should use SEQ_FOO() if this is possible, or we can use delicate conversions if we do only 2 pages of analysis per line to justify the delicacies (not too bad if there is a macro for this). - On 32-bit arches, long is smaller than u_int, so the assignment overflows if the difference should have been negative. The behaviour is undefined, but on normal 2's complement arches, it is benign and fixes up the sign error. - On 64-bit arches, long is larger than u_int, so the difference remains nonnegative when it should have been negative, and is normally huge (something like 0U - 1U = 0xFFFFFFFF). The huge value is near UINT_MAX. LONG_MAX is much larger, so the assignment doesn't overflow and the value remains near UINT_MAX. With the patch: long adv = x - (long)y; where x has type u_int and (long)y had type long: - On 32-bit arches, long is smaller than u_int, so (long)y may overflow; overflow gives undefined behaviour which happens to be benign. Then the binary promotions apply. Although I have been describing long as being smaller than u_int on 32-bit arches, in the C type system it is logically larger, so the binary promotions promote x to long too, and leave (long)y unchanged. "Promotion" of x is really demotion, so it may overflow beningly just like for y. I think the difference doesn't overflow, and even if it does then the result is the same as before, since everything will be done in 32-bit registers using the same code as before. - On 64-bit arches: long is larger than u_int, so (long)y doesn't change the value of y. The binary promotions then promote x to long without changing its value, and don't change (long)y's type or value. Both terms remain nonnegative. (long)y can still be garbage -- something like 0xFFFFFFFF when it should be -1. I think this causes problems, but much smaller than before. Oops, the above may be wrong about y possibly wanting to be negative. Things are not quite as complicated if this sequence cannot occur: - if this can occur, then (x - (long)y) is a large negative number when it should be a small positive number (not much larger than x). This doesn't seem to be what causes the main problem. - the main problem is just when x < y. Then (x - y) gives a huge unsigned int value (which bogusly assigning to a long doesn't fix up for the 64-bit case). But (x - (long)y) gives a negative value when x < y, without additional type errors or overflows on either 32-bit or 64-bit arches provideded x and y are not very large. Better fixes: (A) explicitly convert to int instead implicitly converting to long: long adv = (int) min(recwin, (long)TCP_MAXWIN << tp->rcv_scale) - (tp->rcv_adv - tp->rcv_nxt); or more complete fixes for type errors (beware of things needing to remaining bogusly long): /* Also change recwin to int32_t. */ int adv = imin(recwin, TCP_MAXWIN << tp->rcv_scale) - (int)(tp->rcv_adv - tp->rcv_nxt); This doesn't fix some style bugs: - nested declaration. - initialization in declaration tcp code already uses scattered conversions like this a bit too much. E.g., in tcp_input.c, there is one imax() very like the above imin(). This seems to be the only one involving the window, however; it initializes `win' which already has type int, but some other window variables have type u_int... Later code in tcp_output uses bogus casts to long and larger code instead: % if (recwin < (long)(tp->rcv_adv - tp->rcv_nxt)) % recwin = (long)(tp->rcv_adv - tp->rcv_nxt); % if (recwin > (long)TCP_MAXWIN << tp->rcv_scale) % recwin = (long)TCP_MAXWIN << tp->rcv_scale; % ... % if (recwin > 0 && SEQ_GT(tp->rcv_nxt + recwin, tp->rcv_adv)) % tp->rcv_adv = tp->rcv_nxt + recwin; Note that the first statement avoids using the technically incorrect SEQ_FOO() although its internals are better (cast to int instead of long). It uses cases essentially like yours. Then further analysis is simpler because everything is converted to long. The second starement is similar to the first half of the broken expression. Large code using if's and else's and tests (x >= y) before subtracting y from x is much easier to get right than 1 complicated 1-statement expression like the broken one. It takes these (x >= y) tests to make code with mixed types obviously correct. But I prefer small fast code with ints for everything, since type analyis is too hard. (B) Use SEQ_FOO(). This can be used for the difference of the sequence numbers, but using it on the final difference is not quite right since neither x nor y is a sequence number. In practice SEQ_LT(x, y) will work. (C) Put (A) or (B) in a macro. It can depend on benign overflow, or test values if necessary. All this macro is about is subtracting 2 seqence values, or possibly differences of and bounds of sequence values, with a result that is negative iff that is needed, and a type that is signed iff a negative value makes sense or can be handled by the caller (int should do for the signed cases, else the type should remain tcp_seq or its promotion). Using ints for tcp_seq is technically invalid since they overflow at value INT_MAX. Bruce From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 15 06:05:16 2011 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 8FFDD106566B; Sat, 15 Jan 2011 06:05:16 +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 1F5658FC14; Sat, 15 Jan 2011 06:05:15 +0000 (UTC) Received: from c122-106-165-206.carlnfd1.nsw.optusnet.com.au (c122-106-165-206.carlnfd1.nsw.optusnet.com.au [122.106.165.206]) by mail08.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id p0F652Rl004389 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 15 Jan 2011 17:05:03 +1100 Date: Sat, 15 Jan 2011 17:05:02 +1100 (EST) From: Bruce Evans X-X-Sender: bde@besplex.bde.org To: Bruce Evans In-Reply-To: <20110115143903.K16210@besplex.bde.org> Message-ID: <20110115164429.N16715@besplex.bde.org> References: <20110115013336.A314E2845B@ice.42.org> <20110115143903.K16210@besplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Stefan `Sec` Zehl , freebsd-bugs@freebsd.org, FreeBSD-gnats-submit@freebsd.org Subject: Re: kern/154006: tcp "window probe" bug on 64bit 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, 15 Jan 2011 06:05:16 -0000 On Sat, 15 Jan 2011, Bruce Evans wrote: > ... > Later code in tcp_output uses bogus casts to long and larger code instead: > > % if (recwin < (long)(tp->rcv_adv - tp->rcv_nxt)) > % recwin = (long)(tp->rcv_adv - tp->rcv_nxt); > % if (recwin > (long)TCP_MAXWIN << tp->rcv_scale) > % recwin = (long)TCP_MAXWIN << tp->rcv_scale; > % ... > % if (recwin > 0 && SEQ_GT(tp->rcv_nxt + recwin, tp->rcv_adv)) > % tp->rcv_adv = tp->rcv_nxt + recwin; > > Note that the first statement avoids using the technically incorrect > SEQ_FOO() although its internals are better (cast to int instead of > long). It uses cases essentially like yours. Then further analysis ^^^^^ a cast > is simpler because everything is converted to long. The second starement > is similar to the first half of the broken expression. Large code using > if's and else's and tests (x >= y) before subtracting y from x is much > easier to get right than 1 complicated 1-statement expression like the > broken one. It takes these (x >= y) tests to make code with mixed types > obviously correct. But I prefer small fast code with ints for everything, > since type analyis is too hard. But the casts to long are not good. Here they have no effect except to break the warning about the bad type of `recwin'. recwin has type long, so assignment to it does the same conversion as the cast, possibly with a warning about the implicit conversion if it might overflow (can overflow only on 32-bit arches). The code depends on rcv_adv being sequentially >= rcv_next with or without the cast. Otherwise, the difference is huge unsigned int, and the cast only changes this (by benign overflow) on 32-bit arches. This can be fixed by casting to int instead of long (now the cast may have an effect, and breaking the warning may be intential), or my proposed SEQ_DIFF() macros work well here: int recwin, sd; ... sd = SEQ_NONNEG_NONLARGE_DIFF(tp->rcv_adv, tp->rcv_nxt); /* * SEQ_DIFF() supports negative differences; * SEQ_NONNEG_NONGLARGE_DIFF() KASSERT()s that they don't happen and * are not too large. This name is too long. */ if (recwin < sd) recwin = sd; ... Bruce From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 15 06:10:10 2011 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 D205A106566B for ; Sat, 15 Jan 2011 06:10: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 A6E318FC0A for ; Sat, 15 Jan 2011 06:10: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 p0F6AAGp042439 for ; Sat, 15 Jan 2011 06:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0F6AABn042436; Sat, 15 Jan 2011 06:10:10 GMT (envelope-from gnats) Date: Sat, 15 Jan 2011 06:10:10 GMT Message-Id: <201101150610.p0F6AABn042436@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Bruce Evans Cc: Subject: Re: kern/154006: tcp "window probe" bug on 64bit X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Bruce Evans List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2011 06:10:10 -0000 The following reply was made to PR kern/154006; it has been noted by GNATS. From: Bruce Evans To: Bruce Evans Cc: Stefan `Sec` Zehl , freebsd-bugs@freebsd.org, FreeBSD-gnats-submit@freebsd.org Subject: Re: kern/154006: tcp "window probe" bug on 64bit Date: Sat, 15 Jan 2011 17:05:02 +1100 (EST) On Sat, 15 Jan 2011, Bruce Evans wrote: > ... > Later code in tcp_output uses bogus casts to long and larger code instead: > > % if (recwin < (long)(tp->rcv_adv - tp->rcv_nxt)) > % recwin = (long)(tp->rcv_adv - tp->rcv_nxt); > % if (recwin > (long)TCP_MAXWIN << tp->rcv_scale) > % recwin = (long)TCP_MAXWIN << tp->rcv_scale; > % ... > % if (recwin > 0 && SEQ_GT(tp->rcv_nxt + recwin, tp->rcv_adv)) > % tp->rcv_adv = tp->rcv_nxt + recwin; > > Note that the first statement avoids using the technically incorrect > SEQ_FOO() although its internals are better (cast to int instead of > long). It uses cases essentially like yours. Then further analysis ^^^^^ a cast > is simpler because everything is converted to long. The second starement > is similar to the first half of the broken expression. Large code using > if's and else's and tests (x >= y) before subtracting y from x is much > easier to get right than 1 complicated 1-statement expression like the > broken one. It takes these (x >= y) tests to make code with mixed types > obviously correct. But I prefer small fast code with ints for everything, > since type analyis is too hard. But the casts to long are not good. Here they have no effect except to break the warning about the bad type of `recwin'. recwin has type long, so assignment to it does the same conversion as the cast, possibly with a warning about the implicit conversion if it might overflow (can overflow only on 32-bit arches). The code depends on rcv_adv being sequentially >= rcv_next with or without the cast. Otherwise, the difference is huge unsigned int, and the cast only changes this (by benign overflow) on 32-bit arches. This can be fixed by casting to int instead of long (now the cast may have an effect, and breaking the warning may be intential), or my proposed SEQ_DIFF() macros work well here: int recwin, sd; ... sd = SEQ_NONNEG_NONLARGE_DIFF(tp->rcv_adv, tp->rcv_nxt); /* * SEQ_DIFF() supports negative differences; * SEQ_NONNEG_NONGLARGE_DIFF() KASSERT()s that they don't happen and * are not too large. This name is too long. */ if (recwin < sd) recwin = sd; ... Bruce From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 15 08:28:06 2011 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 88B4D1065670; Sat, 15 Jan 2011 08:28:06 +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 5F46F8FC08; Sat, 15 Jan 2011 08:28: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 p0F8S6sw020424; Sat, 15 Jan 2011 08:28:06 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0F8S6T4020418; Sat, 15 Jan 2011 08:28:06 GMT (envelope-from linimon) Date: Sat, 15 Jan 2011 08:28:06 GMT Message-Id: <201101150828.p0F8S6T4020418@freefall.freebsd.org> To: kuba.g4@gmail.com, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-net@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/154007: [ath] Atheros ar9287 card does not get recognized. 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, 15 Jan 2011 08:28:06 -0000 Old Synopsis: Atheros ar9287 card does not get recognized. New Synopsis: [ath] Atheros ar9287 card does not get recognized. State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Sat Jan 15 08:27:05 UTC 2011 State-Changed-Why: We're going to need more information to diagnose this problem, e.g., the dmesg, possibly pciconf output. Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jan 15 08:27:05 UTC 2011 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=154007 From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 15 08:37:33 2011 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 D10B4106566B; Sat, 15 Jan 2011 08:37:33 +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 A860E8FC08; Sat, 15 Jan 2011 08:37:33 +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 p0F8bXZ5032036; Sat, 15 Jan 2011 08:37:33 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0F8bXsB032032; Sat, 15 Jan 2011 08:37:33 GMT (envelope-from linimon) Date: Sat, 15 Jan 2011 08:37:33 GMT Message-Id: <201101150837.p0F8bXsB032032@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-net@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/154006: [tcp] [patch] tcp "window probe" bug on 64bit 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, 15 Jan 2011 08:37:33 -0000 Old Synopsis: tcp "window probe" bug on 64bit New Synopsis: [tcp] [patch] tcp "window probe" bug on 64bit Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jan 15 08:37:18 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=154006 From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 15 10:00:24 2011 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 D201C1065695 for ; Sat, 15 Jan 2011 10:00:24 +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 486C28FC15 for ; Sat, 15 Jan 2011 10:00:24 +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 p0FA0OV3017106 for ; Sat, 15 Jan 2011 10:00:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0FA0OIM017088; Sat, 15 Jan 2011 10:00:24 GMT (envelope-from gnats) Resent-Date: Sat, 15 Jan 2011 10:00:24 GMT Resent-Message-Id: <201101151000.p0FA0OIM017088@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, Alexander Best Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 691AE106566B for ; Sat, 15 Jan 2011 10:00:03 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 495B88FC0A for ; Sat, 15 Jan 2011 10:00:03 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0FA03UH043948 for ; Sat, 15 Jan 2011 10:00:03 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0FA03BM043947; Sat, 15 Jan 2011 10:00:03 GMT (envelope-from nobody) Message-Id: <201101151000.p0FA03BM043947@red.freebsd.org> Date: Sat, 15 Jan 2011 10:00:03 GMT From: Alexander Best To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/154024: [zfs] broken include path in kern.pre 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, 15 Jan 2011 10:00:25 -0000 >Number: 154024 >Category: kern >Synopsis: [zfs] broken include path in kern.pre >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 Jan 15 10:00:23 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Alexander Best >Release: 9.0-CURRENT >Organization: >Environment: FreeBSD otaku 9.0-CURRENT FreeBSD 9.0-CURRENT #2 r216931: Mon Jan 3 21:51:08 CET 2011 arundel@otaku:/usr/obj/usr/subversion-src/sys/ARUNDEL amd64 >Description: "INCLUDES+= -I$S/contrib/opensolaris/compat" points to a non-existing directory. Sergey Kandaurov noticed that this is a leftover from //depot/projects/dtrace/src/sys/contrib/opensolaris/compat/sys. Warner Losh reccommended to remove the include line from kern.pre completely. the attached patch will correct the path, however: since target 'buildworld' suceeds with the broken include, Warner Losh is probably right. simply removing it won't do any harm. the discussion took place on freebsd-hackers@ [1]. cheers. alex [1] http://www.mail-archive.com/freebsd-hackers@freebsd.org/msg159002.html >How-To-Repeat: when using "CC=clang -v" and "CXX=clang++ -v" as base compiler the problem becomes obvious. simply look for these lines: ignoring nonexistent directory "/usr/src/sys/contrib/opensolaris/compat" >Fix: Patch attached with submission follows: Index: sys/conf/kern.pre.mk =================================================================== --- sys/conf/kern.pre.mk (revision 217444) +++ sys/conf/kern.pre.mk (working copy) @@ -83,7 +83,7 @@ INCLUDES+= -I$S/gnu/fs/xfs/FreeBSD -I$S/gnu/fs/xfs/FreeBSD/support -I$S/gnu/fs/xfs # ... and OpenSolaris -INCLUDES+= -I$S/contrib/opensolaris/compat +INCLUDES+= -I$S/cddl/compat/opensolaris # ... and the same for cxgb INCLUDES+= -I$S/dev/cxgb >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 15 17:10:09 2011 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 D1E47106564A for ; Sat, 15 Jan 2011 17: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 A60438FC0A for ; Sat, 15 Jan 2011 17: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 p0FHA98C083323 for ; Sat, 15 Jan 2011 17:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0FHA9Wn083322; Sat, 15 Jan 2011 17:10:09 GMT (envelope-from gnats) Date: Sat, 15 Jan 2011 17:10:09 GMT Message-Id: <201101151710.p0FHA9Wn083322@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Eugene Grosbein Cc: Subject: Re: kern/138341: [nanobsd] [patch] 8.0-BETA3: nanobsd build broken due to sysipc kernel module X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Eugene Grosbein List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2011 17:10:09 -0000 The following reply was made to PR kern/138341; it has been noted by GNATS. From: Eugene Grosbein To: bug-followup@FreeBSD.ORG Cc: stable@FreeBSD.ORG Subject: Re: kern/138341: [nanobsd] [patch] 8.0-BETA3: nanobsd build broken due to sysipc kernel module Date: Sat, 15 Jan 2011 23:01:38 +0600 'make MODULES_WITH_WORLD=yes buildworld' is still broken for 8.2-PRERELEASE. Here is a patch for RELENG_8 sources updated today: --- sys/modules/cryptodev/Makefile.orig 2010-08-23 12:13:44.000000000 +0700 +++ sys/modules/cryptodev/Makefile 2010-08-23 12:13:52.000000000 +0700 @@ -3,6 +3,6 @@ .PATH: ${.CURDIR}/../../opencrypto KMOD = cryptodev SRCS = cryptodev.c -SRCS += bus_if.h device_if.h +SRCS += bus_if.h device_if.h opt_compat.h .include --- sys/modules/dtrace/lockstat/Makefile.orig 2009-09-16 23:05:25.000000000 +0800 +++ sys/modules/dtrace/lockstat/Makefile 2009-09-16 23:05:45.000000000 +0800 @@ -5,7 +5,7 @@ KMOD= lockstat SRCS= lockstat.c -SRCS+= vnode_if.h +SRCS+= vnode_if.h opt_kdtrace.h CFLAGS+= -I${.CURDIR}/../../../cddl/compat/opensolaris \ -I${.CURDIR}/../../../cddl/contrib/opensolaris/uts/common \ --- sys/modules/mqueue/Makefile.orig 2010-04-24 17:47:03.000000000 +0700 +++ sys/modules/mqueue/Makefile 2010-04-24 17:47:14.000000000 +0700 @@ -5,6 +5,6 @@ KMOD= mqueuefs SRCS= uipc_mqueue.c \ vnode_if.h \ - opt_posix.h + opt_posix.h opt_compat.h .include --- sys/modules/sysvipc/sysvmsg/Makefile.orig 2009-08-30 19:12:16.000000000 +0800 +++ sys/modules/sysvipc/sysvmsg/Makefile 2009-09-19 01:12:18.000000000 +0800 @@ -3,6 +3,6 @@ .PATH: ${.CURDIR}/../../../kern KMOD= sysvmsg -SRCS= sysv_msg.c opt_sysvipc.h +SRCS= sysv_msg.c opt_sysvipc.h opt_compat.h .include --- sys/modules/sysvipc/sysvsem/Makefile.orig 2009-08-30 19:52:13.000000000 +0800 +++ sys/modules/sysvipc/sysvsem/Makefile 2009-08-30 19:52:33.000000000 +0800 @@ -3,6 +3,6 @@ .PATH: ${.CURDIR}/../../../kern KMOD= sysvsem -SRCS= sysv_sem.c opt_sysvipc.h +SRCS= sysv_sem.c opt_sysvipc.h opt_compat.h .include From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 15 18:37:16 2011 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 6BB6D106566B; Sat, 15 Jan 2011 18:37:16 +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 428288FC0A; Sat, 15 Jan 2011 18:37:16 +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 p0FIbGUq078613; Sat, 15 Jan 2011 18:37:16 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0FIbGWu078609; Sat, 15 Jan 2011 18:37:16 GMT (envelope-from linimon) Date: Sat, 15 Jan 2011 18:37:16 GMT Message-Id: <201101151837.p0FIbGWu078609@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, imp@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/154024: [zfs] [patch] broken include path in kern.pre 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, 15 Jan 2011 18:37:16 -0000 Old Synopsis: [zfs] broken include path in kern.pre New Synopsis: [zfs] [patch] broken include path in kern.pre Responsible-Changed-From-To: freebsd-bugs->imp Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jan 15 18:36:10 UTC 2011 Responsible-Changed-Why: imp, since you recommended this fix, does the patch look correct to you? http://www.freebsd.org/cgi/query-pr.cgi?pr=154024 From owner-freebsd-bugs@FreeBSD.ORG Sat Jan 15 22:20:10 2011 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 020EF1065672 for ; Sat, 15 Jan 2011 22: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 B94628FC15 for ; Sat, 15 Jan 2011 22: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 p0FMK9kF014526 for ; Sat, 15 Jan 2011 22: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 p0FMK9uN014525; Sat, 15 Jan 2011 22:20:09 GMT (envelope-from gnats) Resent-Date: Sat, 15 Jan 2011 22:20:09 GMT Resent-Message-Id: <201101152220.p0FMK9uN014525@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, Alexander Best Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 979E010656A3 for ; Sat, 15 Jan 2011 22:10:54 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 875828FC23 for ; Sat, 15 Jan 2011 22:10:54 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p0FMAsDL082669 for ; Sat, 15 Jan 2011 22:10:54 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p0FMAsnw082668; Sat, 15 Jan 2011 22:10:54 GMT (envelope-from nobody) Message-Id: <201101152210.p0FMAsnw082668@red.freebsd.org> Date: Sat, 15 Jan 2011 22:10:54 GMT From: Alexander Best To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/154042: [patch] fix several rtprio(1) issues 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, 15 Jan 2011 22:20:10 -0000 >Number: 154042 >Category: bin >Synopsis: [patch] fix several rtprio(1) issues >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 Jan 15 22:20:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Alexander Best >Release: 9.0-CURRENT >Organization: >Environment: FreeBSD otaku 9.0-CURRENT FreeBSD 9.0-CURRENT #0 r217444: Sat Jan 15 18:48:59 CET 2011 arundel@otaku:/usr/obj/usr/subversion-src/sys/ARUNDEL amd64 >Description: this patch should fix the following issues: 1) fail when the utility wasn't invoked as rtprio or idprio. 2) use warnx() to tell the user whether a process is running in normal, idle or realtime priority. with the old code it would have been possible for another process to send data to stdout between printf("%s: ", p); and printf("* priority\n"); and thus break the formatting. 3) 'rtprio 10 -0' triggeres non-intuitive behavior. it would first set the priority of itself to 10 *and* would then try to execute '-0'. of course setting the priority of [id|rt]prio itself doesn't make a lot of sense, but it is intuitive compared to the previous behavior. 4) 'rtprio -t --1' will actually pass over the '-1' to rtprio(). now invoking rtprio like this will catch the wrong usage before passing over the invalid argument to rtprio(). 5) Garrett Cooper suggested to add further diagnostics where the failure occures, if execvp fails. cheers. alex >How-To-Repeat: run 'rtprio 10 -0' or 'rtprio -t --1' on HEAD (>= r216955) to witness a few issues. >Fix: Patch attached with submission follows: diff --git a/usr.sbin/rtprio/rtprio.c b/usr.sbin/rtprio/rtprio.c index 38dade8..f794ec9 100644 --- a/usr.sbin/rtprio/rtprio.c +++ b/usr.sbin/rtprio/rtprio.c @@ -67,6 +67,8 @@ main(int argc, char *argv[]) rtp.type = RTP_PRIO_REALTIME; else if (!strcmp(p, "idprio")) rtp.type = RTP_PRIO_IDLE; + else + errx(1, "invalid basename"); switch (argc) { case 2: @@ -76,20 +78,19 @@ main(int argc, char *argv[]) case 1: if (rtprio(RTP_LOOKUP, proc, &rtp) != 0) err(1, "RTP_LOOKUP"); - printf("%s: ", p); switch (rtp.type) { case RTP_PRIO_REALTIME: case RTP_PRIO_FIFO: - printf("realtime priority %d\n", rtp.prio); + warnx("realtime priority %d", rtp.prio); break; case RTP_PRIO_NORMAL: - printf("normal priority\n"); + warnx("normal priority"); break; case RTP_PRIO_IDLE: - printf("idle priority %d\n", rtp.prio); + warnx("idle priority %d", rtp.prio); break; default: - printf("invalid priority type %d\n", rtp.type); + errx(1, "invalid priority type %d", rtp.type); break; } exit(0); @@ -110,18 +111,17 @@ main(int argc, char *argv[]) break; } - if (argv[2][0] == '-') - proc = parseint(argv[2] + 1, "pid"); - if (rtprio(RTP_SET, proc, &rtp) != 0) - err(1, "RTP_SET"); - - if (proc == 0) { + if (argv[2][0] == '-') { + proc = parseint(argv[2], "pid"); + proc = abs(proc); + if (rtprio(RTP_SET, proc, &rtp) != 0) + err(1, "RTP_SET"); + } else { execvp(argv[2], &argv[2]); - err(1, "%s", argv[2]); + err(1, "execvp: %s", argv[2]); } exit(0); } - exit(1); } static int >Release-Note: >Audit-Trail: >Unformatted: